Nokia, global leader in mobility, announced the appointment of Syntax Communications as the Public Relations and Corporate Communications agency for the devices business in Pakistan. An announcement to this effect was made in a statement here on Friday.
It said that commenting on the appointment, Pakistan Afghanistan and Iran Nokia Corporation Communications Manager Adeel Hashmi said: [...]
If you are new to programming, it is important to learn how to interpret and respond to errors that may occur when you try to compile a program. Most compilation errors are caused by typing mistakes. As all programmers soon find out, it is quite easy to accidentally type something incorrectly. Fortunately, if you type something wrong, the compiler will report a syntax error message when it tries t
Basic form
FORMAT.
Additions
1. ... COLOR n [ON] or ... COLOR OFF
2. ... INTENSIFIED [ON] or ... INTENSIFIED OFF
3. ... INVERSE [ON] or ... INVERSE OFF
4. ... HOTSPOT [ON] or ... HOTSPOT...
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.
Syntax of any programming language is a vital part and has to be used in the correct manner by a programmer and it is really difficult to remember every syntax of key words.
This list shall come 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.
GeSHi is a highly customizable syntax highlighter that can be used to better present code snippets in websites.
It is developed to be used in phpBB forum software but is also presented for seperated use.
This syntax highlighter supports almost every popular langugae like ActionScript, ASP, C, JAVA, PHP, Ruby, SQL & more (even robots.txt).
Some features of [...]
This is in continuation with SAP ABAP SYNTAX FOR FORM PART ONE
Addition 2
... USING p1 ... pn
Effect
Defines the formal parameters p1 ,... pn which are replaced by actual parameters when you call...
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
FORM form.
Additions
1. ... TABLES itab1 ... itabn
2. ... USING p1 ... pn
3. ... CHANGING p1 ... pn
Effect
Defines a subroutine called by PERFORM
Example
PERFORM WELCOME.
FORM...
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
FIELD-SYMBOLS .
Additions
1. ... STRUCTURE s DEFAULT wa
2. ... TYPE t
3. ... TYPE LINE OF t
4. ... LIKE s
5. ... LIKE LINE OF s
Effect
This statement declares a symbolic field called...
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
FETCH NEXT CURSOR c target.
Effect
Uses the cursor c to read the next line or lines from the dataset of a database table determined by OPEN CURSOR . The cursor must be a variable of 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.
The syntax of the ABAP programming language consists of the following elements: Statements An ABAP program consists of individual ABAP statements. Each statement begins with a keyword and ends with a period. PROGRAM FIRST_PROGRAM.WRITE 'My First Program'.This example contains two statements, one on each line. The keywords are PROGRAM and WRITE. The program displays a list on the screen. In
This article is in continuation with SAP ABAP SYNTAX CHECK FOR EXPORT PART ONE.
Variant 2
EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key.
Additions
1. ... FROM g (for each field to 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.
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.
What we need
I am missing a syntax to apply a common ancestor to a set of rules. As far as I know, there’s no such concept in CSS selector syntax.
With the increasing usage of CSS definitions to style HTML markup, CSS files grow bigger and bigger. With this it’s getting more and more complex [...]
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 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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
Parameters can be created as data fields that contain only one input value and they can also be created as check boxes. When Parameters take the form of check boxes, they are declared as type C and hold the value of X when checked and space when unchecked. A good use of the checkbox parameter is to prompt the user to signal if they want certain components of a report to be displayed.Syntax for sel
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.
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.
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.
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.
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.
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.
Saya berharap Anda memahami dan menikmati pada Pelajaran sebelumnya dimana Saya mencoba menjawab pertanyaan yang sangat mendasar; apa MQL4 ?, mengapa MQL4 dan di mana untuk menulis bahasa program MQL4?
Selalu menjadi pertanyaan yang paling besar dan yang paling utama adalah pertanyaan tentang “bagaimana MQL4 ini bekerja?”, dan barangkali sepenuhnya pelajaran yang akan datang [...]
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.
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.
Syntax-Brillian Corporation (NASDAQ:BRLC) is up to some more changes today. The company has appointed Greg Rayburn as Interim-CEO with an effective date of...
[[ This is a content summary only. Visit my website for full links, other content, and more! ]]
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.
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.
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.
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.
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.
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.
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.
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.
Google is no doubt thr best search engine but most dont know how to unleash the full potential of Google. Most pf the people just plug in a keyword or two and hope for the best, That may be the quickest way to search, but with more than 3 billion pages in Google's index, it's still a struggle to pare results to a manageable number.SYNTAX SEARCH TRICKSgoto www.google.com/help/operators.html for a c
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.
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.
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.
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.
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.
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.
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.
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.
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.
Variant 6 COMMUNICATION DEALLOCATE ID id. Addition As for variant 1 Effect Severs connection and releases all resources. Example TYPES: CONVERSATION_ID(8) TYPE C,
...
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.
Variant 5 COMMUNICATION RECEIVE ID id ...BUFFER f ...DATAINFO d ...STATUSINFO s. Additions 1. ... RETURNCODE rc
2. ... LENGTH leng
3. ... RECEIVED m
4. ... HOLD Effect Receives data 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.
Variant 4 COMMUNICATION SEND ID id BUFFER f. Additions 1. ... RETURNCODE rc
2. ... LENGTH len Effect Sends data to the partner program. The data is stored in the field f which follows the key...
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.
Variant 2 COMMUNICATION ALLOCATE ID id. Addition As for variant 1. Effect Sets up a program-to-program connection. The call must immediately follow COMMUNICATION INIT . Example TYPES:...
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. COMMUNICATION INIT DESTINATION dest ID id.
2. COMMUNICATION ALLOCATE ID id.
3. COMMUNICATION ACCEPT ID id.
4. COMMUNICATION SEND ID id BUFFER f.
5. COMMUNICATION RECEIVE ID...
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 COMMIT WORK. Addition
... AND WAIT Effect Executes a database commit and thus closes a logical processing unit or Logical Unit of Work ( LUW ) (see also Transaction processing )....
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.
Introducing Highlight, a small powerful converter tool, it will converts your source code to formatted text with syntax highlighting.
Colored output in HTML, XHTML, RTF, TeX, LaTeX and XML format. Highlights is a platform independent, support more than 120 programming language and includes 40 colour themes.
Features:
Highlighting of keywords, types, strings, numbers, escape sequences,
Basic form COLLECT [wa INTO] itab. Addition
... SORTED BY f Effect COLLECT is used to create unique or compressed datsets. The key fields are the default key fields of the internal 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.
Basic form ... CNT(h) ... Effect CNT(h) is not a statement, but a field which is automatically created and filled by the system if f is a sub-field of an EXTRACT DATA SET.
CNT(h) can only 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.
1. OLE DB Provider for Active Directory Service
oConn.Open "Provider=ADSDSOObject;" & _
"User Id=myUsername;" & _
"Password=myPassword"
Desc: Microsoft OLE DB Provider for Microsoft Active Directory Service.
2. OLE DB Provider for Advantage
oConn.Open "Provider=Advantage OLE DB Provider;" & _
"Data source=c:\myDbfTableDir;" & _
"ServerType=
Basic form CHECK logexp. Effect CHECK evaluates the subsequent logical expression . If it is true, the processing continues with the next statement.
In loop structures like DO... ENDDOWHILE...
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 CASE f.
Effect Case distinction.
Depending on the current contents of a field, this statement executes one of several alternative processing branches. The field whose contents determine...
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 CALL TRANSACTION tcod. Additions
1. ... AND SKIP FIRST SCREEN
2. ... USING itab
2a. ... MODE mode
2b. ... UPDATE upd
2c. ... MESSAGES INTO messtab Effect Calls the SAP Transaction...
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 CALL SCREEN scr. Addition
... STARTING AT x1 y1 ... ENDING AT x2 y2 Effect Calls the screen scr ; scr is the number of a screen of the main program. You use SET SCREEN 0 or LEAVE...
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 CALL METHOD OF obj m. Additions
1. ... = f
2. ... EXPORTING p1 = f1 ... pn = fn
3. ... NO FLUSH Effect Calls the method m of the object obj . m can be a literal or 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.
Variant 3 CALL FUNCTION func IN UPDATE TASK. Additions
1. ... EXPORTING p1 = f1 ... pn = fn
2. ... TABLES p1 = itab1 ... pn = itabn Effect Flags the function module func for execution 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.
Variant 2 CALL FUNCTION func ...STARTING NEW TASK Additions 1. ... DESTINATION dest
2. ... PERFORMING form ON END OF TASK
3. ... EXPORTING p1 = f1 ... pn = fn
4. ... TABLES p1 = itab1 ... pn =...
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.
Variant 5 CALL FUNCTION func IN BACKGROUND TASK. Additions 1. ... DESTINATION dest
2. ... EXPORTING p1 = f1 ... pn = fn
3. ... TABLES p1 = itab1 ... pn = itabn Effect Flags the function module...
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.
Variant 1
CALL FUNCTION func. Additions
1. ... EXPORTING p1 = f1 ... pn = fn
2. ... IMPORTING p1 = f1 ... pn = fn
3. ... TABLES p1 = itab1 ... pn = itabn
4. ... CHANGING p1 = f1 ... pn =...
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.
Variant 6 CALL CUSTOMER-FUNCTION func. Effect Calls the function module func . func must be a 3-character literal (e.g. '001')
In line with SAP's enhancement concept, function modules 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.
Variants:
1. BREAK-POINT.
2. BREAK-POINT f. Variant 1 BREAK-POINT. Effect The BREAK-POINT statement interrupts the processing and diverts the system to debugging mode. You can then display ...
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.
PHP Markdown ist eine Erweiterung die in PHP Skripten verwendet werden kann um Plain Text mit Wiki Syntax in Html umzuwandeln. Dabei wird die Markdown Syntax verwendet.Beispiele für die Markdown Syntax:vorher (Plain Text):**fetter Text**[Apfel i]()nachher (Html):fetter TextApfel iEine komplette Liste der Syntax findet man unter formatierten Wiki Text in Html, in seinen eigenen PHP Skript umwandeln zulassen ladet man sich die Erweiterung von Michel Fortin -markdown/ herunter und wendet sie wie folgt an:<?php//einbinden der PHP Markdown Erweiterunginclude_once "markdown.php";//mit WikiSyntax formatierten Text $my_text in Html umwandeln$my_html = Markdown($my_text);?>Es gibt Markdown in anderen Programmiersprachen wie Python, Ruby und Perl. Von der pear-wiki Erweiterung kann ich nur abr
Basic form BACK. Effect Returns output position to the first line of the current page after the TOP-OF-PAGE processing.
When used in connection with RESERVER X LINES , the statement returns 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.
Addition 6 ... ON BLOCK block Effect This event is assigned to the blocks on the selection screen defined by SELECTION SCREEN BEGIN/END BLOCK .
If the report starts an error dialog at this...
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 AT SELECTION-SCREEN. Additions
1. ... ON psel
2. ... ON END OF sel
3. ... ON VALUE-REQUEST FOR psel_low_high .
4. ... ON HELP-REQUEST FOR psel_low_high
5. ... ON RADIOBUTTON GROUP...
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. AT NEW f.
2. AT END OF f.
3. AT FIRST.
4. AT LAST. Effect In a LOOP which processes a dataset created with EXTRACT , you can use special control structures for control break...
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.