SAP Certification
SAP Download
SAP Companies India
SAP Books
SAP JOBS
SAP jobs in India
SAP ABAP jobs in India
SAP BASIS jobs in India
SAP BI jobs in India
SAP CRM jobs in India
SAP FICO jobs in India
SAP Fresher jobs in India
SAP HR jobs in India
SAP MM jobs in India
SAP PM jobs in India
SAP PP jobs in India
SAP SD jobs in India
SAP XI jobs in India
|
MODULE is a keyword used in SAP ABAP programming.
This tutorial covers its introduction & syntax details.
Show Full Details
MODULE
Basic form MODULE modl.
Additions
1. ... OUTPUT 2. ... INPUT
Effect The processing block between the " MODULE modl. " and " ENDMODULE. " statements is known as a module .
You
call the module modl in the screen flow logic with the statement "
MODULE modl. ". This screen must belong to the same program (module
pool) as the module.
Example
DATA: INPUT, GOOD_INPUT. MODULE CONTROL. ... IF INPUT NE GOOD_INPUT. MESSAGE E123. ENDIF. ENDMODULE.
Note The
ABAP/4 statement MODULE , which is always terminated by ENDMODULE ,
must not be confused with the flow logic statement MODULE ( screen ).
Addition 1 ... OUTPUT Addition 2 ... INPUT
Effect The
module called before screen output (in the PROCESS BEFORE OUTPUT
section of the flow logic) should be qualified by the addition OUTPUT . Since
the addition INPUT is the default value, it can be omitted. This means
that the module called user input (in the PROCESS AFTER INPUT section
of the flow logic), is either followed by no addition or qualified by
the addition INPUT . A module modl can thus exist twice - as an input and as an output module.
Notes You cannot combine the additions OUTPUT and INPUT . An error message (MESSAGE Emnr ) cancels processing of the module. A warning message (MESSAGE Wmnr ) repeats the current module (or the module chain [CHAIN ]) if you enter different data. If you just press ENTER after the warning (or even after I and S messages), processing continues after the MESSAGE statement.
Show Most Readed SAP Tutorials
Most readed SAP Tutorials
Show Latest Added SAP Tutorials
Latest Added SAP documents
|
"Site covers most of the SAP technical and functional tutorials, articles, interview questions and PDF study materials . List and details of SAP transaction codes ( tcodes ), Tables, report names, Bapi, ABAP programming syntax and keywords are also available in the site.
Information on SAP Certification and training, latest SAP jobs in India, ABAP interview questions are useful for SAP professionals seeking for a career in SAP as a fresher or experienced.ABAP tutorial downloads on BDC, LSMW, BAPI, ALE, IDOC, Smartforms, Sapscripts etc etc are also added.Now you can read from this page about MODULE (ABAP Keyword)" |