2007 Mar 26 6:54 AM
Hi Experts,
See the following Perform statement in an include pgm.
PERFORM ZZ_QTY_CHECK_PROCESSING(ZVXX_MV45AFZZ_F084_EX)
TABLES XVBAP
YVBAP
XVBEP
YVBEP
XVBKD
YVBKD
XVBPA
YVBPA
USING UPDKZ_UPDATE
SKIP_MINCHECK
WSETFLAG
ZTOTAL_QUANT
ZTOTAL_QUANT1
KUWEV
TVLP
T180
VBAK
XVBAK
YVBAK
ZVXXDVQM
ZVXXPARAM_SALEAR.
here it is giving error like TVLP is un known.neither specified one of the TABLES statement or defined by using DATA statement...
How to correct this?
Regards
2007 Mar 26 7:00 AM
Hi,
Declare that Table TVLP like:
Tables: TVLP.
and use it.
regards,
Anji
2007 Mar 26 7:00 AM
Hi,
Declare that Table TVLP like:
Tables: TVLP.
and use it.
regards,
Anji
2007 Mar 26 7:04 AM
As you are using TVLP under USING paramaters of the PERFORM, it expects for the workarea TVLP to be available in the calling program
Ensure that you have Declared TVLP in Tables statement.
TABLES: TVLP.
reward if helpful....
2007 Mar 26 7:14 AM
hi
good
check the field name TVLP ,to which it refer to,to a table or a structure and write the appropriate table and structure name in the PERFORM statement.
Thanks
mrutyun^