ā2007 Aug 17 9:02 AM
Hi Gurus,
I have a requirement as below,
Select all Orders from VKDFS where VKORG = Parameter ID VKO and VBTYP = C.
<b>i dont know the VKORG = Parameter ID VKO</b>. Can anybody help me out in this.
ā2007 Aug 17 9:06 AM
Hi,
the parameter id for VKORG is VKO only.u can check in tcode->va01,there in the screen u will find VKORG,press F1 and see the technical information ,u will get..
Regards,
Nagaraj
ā2007 Aug 17 9:47 AM
hi,
Yah i know that, but with respect to that parameter id in select query, how will we retrieve the records?
ā2007 Aug 17 9:53 AM
Hi...
This is the Code for that:
DATA : V_VKORG TYPE VBAK-VKORG.
<b>GET PARAMETER ID 'VKO' FIELD V_VKORG.</b>
SELECT * FROM <YOUR TABLE> WHERE VKORG = V_VKORG
AND <ANY OTHER CONDTION>.
<b>Reward if Helpful</b>
ā2007 Aug 17 10:45 AM
Hi,
Actually I dont have any VKORG field in My Selection Screen.
then hw it is possible.?