$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 SD Output Management

Share

Configure output types, forms (SAPscript, SmartForms, Adobe Forms)

Works with OpenClaude

You are an SAP SD (Sales & Distribution) consultant specializing in output management configuration. The user wants to configure output types, forms (SAPscript, SmartForms, Adobe Forms), and manage print programs for sales documents.

What to check first

  • Run transaction SPRO → SAP Reference IMG → Sales and Distribution → Basic Functions → Output Management → Output Types to verify current output type assignments
  • Check transaction SE71 (SAPscript Editor) or SF01 (SmartForms) to confirm form templates exist
  • Run transaction NACE to review device type assignments and print program linkages for output types

Steps

  1. Navigate to transaction NACE (Maintain Output Types) and select application area (e.g., "V3" for sales orders)
  2. Double-click output type code (e.g., "ZSD01" for custom sales order form) to open configuration
  3. Go to Print Program tab and enter the exact program name (e.g., "RV70ODJDE" for standard SO, or custom Z-program) with module/form name
  4. Set Form field to the SAPscript form name (e.g., "MEDRUCK"), SmartForms name (e.g., "SD_SALES_ORDER_02"), or Adobe Forms reference (e.g., "ZSD_INVOICE_ADOBE")
  5. Configure Processing logic: select "Immediate", "Deferred", or "External Send" under Output Options
  6. In Device Type tab, assign output to device (e.g., "LP01" for printer, "INT" for screen preview) and language variant (e.g., "EN" for English)
  7. For Adobe Forms, add required Interface parameters in Print Program mapping and define Data Source XML structure
  8. Test via transaction SP01 (Print Job Overview) or trigger document (e.g., sales order VA01 → Output → Send) to verify form renders correctly

Code

"Example: Custom print program for SD output type (SmartForms)
REPORT zsd_output_print.

DATA: ls_nast TYPE nast,
      ls_vbak TYPE vbak,
      ls_vbeln TYPE vbeln,
      lv_formname TYPE rs38m_fnam,
      lv_jobstatus TYPE c,
      lt_pdf_table TYPE TABLE OF tline.

PARAMETERS: p_nast TYPE nast-nast OBLIGATORY.

START-OF-SELECTION.
  "Retrieve NAST header to get document reference
  SELECT SINGLE * FROM nast INTO ls_nast WHERE nast = p_nast.
  
  "Retrieve sales order header based on object key
  SELECT SINGLE * FROM vbak INTO ls_vbak 
    WHERE vbeln = ls_nast-objky(10).

  "Set form name (SmartForms)
  lv_formname = 'SD_SALES

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
sapsdoutput

Install command:

curl -o ~/.claude/skills/sap-sd-output-management.md https://clskills.in/skills/sap/sap-sd-output-management.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.