Archive for the 'ABAP' Category

Download SAP R/3 Ruby Cheat Sheet

Saturday, November 15th, 2008

Ruby is a reflective, object-oriented programming language. It combines syntax inspired by Perl with Smalltalk-like object-oriented features, and also shares some features with Python, Lisp, Dylan and CLU. Ruby is a single-pass interpreted language. Its main implementation is free software distributed under an open-source license.
The language was created by Yukihiro “Matz” Matsumoto, who started working [...]

Popularity: 6% [?]

What is Insert Statement

Saturday, July 5th, 2008

To insert a single row into an internal table, use the insert statement.
Syntax for the insert Statement
The following is the syntax for the insert statement.
insert [wa into] it [index n]
where:

wa is a work area with the same structure as a row of internal table it.
n is a numeric literal, variable, or constant.

The following [...]

Popularity: 21% [?]

How to use editor-call statement

Saturday, July 5th, 2008

The editor-call statement displays the contents of an internal table to the user in an editor similar to the ABAP/4 source code editor. It is useful for debugging and as a simple interface for allowing the user to enter and modify data in tabular form.
Syntax for the editor-call Statement
The following is the syntax for [...]

Popularity: 18% [?]

What is append it to it statement

Saturday, July 5th, 2008

The statement append it to it appends the header line named it to the body named it. The statement append it does the same thing, because the default work area is the header line. Being more succinct, the latter is usually used.
A work area mentioned explicitly in the append statement is known as an explicit [...]

Popularity: 21% [?]

How to add data to an Internal Table using the Append Statement

Saturday, July 5th, 2008

To add a single row to a internal table, you can use the append statement. append copies a single row from any work area and places it in the body at the end of the existing rows. The work area can be the header line, or it can be any other field string having the [...]

Popularity: 18% [?]