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

Error missing data in BAPI interface: IF_VSTEL

arindam_samanta
Participant
0 Likes
9,747

Hi Experts,

I am using FM 'BAPI_OUTB_DELIVERY_CREATE_STO' to create STO. After executing one error is coming:

Missing data in the BAPI interface: IF_VSTEL .

But , in debugging mode, this error is not coming.

My code is:

CALL FUNCTION 'BAPI_OUTB_DELIVERY_CREATE_STO'
         IMPORTING
           delivery          = l_vbeln
           num_deliveries    = l_num
         TABLES
           stock_trans_items = lt_stock_trans_items
           return            = lt_return.

After that I execute 'BAPI_TRANSACTION_COMMIT'.

How to solve this issue?

Any possible solution would be gratefully accepted.

Thanks,

Arindam Samanta.

2 REPLIES 2
Read only

DavidLY
Product and Topic Expert
Product and Topic Expert
0 Likes
4,669

Hello,

Implement the SAP note 1812580 will help you to solve this issue.

Regards,

David

Read only

Former Member
0 Likes
4,669

I had the exact same problem and I just saw your message. I know it is a late answer. But I solved it with. 'WAIT UP TO 3 SECONDS' after 'BAPI_TRANSACTION_COMMIT'.

Regards