cancel
Showing results for 
Search instead for 
Did you mean: 

Display of "Line resource" in RRP4 output

Former Member
0 Kudos

Dear Team

The transaction /SAPAPO/RRP4 (Receipt view) has the facility to provide Resource in the input selection screen.

But it does not have the coulmn to display the Line resource in the Output of RRP4.

Hence suppose we provide 3 lines in input selection scree, and execute, we can not understand which line each order belongs to.

Does anyone know any BADI / Exit which can make the line resource available in RRP4 output?

Regards

Nishigandha

Accepted Solutions (0)

Answers (2)

Answers (2)

adhish_prabhakar
Explorer
0 Kudos

Dear Sagar,

  Yes this is possible.

  BADI /SAPAPO/RRP_IO_COL.

  Production line for Receipt View.

1. In Method RRP_USEX_COLS_GET_TEXT_02.

       Append  USEXIT1' to CT_CUS_FIELDS. and    APPEND (Your header name like     

        'Production Line' TO CT_COLS_TEXT.

2. In Method RRP_USEX_COLS_FILL_02 add the logic for the particular field and modify the field     

    ct_receipts.

  You will be able to see production line in RRP4.

*Reward points if it works.

Thanks

AP

rupesh_brahmankar3
Active Contributor
0 Kudos

Hi Sagar,

BAdI /SAPAPO/RRP_IO_COL is available for adding new columns and changing existing ones.

This BAdI includes the interfaces 'RRP_USEX_COLS_FILL_02'  which can be used to change values of the displayed table in the receipt view, or to fill the values of the new columns.

For more information on Business Add-Ins, see the online documentation for transactions SE18 and SE19.

More information on the BAdI /SAPAPO/RRP_IO_COL is available in the relevant online SAP help documentation.

Regards,

R.Brahmankar

Former Member
0 Kudos

Thanks Brahmankar.

I will check the BADI.