cancel
Showing results for 
Search instead for 
Did you mean: 

Tax and amount total should show in the line item of confirmation screen

Former Member
0 Kudos

Hi All,

I need to add the Tax and amount total fields in the line item of confirmation screen for service cart.

Could someone please tell me how and where should I add and write the neccessary logic for that.

We are on version SRM 3.0.

Thanks,

Kumar

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Confirmation is more to do with quanity delivery confrmation rather than price validation.You should be able to do that in Invoice.

Pritesh

Former Member
0 Kudos

Hi Pritesh,

I want to know in which BADI and in which structures I need to add these fields.

Thanks,

kumar

yeushengteo
Advisor
Advisor
0 Kudos

Hi,

For the fields you mentioned, are you going to create them as customer fields?

if yes, then you can extend the structure CI_BBP_ITEM_CONF and then use the BADI BBP_DOC_CHANGE_BADI to change the content on the fields.

Regards.

Former Member
0 Kudos

Hi,

Please check the foll note for addition of custom fields:

458591 - User-defined fields: Preparation and use

672960 - User-defined fields 2

To change the field content you need to implement the badi BBP_DOC_CHANGE_BADI .

Here is the sample code for BBP_DOC_CHANGE_BADI Implementation

loop at et_item into ls_item.

move ls_item-mfrpn to ls_item-zz_your_new_field.

modify et_item from ls_item transporting zz_your_new_field.

endloop.

BR,

Disha.

Pls reward points for useful answers.

Former Member
0 Kudos

Hi,

I did add the custom fields in the structure CI_BBP_ITEM_CONF and it is showing up in the line item under basic data tab which is fine.

But I wasnt able to get the data into the fields through BBP_DOC_CHANGE_BADI.

Could someone please help me thru this.

The custom fields are TAX_AMOUNT and TOTAL_AMOUNT.

Ex:

Quantity : 2

Net Price : 100 USD

Tax : **Taxable

I should get:

Tax_Amount : 10$ (210-200)(assume)

Total_Amount : 210$.

On the back end we have in ML81N(Entrysheet)

Under the value tab:

Total Amount : 210$

Net Price : 200$

Thanks,

Kumar

Answers (0)