As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
In version 8.1 when I used the code below, it would open outlook and place jpotter@eandi.org in the email. Now in 8.2 it places and equal sign in front of it like this =jpotter@eandi.org. Has anyone else seen this happen?
TYPE=DATA, COLUMN=EMAIL, DRILLMENUITEM='Click to Launch Outlook', URL=mailto:(email), TARGET='_blank', $This message has been edited. Last edited by: FP Mod Chuck,
TABLE FILE CAR
SUM SEATS
COMPUTE EMAIL/A100 = 'Mail'; AS 'Click To Mail'
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA,
COLUMN=EMAIL,
DRILLMENUITEM='Click to Launch Outlook',
URL=mailto:me@mycie.com,
TARGET='_blank',
$
ENDSTYLE
END
-RUN
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013
This code is slightly different, but it also does not present any problem in opening outlook with the correct email address:
APP APPENDPATH IBISAMP
DEFINE FILE CAR
EMAIL/A64 = IF CAR EQ 'JAGUAR' THEN 'my.email@address.com' ELSE ' ';
END
TABLE FILE CAR
PRINT SEATS
EMAIL
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA,
COLUMN=EMAIL,
DRILLMENUITEM='Click to Launch Outlook',
URL=mailto:(email),
TARGET='_blank',
$
ENDSTYLE
END
-RUN
This works fine in 8.201M gen 08142017. Possibly you're using a somewhat older version?
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
Out of curiosity I quickly tested this in 8202 Beta. The parameter value passing behaviour is as expected, it passes "mailto:my.email@address.com" However instead of opening Outlook, it opens a new browser session with "mailto:my.email@address.com" in the URL address.
-------------------------------------------------------------------------------- prod: WF/AS 8.2.05; OmniGen; In FOCUS since 1991
Posts: 104 | Location: United Kingdom | Registered: February 07, 2008
The issue with GamP sample is the DRILLMENUITEM. If you keep it, a new mail does open in Outlook, but without a valid "TO" address. But if you remove the DRILLMENUITEM it work properly under WF8201M gen 193.
DEFINE FILE CAR
EMAIL/A64 = IF CAR EQ 'JAGUAR' THEN 'my.email@address.com' ELSE ' ';
END
TABLE FILE CAR
PRINT SEATS
EMAIL AS 'Click to Launch Outlook'
BY COUNTRY
ON TABLE SET STYLE *
TYPE=DATA,
COLUMN=EMAIL,
-* DRILLMENUITEM='Click to Launch Outlook',
URL=mailto:(email),
TARGET='_blank',
$
ENDSTYLE
END
-RUN
WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF In Focus since 2007
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013