This Badi serves the purpose i assume and hence marking it as answer however i am yet to implement is as this is being pending for approval. Will post the results when implemented.
Re: Exits, Badi during warehouse task creation
Re: Kit To Order Error
Hi Suraj ,
Thanks for reply. I have configured quantity role profile.Now when i create outbound delivery order (ODO) , i am not facing any error but VAS Order is not created automatically. Please help me to resolve the issue.
Thanks
Tapan
Re: Putaway Strategy error
Hi,
ah, you use the new multi-depth storage feature. Have not worked with that one yet (and not sure if I ever will). But you have set up everything as it says here: Multi-Depth Storage - Material Flow System (MFS) - SAP Library?
Brgds
Juergen
Re: Slotting - storage section indicator
... And in order to have storage type views, you need to have a storage type search sequence key to the putaway removal indicator.
Juergen
Re: Report to get all the outstanding inbound documents (include EGR)
Hi,
how about /SCWM/GRWORK, the Goods Receipt Workload? I think it does not show the number of deliveries, but that may be not a good number anyway.
Brgds
Juergen
Re: Putaway Strategy error
Hi Jürgen,
yes I use this one. Why are you sure, you never will? IIs it as bad?
Yes, I already set up customizing due to this description, but it still didn't helped.
BR
Denis
Re: Slotting - storage section indicator
Hi Juergen,
Thank you for your reply. Issue is resolved. I have corrected level no and counter - for PACI and Storage section indicator in determination procedure. Earlier , it was with following combination.
For PACI and Section indi : Lvno and Ctr --- 0 0 and 0 0; Now, it's changed to 0 0 and 1 0.
Not sure, how it is working. Any suggestion on the above logic.
Thank you...
Srini
Re: VAS - Kit to Stock - without BOM in EWM
Any help here??
Re: Deficit of SL Unrestricted Use in AFS1
Hi Suraj,
Thank you for your reply and will do it the same way which you are told me but right now my system is not working with network issues once i get the system will try and let you know.
Thanks
VIJAY
How to find HU number details for outbund delivery Tcode : /n/scwm/prdo
Hi All,
I have requirement to fetch package material, total weight etc for outbound delivery.
I am using tcode /n/scwn/prdo. In item level under tab HU there is details like handling unit, pack material etc.
that i want to populate in my smart-form.
I already have information like TU number ,Document id .How do i use this information for fetching Handling Unit.
I tried to use /SCWM/HUREF but this is not relevant to me.
Kindly help here .
Thanks,
Rama Trivedi
Re: Print
Hi Konar,
Goto SPRO->Extended warehouse management > Cross-process settings > Shipping and Receiving > Message Processing > Define action conditions for Transport units.
double click on Transport unit, if you find your form name in the right hand side select your form and go to the processing details tab strip which is there in lower left hand side, go to printer tab strip lower right hand side there you can find no of copies option.
Regards,
Murali Dasari....
Queues need to clear in SMQ1 in EWM.
Dear all,
Greetings..
In EWM system SMQ1 one queue got stuck with the following error.
The associated outbound delivery for the queue, goods issue completed but queue got failed
Please find the attachment of error screen shots.
Requesting you suggest us how to clear this queue from SMQ1.
Regards
Divakar
Re: How to find HU number details for outbund delivery Tcode : /n/scwm/prdo
Hi Rama,
Please check is this table is going to full fill your requirement..
Transparent Table /SCWM/HUHDR
Thanks,
Ramesh Kumar. G
Re: Linkage of PPF Action Definition to Logical System
Hi,
I move it EWM space where you can get help from more experts in this area.
BR
Claire
Re: Mass Change BADI
Hi,
Does the BADI used in CRM system? If so I will help to move the thread to CRM space.
BR
Claire
Re: Mass Change BADI
Thank you for the reply Claire. No, it is in EWM System. It is okay if you explain with respect to CRM space. We will try to compare and find out the solution. Thanks.
Re: Mass Change BADI
Then I help to move it to EWM space.
Claire
Re: How to find HU number details for outbund delivery Tcode : /n/scwm/prdo
Thanks for your reply.
I have a scenario in which i need to trigger form in which handling unit info is required and this forms gets triggered when i do Goods issue against OBD.
Issue here is whenever i do goods issue HU no disappears from /SCWM/HUHDR.
Can you please tell me alternate table in which it get moves.
Re: Goods Receipt HU for Inbound delivery
I found out on my own how to do this. If someone is interested, this the solution:
DATA lo_sp_prd_in TYPE REF TO /scdl/cl_sp_prd_inb.
DATA lo_message_box TYPE REF TO /scdl/cl_sp_message_box.
DATA lt_sp_a_head TYPE /scdl/t_sp_a_head.
DATA ls_sp_a_head TYPE /scdl/s_sp_a_head.
DATA ls_sp_k_head TYPE /scdl/s_sp_k_head.
DATA lt_sp_k_head TYPE /scdl/t_sp_k_head.
DATA ls_sp_a_hu TYPE /scdl/s_sp_a_hu.
DATA lt_sp_a_hu TYPE /scdl/t_sp_a_hu.
DATA lv_rejected TYPE boolean.
DATA lt_return_codes TYPE /scdl/t_sp_return_code.
DATA ls_sp_a_hu_scwm TYPE /scwm/s_sp_a_hu.
DATA lt_sp_a_hu_scwm TYPE /scwm/t_sp_a_hu.
DATA ls_sp_a_myhu_scwm TYPE /scwm/s_sp_a_hu.
DATA ls_sp_k_hu_scwm TYPE /scwm/s_sp_k_hu.
DATA lt_sp_k_hu_scwm TYPE /scwm/t_sp_k_hu.
"Create service provider for inbound delivery
CREATE OBJECT lo_sp_prd_in
EXPORTING
io_message_box = lo_message_box. " Service Provider Nachrichtenverwaltung
ls_sp_k_head-docid = is_proch-docid.
APPEND ls_sp_k_head TO lt_sp_k_head.
"select delivery head data
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_aspect~select
EXPORTING
inkeys = lt_sp_k_head
aspect = /scdl/if_sp_c=>sc_asp_head
IMPORTING
outrecords = lt_sp_a_head
rejected = lv_rejected
return_codes = lt_return_codes.
"Lock delivery
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_locking~lock
EXPORTING
inkeys = lt_sp_k_head
aspect = /scdl/if_sp_c=>sc_asp_head
lockmode = 'E'
IMPORTING
rejected = lv_rejected
return_codes = lt_return_codes.
"If lock has been successful
IF lv_rejected = abap_false.
"select hu data from delivery
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_aspect~select_by_relation
EXPORTING
" relation = /scdl/if_sp_c=>sc_rel_head_to_hu
relation = /scwm/if_sp_c=>sc_rel_head_to_hu
inrecords = lt_sp_k_head
aspect = /scdl/if_sp_c=>sc_asp_head
* options =
IMPORTING
outrecords = lt_sp_a_hu_scwm
rejected = lv_rejected
return_codes = lt_return_codes.
LOOP AT lt_sp_a_hu_scwm INTO ls_sp_a_hu_scwm.
"determine hu data which has to be moved.
IF ls_sp_a_hu_scwm-huno = /scwm/huhdr-huident.
ls_sp_a_myhu_scwm = ls_sp_a_hu_scwm.
MOVE-CORRESPONDING ls_sp_a_hu_scwm TO ls_sp_k_hu_scwm.
APPEND ls_sp_k_hu_scwm TO lt_sp_k_hu_scwm.
EXIT.
ENDIF.
ENDLOOP.
CLEAR lt_sp_a_hu_scwm.
CLEAR lt_sp_a_head.
"execute action hu goods movement
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_action~execute
EXPORTING
aspect = /scwm/if_sp_c=>sc_asp_hu " Aspect Name
inkeys = lt_sp_k_hu_scwm " Objects to Act On
* inparam = " Parameters
action = /scwm/if_sp_c=>sc_act_hu_post_gm " Name of Action
relation_inkey = ls_sp_k_head " Key for Target Aspect
relation = /scwm/if_sp_c=>sc_rel_head_to_hu " Name of Relation
IMPORTING
outrecords = lt_sp_a_hu_scwm " Changed Aspect Objects
rejected = lv_rejected " Error on Back End
return_codes = lt_return_codes " Table of Return Codes
relation_outrecord = lt_sp_a_head. " Changed Target Aspect Line
"Save changes
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_transaction~save
EXPORTING
synchronously = abap_false
IMPORTING
rejected = lv_rejected.
"remove lock
CALL METHOD lo_sp_prd_in->/scdl/if_sp1_transaction~cleanup
EXPORTING
reason = 'END'.
ENDIF.
Re: How to find HU number details for outbund delivery Tcode : /n/scwm/prdo
You need to get used to the service provider concept. Look at SAP-Note 1414179.
Reading the HU-Aspect from outbound delivery service provider should be the solution.
I had a similar problem with inbound deliveries. See Goods Receipt HU for Inbound delivery
Best regards,
Matthias