‎2009 Jan 21 4:48 AM
hello experts,
I need to check whether a field lies between the input parameter which is a range,if it lies within then i need to append it to exporting parameter.
could u plz tell me how to do it??
Regards,
T
‎2009 Jan 21 4:51 AM
select <fieldname> from <table> where <fieldname> IN <Inputparameter>..
If sy-subrc = 0.
Append <ur final table>
endif.
Hope this is what you are looking for.
‎2009 Jan 21 4:51 AM
select <fieldname> from <table> where <fieldname> IN <Inputparameter>..
If sy-subrc = 0.
Append <ur final table>
endif.
Hope this is what you are looking for.
‎2009 Jan 21 4:56 AM
hello.
This is what is needed..
see whether DBLFZ field of VZZKOKO lies between the I_TERM_RANGE. If it lies within the range then add it to the exporting parameter.
this I_TERM_range has low anh high..
how do i check this condition.?
Please help
Regards,
T