$120 tested Claude codes · real before/after data · Full tier $15 one-timebuy --sheet=15 →
$Free 40-page Claude guide — setup, 120 prompt codes, MCP servers, AI agents. download --free →
clskills.sh — terminal v2.4 — 2,347 skills indexed● online
[CL]Skills_
SAPadvancedNew

SAP EWM RF Framework

Share

Configure RF (radio frequency) screens for warehouse operations

Works with OpenClaude

You are an SAP EWM RF (Radio Frequency) Framework specialist. The user wants to configure RF screens for warehouse operations using the SAP EWM RF framework, including screen definitions, activity assignments, and transaction flows.

What to check first

  • Check /nwbc in your SAP system to confirm EWM module is active and RF framework is installed
  • Verify transaction SPRO > Enterprise Resource Planning > Logistics Execution > Extended Warehouse Management > RF Technology > RF Framework is available
  • Confirm user has authorization object /SCWM/RF with appropriate activity codes (01, 02, 03, 16, 34)

Steps

  1. Open transaction SPRO and navigate to EWM > RF Technology > RF Framework customizing
  2. Create RF screen by going to transaction /SCWM/RFSCR (RF Screen Definition) and click New Entry
  3. Assign screen identifier (e.g., PGIN for putaway), description, and select screen type (Standard, Menu, Input, Message)
  4. Define screen elements in /SCWM/RFELEM linking field names to warehouse management activities (e.g., LTAP_RSRC for resource, LTAP_MATID for material ID)
  5. Assign RF activity to the screen via /SCWM/RFACT - map activity code (e.g., 01 for Goods Receiving) to screen sequence
  6. Configure screen flow logic in /SCWM/RFFLOW to define next screens, condition checks, and error handling (e.g., IF validation_error THEN goto_error_screen)
  7. Test screen via /SCWM/RFT (RF Test Tool) by simulating user input, validating field mappings and workflow transitions
  8. Deploy via transaction SCWM_MOBILE_CONFIG or /SCWM/WACO to activate for mobile devices

Code

*" RF Screen Configuration & Activity Binding
REPORT zewm_rf_screen_config.

CLASS lcl_rf_screen_config DEFINITION.
  PUBLIC SECTION.
    METHODS:
      create_rf_screen IMPORTING iv_screen_id TYPE /scwm/rf_scr_id
                                 iv_desc TYPE /scwm/rf_scr_text
                                 iv_type TYPE /scwm/rf_scr_type,
      assign_rf_activity IMPORTING iv_screen_id TYPE /scwm/rf_scr_id
                                   iv_activity TYPE /scwm/rf_activity,
      configure_screen_flow IMPORTING iv_screen_id TYPE /scwm/rf_scr_id
                                      iv_next_screen TYPE /scwm/rf_scr_id
                                      iv_condition TYPE /scwm/rf_condition.
ENDCLASS.

CLASS lcl_rf_screen_config IMPLEMENTATION.
  METHOD

Note: this example was truncated in the source. See the GitHub repo for the latest full version.

Common Pitfalls

  • Treating this skill as a one-shot solution — most workflows need iteration and verification
  • Skipping the verification steps — you don't know it worked until you measure
  • Applying this skill without understanding the underlying problem — read the related docs first

When NOT to Use This Skill

  • When a simpler manual approach would take less than 10 minutes
  • On critical production systems without testing in staging first
  • When you don't have permission or authorization to make these changes

How to Verify It Worked

  • Run the verification steps documented above
  • Compare the output against your expected baseline
  • Check logs for any warnings or errors — silent failures are the worst kind

Production Considerations

  • Test in staging before deploying to production
  • Have a rollback plan — every change should be reversible
  • Monitor the affected systems for at least 24 hours after the change

Quick Info

CategorySAP
Difficultyadvanced
Version1.0.0
AuthorClaude Skills Hub
sapewmrf

Install command:

curl -o ~/.claude/skills/sap-ewm-rf.md https://clskills.in/skills/sap/sap-ewm-rf.md

Related SAP Skills

Other Claude Code skills in the same category — free to download.

Want a SAP skill personalized to YOUR project?

This is a generic skill that works for everyone. Our AI can generate one tailored to your exact tech stack, naming conventions, folder structure, and coding patterns — with 3x more detail.