![]() |
| Home RSS Directory F.A.Q Suggest A Feed Try Custom Feed Sonneries Portable |
Latest Flows from this sub-category: random selection from this sub-category: |
1. Can we write sy-subrc in between select and endselect.. A) yes, but we cannot use statements like MESSAGE , CALL TRANSACTION, CALL DIALOG , SUBMIT, BREAK-POINT, COMMIT WORK, ROLL BACK etc, because...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Variants
1. EXPORT obj1 ... objn TO MEMORY.
2. EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key.
3. EXPORT obj1 ... objn TO DATASET dsn(ar) ID key.
Variant 1
EXPORT obj1 ... objn TO...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic form
EXEC SQL.
Addition
... PERFORMING form
Effect
Executes the Native SQL command enclosed by the statements EXEC SQL and ENDEXEC . In contrast to Open SQL , addressed database tables do...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic form
ELSE.
Effect
Within an " IF ... ENDIF " processing block, precedes the code to
be executed if the logical expression specified by IF fails.
Example
DATA: RESULT TYPE I,
OP1 TYPE...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. EDITOR-CALL FOR REPORT prog.
Addition
... DISPLAY-MODE
Effect
Reads the program prog from the library and places it in the ABAP/4 Editor.
When you save (with F11 ), the program is written back to...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic form
EDITOR-CALL FOR itab.
Additions
1. ... TITLE text
2. ... DISPLAY-MODE
Effect
Displays the internal table itab in the ABAP/4 Editor. You can then use normal editor functions (e.g....
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This is in continuation with SAP SMART FORMS PART TWO.
5. Calling SMARTFORMS from your ABAP program Calling SMARTFORMS from your ABAP program.
* Collecting all the table data in your program, and...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Difference with SMARTFORMS vs. SapScript(SE71)
The Following are the differences :-
a) Multiple page formats are possible in smartforms which is not the case in SAPScripts
b) It is possible to have...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. When creating a form one must: Retrieve the application data Describe the form Pass the application data to the form Retrieving the application data: Write an ABAP program to retrieve data or...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Smart Forms are used in SAP to create and maintain forms for mass printing. The Smart Forms offers the following advantages: Creating and maintaining forms require half the time. Adapting to forms...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. SAP Business Workflow is a cross-application tool enabling the integration of business tasks across whole application areas. This tool is also used in many areas of SAP. Defination : The...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This in continuation with syntax for data part two.
Variant 2 DO n TIMES. Addition
... VARYING f FROM f1 NEXT f2 (similar to variant 1) Effect Repeats the processing enclosed by the DO and...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This is post is in continuation with SAP ABAP SYNTAX FOR DO PART ONE.
Addition 1 ... VARYING f FROM f1 NEXT f2 Effect This addition is useful if you have a series of fields of the same type and...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Calling Badi in the Application When we define BAdi, enhancement management generates a class that implements the interface. The application developer uses a factory method to create an instance...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Technical Details BAdIs are contained in the system and are fully operational as of Release 4.6B. SAP creates Add-ins for specific programs, menus, and screen enhancements for standard R/3...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic concept SAP has introduced new enhancement technique Business Add-ins from release 4.6A. Business Add-in is the new enhancement technique based on ABAP Objects. BADI is an exit point in a...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Variants
1. DO.
2. DO n TIMES. Variant 1 DO. Addition
... VARYING f FROM f1 NEXT f2 Effect Repeats the processing enclosed by the DO and ENDDO statements until the loop is terminated by...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic form DIVIDE-CORRESPONDING rec1 BY rec2. Effect Interprets rec1 and rec2 as field strings, i.e. if rec1 and rec2 are tables with header lines, the statement is executed for their header...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. Basic form
DETAIL.
This key word is the same as the statement
FORMAT INTENSIFIED OFF.
The latter is recommended due to better readability. Note When outputting data to a list, you also use the...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. DESCRIBE return attributes of an internal table:
Basic form DESCRIBE TABLE itab. Effect Returns the attributes of the internal table itab . You must use at least one of the additions listed...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This post is in continuation with SAP ABAP SYNTAX FOR DESCRIBE PART FIVE.
Variant 4 DESCRIBE LIST PAGE pag Additions
1. ... INDEX idx
2. ... LINE-SIZE col
3. ... LINE-COUNT lin
4. ... LINES...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This post is in continuation with SAP ABAP SYNTAX FOR DESCRIBE PART FOUR.
Variant 2 DESCRIBE LIST NUMBER OF PAGES n.
Addition ... INDEX idx Effect Returns the number of pages in the...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. DESCRIBE - supply attributes of a list Variants1.DESCRIBE LIST NUMBER OF LINES lin.2. DESCRIBE LIST NUMBER OF PAGES n.
3. DESCRIBE LIST LINE lin PAGE pag.
4. DESCRIBE LIST PAGE pag. ...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This post is in continuation with SAP ABAP syntax for describe part two .
Addition 3 ... TYPE typ COMPONENTS n Effect
Similar to ... TYPE typ except that, with structures in typ , u or v are...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper. This is in continuation with sap abap syntax for describe part one.
Addition 2 ... TYPE typ Effect Returns the data type of f in the field typ Example DATA: FLD(8) TYPE N, ...
This abap blog is all about REPORTS,BDC,SCRIPTS,ALE,IDOC'S,EDI,WORK FLOW,INTERVIEW QUESITONS,FAQ'S every thing needed for a abaper.
|
|
contact |