Hi,
i need Compile options for PL1-Programs which has
PROG1: PROC (PTR_TAB_PTR) OPTIONS (FETCHABLE);
in the Program-Source.
When i compile this source i will receive ... OPTIONS(FETCHABLE) invalid.
While this and other programs have the same coding i think this is correct.
This Program should be called with the following statements (form a Main-Program):
DCL PROG1 ENTRY EXTERNAL;
FETCH PROG1;
CALL PROG(PTR_TAB_PTR);
RELEASE PROG1;
I hope someone can help me.
Thanks alot.