- ABAP/4 Data Dictionary
Detail Description of ABAP/4 Data Dictionary.Data Dictionary The ABAP/4 Dictionary describes the logical structure of the objects used in applica ...
- MS Word as Editor in SAPscript and Smart Forms
You want to use Microsoft Word as Editor for SAPscript or Smart Forms. Please note: As of SAP NW 7.0, enhancement package 1 and SAP NW 7.10 SP 05 t ...
- Difference between Append Structure and Include Structure
Answered
What is Append Structure? An append structure is a structure in the ABAP Dictionary appended to another structure or database table that adds ...
- User Exits and BAdIs in the Variant Configuration
To optimize business processes in the variant configuration environment, some functions can be changed by the following enhancements (user exits/BAdIs ...
- View and Types of View
View in ABAP A view is a 'virtual table' containing fields from one or more tables. A view is a logical view on one or more tables. A vi ...
- BADI, BAPI, ALV and ALE Stands for
BADI: BADI (Business Add-in's)BAPI : BAPI (Business Application Programming Interface)ALV : ABAP List ViewerALE : Application Link EnablingBAPI : ...
- Difference between Data Dictionary and Data Repository
Data Dictionary vs Data RepositoryData Dictionary ABAP Dictionary is a central component of the ABAP workbench. It contains both business and technic ...
- How to read an internal table?
1. READ TABLE itab FROM wa [additions].2. READ TABLE itab WITH TABLE KEY k1 = v1 ... kn = vn[ additions].3. READ TABLE itab WITH KEY k1 = v1 ... kn = ...
- How to copy a portion of an internal table to another.
There are two ways to do that: Append line Insert lineBy using append line the rows of a table are copied to the end of another table.By using inser ...
- User Exits Overview
SAP ABAP USER EXITSIn computer software, a user exit is a place in a software program where a customer can arrange for their own tailor-made program t ...
- How to Transport a Request
How to Transport a RequestYou will transport from DEV to QA and then QA to PROD. You will not transport from QA to DEV.For your clarification, you wil ...
- SAP Dispatcher - Structure, Functions and Implementation Recommendation
Answered
What is SAP Dispatacher? The SAP Dispatcher is a crucial component in processing SAP requests from end users through SAP front ends. Within the SAP ...
- SE01 Transport Organizer (Extended)
Correction and Transport System (SE01) is the main screen of the Change and transport Organizer. Transaction SE01 is used by the administrator to do a ...
- How to change or customize report output layout in SAP
GRC reports are delivered with three layout options out of box: 1. ALV Grid Layout: This solution generates reports in Webdynpro ALV format. Webd ...
- Uploading Files From Presentation To Application Server.
REPORT zupl_presentation_to_appl.* Local data ----------------------------------------------------------DATA: l_filelength &nbs ...
- How to attach a Search Help to a field.
Attaching a search help to a fieldA search help can influence the behavior of a field when the input help is called. The search help must be assigned ...
- Classes in SAP ABAP
1. Features of object-oriented programmingAn ABAP program consists of various program blocks, such as data declaration, start-of-selection, end-of-sel ...
- How to Develop or Create Smartform in SAP?
How to Convert Sapscript to Smartform?Migration to SmartformIf you have many forms already built in SAPscript, you may migrate them into Smart Forms t ...
- Disable Some Standard Buttons from ALV Display
How to disable some standard buttons from ALV display?I am creating an ALV display using object oriented approach. I know how to exclude some of the s ...
- Difference between TYPE and LIKE in ABAP Programming
Type vs Like in ABAPIn ABAP programming we define own data types using the statement.TYPES dtype [TYPE type|LIKE dobj] ...and declare its own variable ...
- Convert amount to/from string
CALL FUNCTION 'HRCM_AMOUNT_TO_STRING_CONVERT' EXPORTING betrg = 3000 WAERS = 'DKK' * N ...
- SAP OK Codes
What is an SAP OK code? An OK Code is used by a program to execute a function after a push button has been clicked. The term "OK code ...
- SAP ABAP Certification Cost and Course Duration in India
The course begins with Introduction to SAP ABAP, followed by a detail course of Advanced ABAP, ABAP Workbench Fundamentals, ABAP Programming for SAP H ...
- WF-BATCH User
WF-BATCH is a system user. It is used to execute and manage all the background jobs in workflow. It has given SAP_ALL authorization so that the user h ...
- Difference between Screen Painter and Menu Painter
Screen Painter vs. Menu PainterScreens and Menus make up the graphical interface of an ABAP/4 application in SAP.Screen Painter: The ABAP/4 Developmen ...
- Transaction Variants and Screen Variants
Transaction Variants vs. Screen VariantsWhat you can do with a transaction variant? Insert default values into fields Change the ready for input statu ...
- SUBMIT TO SAP-SPOOL in a background job
If the statement SUBMIT TO SAP-SPOOL is called up in a background program without the explicit specification of print parameters, then the current pri ...
- Update Transparent Table Through ALV Grid
Update transparent table through ALV Grid.Define Insert the data in simple table ZTEST_EDIT with following fields MANDTNUMC PERNR NUMC NAME CHAR SALAR ...
- Different Modes and Updates in Call Transaction
MODES:A - is all screen mode. All the screen of transaction are displayed.N - is no screen mode no Screen is displayed when you executed the transacti ...
- PBO (Process Before Output) and PAI (Process After Input) Events
PBO and PAI are two events used for designing the screens in SAP ABAP Module Pool Programming. Every Dynpro screen has a set of PBO and PAI ...