Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Getting Values of MMBE transaction

Former Member
0 Kudos

Hello all,

I need to get the Values of the MMBE transaction and use those values in my report for calculation. Can anybody suggest a way to execute the MMBE tranasaction from my report and get the values in a table.

Regards,

Vijayakumar

2 REPLIES 2

Former Member
0 Kudos

Hello

Just use tables MARD and MCHB in your report.

It contains valuated stocks.

kiran_k8
Active Contributor
0 Kudos

Vijay,

Submit MMBE program in your zprogram by passing the values to the MMBE selection screen for ex

SUBMIT MMBE Program WITH p_werks = p_werks

EXPORTING LIST TO MEMORY AND RETURN.

and then use

LIST_FROM_MEMORY

LIST_TO_ASCI

LIST_FREE_MEMORY

Or copy MMBE program as zmmbe and then use EXPORT IMPORT concept to get the final internal table values into your zprogram.

K.Kiran.