cancel
Showing results for 
Search instead for 
Did you mean: 

Standard Extractor fields not visible in RSA6

former_member541575
Participant
0 Kudos

hi

i am facing one issue regarding the standard extractor 0GL_ACCOUNT_TEXT

i am seeing there are 8 fields in Extract structure of 0GL_ACCOUNT_TEXT but only 5 fields are visible in RSA6

the 3 fields are not at all visible in RSA6. i want to extract all 8 fields how can i add these 3 fields of Extract structure .

regards

atul

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member182516
Active Contributor
0 Kudos

Hi,

In DS : 0GL_ACCOUNT_TEXT - you mean the 3 fileds (TXTMD,DATETO and DATEFROM) fileds are hidden right.

if you check in the table: ROOSFIELD

you can see that the option 'A' is selected for those 3 fileds change the value to Space(blank)

A - Field in OLTP and BW Hidden by SAP

Blank or space - No Selection Possible, Visibility Set

Change the setting in this table and check if you can see those fields or not.

Regards

KP

Former Member
0 Kudos

those 3 fields would be hidden... check this table ROOSFIELD.

The selection field should have 'A' for those 3 fields, change it to ' '(SPACE), then you should be able to view these fields in RSA6.

If you dont have access to change the table values then write the below code in a program and execute it

update ROOSFIELD SET SELECTION = ' ' WHERE OLTPSOURCE = '0GL_ACCOUNT_TEXT' AND

OBJVERS = 'A' AND

FIELD = 'fieldnames'.

--- Thanks...