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: 

Accessing all the fields of a function module in EWM

Former Member
0 Kudos
411

Hi All,

I have a requirement to prepare a report that pulls some fields of the Function module /SCWM/STOCK_INC_OUT_MON.

This Fuction module is in EWM.

I need result rows for multiple values(user inputs) of warehouse.

Cant we access individual fields from this FM without using the structure?

i need to pull the fields MATNR, NLPA PROC and GRDATE

for all the user entries in Wahrehouse code

Thanks, Arka

2 REPLIES 2

Clemenss
Active Contributor
0 Kudos
172

Hi arka,

yes. this is possible. The function module has a defined interface. Pass data objects structured according to interface definition and access fields the way you always do in ABAP.

Regards

Clemens

Former Member
0 Kudos
172

Hi,

You can use the work area to capture the output of the function module and then use the data (fields) which ever you require.

The structure of the Work area (Data Types of the field) should be same as data types of output parameters of that Function Module.

Hope this helps.

Regards,

Shweta Soragavi