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



View Entire Topic
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