‎2008 Jun 03 11:06 AM
hi all,
Customer name is required in the output, but the field is yet to be defined in the PS table PROJ, when the field u2018KUNNRu2019 is appended.
Pass the WBS element to the Table PROJ & collect the customer code u2018KUNNRu2019.
Pass the customer code u2018KUNNRu2019 to the Table KNA1 & collect the customer description <NAME1>
for this how i can code pl send me immediatly very urgent.
thanks.
‎2008 Jun 03 11:12 AM
Hi,
Please find below queries.....
select *
from proj
into table it_proj
where pspnr = pspnr.
select kunnr name1
from kna1
into table it_kna1
for all entries in it_proj
where kunnr eq it_proj-kunnr.
after fetching data with above sql queries.
u can add customer name in final internal table from it_kna1.
by using read statment in loop.
Thanks & Regards
Gupta..
‎2008 Jun 03 11:12 AM
Hi,
Please find below queries.....
select *
from proj
into table it_proj
where pspnr = pspnr.
select kunnr name1
from kna1
into table it_kna1
for all entries in it_proj
where kunnr eq it_proj-kunnr.
after fetching data with above sql queries.
u can add customer name in final internal table from it_kna1.
by using read statment in loop.
Thanks & Regards
Gupta..