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.
HI GUYS, SORRY FOR THE TROUBLE ITS SIMILAR TO MY PREVIOUS QUESTIONS BUT I GOT STRUCK IN THE MIDDLE AND I AM GETTING PROBLEM WHILE PLACING THE APPROPRIATE QUOTES FOR THE 'BOTH' CONDITION
-SET ®IONTYPE1 = '''' | ®IONTYPE | ''''; -SET &WHERE_REGIONTYPE = IF ®IONTYPE NE 'ALL' THEN ' AND REGDET.REGION_TYPE = ' | ®IONTYPE1 ELSE IF ®IONTYPE EQ 'BOTH' THEN ' AND REGDET.REGION_TYPE IN ' '''| ''''EAST'''',''''NORTH WEST'''' |''' ELSE' ';
WHERE REGDET.REGION_TYPE IS MY FIELDNAME AND EAST AND 'NORTH WEST' ARE MY FIELD OPTIONS
-SET �IONTYPE1 = '''' | �IONTYPE | ''''; -SET &WHERE_REGIONTYPE = IF �IONTYPE NE 'ALL' THEN ' AND REGDET.REGION_TYPE = ' | �IONTYPE1 ELSE IF �IONTYPE EQ 'BOTH' THEN ' AND REGDET.REGION_TYPE IN (''EAST'',''NORTH WEST'', ''ELSE'')';
When trying to put single quotes in a variable you need to put a single quote in front of each single quote.
-SET &TST1 = ''''; -TYPE var: &TST1 should be: '
-SET &TST2 = '''HI'; -TYPE var: &TST2 should be: 'HI
-SET &TST3 = ''''''; -TYPE var: &TST3 should be: ''
-SET &TST4 = '''HI'''; -TYPE var: &TST4 should be: 'HI'
Posts: 406 | Location: Canada | Registered: May 31, 2004