Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Including a field with only a certain selection criteria type

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Including a field with only a certain selection criteria type
 Login/Join
 
Platinum Member
posted
I am trying to only include a field (IVCITM) in the report only if there is no Cross Reference Type (IVXRT_CODE = T). So for every Item Number with Cross Reference Type (IVXRT_CODE = T) then I dont want to print that Item Number. How do I go about doing this?


Prod: WebFOCUS 7.7.03: Win 2008 & AIX hub/Servlet Mode; sub: AS/400 JDE; mostly Self Serve; DBs: Oracle, JDE, SQLServer; various output formats
 
Posts: 121 | Location: California | Registered: June 19, 2008Report This Post
Virtuoso
posted Hide Post
TABLE FILE WHATEVER
PRINT IVCITM
WHERE IVTXRT_CODE NE 'T';
END


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
Expert
posted Hide Post
DEFINE FILE whatever
IVCITMX/A10 = IF IVXRT_CODE EQ 'T' THEN '' ELSE IVCITM;
END

TABLE FILE whatever
PRINT
IVXRT_CODE
IVCITMX
END


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Virtuoso
posted Hide Post
Interpretation can be everything.. Wink


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
 
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005Report This Post
Expert
posted Hide Post
yup!


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Platinum Member
posted Hide Post
I dont think I am explaining myself clearly. I am printing 4 fields: Item Number (IMLITM), Inventory Code (IM_C20_CODE), Quantity on Hand (LIPQOH), and Cross Ref Item Number (IVCITM). So for every Item Number there are multiple Cross Ref Item Numbers. What i need to do is only print the Item Number that includes the field Cross Ref Item Number (IVCITM) in the report only if there is no Cross Ref Type (IVXRT_CODE = T).

I tried using the Define that Francis posted but that didnt work. It just eliminated the Cross Reference Item Number but still printed the Item Number.

Below is the code I am using:

DEFINE FILE CAR
CROSS/A25 = IF IVXRT_CODE EQ 'T' THEN ' ' ELSE IVCITM;
END

TABLE FILE CAR
SUM LIPQOH
BY IMLITM
PRINT
IM_C20_CODE
CROSS
BY IMLITM
WHERE IMGLPT_CODE FROM 'F' TO 'FZZZ'
WHERE IM_C20_CODE LIKE 'T%'
WHERE LIPQOH GT '0'
END


Prod: WebFOCUS 7.7.03: Win 2008 & AIX hub/Servlet Mode; sub: AS/400 JDE; mostly Self Serve; DBs: Oracle, JDE, SQLServer; various output formats
 
Posts: 121 | Location: California | Registered: June 19, 2008Report This Post
Expert
posted Hide Post
You're not explaining yourself clearly at all.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Platinum Member
posted Hide Post
I believe I figure it out. Thanks to all for trying to help.


Prod: WebFOCUS 7.7.03: Win 2008 & AIX hub/Servlet Mode; sub: AS/400 JDE; mostly Self Serve; DBs: Oracle, JDE, SQLServer; various output formats
 
Posts: 121 | Location: California | Registered: June 19, 2008Report This Post
Expert
posted Hide Post
If you have figured it out please post your solution, so we all know what you did.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Platinum Member
posted Hide Post
TABLE FILE F4101
BY IMLITM
WHERE IVXRT_CODE EQ 'T'
WHERE IMGLPT_CODE FROM 'F' TO 'FZZZ'
WHERE IM_C20_CODE LIKE 'T%'
WHERE LIPQOH GT '0'
ON TABLE SAVE AS T_ITEMS
END

DEFINE FILE F4101
CROSS/A25 = IF IVXRT_CODE NE 'T' THEN ' ' ELSE IVCITM;
END

TABLE FILE F4101
SUM LIPQOH
BY IMLITM
PRINT
IM_C20_CODE
-*IVCITM
CROSS
BY IMLITM
IF IMLITM NE (T_ITEMS)
WHERE IMGLPT_CODE FROM 'F' TO 'FZZZ'
WHERE IM_C20_CODE LIKE 'T%'
WHERE LIPQOH GT '0'
ON TABLE SET ASNAMES ON
ON TABLE SET HOLDLIST PRINTONLY
ON TABLE HOLD AS TEST_ITEM
END
-RUN


Prod: WebFOCUS 7.7.03: Win 2008 & AIX hub/Servlet Mode; sub: AS/400 JDE; mostly Self Serve; DBs: Oracle, JDE, SQLServer; various output formats
 
Posts: 121 | Location: California | Registered: June 19, 2008Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Including a field with only a certain selection criteria type

Copyright © 1996-2020 Information Builders