‎2012 Apr 27 9:01 AM
I need to check select-options using READ TABLE.
Is that possible?
Moderator message: please try yourself and search for information before posting, e.g. ABAP F1 help.
Message was edited by: Thomas Zloch
‎2012 Apr 27 9:03 AM
Hi,
Yes it is possible! Check the value of field LOW or HIGH.
Regards,
Jake
‎2012 Apr 27 9:25 AM
Like this?
READ table so_sotp with key low = vbpa-kunnr.
The low means the starting range of the select-options which I enter?
I want to check the select-options using the statement below. How is it gonna combine the above and below statement?
READ TABLE it_vbpa
INTO wa_vbpa WITH KEY vbeln = wa_vbak-vbeln
parvw = 'AG'.
‎2012 Apr 27 9:15 AM
Read statement doesn't support IN operator.
So either you need to read a select option or loop at select option (based on your requirement)and then you can use Read Table with select option values.
‎2012 Apr 27 9:23 AM
Hi,
You have to use the selection table to get the values for 'High' and 'Low' values of the select-field.
‎2012 Apr 27 9:24 AM
select-options is a range in program, it is a table with header line, of cour you can use read.
‎2012 Apr 27 9:30 AM
of course you can use read table but pay attention to the SIGN and OPTION fields in the table. You have to interpret the LOW and HIGH fields with regard to the sign and option fields.
Regards,
Dirk
‎2012 Apr 27 9:43 AM
I really have no idea on how to work with those 2 statements.