Link to home
Start Free TrialLog in
Avatar of JCW2
JCW2

asked on

DFSORT INCLUDE

What are the parameter types that go in INCLUDE=(??,?,??,EQ,C'??',AND,??,?,??,EQ,C'?')?
Avatar of giltjr
giltjr
Flag of United States of America image

I am assuming you are refering to the OUTFIL INCLUDE option (vs. the INCLUDE COND=(xxxx) statement)

If you refer to page 103 in the manual

     http://publibz.boulder.ibm.com/epubs/pdf/ice1ca50.pdf

It explains what the comparsions are.  For your statement:

   INCLUDE=(??,?,??,EQ,C'??',AND,??,?,??,EQ,C'?')?

You would want to look at is as:

    INCLUDE=(p1,m1,f1,EQ,constant,AND,p1,m1,f1,EQ,constant)
Avatar of JCW2
JCW2

ASKER

Are the p1, m1, f1, and constant values, respectively, the same on both sides of that statement?
ASKER CERTIFIED SOLUTION
Avatar of giltjr
giltjr
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JCW2

ASKER

Thank you for your help.