cancel
Showing results for 
Search instead for 
Did you mean: 

COPA Data source fields

Former Member
0 Kudos

I added field name USNAM to copadatasource apending str and added i can see in extract str not in Data source .

Any clue.

Ash

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Ash,

Goto RSA6 -> Datasource -> edit and see if the field USNAM has the "hidden" and "field known only in customer exit" checkbox checked.

If you still dont see the fields in the datasource then:

Just check the ROOSFIELD table in se11 for your datasource. Possibly the newly added field is hidden. You can execute this code and the field would appear in RSO2.

tables ROOSFIELD.
 
update ROOSFIELD set SELECTION = 'X' where 
Datasource = ' <Data source>'
and field = '<your field>'.

This would make the field appear in RSO2/RSA6.

Bye

Dinesh