‎2008 Dec 01 11:22 AM
Hi friends,
Iam facing a following problem.
I have 4 line items in my va01 tcode.
now when i give material number and quantity and hit enter the processing for that line item starts.
iam moving that current line item to a internal table lt_vbap in userexit_check_vbap.
now for the 2nd line item also i have to move to internal table lt_vbap.
but my problem is that in internal table lt_vbap iam not getting all the line items.
every time the current line item is being processed the the previous line items are being refreshed.
from lt_vbap internal table.
how can i export internal table.
code
move vbap to lt_vbap.
append lt_vbap.
export lt_vbap to memory id 'ZXYZ'.
‎2008 Dec 01 11:29 AM
‎2008 Dec 01 11:26 AM
Hi Priyanka,
The internal table lt_vbap will always be empty unless you import it from the Memory ID (in your case ZXYX).
Use the code this way:
IMPORT lt_vbap FROM MEMORY ID 'ZXYX'.
move vbap to lt_vbap.
append lt_vbap.
export lt_vbap to memory id 'ZXYZ'.
Regards,
Prakash Pandey
‎2008 Dec 01 11:27 AM
>
> Hi Priyanka,
>
> The internal table lt_vbap will always be empty unless you import it from the Memory ID (in your case ZXYX).
>
> Use the code this way:
>
> IMPORT lt_vbap FROM MEMORY ID 'ZXYX'.
>
> move vbap to lt_vbap.
>
> append lt_vbap.
>
> export lt_vbap to memory id 'ZXYZ'.
>
> Regards,
> Prakash Pandey
The memory id shud be same in both cases
‎2008 Dec 01 11:26 AM
Hi Priyanka,
Please go through the KEY word documenation of IMPORT EXPORT or SET GET PARAMETERS
use the standard table INDX(HK)
hope this will solve your problem
Regards
Ramchander Rao.K
‎2008 Dec 01 11:29 AM