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

BAPI required

Former Member
0 Likes
826

can any one tell me the BAPI for transcation VL31N Tcode.

Very urgent...................

6 REPLIES 6
Read only

Former Member
0 Likes
771

Hi,

Please check out this BAPI

BAPI_IBDLV_CREATE_FROM_OBDLV

Some other BAPI's

BAPI_INB_DELIVERY_CONFIRM_DEC

BAPI_INB_DELIVERY_SAVEREPLICA

BAPI_INB_DELIVERY_CHANGE

BBP_INB_DELIVERY_CREATE

BBP_INB_DELIVERY_UPDATE

Regards

Padmam.

Read only

Former Member
0 Likes
771

Hi

see the bapi

BAPI_INB_DELIVERY_SAVEREPLICA

<b>Reward points for useful Answers</b>

Regards

Anji

Read only

Former Member
0 Likes
771

Hi,

Check this FM BBP_INB_DELIVERY_CREATE.

DATA: IS_INB_DELIVERY_HEADER LIKE BBP_INBD_L.

-


IS_INB_DELIVERY_HEADER-DELIV_EXT = 12121

IS_INB_DELIVERY_HEADER-DELIV_DATE = 08/16/2006

DATA: T_DETAIL LIKE LIKE BBP_INBD_D OCCURS 0 WITH HEADER LINE.

-


T_DETAIL-MATERIAL = 'xxx'.

T_DETAIL-DELIV_QTY = '10.000'.

T_DETAIL-UNIT = 'EA'.

T_DETAIL-PO_NUMBER = '45XXXXXX.

T_DETAIL-PO_ITEM = '000010'.

APPEND T_DETAIL.

DATA: T_RETURN LIKE BAPIRETURN OCCURS 0 WITH HEADER LINE.

DATA: V_VBELN TYPE VBELN_VL.

CALL FUNCTION 'BBP_INB_DELIVERY_CREATE'

EXPORTING

is_inb_delivery_header = is_inb_delivery_header

IMPORTING

EF_DELIVERY = V_VBELN

tables

it_inb_delivery_detail = T_DETAIL

return = T_RETURN

<b>Reward points</b>

Regards

Read only

0 Likes
771

hi ,

i tried to replicate this in my system but it is saying date varience for the document

occurs

can any one help me out how to get out of this

the mandatory paramenter needed to be passed ............

Read only

Former Member
0 Likes
771

You can use :

rv_delivery_create -> use where used list to get sample program

gn_delvery_create -> use where used list to get sample program

Thanks

Seshu

Read only

Former Member
0 Likes
771

Hi siva,

Create/ add/ unpack HU assigned to a specific inbound delivery

use bapi....

PROCESS_HU_INBOUND_DLVRY

If useful reward points.

Thanks

Sanket.