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

WS_DELIVERY_UPDATE parameters

AJeB
Participant
0 Likes
10,919

Hi what is the purpose of
synchron = 'X'
and
update_picking ='X'

in Function Module WS_DELIVERY_UPDATE

or give me a reliable link where I can understand each purpose of the WS_DELIVERY_UPDATE parameters


i can't find the in internet the purpose of this two parameter
i tried to look in FM Documentation and the description of parameters but the the description ins
DE-EN-LANG-SWITCH-NO-TRANSLATION

CALL FUNCTION 'WS_DELIVERY_UPDATE'

EXPORTING

vbkok_wa = lv_vbkok

synchron = 'X'

delivery = lv_delivery_pgi

update_picking = 'X'

if_database_update = lv_update_picking

if_error_messages_send_0 = 'X'

commit = lv_commit

IMPORTING

ef_error_any_0 = lv_ef_error_any_0

ef_error_in_item_deletion_0 = lv_ef_error_in_item_deletion_0

ef_error_in_pod_update_0 = lv_ef_error_in_pod_update_0

ef_error_in_interface_0 = lv_ef_error_in_interface_0

ef_error_in_goods_issue_0 = lv_ef_error_in_goods_issue_0

ef_error_in_final_check_0 = lv_ef_error_in_final_check_0

ef_error_partner_update = lv_ef_error_partner_update

ef_error_sernr_update = lv_ef_error_sernr_update

TABLES

vbpok_tab = lt_vbpok_tab

prot = lt_prot.


1 ACCEPTED SOLUTION
Read only

Dominik_Tylczynski
SAP Champion
SAP Champion
0 Likes
10,298

Hello bolivs22

SYNCHRON = X means that updates will be posted synchronously, not with update tasks. See SAP Help on the details of both modes Synchronous and Asynchronous Updates

Synchronous updates are implemented here with SET UPDATE TASK LOCAL statement.

UPDATE_PICKING = X activates update of picking data and status of the outbound delivery.

See the blog Delivery Picking, Packing, Unpacking, Goods Issue. on various use cases of WS_DELIVERY_UPDATE

Best regards

Dominik Tylczynski

Hi what is the purpose of
synchron = 'X'
and
update_picking ='X'

in Function Module WS_DELIVERY_UPDATE

or give me a reliable link where I can understand each purpose of the WS_DELIVERY_UPDATE parameters


i can't find the in internet the purpose of this two parameter
i tried to look in FM Documentation and the description of parameters but the the description ins
DE-EN-LANG-SWITCH-NO-TRANSLATION

CALL FUNCTION 'WS_DELIVERY_UPDATE'

EXPORTING

vbkok_wa = lv_vbkok

synchron = 'X'

delivery = lv_delivery_pgi

update_picking = 'X'

if_database_update = lv_update_picking

if_error_messages_send_0 = 'X'

commit = lv_commit

IMPORTING

ef_error_any_0 = lv_ef_error_any_0

ef_error_in_item_deletion_0 = lv_ef_error_in_item_deletion_0

ef_error_in_pod_update_0 = lv_ef_error_in_pod_update_0

ef_error_in_interface_0 = lv_ef_error_in_interface_0

ef_error_in_goods_issue_0 = lv_ef_error_in_goods_issue_0

ef_error_in_final_check_0 = lv_ef_error_in_final_check_0

ef_error_partner_update = lv_ef_error_partner_update

ef_error_sernr_update = lv_ef_error_sernr_update

TABLES

vbpok_tab = lt_vbpok_tab

prot = lt_prot.


3 REPLIES 3
Read only

Dominik_Tylczynski
SAP Champion
SAP Champion
0 Likes
10,299

Hello bolivs22

SYNCHRON = X means that updates will be posted synchronously, not with update tasks. See SAP Help on the details of both modes Synchronous and Asynchronous Updates

Synchronous updates are implemented here with SET UPDATE TASK LOCAL statement.

UPDATE_PICKING = X activates update of picking data and status of the outbound delivery.

See the blog Delivery Picking, Packing, Unpacking, Goods Issue. on various use cases of WS_DELIVERY_UPDATE

Best regards

Dominik Tylczynski

Read only

0 Likes
10,298

how about the other importing parameters

do you have a links/blogs i can read?
or can you share some of your knowledge about the other parameters?


VBKOK_WA

SYNCHRON

NO_MESSAGES_UPDATE

COMMIT

DELIVERY

UPDATE_PICKING

NICHT_SPERREN

IF_CONFIRM_CENTRAL

IF_WMPP

IF_GET_DELIVERY_BUFFERED

IF_NO_GENERIC_SYSTEM_SERVICE

IF_DATABASE_UPDATE

IF_NO_INIT

IF_NO_READ

IF_ERROR_MESSAGES_SEND_0

IF_NO_BUFFER_REFRESH

IT_PARTNER_UPDATE

IT_SERNR_UPDATE

IF_NO_REMOTE_CHG

IF_NO_MES_UPD_PACK

IF_LATE_DELIVERY_UPD

IF_SIMULATE

IF_REPLACE_HUS

G_SHPMT_AUFRUFER

Read only

0 Likes
10,298

bolivs22 I'm not aware of a document detailing all parameters of WS_DELIVERY_UPDATE. The function is not released for customer usage by SAP. Therefore it is not documented. If I need to use the function and don't know why, I'm looking for blogs, Q&A for my specific use case. I'd suggest the same approach - search Google for WS_DELIVERY_UPDATE.