cancel
Showing results for 
Search instead for 
Did you mean: 

Exit name for Enhancing 0VEN_COMPC_ATTR

Former Member
0 Kudos

I need to enhance this extractor in ABAP , please let me any user exit where i can populate data for fields i will be enhancing in structre.

Like we have EXIT_SAPLRSAP_001 for enhancing some data sources, what will be exit in this case.

Regards

Taranam

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Ideally, you have to write the code under case statement for your datasource.

In the user exit --> EXIT_SAPLRSAP_001

Look out for case statement...

CASE DATASOURCE.

WHEN '0VEN_COMPC_ATTR'.

<b><Put whatever logic you wish to have....></b>

WHEN OTHERS.

ENDCASE.

Former Member
0 Kudos

EXIT_SAPLRSAP_001 is for transaction data.

Use EXIT_SAPLRSAP_002 for master data attributes.

Or goto se38 and give include name as ZXRSAU02 and write your code there.

Regards, Siva

P095090
Participant
0 Kudos

Hi Taranam,

The name of the exit depends on teh utility..if the DS is

Master data the exit used will be EXIT_SAPRSAP_002

Transactional Ds EXIT_SAPRSAP_001

SO in your case its master data so use the exit EXIT_SAPRSAP_002