Hi Faheemuddin,
Yes, you can choose stock transfer foreground and enter the WM Movement Type and select the check box confirm immediately. The TO will be confirmed based on the WM Movement Type.
Regards,
Ramesh N
Hi Faheemuddin,
Yes, you can choose stock transfer foreground and enter the WM Movement Type and select the check box confirm immediately. The TO will be confirmed based on the WM Movement Type.
Regards,
Ramesh N
Hi,
could you post the error screen shot ?
C K Reddy
thanks ramesh..!!
Hi Faheemuddin,
If it is helpful mark the answer as correct and close it.
Regards,
Ramesh N
Hi!
Check HU status in /scwm/pack, tab "Detail 2"
BR, Alex.
Hi Saee Sankar,
As mentioned by Markus Kass you can start EWM Courses in SAP Learning Hub. For technical stuff the OSS note is “1414179 Technical documents for software development in EWM”. It has three documents to help understand EWM BOPF architecture and sample programming guidelines. It should be a good starting point.
Regards,
Ramesh N
Hi,
how did you make the goods receipt?
Was it done together and made the delivery document locked?
Can you please share your log?
Regards,
Jobi
Hi,
does your outbound delivery in ERP show any reference to the reservation?
And the process is not supposed to work like this with EWM....
Brgds
Juergen
There are also several new books for EWM available (one will be available in the next weeks).
For example:
Warehouse Management with SAP EWM (SAP PRESS) - by SAP PRESS
SAP EWM Architecture and Programming (SAP PRESS) - by SAP PRESS
Hi EWM Expert's,
We have an old open ODO,
The customer doesn't want the parts, so I'm trying to cancel the WT (then zero the ODO & get it to copmleted status), but the error message "unable to determine product" appears & the WT will not cancel.
please see attached file for more details.
please Advice.
Thanks
Vy
Hi,
check the ' all movements for products ' under 'documents' node in the monitor.
you can get the some more idea about the product movements. It seems product is not available in the source bin.
C K Reddy
Hi Senthil,
I belive the help.sap.com explains nicely how to fill the structure data, refer to link.
There is a second column which represents a nested HU.
You need at least three entries in the upload file for stock in nested HU
item category 1 for highest level HU
item category 2 for inner HU
item category 4 for stock in inner HU
If you have achieved this please share your exmaple in the community.
Regards
Jörg
Hi Pal,
could you please give me sample code of FM: /SCWM/DLV_OD_CREATE_PAR.
I have called function module successfully but unable to save data into database.
Regards,
Kittu.
use class /scwm/cl_dlv_management_prd and method create_od
DATA: lo_message TYPE REF TO /scwm/cl_dm_message_no,
lo_dlv_management_prd TYPE REF TO /scwm/cl_dlv_management_prd.
CREATE OBJECT lo_dlv_management_prd.
CALL METHOD lo_dlv_management_prd->create_od
EXPORTING
iv_whno = p_lgnum
* iv_no_lock_in_main_process =
* iv_lock_check_queue =
iv_parallel_booking = space
* iv_object_instance_check = 'X'
it_od_creation = lt_od_creation
* iv_no_tu_sync =
it_tu_act_key = lt_tu_act_key
IMPORTING
eo_message = lo_message
ev_parallel_booking_done = lv_parallel_booking_done
et_lock_errors = lt_lock_errors
et_par_entries_not_changed_err = lt_par_entries_not_changed_err
et_par_entries_saved = lt_par_entries_saved
et_od_created = lt_od_created
et_items_new = lt_items_new
et_par_object_instances_exist = lt_par_object_instances_exist.
CALL METHOD lo_message->get_messages
RECEIVING
et_message = lt_message.
** Checking for errors.
SORT lt_message BY msgty.
READ TABLE lt_message WITH KEY msgty = gc_e
TRANSPORTING NO FIELDS
BINARY SEARCH.
IF sy-subrc IS INITIAL.
MESSAGE e008(zroute) INTO gv_message.
EXIT.
ELSE.
REFRESH lt_message.
*** call SAVE method to save the newly created ODs
CALL METHOD lo_dlv_management_prd->save
EXPORTING
iv_synchronously = abap_false
iv_do_commit_work = abap_true
iv_wait = abap_true
IMPORTING
* ev_rejected =
* ev_rollback_work_done =
* ev_commit_work_done =
et_message = lt_message.
If you are using FM then use commit and wait after that.
Hi Joerg
I have tried with all the possibilities but it is not uploading....it is throwing some error message.....
If you have already executed for nested HUs, please share it to me the uploading template with data's.....let me also try to follow the same and update it
Senthil
Hi Ramesh ,
Thanx for suggestion
Hi Andreas , ,
its been resolved
Thanks for showing your interest
Hi Pal,
Thank you for given code. It's working fine.
Once again thank you and great help.
Regards,
Kittu