Terry Rudersdorfer
New Member
I have an include encapsulating a shared frame being used by 2 separate record structures
myinclude.i
DEFINE {1} SHARED FRAME {2}frame.
FORM
{2}rec.field1
{2}rec.field2
WITH FRAME {2}frame
NO-LABELS
2 DOWN
NO-BOX
CENTERED.
I need both the 1st and 2nd params to be optional
From the Parent Processes, this simply works as:
{ myinclude.i NEW }
or
{ myinclude.i NEW abc-}
However from a Child Process, I don't appear to have the ability to PASS in a BLANK for the 1st param?
{ myinclude.i "" abc- } produces errors:
Unable to understand after -- "DEFINE". (247)
One or more missing keywords in DEFINE statement. (404)
I have tried " ", '', ' ', """", "" "", """""", """ """ ... all produce a similar responses
myinclude.i
DEFINE {1} SHARED FRAME {2}frame.
FORM
{2}rec.field1
{2}rec.field2
WITH FRAME {2}frame
NO-LABELS
2 DOWN
NO-BOX
CENTERED.
I need both the 1st and 2nd params to be optional
From the Parent Processes, this simply works as:
{ myinclude.i NEW }
or
{ myinclude.i NEW abc-}
However from a Child Process, I don't appear to have the ability to PASS in a BLANK for the 1st param?
{ myinclude.i "" abc- } produces errors:
Unable to understand after -- "DEFINE". (247)
One or more missing keywords in DEFINE statement. (404)
I have tried " ", '', ' ', """", "" "", """""", """ """ ... all produce a similar responses