suppose there are two programmes PROGRAMA and PROGRAMB. both program call PROGRAMC.
if i want to call PROGRAMC from PROGRAMB using a field of PIC X(25) AND i want to call PROGRAMC from PROGRAMA using
PIC X(100). is it possible. if not why, what will be the error and how to meet the above requirement
Program A:
WS-FIELDA PIC X(100).
CALL PROGRAMC USING WS-FIELDA
Program B:
WS-FIELDB PIC X(25).
CALL PROGRAMC USING WS-FIELDB