‎2009 Jan 21 4:38 AM
HI Experts,
My issue is i need to select data from marc table.
Example:
select matnr prctr from marc into corresponding fields of table it_marc
where matnr in so_matnr and
prctr is not initial. <----
My issue is i need to make sure prctr field dont have any value during my selection.
Thank you very much.
‎2009 Jan 21 4:41 AM
Hi
Try this....
select matnr prctr from marc into corresponding fields of table it_marc
where matnr in so_matnr and
prctr NE ' ' .
‎2009 Jan 21 4:43 AM
Hi Saravannan
select matnr prctr from marc into corresponding fields of table it_marc
where matnr in so_matnr and
prctr is not initial. <----
You can use...
SELECT matnr prctr FROM marc
INTO TABLE it_marc
WHERE matnr IN so_matnr
AND prctr eq ' ' .
‎2009 Jan 21 4:44 AM
Hi,
>
> HI Experts,
> My issue is i need to select data from marc table.
> Example:
>
> select matnr prctr from marc into corresponding fields of table it_marc
> where matnr in so_matnr and
> prctr is not initial. <----
>
> My issue is i need to make sure prctr field dont have any value during my selection.
>
> Thank you very much.
in select query you mentioned prctr is not initial,and you are saying it should not contain any value during the selection.
i didnt get you, can you explain?
‎2009 Jan 21 4:49 AM
Hi,
First collect data with check PRCTR. Next use read itab check PRCTR <> ' '.and move other internal table.
Regards
Md.MahaboobKhan
‎2009 Jan 21 4:49 AM
select matnr prctr from marc
into corresponding fields of table it_marc
where matnr in so_matnr and
prctr EQ SPACE .
‎2009 Jan 21 4:50 AM