Quantcast
Channel: SCN: Message List - SAP Extended Warehouse Management (SAP EWM)
Viewing all 5578 articles
Browse latest View live

Re: Multipe HU's to Bin to Bin transfer

$
0
0

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


Re: Unable to Create Warehouse Task in PRDI , HU is Blocked

$
0
0

Hi,

 

could you post the error screen shot ?

 

C K Reddy

Re: Multipe HU's to Bin to Bin transfer

Re: Multipe HU's to Bin to Bin transfer

$
0
0

Hi Faheemuddin,

 

If it is helpful mark the answer as correct and close it.

 

Regards,

Ramesh N

Re: Unable to Create Warehouse Task in PRDI , HU is Blocked

$
0
0

Hi!

 

Check HU status in /scwm/pack, tab "Detail 2"

 

BR, Alex.

Re: Need to start learning in EWM

$
0
0

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

Re: Unable to Create Warehouse Task in PRDI , HU is Blocked

$
0
0

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

Re: Reservation no. in EWM

$
0
0

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


Re: Need to start learning in EWM

Unable to Determine the Product

$
0
0

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

Re: Unable to Determine the Product

Re: Unable to Determine the Product

$
0
0

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

Re: Initial Stock Upload for Nested HUs

$
0
0

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

 

http://help.sap.com/saphelp_ewm93/helpdata/en/49/fbcea887c24f47a2518759bd53e5b3/content.htm?frameset=/en/dc/cecb53ad377114e10000000a174cb4/frameset.htm&current_toc=/en/dc/cecb53ad377114e10000000a174cb4/plain.htm&node_id=5&show_children=false

Re: Does any one know the FM or BAPI to "Generate Outbound Delivery for TU" ?

$
0
0

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.

Re: Does any one know the FM or BAPI to "Generate Outbound Delivery for TU" ?

$
0
0

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.


Re: Does any one know the FM or BAPI to "Generate Outbound Delivery for TU" ?

$
0
0

If you are using FM then use commit and wait after that.

Re: Initial Stock Upload for Nested HUs

$
0
0

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

Re: In prd t.code is giving short dump

$
0
0

Hi Ramesh ,

 

Thanx for suggestion

Re: In prd t.code is giving short dump

$
0
0

Hi Andreas ,  ,

 

 

 

its been resolved

 

 

Thanks  for showing your interest

Re: Does any one know the FM or BAPI to "Generate Outbound Delivery for TU" ?

$
0
0

Hi Pal,

 

 

Thank you for given code. It's working fine.

 

 

Once again thank you and great help.

 

 

Regards,

Kittu

Viewing all 5578 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>