2008 Jan 03 10:40 AM
Hi All
Can anyone tell me in which table i cann access the field WEMNG is.I can see that in table S012.I want the field aprt from table S012.
VIjay
2008 Jan 03 10:43 AM
Hi All
Can anyone tell me in which table i cann access the field WEMNG is.I can see that in table S012.I want the field aprt from table S012.
VIjay
2008 Jan 03 10:43 AM
2008 Jan 03 10:43 AM
2008 Jan 03 10:44 AM
hi
Please tell me a table where both MATNR and WEMNG are placed
Vijay
2008 Jan 03 10:47 AM
2008 Jan 03 10:53 AM
Have look at this query...which I'm using to get WEMNG..you'll get some idea..
DATA : BEGIN OF ekpo_tab OCCURS 0.
DATA : menge LIKE eket-menge,
wemng LIKE eket-wemng,
webaz LIKE ekpo-webaz,
eindt LIKE eket-eindt,
END OF ekpo_tab.
SELECT eketmenge eketwemng ekpowebaz eketeindt
INTO CORRESPONDING FIELDS OF TABLE ekpo_tab FROM ekpo
INNER JOIN ekko ON ekkoebeln = ekpoebeln
INNER JOIN eket
ON eketebeln = ekpoebeln AND eketebelp = ekpoebelp
WHERE ekpoloekz = '' AND ekpoelikz = ''
AND ekpomatnr = p_matnr AND ekpowerks = p_werks
AND ( ekkobsart = 'NB' OR ekkobsart = 'LP' ).
2008 Jan 03 10:53 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |