Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

iDOC_EXIT

Former Member
0 Likes
823

HI ,

Please kindly give me the solution.

i have data in idoc basic type orders03.

segments : e1edk02-belnr purchase ordernumber,

e1edp01-posex purchase order item,

e1edp01-menge quantity.

my rquairment is:

1) i have to get the Sales order number and sales order item from vbfa.

2)i have to get the quantity from the vbep for this sales order.

3)i need to pass these values to the exact fields of internal tables in the funcion moudle EXIT_SAPLVEDB_001.

BUT i am not able to get this.

i am writing the code in include ZXVDBU01.

PLEASE SEND NE THE CODE .

IT IS VERY VERY URGENT.

Kindly can any one help me.

Thanks in Advance.

Thanks&Regards.

Ramu.

HI ,

Please kindly give me the solution.

i have data in idoc basic type orders03.

segments : e1edk02-belnr purchase ordernumber,

e1edp01-posex purchase order item,

e1edp01-menge quantity.

my rquairment is:

1) i have to get the Sales order number and sales order item from vbfa.

2)i have to get the quantity from the vbep for this sales order.

3)i need to pass these values to the exact fields of internal tables in the funcion moudle EXIT_SAPLVEDB_001.

BUT i am not able to get this.

i am writing the code in include ZXVDBU01.

PLEASE SEND NE THE CODE .

IT IS VERY VERY URGENT.

Kindly can any one help me.

Thanks in Advance.

Thanks&Regards.

Ramu.

5 REPLIES 5
Read only

former_member404244
Active Contributor
0 Likes
721

Hi Ramu,

u can get the sales order number and item from table DXVBAP and quantity from DIVBEP tables whcih r present in the function exit u specified.check the same ..

Regards,

Nagaraj

Read only

Former Member
0 Likes
721

Hi ramu,

Your FM EXIT_SAPLVEDB_001 is nothing but the first user exit triggered, if you can do a where-used-list you will understand. Now the FM has VBAK, VBAP, VBEP, VBPA etc filled with different names DXVBAK,DXVBAP, DIVBEP, DXVBPA etc.You can take these values & populate in your code & modify the data.

For example in your Include ZXVDBU01.

Use case.

CASE SEGMENT-SEGNAM.

WHEN 'E1EDK02'.

......

MOVE YOUR VALUES HERE...

ENDCASE.

Message was edited by: Phani Kiran Nudurupati

Read only

0 Likes
721

Hi ,

Is these internal table contians any data.? or do we need to passs the data to these internal tables?

Because i am not getting any data in these tables in debug mode.

they have given one idoc number as test data.

is it enough or do i need to ask anything.

Thanks & Regards.

Ramu.

Read only

0 Likes
721

Hi,

These internal tables contain data.

Read only

former_member404244
Active Contributor
0 Likes
721

Hi Ramu,

u should get the data in thse tables,better ask some more idoc's and test it.

Regards,

Nagaraj