Hi all,
I am having the field in Extract structure but not in Data source.. i checked in RSA2. its in hidden mode by SAP..
So what i need to do to get that field in Data source....
Data source is' 0material_attr' and field is 'Brand_id'.
Thanks in Advance..
ravi.p
execute this program:
tables ROOSFIELD.Update ROOSFIELD set SELECTION = 'X' whereOLTPSOURCE = <your datasource> and FIELD = '<field which is hidden/missing>'.
Execute the program for each of the field and check the entries in RSA6/RSO2.
Hope it helps.
Regards
Hi Reddy,
Write this code and execute u can able to hidden fields by SAP.
REPORT XXX.
data : begin of itab occurs 0 .
include structure ROOSFIELD .
data :end of itab .
select * from ROOSFIELD into table itab where
OLTPSOURCE = 'DATA SOURCE NAME' and
OBJVERS = 'A' AND
( FIELD = 'FIELD NAME' ) .
loop at itab.
itab-SELECTION = ' ' .
UPDATE ROOSFIELD FROM itab.
commit work .
endloop.
Regards
Ramakanth.
"Assign points if useful"
Hi Ravi,
Goto se11 -> ROOSFIELD table and see if you see the new fields for your datasource. If you see the new fields then execute this program:
tables ROOSFIELD. Update ROOSFIELD set SELECTION = 'X' where OLTPSOURCE = '0MATERIAL_ATTR' and FIELD = 'BRAND_ID'.
Execute the program for each of the field and check the entries in RSA6/RSO2.
Bye
Dinesh
Add a comment