2008 Aug 26 12:14 PM
hi frnds.
i want to retrieve the name of the person who created the billing doc i.e vbrk-ernam and his telephone no
which is in USR03 table (USR03-TELNR).
how to write the query for it.
thnx daniel
hi frnds.
i want to retrieve the name of the person who created the billing doc i.e vbrk-ernam and his telephone no
which is in USR03 table (USR03-TELNR).
how to write the query for it.
thnx daniel
2008 Aug 26 12:16 PM
2008 Aug 26 12:20 PM
Hi Daniel,
Check with this query.
SELECT SINGLE TELNR
FROM USR03 AS A INNER JOIN VBRK AS B
ON A~BNAME = B~ERNAM
INTO GV_TELEPH.
Thanks,
Vinay
2008 Aug 26 12:22 PM
Hi Daniel,
Use JOIN between VBRK and USR03 and get the telephone number.
SELECT SINGLE TELNR
FROM USR03 AS A INNER JOIN VBRK AS B
ON A~BNAME = B~ERNAM
INTO GV_TELPH.
Thanks,
Vinay
2008 Aug 26 12:47 PM
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |