Introduction
This blog continuation to previous one – S/4HANA Embedded Extended Warehouse Management (EWM) Overview
The purpose of this blog is to describe the general configuration steps in the SAP S/4HANA Embedded EWM that are required to complete the configuration for the warehouse process setup of the Advanced Production Integration process.
Organization Structure
Activation of BC Sets
This procedure uses BC Sets to make necessary standard settings for the Advanced Production Integration process.
Internal Number Range Setting for Inbound Delivery Type “INBM”
Warehouse Structure
Define Storage Type
Define Storage Sections
Generate Activity Areas from Storage Type
The purpose of this activity is to generate activity areas for the corresponding storage types.
Once you have generated an Activity Area for all activities, a generic sort sequence is automatically created for every combination of storage types:
- Y061
- Y915
and activities:
- CLSP
- INTL
- INVE
- PICK
- PTWY
- REPL
- STCH
Assign Storage Bins to Activity Areas
The purpose of this activity is to assign storage bins to the newly created Activity Areas.
Define Sort Sequence for Activity Area
Manual Creation of Storage Bins
Sort Storage Bins
Define Staging Areas
The purpose of this activity is to create staging areas for the warehouse number 1710.
In the system, a staging area is defined by a storage type (called staging area group), a storage section (called staging area), and one or several storage bins (called staging bays).
Additionally, it must be defined as staging area in the system. A staging area can be assigned to one or several doors.
Define Work Center
Configure Production Material Request Creation in EWM
Define Item Types for Production
Define Allowed Item Types for Production
Map SAP ERP Order Type to SAP EWM Document Type
Map SAP ERP Order Type to SAP EWM Item Type
Define Number Range for Production Material Request
Define Reference Document Type Profiles
Settings for Warehouse Processes
Settings for Warehouse Order Creation
Define Filters for Warehouse Order Creation Rules
Define Creation Rule for Warehouse Orders
You define warehouse orders (WO) creation rules to group warehouse tasks (WT) into WOs, creating optimized work packages for the picker.
Define Search Sequence of Creation Rules for Activity Areas
Settings for Warehouse Task Creation
Define Warehouse Process Type
In this step, you create the process-specific warehouse process types (WPT).
Determination of Warehouse Process Types
Advanced Settings for Warehouse Processes
Putaway Control
Define Storage Type Search Sequence for Putaway
Assign Storage Types to Storage Type Search Sequence
Specify Storage Type Search Sequence for Putaway
Stock Removal Control
Determine Storage Type Search Sequence for Stock Removal
Depending on several attributes such as warehouse process type, stock removal control indicator of the product or various stock attributes, the system determines the storage type search sequence.
Replenishment
Activate Replenishment Strategies in Storage Types
Configure Advanced Production Integration
Define Product Group Types
In this IMG activity, you define product group types. You can then assign values to these under Define Product Groups.
Product group types and product groups serve to group products of the same kind. You define a product group type for the criterion with which the product groups are to be formed.
You can assign product group types to a product in the product master on the Properties 2 tab page.
Define Product Group
In this IMG activity, you define the possible product groups for a product group type.
Maintain Product Group Type for PSA Assignment
This activity is required if the bin assignment to a production supply area (PSA) is not product-specific but product-group-specific. You need to define a product group type in Customizing before you make this assignment.
Maintain Warehouse Parameters for Production
In this Customizing activity, you can define and change the default stock type that the system uses for staging for production in each of your warehouses.
Resource Management
Define Queues
Warehouse Orders and Tasks to be processed within the RF / Mobile Data Entry UIs are assigned to specialized RF Queues. The Queue Naming follows a logic indicating the “Activity” as well as the source and destination activity area/storage type.
Define Queue Determination Criteria
You define queue determination criteria such as activity area, bin access type, and warehouse process type to assign warehouse orders to different queues.
Maintain Queue Sequence for Resource Group
Maintain Resource
Maintain qRFC Monitor Settings (QIN Scheduler)
The scheduler for inbound queue in EWM is set up, which enables automatic processing of messages in inbound queue.
Activate Application Log in EWM
In order to be able to better analyze technical problems within the application, you can activate application logs which you later review in case of unexpected issues.
BAdI for Single-Order Staging
After implementing the BAdi, system calculates the proposed quantity for single-order staging material with the following logic:
- Call the standard logic, look up the open required quantity.
- If the open required quantity is > 0, exactly the open required quantity is proposed for staging.
- If the open required quantity is <= 0 , the system will propose 0 as staging proposal.
- Access the activity using one of the following navigation options:
- Confirm the information Creating BAdI implementation for BAdI /SCWM/EX_MFG_STAGE_INFO of enhancement spot /SCWM/ES_MFG_STAGE
- On Create Enhancement Implementation dialog box, make the following entries:
- Choose
- Choose Local Object on the next screen.
- On the Enhancement Implementation : Create BAdi Implementati screen, make the following entries:
- Choose
- On the Create Implementation Class dialog box, select the class /SCWM/CL_EI_MFG_STAGE_INFO and choose button Inherit from Sample Class.
- Choose Local Object on the next scree.
- On the Enhancement Implementation YEWM_ES_MFG_STAGE change screen, under tab page Implementation Elements, double-click on the Implementing Class on the left-hand side navigation area.
- Choose Change Class button beside the implementation class YEWM_CL_IM_MFG_STAGE_INFO.
- On the Class Builder: Change Class YEWM_CL_IM_MFG_STAGE_INFO screen, under tab page Methods, put the cursor on method QUANTITY_PROPOSAL.
- Click the button
- On the Class Builder: Change Class YEWM_CL_IM_MFG_STAGE_INFO Change screen, remove all the source code, copy and paste the following example code :
METHOD quantity_proposal.
DATA: lv_quan_pro_opuom TYPE /scwm/de_quantity,
lv_quan_open_opuom TYPE /scwm/de_quantity.
lv_quan_open_opuom TYPE /scwm/de_quantity.
FIELD-SYMBOLS: <ls_stage_item> TYPE ys_stage_item.
* standard quantity proposal
CALL METHOD super->quantity_proposal
EXPORTING
it_psa_packspec = it_psa_packspec
CHANGING
ct_stage_item = ct_stage_item.
CALL METHOD super->quantity_proposal
EXPORTING
it_psa_packspec = it_psa_packspec
CHANGING
ct_stage_item = ct_stage_item.
LOOP AT ct_stage_item ASSIGNING <ls_stage_item>.
* single order staging: propose complete quantity of the PMR item
IF <ls_stage_item>-staging_method = /scwm/if_mfg_stage_consume_c=>sc_stage_method_single_order.
IF <ls_stage_item>-quana_open > 0 AND
<ls_stage_item>-altme_pro IS NOT INITIAL.
* single order staging: propose complete quantity of the PMR item
IF <ls_stage_item>-staging_method = /scwm/if_mfg_stage_consume_c=>sc_stage_method_single_order.
IF <ls_stage_item>-quana_open > 0 AND
<ls_stage_item>-altme_pro IS NOT INITIAL.
me->convert_quan(
EXPORTING
iv_matid = <ls_stage_item>-matid
iv_batchid = <ls_stage_item>-batchid
iv_unit_to = <ls_stage_item>-altme_pro
iv_quan_from = <ls_stage_item>-quana_open
iv_unit_from = <ls_stage_item>-altme
CHANGING
cv_quan_to = <ls_stage_item>-quana_pro ).
“<ls_stage_item>-quana_pro = ceil( <ls_stage_item>-quana_pro ).
ELSE.
<ls_stage_item>-quana_pro = 0.
ENDIF.
ENDIF.
ENDLOOP.
EXPORTING
iv_matid = <ls_stage_item>-matid
iv_batchid = <ls_stage_item>-batchid
iv_unit_to = <ls_stage_item>-altme_pro
iv_quan_from = <ls_stage_item>-quana_open
iv_unit_from = <ls_stage_item>-altme
CHANGING
cv_quan_to = <ls_stage_item>-quana_pro ).
“<ls_stage_item>-quana_pro = ceil( <ls_stage_item>-quana_pro ).
ELSE.
<ls_stage_item>-quana_pro = 0.
ENDIF.
ENDIF.
ENDLOOP.
ENDMETHOD.
- Choose
- On the next screen, select all the objects for activations and choose
- On the Enhancement Implementation YEWM_EI_MFG_STAGE Change screen, under tab page Implementation Elements, double-click on the Filter Val. in the left-hand side navigation area.
- Choose Create Combination
- Double click on ???? in Value 1
- On the Change Filter Value dialog box, make the following entries :
- Choose
- On the Enhancement Implementation YEWM_ES_MFG_STAGE Change screen, choose
Conclusion
Warehouse consultant able to configure the required settings to execute the advanced production integration within S/4HANA Embedded EWM.
Production Order Material Staging (Production Material Request) Blog – S/4HANA Embedded Extended Warehouse Management (EWM) Production Integration
I would very much appreciate your comments and suggestions.
Best Regards,
Nenhum comentário:
Postar um comentário