on 2007 Mar 29 7:09 AM
Hi all..
pls tell me the code...
Get all the service line items in the contracts (Select EKPO line items where item category(PSTYP) is service. item category 9 is service.
. use the Package number(ESLL-PACKNO) from EKPO
Select on ESLL table using this Package number and get the Sub package Number (ESLL-SUB_PACKNO)
Select again on table ESSL to get the Service master number (ESLL-SRVPOS)
thanks in advance.
palavi.
Hi,
data : begin of t_data occurs 0,
ebelp like ekpo-ebelp,
packno like ekpo-packno,
end of t_data.
select ebelp packno into corresponding fields of table t_data
from ekpo where PSTYP = '9'.
select sub_packno srvpos into corresponding fields of table t_data1
from esll for all entries in t_data where packno = t_data-packno.
Define the table t_data1 accordingly to get the data into it.
Regards,
Himanshu
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
95 | |
9 | |
8 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.