cancel
Showing results for 
Search instead for 
Did you mean: 

User-exit in Product View

Former Member
0 Kudos

Hi,

When I enter in the product-view (/SAPAPO/RRP3) transaction we can see there multiple tab-strips available. In the Element tab-strip SAP has provided three additional columns with the field names USEXIT1,USEXIT2 and USEXIT3. Please let me know in which user-exit can I populate these fields.

Thanks in advance.

Best Regards,

Siva.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You need to implement /SAPAPO/RRP_IO_COL BAPI. This BAPI comes with few methods.

For adding a text in those three userexit column. use

RRP_USEX_COLS_GET_TEXT_01 method. Sample code you may write as below

<b>APPEND 'Labe1' to CT_COLS_TEXT.

APPEND 'Labe2' to CT_COLS_TEXT.</b>.............

and populating these columns is being handled in RRP_USEX_COLS_FILL_01 method.

Hope it wil helps..

Regards,.

Prashant

Reward points if it helps

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks. Got the user-exit.

Regards,

Siva.