cancel
Showing results for 
Search instead for 
Did you mean: 

Output Requirement in VOFM for SO

Former Member
0 Kudos

Hi Gurus,

I created an Output Control requirement in VOFM.

In the requirement ABAP codes, may I know how can I access the list of pricing conditions while I am creating the sales order in VA01, because the sales order is not saved yet, so I cannot get from table KONV ?

Any way to find the variables available ?

Thanks.

Best Regards,

T.K.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Any suggested solutions ?

Former Member
0 Kudos

I found one solution,

In VA01 user exit,

code: "EXPORT itab to MEMORY ID mem1"

to get pass the variables to memory

After that, in VOFM requirement program, we can use "IMPORT itab from MEMORY ID mem1" to access the variables.

Not sure whether there are other better ones lying around, but it works !