cancel
Showing results for 
Search instead for 
Did you mean: 

BBP_QUOT_CHANGE signature parameters

Former Member
0 Kudos

Hello experts,

I need to know how exactly the input parameters in BBP_QUOT_CHANGE method in BBP_DOC_CHANGE_BADI badi are mapped to their output parameters. I am especially not sure how the items are passed.

Please help.

Thanks,

Ghanesh

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

do like this

*-- Mapping the import parameters to export parameters

DATA :

wa_it_item TYPE bbp_pds_quot_item_icu,

wa_et_item TYPE bbps_quot_item_badi.

CLEAR: wa_it_item, wa_et_item.

REFRESH et_item.

LOOP AT it_item INTO wa_it_item.

MOVE-CORRESPONDING wa_it_item TO wa_et_item.

APPEND wa_et_item TO et_item.

CLEAR: wa_et_item, wa_it_item.

ENDLOOP.

et_partner = it_partner.

et_weight = it_weight.

et_sdln = it_sdln.

et_hcf = it_hcf.

et_icf = it_icf.

Former Member
0 Kudos

Thanks Alok. Hope this works. I am yet to test them, but I am giving full points for this.

Thanks,

Ghanesh

Answers (0)