cancel
Showing results for 
Search instead for 
Did you mean: 

Selection on enhanced fields

former_member360228
Contributor
0 Kudos

Hi,

I have a standard SAP extractor 0CO_PC_PCP_30 which i have enhanced from multiple tables. So is it possible to filter on the enhanced fields at the info-package level?

I have selected them as selection in RSA6, tried filtering on them but it didn't work.

Any kind of help would be great.

Regards,

Arminder Singh

Accepted Solutions (1)

Accepted Solutions (1)

former_member186445
Active Contributor
0 Kudos

not as such, no. you have three options. first option is to use a start routine and delete unwanted records. second option is to put the selection criteria in a dtp.

last option is to delete unwanted records in the user exit. the selection criteria are stored in an internal table (can't remember the name right now) that is available through the entire extraction, even in the user exit.

so you could make a range of it. and then do something like: delete e_t_date where XXXX not in RANGE.

the choice depends on the number of records you need to delete. if the number is small, use option 1 or 2. else you could go for option 3, but i would avoid that one...

M.

former_member360228
Contributor
0 Kudos

Hi,

Thanks for your help, i got the table name I_T_SELECT. And its working now.

Regards,

Arminder Singh

Answers (0)