cancel
Showing results for 
Search instead for 
Did you mean: 

Please check is there any wrong

Former Member
0 Kudos

have Y_Ep_Demo_Get_Material this function module in that function module <Tables> tab i have T_Matnr (Parameter Name) LIKE(Type Spe.) YEPDEMOMATNR (Associated Type)

follwoing source code

FUNCTION y_ep_demo_get_material.

*"----


""Local interface:

*" TABLES

*" T_MATNR STRUCTURE YEPDEMOMATNR

*"----


DATA: it_yepdemomm LIKE yepdemomm OCCURS 0 WITH HEADER LINE.

SELECT * FROM yepdemomm INTO TABLE it_yepdemomm.

LOOP AT it_yepdemomm.

t_matnr-matnr = it_yepdemomm-matnr.

APPEND t_matnr.

ENDLOOP.

ENDFUNCTION.

and i have binded in custom contoller like the following....

Y_Ep_Demo_Get_Material_Output out = new Y_Ep_Demo_Get_Material_Output();

wdContext.nodeMaterial_Output().bind(out);

out.addT_Matnr(new Yepdemomatnr());

Y_Ep_Demo_Get_Material_Input in = new Y_Ep_Demo_Get_Material_Input();

wdContext.nodeMaterial_Input().bind(in);

in.addT_Matnr(new Yepdemomatnr());

please tell me if there is any wrong in my binding

Thanks & Regards

Ravi shankar b

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Ravisankar,

Could you please close all your previous thread if it's solve?. Because i saw last couple of days you opened lot of thread for dropdowns. Please close or continued with same thread not with a new thread.

Kind Regards,

S.Saravanan.

Former Member
0 Kudos

Sorry for not closing the theads....

My problem was not solved

Thanks & Regards

Ravi Shankar b

Answers (0)