SAP - FI
How to perform a Journal Entry Posting FB50 in SAP
In this tutorial, you will learn- GL Posting in SAP using Cost Center Post To Cost Center in SAP...
SAP-ABAP supports two types of Programs - Report Programs & Dialog Programs. Report Programs are used when large amounts of data needs to be displayed
In this tutorial you will learn:
Purpose/Use of Report Programs
Important Points to Note About Report Program
Report <report name> no standard page heading line-size <size> line-count <n(n1)> message-id <message class>.
"Selection screen" is the screen where one specifies the input values for which the program should run.
The selection screen is normally generated from the
Syntax
Selection-screen begin of screen <screen #> selection-screen begin of block <#> with frame title <text> ......... ......... selection-screen end of block <#> selection-screen end of screen <screen #>
Parameters
Parameters help one to do dynamic selection. They can accommodate only one value for one cycle of execution of the program.
Syntax
Defining parameters as a data type
Parameters p_id(30) type c.
Defining parameters like a table field.
Parameter p_id like <table name>-<field name>.
Parameters can be Checkboxes as well as Radiobuttons.
Parameters p_id as checkbox.Parameters p_id1 radiobutton group <group name>. Parameters p_id2 radiobutton group <group name>.
Parameters can be listbox.
Parameter p_id like <table name>-<field name> as listbox
Select Options
A Select-Option is used to input a range of values or a set of values to a program
Syntax
select-options s_vbeln for vbak-vbeln.
ABAP allows the reports to be formatted as the user wants it to be. For example, "Alternate Lines" must appear in different colors and the "Totals" line should appear in Yellow.
Syntax
Format Color n Format Color n Intensified On
n may correspond to various numbers
Please note that there are other additions along with format as well
FORMAT COLOR OFF INTENSIFIED OFF INVERSE OFF HOTSPOT OFF INPUT OFF
Some commands used for interactive programming
Hotspot
If one drags the mouse over the data displayed in the report the cursor changes to a Hand with an Outstretched Index finger. An hotspot can be achieved using the FORMAT statement.
Syntax: Format Hotspot On (Off).
Hide
This command helps you to store the field names based on which one will be doing further processing to get a detailed list. It is written directly after the WRITE statement for a field. When a row is selected the values get automatically filled in the variables for further use.
Syntax: Hide <field-name>.
Advantages of a logical database over normal Select queries.
Note: Due to the complexities involved, logical databases are not used in most of the cases
In this tutorial, you will learn- GL Posting in SAP using Cost Center Post To Cost Center in SAP...
What is Trigger? A trigger is also a stored procedure that automatically executes when an event...
Multiple outstanding receivables or bad debts can have a considerable impact on company's...
SAP HANA Provides following SAP HANA Functions- Data Type Conversion Function – Data Type...
Sales training programs help to become a successful salesperson by learning selling techniques,...
What is NetWeaver? NetWeaver is SAP's integrated technology platform and is not a product in...