cancel
Showing results for 
Search instead for 
Did you mean: 

Not able to see field(DEAKT) in DataSource in RSA6 Tcode

Former Member
0 Kudos

Hi All,

I am able to see the field DEAKT in Extract Structure BWFIAA_ASSETMASTER but not able to see this field in the Data Source 0ASSET_ATTR in TCode RSA6.

Any input on above issue will be of great help.

Regards,

Anjali Singh



Accepted Solutions (1)

Accepted Solutions (1)

RamanKorrapati
Active Contributor
0 Kudos

Hi Anjali,

As my guess that field may be hidden by SAP.

Check the Tx - SE11 table ROOSFEILD, contents, give the data source name,

Check for field DEAKT the column SELECTION will be as "A" means its hidden by SAP. So by using small program we can change that selection A to P.

if the field DEAKT have SELECTION as A then only use below program.

at ECC Side, Tx - SE38.

REPORT  ZPROGAM.

Tables: ROOSFIELD.

SELECT SINGLE * FROM ROOSFIELD WHERE OLTPSOURCE = ' 0ASSET_ATTR' AND

OBJVERS = 'A' AND FIELD ='DEAKT'.

IF SY-SUBRC = 0.

ROOSFIELD-SELECTION ='P'.

MODIFY ROOSFIELD.

ENDIF.

Do syntax check and execute it. later you can see the field at RSA6.

Thanks


Answers (2)

Answers (2)

Former Member
0 Kudos

In SE11 enter table ROOSFIELD -->contents--> enter 0ASSET_ATTR and Excecute it.

for the fields which are not visible in the data source visible in A. if DEAKT in a version go to se38 enter program name:

TABLES: ROOSFIELD.

SINGLE SELECT * FROM ROOSFIELD WHERE OLTPSOURCE = 0ASSET_ATTR AND OBJVERS = 'A' AND FIELD =  'DEAKT'.

IF SY-SUBRC = 0.

ROOSFIELD-SELECTION = 'P'.

MODIFY ROOSFIELD.

ENDIF.

Former Member
0 Kudos

This message was moderated.