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: 

function module

Former Member
0 Kudos

i am using chvw_explode_all in se38 but itr is not working.

and even i run it on se37 also but still not giving out put.

can anybody help me to out from this.

thanx

bhupi

1 ACCEPTED SOLUTION

Former Member
0 Kudos

see this prg : RVBBWULS

3 REPLIES 3

Former Member
0 Kudos

see this prg : RVBBWULS

Former Member
0 Kudos

Hi Bhupi,

what u can do is go to se37 and place the cursor on the name of the function module and click on where used like---a button after execute symbol....... then u can find the programs where this FM is used and get the logic in your program.

Reward points if useful.

Thanks

Abdul.

Former Member
0 Kudos

Hi this is sample

data: l_dfchvw TYPE dfchvw,

data TYPE qcdocinfo,

tab1 TYPE TABLE OF chvwshadow,

tab 2 TYPE qc_werks_range.

CALL FUNCTION 'CHVW_EXPLODE_ALL'

EXPORTING

i_matnr = data-matnr

i_werks = data-werks

i_charg = data-charg

i_dfchvw = l_dfchvw

TABLES

t_shadow = tab1

t_plants = tab2

EXCEPTIONS

OTHERS = 1.

IF sy-subrc <> 0.

EXIT.

ENDIF.

Reward if useful