cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with BBP_PD_SC_GETDETAIL

Former Member
0 Kudos

Hi Experts,

I am facing a problem, in work flow BADI, where I am using some custom fields for the validation.

But the BBP_PD_SC_GETDETAIL is not retrieving the custom fields, though the custom fields are in the BBP_PDS_SC_ITEM_D.

Is there any thing which I am missing in the DOC_CHANGE_BADI or Do I need to implement DOC_SAVE_BADI?

Please provide any pointers that can be used to solve my problem.

Thanks in Advance

Accepted Solutions (1)

Accepted Solutions (1)

pvanhoove
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello,

Did you set the custom field in the append structures designed for this (like INCL_EEW_PD_ITEM_...) ?

How are they filled ? by a user during shopping cart creation, in that case the badi bbp_cuf_badi_2 should be enough or by the application, then you need to fill it them with bbp_doc_change_badi.

But badi bbp_doc_save_badi won't help you in any case.

Rgds,

Pierre

Former Member
0 Kudos

Hi Pierre,

Thank you so much for your response .

Yes, as you said , i have initialised some of the custom fields using CUF_BADI_2 ( MODIFY_OUTPUT) , and some of the fields enter by user.

Particular fields which I am looking for in my work_flow BADI , is filled by system using CUF_BADI , and I make it as non edidtable .

Shold I do same thing in DOC_CHNAGE badi.

Thank you

pvanhoove
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hello,

That's it,

Use bbp_doc_change_badi to modify the value of the custom fields and bbp_cuf_badi_2~modify screen to display/ hide this field i the user interface.

Rgds,

Pierre

Answers (1)

Answers (1)

Former Member
0 Kudos

thank you