 |
 |
|
|
| |
| |
| |
|
Statistics |
| Unique Visitors: 0 |
| Total Unique Visitors: 0 |
| Visitors Out: 1393 |
| Total Visitors Out: 1393 |
|
|
|
| |
|
|
| |
|
| SAP ABAP SMART FORMS Introduction |
| 2008-07-16 08:16:00 |
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 WORK FLOW |
| 2008-07-15 08:06:00 |
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....
|
| |
|
| SAP ABAP Syntax for DO part three |
| 2008-07-14 07:45:00 |
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....
|
| |
|
| SAP ABAP Syntax for DO part two |
| 2008-07-13 13:58:00 |
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 a BADI and uses |
| 2008-07-12 08:03:00 |
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....
|
| |
|
| BADI Defination and Implementaion |
| 2008-07-11 02:02:00 |
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....
|
| |
|
| BADI Introduction |
| 2008-07-10 07:47:00 |
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....
|
| |
|
| SAP ABAP Syntax for DO part one |
| 2008-07-09 08:07:00 |
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....
|
| |
|
| SAP ABAP Syntax for Devide Corresponding |
| 2008-07-08 08:11:00 |
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....
|
| |
|
| SAP ABAP Syntax for DETAILand DEVIDE |
| 2008-07-07 12:12:00 |
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....
|
| |
|
| SAP ABAP Syntax for DESCRIBE and Internal table |
| 2008-07-06 09:27:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part Six |
| 2008-07-05 11:40:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part five |
| 2008-07-03 08:27:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part four |
| 2008-07-02 07:00:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part three |
| 2008-07-01 07:04:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part two |
| 2008-06-30 12:05:00 |
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....
|
| |
|
| SAP ABAP Syntax for Describe part one |
| 2008-06-27 04:17:00 |
DESCRIBE - determine distance between two fields Basic form DESCRIBE DISTANCE BETWEEN f1 AND f2 INTO f3. Effect Determines the distance between the fields f1 and f2 and places the result (in...
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 ABAP Syntax for Delete Program |
| 2008-06-26 07:46:00 |
Basic form DELETE REPORT prog. Effect Deletes some components (source code, attributes, text elements and generated version) of the program specified in the field prog .
The return code value is...
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 ABAP Syntax For Delete From Internal Table Part Two |
| 2008-06-25 07:04:00 |
This is in continuation with DELETE DATA FROM INTERNAL TABLE PART ONE.
Variant 4 DELETE itab WHERE condition. Additions 1. ... FROM idx1
2. ... TO idx2 Effect Deletes all entries from internal...
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 ABAP SYNTAX FOR DELETE FROM INTERNAL TABLE |
| 2008-06-24 10:55:00 |
Variants 1. DELETE itab.
2. DELETE itab INDEX idx.
3. DELETE itab FROM idx1 TO idx2.
4. DELETE itab WHERE condition.
5. DELETE ADJACENT DUPLICATES FROM itab. Effect Deletes one or more lines from...
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 ABAP SYNTAX FOR DELETE PART THREE |
| 2008-06-23 05:34:00 |
Variant 4 DELETE dbtab VERSION vers.
DELETE *dbtab VERSION vers. Note This variant is obsolete, since variants 1 - 3 allow you to specify the database table name dynamically. Effect Deletes 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....
|
| |
|
| SAP ABAP SYNTAX FOR DELETE PART TWO |
| 2008-06-22 03:57:00 |
Variant 2 DELETE dbtab.
DELETE *dbtab.
DELETE (dbtabname) ... Additions 1. ... FROM wa
2. ... CLIENT SPECIFIED Effect These are SAP-specific short forms used to delete a single line of 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....
|
| |
|
| SAP ABAP SYNTAX FOR delete from data base table |
| 2008-06-21 00:35:00 |
Variants 1. DELETE FROM dbtab WHERE condition.
DELETE FROM (dbtabname) WHERE condition.
2. DELETE dbtab.
DELETE *dbtab.
DELETE (dbtabname) ...
3. DELETE dbtab FROM TABLE itab.
DELETE (dbtabname)...
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 ABAP SYNTAX FOR DELETE |
| 2008-06-20 05:54:00 |
DELETE
- DELETE FROM dbtab WHERE condition.
- DELETE FROM (dbtabname) WHERE condition.
- DELETE dbtab.
- DELETE *dbtab.
- DELETE (dbtabname) ... .
- DELETE dbtab FROM TABLE itab.
-...
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 ABAP SYNTAX FOR DEFINE |
| 2008-06-18 07:00:00 |
Basic form DEFINE macro. Effect Defines a program component (macro) under the name macro . It must consist only of ABAP/4 statements and is expanded at compilation time.
A macro should always be...
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 ABAP SYNTAX FOR DATA PART SIX |
| 2008-06-17 09:53:00 |
This is in continuation with SAP ABAP SYNTAX for data part five.
Variant 4 DATA: BEGIN OF itab OCCURS n,
...
END OF itab. Additions
... VALID BETWEEN f1 AND f2 Effect Defines 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....
|
| |
|
| SAP ABAP SYNTAX FOR DATA PART FIVE |
| 2008-06-16 11:30:00 |
Continued from syntax for data part four.
Variant 2 DATA f(len). Additions
As for variant 1 Effect Creates the field f in the length len .
You can use this variant only for fields of 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....
|
| |
|
| SAP ABAP SYNTAX FOR DATA PART FOUR |
| 2008-06-11 06:13:00 |
This is the continuation of Syntax for data part three .
Addition 7 ... VALUE lit Effect The initial value of the field f is the literal lit instead of that defined in the table above. You can...
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....
|
| |
|
| ABAP SYNTAX FOR DATA PART THREE |
| 2008-06-04 08:06:00 |
CONTINUED FROM EARLIER POST THAT IS
SYNTAX FOR SAP ABAP DATA PART TWO
Addition 4 ... LIKE f1 OCCURS n Effect Defines an internal table without header line. Such a table consists of any number...
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....
|
| |
|
| ABAP SYNTAX FOR DATA PART TWO |
| 2008-05-30 06:56:00 |
CONTINUED FROM SYNTAX FOR DATA PART ONE
Addition 2 ... LIKE f1 Effect Creates the field f with the same field attributes as the field F1 which is already known. Any data objects are valid...
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 ABAP SYNTAX FOR DATA PART ONE |
| 2008-05-27 06:41:00 |
Variants 1. DATA f.
2. DATA f(len).
3. DATA: BEGIN OF rec,
...
END OF rec.
4. DATA: BEGIN OF itab OCCURS n,
...
END OF itab.
5. DATA: BEGIN OF COMMON PART c,
...
END OF COMMON...
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 ABAP SYNTAX FOR CREATE |
| 2008-05-26 06:29:00 |
Basic form CREATE OBJECT obj class. Addition
... LANGUAGE langu Effect Generates an object of the class class .
To address an OLE automation server (e.g. EXCEL) from ABAP/4 , the server...
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 ABAP SYNTAX FOR CONVERT |
| 2008-05-23 06:14:00 |
Variants 1. CONVERT DATE f1 INTO INVERTED-DATE f2.
2. CONVERT INVERTED-DATE f1 INTO DATE f2. Effect Allows conversion between different formats which do not have their own type .
The field f1 is...
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 ABAP SYNTAX FOR table control |
| 2008-05-19 05:37:00 |
Basic form CONTROLS ctrl TYPE TABLEVIEW USING SCREEN scr. Effect Creates a table control ctrl of the type TABLEVIEW . The reference screen for the initialization is the screen scr .
Area of...
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 ABAP SYNTAX FOR CONSTANTS AND CONTINUE |
| 2008-05-16 10:15:00 |
Variants
1. CONSTANTS c. ... VALUE [ val | IS INITIAL ].
2. CONSTANTS c(len) ... VALUE [ val | IS INITIAL ].
3. CONSTANTS: BEGIN OF crec,
...
END OF crec. Effect The CONSTANTS statement defines...
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 ABAP SYNTAX FOR CONDENSE |
| 2008-05-15 07:10:00 |
Basic form CONDENSE c. Addition
... NO-GAPS Effect Shifts the contents of the field c to the left, so that each word is separated by exactly one blank. Example DATA: BEGIN OF NAME, ...
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 ABAP SYNTA X FOR CONCATENATE |
| 2008-05-14 05:41:00 |
Basic form CONCATENATE f1 ... fn INTO g. Addition
... SEPARATED BY h Effect Places the fields f1 to fn after g .
With the fields fi (1 STRLEN( fi ).
The return code value is set as...
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 ABAP SYNTAX FOR COMPUTE PART THREE |
| 2008-05-13 06:19:00 |
Exponentiation
The exponential expression "x**y" means x*x*...*x y times, provided that y is a natural number. For any value of y, x**y is explained by exp(y*log(x)).
Operators of the same ranke 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....
|
| |
|
| SAP ABAP SYNTAX FOR COMPUTE PART TWO |
| 2008-05-12 05:50:00 |
When used in calculations, the amount of CPU time needed depends on the data type. In very simple terms, type I is the cheapest, type F needs longer and type P is the most expensive.
Normally,...
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 ABAP SYNTAX FOR COMPUTE |
| 2008-05-11 05:53:00 |
Basic form COMPUTE n = arithexp. Effect Evaluates the arithmetic expression arithexp and places the result in the field n .
Allows use of the four basic calculation types + , - , * 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....
|
| |
|
| |
 |
|
| |
| |
|
 |