Hi AL,
At RSA6 those 3 fields are visible?
You can cross check at Dev ECC side table - ROOSFIELD, There is column SELECTION which holds values like A,P,X ' ' ... etc.
if mentioned 3 fields are have SELECTION as "A" then its hidden by SAP and this kind of fields are not visible at RSA6 also.
By using small abap program we can make them as visible and we change SELECTION value to P.
REPORT ZTEST.
Tables: ROOSFIELD.
SELECT SINGLE * FROM ROOSFIELD WHERE OLTPSOURCE = '<data source name>' AND
OBJVERS = 'A' AND FIELD ='<field name>'.
IF SY-SUBRC = 0.
ROOSFIELD-SELECTION ='P'.
MODIFY ROOSFIELD.
ENDIF.
you have 3 fields are hidden then you need write code to add 3 fields in code and execute it once. or you write 3 program just change the field name.
pls let us know what selections are at table ROOSFEILD for above 3 fields.
Thanks