Application Development and Automation 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: 
Read only

function module

Former Member
0 Likes
687

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
Read only

Former Member
0 Likes
564

see this prg : RVBBWULS

3 REPLIES 3
Read only

Former Member
0 Likes
566

see this prg : RVBBWULS

Read only

Former Member
0 Likes
564

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.

Read only

Former Member
0 Likes
564

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