<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7817206599643283286</atom:id><lastBuildDate>Thu, 29 Aug 2024 20:24:42 +0000</lastBuildDate><category>TRANSACTION CODES</category><category>ABAP</category><category>ABAP - Interview Questions</category><category>ABAP - Questions</category><category>ABAP ALV REPORTS</category><category>ABAP - Others</category><category>ABAP REPORT FORMATTING</category><category>ABAP SYNTAX</category><category>ABAP Statements</category><category>ALV</category><category>SAP</category><title>ABAP - Advanced Business Application Programming</title><description>SAP ABAP/4 Programming, ABAP Programs, Preparing for an Interview, Re-usable ABAP Program and utilities, SAP ABP Tools, Tips and Tricks, Jobs and books.</description><link>http://liveinabap.blogspot.com/</link><managingEditor>noreply@blogger.com (A S Chakrapani)</managingEditor><generator>Blogger</generator><openSearch:totalResults>29</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><xhtml:meta content="noindex" name="robots" xmlns:xhtml="http://www.w3.org/1999/xhtml"/><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-8755642142458620207</guid><pubDate>Tue, 03 Jun 2008 10:38:00 +0000</pubDate><atom:updated>2008-06-03T03:38:23.626-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP ALV REPORTS</category><title>COMPLETE ALV DOCUMENTATION</title><description>ALV (ABAP LIST VIEWER):&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sap provides a set of ALV (ABAP LIST VIEWER) function modules, which can be put into use to embellish the output of a report.&lt;br /&gt;&lt;br /&gt;This set of ALV functions is used to enhance the readability and functionality of any report output. Cases arise in sap when the output of a report contains columns extending more than 255 characters in length.&lt;br /&gt;&lt;br /&gt;In such cases, this set of ALV functions can help choose selected columns and arrange the different columns from a report output and also save different variants for report display. This is a very efficient tool for dynamically sorting and arranging the columns from a report output. The report output can contain up to 90 columns in the display with the wide array of display options.&lt;br /&gt;&lt;br /&gt;The commonly used ALV functions used for this purpose are;&lt;br /&gt;&lt;br /&gt;1. REUSE_ALV_VARIANT_DEFAULT_GET&lt;br /&gt;2. REUSE_ALV_VARIANT_F4&lt;br /&gt;3. REUSE_ALV_VARIANT_EXISTENCE&lt;br /&gt;4. REUSE_ALV_EVENTS_GET&lt;br /&gt;5. REUSE_ALV_COMMENTARY_WRITE&lt;br /&gt;6.   REUSE_ALV_FIELDCATALOG_MERGE&lt;br /&gt;7.   REUSE_ALV_LIST_DISPLAY&lt;br /&gt;8. REUSE_ALV_GRID_DISPLAY&lt;br /&gt;9. REUSE_ALV_POPUP_TO_SELECT&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The different steps used for getting the above function modules into use are described below.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 1: DATA DECLARATION&lt;br /&gt;&lt;br /&gt;Sap standard type pools:  SLIS, KKBLO.&lt;br /&gt;&lt;br /&gt;Sap standard tables types taken from the type pools are:&lt;br /&gt;       SLIS_LAYOUT_ALV,&lt;br /&gt;SLIS_T_FIELDCAT_ALV&lt;br /&gt;SLIS_T_LISTHEADER,&lt;br /&gt;SLIS_T_EVENT,&lt;br /&gt;SLIS_SELFIELD.&lt;br /&gt;&lt;br /&gt;Internal tables to be used in the program declared based on the above table types&lt;br /&gt;DATA: I_LAYOUT TYPE SLIS_LAYOUT_ALV,&lt;br /&gt;    I_FIELDTAB TYPE SLIS_T_FIELDCAT_ALV,&lt;br /&gt;   I_HEADING TYPE SLIS_T_LISTHEADER,&lt;br /&gt;I_EVENTS TYPE SLIS_T_EVENT.&lt;br /&gt;&lt;br /&gt;TYPES:  KKBLO_SELFIELD TYPE SLIS_SELFIELD.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 2 : Selecting the variants(Optional)&lt;br /&gt;&lt;br /&gt;SELECTING THE VARIANTS FOR INITIAL LIST DISPLAY (DEFAULT VARIANT)&lt;br /&gt;&lt;br /&gt;The variants in the list display can be both user-specific and general. The user can programmatically set the initial (default) variant for list display.&lt;br /&gt;The default variant can be found using the function module 'REUSE_ALV_VARIANT_DEFAULT_GET'.&lt;br /&gt;&lt;br /&gt;Sample code:&lt;br /&gt;&lt;br /&gt;CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET'&lt;br /&gt;   EXPORTING&lt;br /&gt;        i_save     = variant save condition ( A=all, U = user-specific )&lt;br /&gt;   CHANGING&lt;br /&gt;        cs_variant = internal table containing the program name (and the default variant---optional )&lt;br /&gt;   EXCEPTIONS&lt;br /&gt;        not_found  = 2.&lt;br /&gt;&lt;br /&gt;The user can also choose from the list of existing variants using the function module ‘REUSE_ALV_VARIANT_F4’.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step3(Defining Output Characteristics)&lt;br /&gt;&lt;br /&gt;DEFININING OUTPUT CHARACTERISTICS: PREPARING DISPLAY FIELDS CATALOG&lt;br /&gt;&lt;br /&gt;A field catalog is prepared using the internal table (I_FIELDCAT) of type SLIS_T_FIELDCAT_ALV. Field catalog containing descriptions of the list output fields (usually a subset of the internal output table fields).&lt;br /&gt;&lt;br /&gt;A field catalog is required for every ALV list output to add desired functionality (i.e. Key, Hotspot, Specific headings, Justify, Col. position etc) to certain fields of the output. If not mentioned specifically, then the defaults are taken. The possible values and defaults are listed below.&lt;br /&gt;&lt;br /&gt;The field catalog for the output table is built-up in the caller's coding. The build-up can be completely or partially automated by calling the&lt;br /&gt;REUSE_ALV_FIELDCATALOG_MERGE module.&lt;br /&gt;&lt;br /&gt;The minimal field catalog is documented below. This can be done in a routine using a local variable. The user can use the other optional parameters to assign output attributes to different fields in the output, which differ from the default.&lt;br /&gt;&lt;br /&gt;A field catalog need not be built-up and passed explicitly only under the following&lt;br /&gt;conditions:&lt;br /&gt;&lt;br /&gt;1. The internal table to be output has the same structure as a Data Dictionary structure which is referred to in the internal table declaration using LIKE or INCLUDE STRUCTURE. In this case the attributes of the different fields is taken directly from the table and the attributes (key fields, length, texts etc) need to state explicitly.&lt;br /&gt;&lt;br /&gt;2. all fields in this structure are to be output&lt;br /&gt;&lt;br /&gt;3. The structure name is passed to ALV in the parameter I_STRUCTURE_NAME of the function module REUSE_ALV_LIST_DISPLAY.&lt;br /&gt;&lt;br /&gt;All the values entered in the catalog are specific to the particular field whose name is entered in the fieldname FIELDNAME of the fieldcat structure. The name of the table is also entered in the corr. Fieldname TABNAME of the structure.&lt;br /&gt;&lt;br /&gt;The different possible attributes are:&lt;br /&gt;&lt;br /&gt;• Row_pos (row position): Only relevant if the list output is to be multi-line (two or three lines) by default. So, this attribute can be used maintain certain level of alignment in the output.&lt;br /&gt;             Value set: 0, 1 – 3&lt;br /&gt;&lt;br /&gt;• Col_pos (column position): This parameter is relevant when the fields in the output are to be different from the sequence of the fields in the internal table used for display.&lt;br /&gt;&lt;br /&gt;The parameter specifies the relative column position of the field in the list output. The column order can be changed interactively by the user. If this parameter is initial for all field catalog entries, columns appear in the internal table field sequence.&lt;br /&gt;Value set: 0, 1 – 60&lt;br /&gt;&lt;br /&gt;• Fieldname (field name): This is the name of the internal table field for which the parameters are passed in the catalog.&lt;br /&gt;Value set: internal output table field name (required parameter)&lt;br /&gt;&lt;br /&gt;• Tabname (internal output table): Name of the internal output table that contains the field FIELDCAT-FIELDNAME above.&lt;br /&gt;             Value set: SPACE, internal output table name.&lt;br /&gt;&lt;br /&gt;• Ref_fieldname (reference field name): Name of the Data Dictionary field referred to. This parameter is only used when the internal output table field described by the current field catalog entry has a reference to the Data Dictionary (not a program field), and the field name in the internal output table is different from the name of the field in the Data Dictionary.&lt;br /&gt;&lt;br /&gt;If the field names are identical, naming the Data Dictionary structure or table in the FIELDCAT-REF_TABNAME parameter is sufficient.&lt;br /&gt;Value set: SPACE, Data Dictionary field name.&lt;br /&gt;&lt;br /&gt;• Ref_tabname (reference table/structure field name): Structure or table name of the referred Data Dictionary field. This parameter is only used when the internal output table field described by the current field catalog entry has a Data Dictionary reference (not a program field).&lt;br /&gt;Value set: SPACE, name of a Data Dictionary structure or table&lt;br /&gt;&lt;br /&gt;Link to currency unit&lt;br /&gt;&lt;br /&gt;• Cfieldname (currency unit field name): This is used for currency fields that have a reference to any unit field. This is only relevant for amount columns with associated unit. This parameter contains the Name of the internal output table field containing the currency unit associated with the amount field FIELDCAT-FIELDNAME. The field in FIELDCAT-CFIELDNAME must have its own field catalog entry.&lt;br /&gt;Value set: SPACE, output table field name.&lt;br /&gt;&lt;br /&gt;• Ctabname (internal currency unit field output table): Name of the internal output table containing the FIELDCAT-CFIELDNAME field.&lt;br /&gt;Value set: SPACE, output table field name.&lt;br /&gt;&lt;br /&gt;Link to measurement unit&lt;br /&gt;&lt;br /&gt;• Qfieldname (measurement unit field name): Only relevant for quantity columns with unit link. Name of the internal output table field containing the measurement unit associated with the quantity field FIELDCAT-FIELDNAME. The field in FIELDCAT-QFIELDNAME must have its own field catalog entry.&lt;br /&gt;Value set: SPACE, output table field name.&lt;br /&gt;&lt;br /&gt;• Qtabname (internal measurement unit field output table): Name of the internal output table containing the FIELDCAT-QFIELDNAME field.&lt;br /&gt;Value set: SPACE, output table field name.&lt;br /&gt;&lt;br /&gt;• Outputlen (column width): This parameter is used if the desired output length for a field is desired to be different from the internal output table field. For fields with a Data Dictionary link this parameter can be left initial. For fields without a Data Dictionary link (program field) the parameter must be given the value of the desired field list output length (column width).&lt;br /&gt;Initial = column width is the output length of the referred Data Dictionary field (domain).&lt;br /&gt;N = column width is n characters.&lt;br /&gt;  Value set: 0 (initial), n.&lt;br /&gt;&lt;br /&gt;• Key (key column): By default, the system makes some fields in the output as key fields, provided the fields are key fields in their referencing table. Using this parameter, fields other than key fields of the referencing table can be made key field. This parameter is most important if the output needs to contain some field, which are not scrollable or cannot be hidden.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;If the internal output table contains fields that are key fields from different tables, then all those fields in the report output becomes unscrollable and cannot be hidden. So, the fields in the output internal table should not be referenced from tables in which they are key fields. Instead, they should be referenced to the tables in which they are not key fields, incase they are not desired as key field in the output.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;'X' = key field (key field output in color) and Key fields cannot be interactively hidden. Parameter FIELDCAT-NO_OUT must be left initial.&lt;br /&gt;  Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;• Key_sel (hideable key column): This parameter is only relevant for the fields which are made key fields using FIELDCAT-KEY = 'X'. Using this parameter the Key field can be hidden interactively.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The key column sequence cannot be changed interactively by the user. The output is controlled by the FIELDCAT-NO_OUT parameter analogously to non-key fields.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;• No_out (field in field list): This parameter is used to remove certain fields from the output during initial display. The user can however interactively choose the field for output from the field list in the display variant.&lt;br /&gt;     'X' = field is not displayed in the current list.&lt;br /&gt;    Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;• Tech (technical field): This parameter is used to make certain field display only in the field catalog. The fields with this parameter set cannot be output in the list nor can they be displayed interactively from the catalog.&lt;br /&gt;                'X' = technical field.&lt;br /&gt;   Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Emphasize (highlight columns in color): As name suggests, this field parameter is used to highlight certain field with chosen colors.&lt;br /&gt;Value set: SPACE, 'X' or 'Cxyz' (x:'1'-'9'; y,z: '0'=off ,'1'=on).&lt;br /&gt;'X' = column is colored with the default column highlight color.&lt;br /&gt;            'Cxyz' = column is colored with a coded color:&lt;br /&gt;      -  C: Color (coding must begin with C)&lt;br /&gt;     -  X: color number&lt;br /&gt;      -  Y: bold&lt;br /&gt;       -  Z: inverse&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Hotspot (column as hotspot): This parameter is used to make certain field appear as hotspot i.e. a hand is displayed if the cursor is positioned on the field value. Single click on such fields cause the PICK OR F2 events to happen.&lt;br /&gt;     Value set: SPACE, 'X'.&lt;br /&gt;                'X' = column cells are output as hotspots.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Fix_column (fix column): This parameter is used to fix certain columns in the output. All columns to be fixed must have this flag, starting from the left. If a column without this flag is output, only the columns to the left of this column are fixed. The user can change the column fixing interactively.&lt;br /&gt;             Value set: SPACE, 'X'.&lt;br /&gt;    'X' = column fixed (does not scroll horizontally).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Do_sum (sum over column): the user can also call this function interactively.&lt;br /&gt;          Value set: SPACE, 'X'.&lt;br /&gt;'X' = a sum is calculated over this internal output table field.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• No_sum (sums forbidden): No sum can be calculated over this field, although the data type of the field would allow summing.&lt;br /&gt;     Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Icon: The parameter displays certain column contents as icons. The internal output table column contents must be valid icon strings.&lt;br /&gt;                Value set: SPACE, 'X'.&lt;br /&gt;                 'X' = column contents to be output as an icon.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Symbol: The internal output table column must be a valid symbol character.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;            'X' = column contents are to be output as a symbol.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Just (justification): This parameter is used for alignment of the contents of the output table. This is only relevant for CHAR or NUMC fields in the output internal table. The justification of the column header always follows the justification of the columns. Independent justification of the column header is not possible.&lt;br /&gt;Value set: SPACE, 'R', 'L', and ‘C’.&lt;br /&gt;   ' ' = Default justification for this data type&lt;br /&gt;   'R' = right-justified output&lt;br /&gt;   'L' = left-justified output&lt;br /&gt;   'C' = centered output.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Lzero (leading zeros): By default ALV outputs NUMC fields right-justified without leading zeros. Using this parameter only the NUMC fields can be displayed with leading zeroes.&lt;br /&gt;               Value set: SPACE, 'X'.&lt;br /&gt;                'X' = output with leading zeros.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• No_sign (no +/- sign): This parameter is used to suppress the signs of the output fields. It is only relevant for the value fields.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;    'X' = value output without +/ sign.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• No_zero (suppress zeros): Only relevant for value fields.&lt;br /&gt;         Value set: SPACE, 'X'.&lt;br /&gt;                'X' = suppress zeros.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• Edit_mask (field formatting): To apply the report output formatting options same as in the WRITE statement in report writing.&lt;br /&gt;       Value set: SPACE, template.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The following parameters are used for customizing the texts in the heading of the output of the columns. The texts are taken from the Data Dictionary for fields with a Data Dictionary reference. If this is not desired, the text parameters can also be specified. The Data Dictionary texts are then ignored.&lt;br /&gt;&lt;br /&gt;If the user changes the column width interactively, the column header text with the appropriate length is always used.&lt;br /&gt;&lt;br /&gt;The interactive function 'Optimize column width' takes account of both the field contents and the column headers: if all field contents are shorter than the shortest column header, the column width depends on the column header.&lt;br /&gt;&lt;br /&gt; The 'long field label' is also used in display variant definition,&lt;br /&gt;    Sort, etc.  Popup.&lt;br /&gt;&lt;br /&gt;• seltext_l (long field label)&lt;br /&gt;• seltext_m (medium field label)&lt;br /&gt;• seltext_s (short field label)&lt;br /&gt;• reptext_ddic (header) Analogous to the Data element main header&lt;br /&gt;• Ddictxt (specify text) : You can specify with values 'L', 'M', and 'S', the keyword that should always be used as column header. If the column width changes, no attempt is made in this case to find an appropriate header for the new output width.&lt;br /&gt;Value set: SPACE, 'L', 'M', and ‘S’.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 4(Build up events table)&lt;br /&gt;&lt;br /&gt;The next step is to build an event table, which are used for firing both user commands and the system dependent events i.e. top of page, end of page etc.&lt;br /&gt;A list of possible events is populated into an event table (I_EVENTS) when this table is passed from the function module REUSE_ALV_EVENT_NAMES_GET. The return table from this function module contains all the possible events.&lt;br /&gt;&lt;br /&gt;The function module contains following import and export parameters.&lt;br /&gt;&lt;br /&gt;IMPORTING PARAMETERS: I_LIST_TYPE&lt;br /&gt;This parameter has possible values from 0-4.&lt;br /&gt;The parameter I_LIST_TYPE is of TYPE SLIS_LIST_TYPE and is DEFAULT 0 .&lt;br /&gt;&lt;br /&gt;EXPORTING PARAMETERS:  I_EVENTS table.&lt;br /&gt;&lt;br /&gt;This table is of TYPE SLIS_T_EVENT and returns to the program the name of all the possible events.&lt;br /&gt;&lt;br /&gt;The table structure contains the fields:&lt;br /&gt;I_EVENTS-NAME: Name of the Callback event.&lt;br /&gt;I_EVENTS-FORM: Name of the form routine that should be called in the calling program at the event.&lt;br /&gt;&lt;br /&gt;Only events with a form routine name are processed.&lt;br /&gt;&lt;br /&gt;The I_EVENTS table returns with the following possible constants:&lt;br /&gt;&lt;br /&gt;1. Slis_ev_item_data_expand TYPE slis_formname VALUE 'ITEM_DATA_EXPAND'.  &lt;br /&gt;Only relevant for hierarchical-sequential lists using the layout parameter IS_LAYOUT-EXPAND_FIELDNAME of the structure IS_LAYOUT. Exit for passing item entries (ITEM table) for a header record that was expanded interactively by the user.&lt;br /&gt;&lt;br /&gt;2. Slis_ev_reprep_sel_modify TYPE slis_formname VALUE 'REPREP_SEL_MODIFY'.&lt;br /&gt;RS_SELFIELD-TABINDEX contains the header table index for which the item entries are to be put in the global item output table (T_OUTTAB_SLAVE). The Callback is only called if ALV has no items for a header that is to be expanded.&lt;br /&gt;RFLG_ALL is passed with 'X' if the user shows all items. The application must ensure that entries are not repeated in the item table.&lt;br /&gt;RS_SELFIELD is initial in this case.&lt;br /&gt; &lt;br /&gt;3. Slis_ev_caller_exit_at_start TYPE slis_formname VALUE 'CALLER_EXIT'.&lt;br /&gt;Is called at the beginning of the function module to make special settings. It is not usually used.  &lt;br /&gt;&lt;br /&gt;4. Slis_ev_user_command TYPE slis_formname VALUE 'USER_COMMAND'.&lt;br /&gt;As this is a frequently-used Callback event, the form routine can also be passed directly in the interface by passing the user command in the IMPORTING parameter I_CALLBACK_USER_COMMAND.&lt;br /&gt;&lt;br /&gt;5. Slis_ev_top_of_page TYPE slis_formname VALUE 'TOP_OF_PAGE'.&lt;br /&gt;Equivalent to the list processing TOP-OF-PAGE event.&lt;br /&gt;    &lt;br /&gt;6. Slis_ev_top_of_coverpage TYPE slis_formname VALUE 'TOP_OF_COVERPAGE'.    &lt;br /&gt;The selection information and list status are output together (if they exist) on a separate page by default&lt;br /&gt;&lt;br /&gt;7. Slis_ev_end_of_coverpage TYPE slis_formname VALUE 'END_OF_COVERPAGE'.    &lt;br /&gt;Analogously to TOP_OF_COVERPAGE the user can add other information&lt;br /&gt;to the information output by ALV (selection information, list status) at this event.&lt;br /&gt;&lt;br /&gt;8. Slis_ev_foreign_top_of_page TYPE slis_formname VALUE ‘FOREIGN_TOP_OF_PAGE'.&lt;br /&gt;The Top-of-page event is always processed in ALV and is only passed to the caller via the Callback mechanism. This is still the case if the caller, e.g. by a user action, processes a branch list which was not formatted by ALV (e.g. a popup with additional information about the list record selected and displayed by ALV).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In this case, top-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event top-of-page still occurs in ALV. When ALV notices a top-of-page which was not caused by an ALV output, the form routine in FOREIGN_TOP_OF_PAGE is called.&lt;br /&gt;&lt;br /&gt;9. Slis_ev_foreign_end_of_page TYPE slis_formname VALUE 'FOREIGN_END_OF_PAGE'.&lt;br /&gt;The event end-of-page is always processed in ALV and only passed to the caller via callback. This is still the case, e.g. when the caller processes a details list which was not formatted by ALV (e.g. a popup with further information about selected list records which were displayed by ALV).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;In this case, end-of-page cannot be formatted by ALV analogously to the basic list, it must be handled completely by the caller. The event end-of-page still occurs in ALV. When ALV notices an end-of-page that was not caused by an ALV output, the form routine in FOREIGN_END_OF_PAGE is called.&lt;br /&gt;           &lt;br /&gt;10. Slis_ev_pf_status_set TYPE slis_formname VALUE 'PF_STATUS_SET'.&lt;br /&gt;If a user list status is to be set, it must be done in the form routine assigned to this event. The ALV function codes, which must not be active, are in the Parameter RT_EXTAB. This table must be passed with the SET PF-STATUS command (with inactive user function codes as well, if necessary).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The STANDARD status of the function group SALV should be used as a template for a user-specific status. As this is a frequently used Callback event, its form routine can also be passed directly in the interface in the IMPORTING parameter I_CALLBACK_PF_STATUS_SET.&lt;br /&gt;&lt;br /&gt;11. Slis_ev_list_modify TYPE slis_formname VALUE 'LIST_MODIFY'.  &lt;br /&gt;LIST_MODIFY USING R_TABNAME TYPE SLIS_TABNAME&lt;br /&gt;                                     R_INDEX LIKE SY-TABIX&lt;br /&gt;                                     R_INDEX_ITEM LIKE SY-TABIX&lt;br /&gt;                                     R_INDEX_SUM LIKE SY-TABIX.&lt;br /&gt;&lt;br /&gt;12. Slis_ev_top_of_list TYPE slis_formname VALUE 'TOP_OF_LIST'.&lt;br /&gt;Information output at the start of the list  &lt;br /&gt;&lt;br /&gt;13. Slis_ev_end_of_page TYPE slis_formname VALUE 'END_OF_PAGE'.&lt;br /&gt;Information output at the end of a page. This is only called for printing.&lt;br /&gt;&lt;br /&gt;14. Slis_ev_end_of_list TYPE slis_formname VALUE 'END_OF_LIST'.  &lt;br /&gt;Information output at the end of the list&lt;br /&gt;&lt;br /&gt;15. Slis_ev_after_line_output TYPE slis_formname VALUE 'AFTER_LINE_OUTPUT'.&lt;br /&gt;Output information after each output line. Should only be used in justified cases because it costs a lot of performance.&lt;br /&gt;&lt;br /&gt;16. Slis_ev_before_line_output TYPE slis_formname VALUE   'BEFORE_LINE_OUTPUT'.    &lt;br /&gt;Output information before each output line. Should only be used in justified cases because it costs a lot of performance.  &lt;br /&gt;&lt;br /&gt;17. Slis_ev_subtotal_text TYPE slis_formname VALUE  'SUBTOTAL_TEXT'.                     &lt;br /&gt;This event table (I_EVENTS) is now checked with the desired constants. If the desired constant is found, then the corresponding field for the FORM NAME is populated with the name of the routine containing the corresponding event.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 5(Report Output list description)&lt;br /&gt;&lt;br /&gt;A layout is build for the report output list description USING the internal table declared above (I_LAYOUT).&lt;br /&gt;Output list description structure.&lt;br /&gt; The parameters are described under the following heads:&lt;br /&gt;• Display options&lt;br /&gt;• Exceptions&lt;br /&gt;• Totals&lt;br /&gt;• Interaction&lt;br /&gt;• Detail screen&lt;br /&gt;• Display variants (only for hierarchical-sequential lists)&lt;br /&gt;• Color&lt;br /&gt;• Other&lt;br /&gt;The layout table is of type slis_layout_alv_spec and has the following fields:&lt;br /&gt;&lt;br /&gt;Display options                                             &lt;br /&gt;1. Colwidth_optimize (1) TYPE c: This parameter optimizes the length of the different columns in the output. The width of the different col. now depends on the max. Length of the data in the column.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = optimizes the column width so that all contents are displayed completely.                &lt;br /&gt;&lt;br /&gt;2. No_colhead (1) TYPE c: This parameter suppresses the column headings                 &lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;'X' = column headers are not output&lt;br /&gt;&lt;br /&gt;3. No_hotspot(1) TYPE c :  The headings of the report output are not output as hotspot.    &lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;'X' = column headers are not output as hotspot&lt;br /&gt;&lt;br /&gt;4. Zebra(1) TYPE c : The report is output in the striped pattern.          &lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;'X' = striped pattern (e.g. for wide lists)&lt;br /&gt;&lt;br /&gt;5. No_vline (1) TYPE c: The report output contains columns only separated by space and no lines. It is not relevant for: hierarchical-sequential lists and multiple-line lists.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;'X' = columns separated by SPACE&lt;br /&gt;&lt;br /&gt;6. No_min_linesize(1) TYPE c : The report  line size is equal to the width of the list. It is not relevant for block lists.&lt;br /&gt;Value set: SPACE, 'X’.&lt;br /&gt;'X' = line size depends on list width&lt;br /&gt;'  ' = Line size is set to 80 or MIN_LINESIZE (if &gt; 0) .&lt;br /&gt;&lt;br /&gt;7. Min_linesize LIKE sy-linsz: The report output contains a minimum possible length of line. If initial min_linesize is set to 80 by default, then this parameter is used to customize it. The prerequisite for this is that the parameter no_min_linesize should be ' '.&lt;br /&gt;Value set: 0, 10 - 250&lt;br /&gt;If the list is wider, the format uses the list width (maximum 250 or MAX_LINESIZE (if &gt; 0)).&lt;br /&gt;&lt;br /&gt;8. Max_linesize LIKE sy-linsz: The default max. Linesize is 250. To change this default value, this parameter can interactively-define the maximum list width setting.&lt;br /&gt;Value set: 0, 80 - 1020&lt;br /&gt;&lt;br /&gt;9. Window_titlebar LIKE rsmpe-tittext: To set the titlebar on the report output.                         &lt;br /&gt;       10. No_uline_hs(1) TYPE c.&lt;br /&gt;                           &lt;br /&gt;Exceptions                                              &lt;br /&gt;11. Lights_fieldname TYPE slis_fieldname: Internal output table field containing the codes of exceptions to be output.&lt;br /&gt;      Output table field code:  '1' = red traffic light&lt;br /&gt;        '2' = yellow traffic light&lt;br /&gt;             '3' = green traffic light Fieldname for exception&lt;br /&gt;Value set: SPACE, internal output table field name.&lt;br /&gt;&lt;br /&gt;12. Lights_tabname TYPE slis_tabname: Name of the internal output table that contains the field in the parameter LIGHTS_FIELDNAME. If LIGHTS_FIELDNAME is not empty, this field must also be filled for hierarchical-sequential lists. Only relevant for hierarchical-sequential lists.&lt;br /&gt;. Value set: SPACE, internal output table name.&lt;br /&gt;&lt;br /&gt;13. Lights_rollname LIKE dfies-rollname: The documentation of this data element is displayed when you call F1 help for an exception column.&lt;br /&gt;Value set: SPACE, data element name.&lt;br /&gt;&lt;br /&gt;       14. Lights_condense (1) TYPE c : If a list record is output with 'red traffic&lt;br /&gt;        light', each  Subtotal that includes this record is also output with 'red&lt;br /&gt;        traffic light'.&lt;br /&gt;       Value set: SPACE, 'X'&lt;br /&gt;       'X' = the 'maximum' exception of the items in the subtotal is output at&lt;br /&gt;      subtotal level.&lt;br /&gt;&lt;br /&gt;Sums                 &lt;br /&gt;                           &lt;br /&gt;15. No_sumchoice (1) TYPE c: This parameter allows the choice for summing up&lt;br /&gt;Only by field catalog.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = fields which are to be summed, passed by the calling program (FIELDCAT-DO_SUM = 'X'). The user should not be able to change this value interactively.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;16. No_totalline(1) TYPE c : Removes the option of having totals after sub-totals.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = no total record is to be output. Subtotals can still be calculated and output. The fields in the subtotals are flagged DO_SUM = 'X' in the field list.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;17. No_subchoice(1) TYPE c : Does not allow the user to interactively change the field chosen for subtotals.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = value whose change triggers subtotals, provided by the calling program. The user should not be able to change this value interactively.&lt;br /&gt;  &lt;br /&gt;18. No_subtotals(1) TYPE c : No subtotals possible       &lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = no subtotals.&lt;br /&gt;&lt;br /&gt;19. Numc_sum(1)  TYPE c : Totals only possible for NUMC-Fields.&lt;br /&gt;&lt;br /&gt;20. No_unit_splitting TYPE c: No separate total lines by inh.units&lt;br /&gt;&lt;br /&gt;21.totals_before_items TYPE c: Display totals before the items&lt;br /&gt;&lt;br /&gt;22. Totals_only(1) TYPE c :  Show only totals   &lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = only total records are output.&lt;br /&gt;&lt;br /&gt;23. Totals_text(60) TYPE c : Text for 1st col. in totals&lt;br /&gt;Value set: SPACE, string (max.60)&lt;br /&gt;' ' = The first column in the total record contains an appropriate number of '*'s to indicate the total by default. If the first column is wide enough, the string 'Total' is output after the asterisks.&lt;br /&gt;'String’ = The string passed is output after the total indicated by '*', if the column is wide enough.&lt;br /&gt;&lt;br /&gt;24. Subtotals_text(60) TYPE c : Texts for subtotals&lt;br /&gt;Value set: SPACE, string (max.60)&lt;br /&gt;' ' = In the first column of subtotal records, the subtotal is indicated by an appropriate number of '*' by default. If the first column is not a subtotal criterion, the string 'Total' is output after the asterisks, if the column is wide enough.&lt;br /&gt;'String’ = the string passed is output after the subtotal indicated by '*', if the column is wide enough and the first column is not a subtotal criterion. If it is a subtotal criterion, its value is repeated after the total, if the column is wide enough.&lt;br /&gt;&lt;br /&gt;Interaction                                                   &lt;br /&gt;&lt;br /&gt;25. Box_fieldname TYPE slis_fieldname: Fieldname for checkbox in the report output. If the list has checkboxes at the start of records (for selecting several records), this parameter contains the internal output table field name indicated by the checkbox selection column. The field is a checkbox at the start of list records without a list header.&lt;br /&gt;Value set: SPACE, internal output table field name&lt;br /&gt;&lt;br /&gt;26. Box_tabname TYPE slis_tabname: Name of the internal output table that contains the field in the parameter BOX_FIELDNAME. If BOX_FIELDNAME is not empty, this field must also be filled for hierarchical-sequential lists.&lt;br /&gt;Value set: SPACE, internal output table name.&lt;br /&gt;&lt;br /&gt;27. Box_rollname LIKE dd03p-rollname: rollname for checkbox       &lt;br /&gt;&lt;br /&gt;28. Expand_fieldname TYPE slis_fieldname: fieldname flag ‘expand’. The user can show or hide the items by clicking on the folder symbol (hotspot). If the items for a header entry are only to be read by the calling program and passed to ALV when a header has been expanded interactively, this can be controlled via the CALLBACK event 'ITEM_DATA_EXPAND'.&lt;br /&gt;&lt;br /&gt;29. Hotspot_fieldname TYPE slis_fieldname: Used to make the fieldname flag hotspot.&lt;br /&gt;&lt;br /&gt;30. No_input(1) TYPE c : The fields are only display fields.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = all ready-for-input fields in a list are displayed as not ready-for-input. (Record selection checkboxes and fields which can be made ready-for-input via the field list parameter FIELDCAT-INPUT = 'X')&lt;br /&gt;&lt;br /&gt;31. F2code LIKE sy-ucomm: To assign an ALV standard function code to double-click (F2), assign the function code to this parameter. Ex.: to assign the ALV standard function 'Detail' ('&amp;amp;ETA') to F2.&lt;br /&gt;              =&gt; LAYOUT-F2CODE = '&amp;amp;ETA'.&lt;br /&gt;Value set: SPACE, function code&lt;br /&gt;&lt;br /&gt;32. Confirmation_prompt: confirm. Prompt when leaving    &lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = if one of the functions ‘Back (F03)', ‘Exit (F15)' or ‘Cancel (F12)' occurs, a confirmation prompt appears.&lt;br /&gt;&lt;br /&gt;33. Key_hotspot(1) TYPE c : The key fields are displayed as hotspot. The columns defined in the field catalog as key fields (FIELDCAT-KEY = 'X') are output as hotspots, i.e. clicking on a key column (highlighted in color in the list) calls the function under F2.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;34. Reprep(1) TYPE c :  report report interface active.  &lt;br /&gt;&lt;br /&gt;35. Group_buttons (1) TYPE c : group-buttons for COL1 - COL5 . Group output fields via FIELDCAT-SP_GROUP in the field list, and pass the group name to the list module in the interface parameter IT_SPECIAL_GROUPS.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;36. No_keyfix(1) TYPE c : Used to make the key fields scrollable.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;' ' = The key columns defined in the field catalog by FIELDCAT-KEY = 'X' are fixed in the list output. These columns do not scroll horizontally. The item table key columns are fixed in hierarchical-sequential lists. The header table key fields are not considered here.&lt;br /&gt;'X' = key columns not fixed&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;37. Get_selinfos(1) TYPE c : To read selection screen.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;If the calling program is a report with an ABAP/4 selection screen, setting this parameter makes ALV read the selection screen again. If the selections are read successfully, a pushbutton, via which the user can call a popup which lists the report selections in a simple form, becomes active on the results list output by ALV.&lt;br /&gt;&lt;br /&gt;38. group_change_edit(1) TYPE c :  Settings by user for new group  &lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'X' = the user can enter a format option for each sort criterion in the sort/subtotal popup, for the list format when this value changes (e.g. new page or underline).&lt;br /&gt;&lt;br /&gt;39. No_scrolling(1) TYPE c : Does not allow scrolling of the list to the right.&lt;br /&gt;Value set: SPACE, 'X'.&lt;br /&gt;&lt;br /&gt;40. Expand_all(1) TYPE c : Expand all positions                &lt;br /&gt;&lt;br /&gt;Detailed screen                                                 &lt;br /&gt;40. Detail_popup(1) TYPE c : show detail in popup.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'  '  = List record detail display in full-screen mode, with top-of-page.&lt;br /&gt;'X'  = list record detail display in popup (without top-of-page).&lt;br /&gt;&lt;br /&gt;41. Detail_initial_lines(1) TYPE c : show also initial lines&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;'  ' = Only fields whose contents are not initial are output in the detail view.&lt;br /&gt;'X' = initial field contents are also output in detail.&lt;br /&gt;&lt;br /&gt;41. detail_titlebar(30) type c : Titlebar for detail screen&lt;br /&gt;Value set: SPACE, string (max.30)&lt;br /&gt;` ' = ' Detail: Display' is output as the title of the detail window.&lt;br /&gt;          'String’ = the string passed is output as the title of the detail window.&lt;br /&gt;     &lt;br /&gt;Display variants                                                &lt;br /&gt;42. Header_text (20) TYPE c: Text for header button. Only relevant for hierarchical-sequential lists. You can toggle between display field and field list views via pushbuttons in the display variant definition popup for hierarchical-sequential lists. The views refer to the hierarchy level of the fields. This is technically a toggle between the header table and item table fields.&lt;br /&gt;Value set: SPACE, CHAR (20)&lt;br /&gt;' ' = The header table field pushbutton text is 'Header' by default.&lt;br /&gt;CHAR (20) = header table field pushbutton text.&lt;br /&gt;&lt;br /&gt;43.item_text(20) TYPE c : Text for item button. Only relevant for hierarchical-sequential lists. You can toggle the view between the display fields and the field list via pushbuttons in the display variant definition popup for hierarchical-sequential lists. The views refer to the hierarchy level of the fields. This is technically a toggle between the header table and item table fields.&lt;br /&gt;Value set: SPACE, CHAR (20)&lt;br /&gt;' ' = The pushbutton text for the item table fields is 'Item' by default.&lt;br /&gt;CHAR (20) = item table field pushbutton text.&lt;br /&gt;&lt;br /&gt;44.default_ item(1) TYPE c : Items as default. Only relevant for hierarchical-sequential lists.&lt;br /&gt;Value set: SPACE, 'X'&lt;br /&gt;' ' = The header table fields are displayed by default in the display variant definition popup. The user can switch to the item table fields interactively.&lt;br /&gt;'X' = the item table fields are displayed by default in the display variant Definition Popup. The user can switch to the header table fields interactively.&lt;br /&gt;&lt;br /&gt;Colour                                                    &lt;br /&gt;45. Info_fieldname TYPE slis_fieldname: infofield for listoutput. A whole list record can be colored individually using a color code in a column of the internal output table for the record. Assign the name of the field containing the color code to this parameter.&lt;br /&gt;Value set: SPACE, internal output table field name&lt;br /&gt;The internal output table field must be of type CHAR(3).&lt;br /&gt;The code must have the following syntax:  'Cxy':&lt;br /&gt;    C = color (all codes must start with 'C')&lt;br /&gt;    X = color number ('1'-'9')&lt;br /&gt;    Y = bold ('0' = off, '1' = on)&lt;br /&gt;&lt;br /&gt;46. Coltab_fieldname TYPE slis_fieldname: Cells can be colored individually using a color code which is contained in a column of the internal output table for the record containing the cell. Assign the name of the field to this parameter.&lt;br /&gt;&lt;br /&gt;Others                                             &lt;br /&gt;47. List_append(1) TYPE c : no call screen. It is only useful to output block-lists without specifying the above modules if the number of list blocks exceeds, or may exceed, the maximum number specified in the block module documentation. These operations are not possible for user-defined block lists.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 6(Pass Selection-screen Information)&lt;br /&gt;&lt;br /&gt;This step is required to get the selection screen information in the report output.&lt;br /&gt;&lt;br /&gt;The prerequisite for this is to set the parameter LAYOUT-GET_SELINFOS of the IMPORTING structure.&lt;br /&gt;The parameters to be passed in the IS_SEL_HIDE table are:&lt;br /&gt;o mode:              'R' = only the entries passed in the internal table IS_SEL_HIDE-T_ENTRIES    &lt;br /&gt;Are output in the pop up. Selection info, which the list tool read in the selection screen (when called by a report with a selection screen), is replaced by the values passed.&lt;br /&gt;'S' = the selection info which the list tool read in the selection screen of the calling report are modified by the entries in the table IS_SEL_HIDE-T_ENTRIES.&lt;br /&gt;&lt;br /&gt; t_entries:         Selection info table&lt;br /&gt;&lt;br /&gt; t_entries-mode:   'A' = output the selection info for the current table record in the info popup.&lt;br /&gt; 'D' = do not output select option or SELNAME parameter selection info in   the popup.&lt;br /&gt;&lt;br /&gt; t_entries-selname: (only used in t_entries-mode = 'D') : Name of the select option or parameter.&lt;br /&gt;&lt;br /&gt;The following table fields are only used in t_entries-mode = 'A'. They contain the selection information to be added.&lt;br /&gt;• t_entries-field:  DDIC field name of the field for which selection information is to be output.&lt;br /&gt;• t_entries-table:  DDIC table names of t_entries-field.&lt;br /&gt;• t_entries-stext:  Field name in info popup.&lt;br /&gt;• If t_entries-field and t_entries-table have been entered, this text is taken from DDIC.&lt;br /&gt;• t_entries-valuf:  Selection condition 'from' value (external format)&lt;br /&gt;• t_entries-valut:  Selection condition 'to' value (external format)&lt;br /&gt;• t_entries-sign0:  (I)nclusive (E)xclusive&lt;br /&gt;• t_entries-option:  All values of the select options Option field allowed.&lt;br /&gt;&lt;br /&gt;Step 7(Deciding Sort Criteria)&lt;br /&gt;&lt;br /&gt;The Table IT_SORT is populated with the sort criteria for the different fields.&lt;br /&gt;The caller specifies the sorting and/or subtotaling of the basic list in the internal table IT_SORT.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This internal table has the following fields:&lt;br /&gt;• spos :  Sort sequence&lt;br /&gt;• fieldname :  Internal output table field name&lt;br /&gt;• tabname : Only relevant for hierarchical-sequential lists. Name of the internal output table.&lt;br /&gt;• up : 'X' = sort in ascending order&lt;br /&gt;• down : 'X' = sort in descending order&lt;br /&gt;• subtot : 'X' = subtotal at group value change&lt;br /&gt;• group : '* ' = new page at group value change ,'UL' = underline at group value change&lt;br /&gt;&lt;br /&gt;Step 8(Final Step)&lt;br /&gt;&lt;br /&gt;The final step in the output of the report is the use of two ALV functions modules.&lt;br /&gt;1. REUSE_ALV_FIELDCATALOG_MERGE&lt;br /&gt;2. REUSE_ALV_LIST_DISPLAY&lt;br /&gt;&lt;br /&gt;The first function module is used to pass the field catalog to the report output and merge it with the internal output table.&lt;br /&gt;&lt;br /&gt;FUNCTION reuse_alv_fieldcatalog_merge.                             &lt;br /&gt;*"---------------------------------------------------------------------&lt;br /&gt;*"*"Lokale Schnittstelle:                                          &lt;br /&gt;*” IMPORTING                                                 &lt;br /&gt;*"   VALUE(I_PROGRAM_NAME) LIKE  SY-REPID OPTIONAL       &lt;br /&gt;*"  VALUE(I_INTERNAL_TABNAME) TYPE  SLIS_TABNAME OPTIONAL&lt;br /&gt;*"  VALUE(I_STRUCTURE_NAME) LIKE  DD02L-TABNAME OPTIONAL&lt;br /&gt;*"  VALUE(I_CLIENT_NEVER_DISPLAY) TYPE  SLIS_CHAR_1 default ‘X’&lt;br /&gt;*"   VALUE(I_INCLNAME) LIKE  TRDIR-NAME OPTIONAL         &lt;br /&gt;*"   CHANGING                                                  &lt;br /&gt;*"         VALUE(CT_FIELDCAT) TYPE  SLIS_T_FIELDCAT_ALV        &lt;br /&gt;*"   EXCEPTIONS                                                &lt;br /&gt;*"              INCONSISTENT_INTERFACE                             &lt;br /&gt;*"              PROGRAM_ERROR                                      &lt;br /&gt;*"---------------------------------------------------------------------&lt;br /&gt;Import parameters&lt;br /&gt;I_PROGRAM_NAME: Program in which the internal output table is declared and populated&lt;br /&gt;I_INTERNAL_TABNAME: Internal output table name&lt;br /&gt;I_STRUCTURE_NAME: Structure name (structure, table, and view)&lt;br /&gt;I_CLIENT_NEVER_DISPL: Hide client fields default ‘X’&lt;br /&gt;I_INCLNAME: Data declarations include name&lt;br /&gt;&lt;br /&gt;CHANGING parameter&lt;br /&gt;CT_FIELDCAT: Field catalog with field descriptions&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The variant based on a program-internal table should only be used for rapid prototyping since the following restrictions apply:&lt;br /&gt;                                                                     &lt;br /&gt;1. Performance is affected since the code of the table definition must always be read and interpreted at runtime.&lt;br /&gt;                                                         &lt;br /&gt;2.   Dictionary reference are only considered if the keywords LIKE or  INCLUDE STRUCTURE (not TYPE) are used.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Step 8(Display Internal Output Table)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The other function module is used to display the internal output table with the contents&lt;br /&gt;FUNCTION reuse_alv_list_display.                                       &lt;br /&gt;*"----------------------------------------------------------------------&lt;br /&gt;*"*"Lokale Schnittstelle:                                              &lt;br /&gt;*” IMPORTING                                                     &lt;br /&gt;*"             VALUE(I_INTERFACE_CHECK) DEFAULT SPACE                  &lt;br /&gt;*"             VALUE(I_CALLBACK_PROGRAM) LIKE  SY-REPID DEFAULT SPACE  &lt;br /&gt;*"             VALUE(I_CALLBACK_PF_STATUS_SET) TYPE  SLIS_FORMNAME     &lt;br /&gt;*"                             DEFAULT SPACE                           &lt;br /&gt;*"             VALUE(I_CALLBACK_USER_COMMAND) TYPE  SLIS_FORMNAME      &lt;br /&gt;*"                             DEFAULT SPACE                           &lt;br /&gt;*"             VALUE(I_STRUCTURE_NAME) LIKE  DD02L-TABNAME OPTIONAL    &lt;br /&gt;*"             VALUE(IS_LAYOUT) TYPE  SLIS_LAYOUT_ALV OPTIONAL         &lt;br /&gt;*"             VALUE(IT_FIELDCAT) TYPE  SLIS_T_FIELDCAT_ALV OPTIONAL   &lt;br /&gt;*"             VALUE(IT_EXCLUDING) TYPE  SLIS_T_EXTAB OPTIONAL         &lt;br /&gt;*"             VALUE(IT_SPECIAL_GROUPS) TYPE  SLIS_T_SP_GROUP_ALV      &lt;br /&gt;*"                             OPTIONAL                                &lt;br /&gt;*"             VALUE(IT_SORT) TYPE  SLIS_T_SORTINFO_ALV OPTIONAL       &lt;br /&gt;*"             VALUE(IT_FILTER) TYPE  SLIS_T_FILTER_ALV OPTIONAL       &lt;br /&gt;*"             VALUE(IS_SEL_HIDE) TYPE  SLIS_SEL_HIDE_ALV OPTIONAL     &lt;br /&gt;*"           VALUE(I_DEFAULT) DEFAULT 'X'&lt;br /&gt;"             VALUE(I_SAVE) DEFAULT SPACE                          &lt;br /&gt;"             VALUE(IS_VARIANT) LIKE  DISVARIANT                   &lt;br /&gt;"                             STRUCTURE  DISVARIANT DEFAULT SPACE  &lt;br /&gt;"             VALUE(IT_EVENTS) TYPE  SLIS_T_EVENT OPTIONAL         &lt;br /&gt;"             VALUE(IT_EVENT_EXIT) TYPE  SLIS_T_EVENT_EXIT OPTIONAL&lt;br /&gt;"             VALUE(IS_PRINT) TYPE  SLIS_PRINT_ALV OPTIONAL        &lt;br /&gt;"             VALUE(IS_REPREP_ID) TYPE  SLIS_REPREP_ID OPTIONAL    &lt;br /&gt;"             VALUE(I_SCREEN_START_COLUMN) DEFAULT 0               &lt;br /&gt;"             VALUE(I_SCREEN_START_LINE) DEFAULT 0                 &lt;br /&gt;"             VALUE(I_SCREEN_END_COLUMN) DEFAULT 0                 &lt;br /&gt;"             VALUE(I_SCREEN_END_LINE) DEFAULT 0                   &lt;br /&gt;"       EXPORTING                                                  &lt;br /&gt;"             VALUE(E_EXIT_CAUSED_BY_CALLER)                       &lt;br /&gt;"             VALUE(ES_EXIT_CAUSED_BY_USER) TYPE  SLIS_EXIT_BY_USER&lt;br /&gt;"       TABLES                                                     &lt;br /&gt;"              T_OUTTAB                                            &lt;br /&gt;"       EXCEPTIONS                                                 &lt;br /&gt;"              PROGRAM_ERROR&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Import parameters&lt;br /&gt;I_INTERFACE_CHECK: Interface consistency check log output.&lt;br /&gt;I_CALLBACK_PROGRAM: Name of the calling program&lt;br /&gt;I_CALLBACK_PF_STATUS_SET: Set EXIT routine to status.&lt;br /&gt;I_CALLBACK_USER_COMMAND: EXIT routine for command handling&lt;br /&gt;I_STRUCTURE_NAME: Internal output table structure name  &lt;br /&gt;IS_LAYOUT: List layout specifications&lt;br /&gt;IT_FIELDCAT: Field catalog with field descriptions&lt;br /&gt;IT_EXCLUDING: Table of inactive function codes&lt;br /&gt;IT_SPECIAL_GROUPS: Grouping fields for column selection&lt;br /&gt;IT_SORT: Sort criteria for first list display&lt;br /&gt;IT_FILTER: Filter criteria for first list output&lt;br /&gt;IS_SEL_HIDE : Selection information modification&lt;br /&gt;I_DEFAULT:  Initial variant active/inactive logic&lt;br /&gt;I_SAVE: Variants can be saved&lt;br /&gt;IS_VARIANT : Variant information&lt;br /&gt;IT_EVENTS: Table of events to perform  IT_EVENT_EXIT :  Standard fcode exit requests table&lt;br /&gt;IS_PRINT: Print information&lt;br /&gt;IS_REPREP_ID: Initialization keys for Re/Re interface&lt;br /&gt;I_SCREEN_START_COLUMN: Coordinates for list in dialog box&lt;br /&gt;I_SCREEN_START_LINE: Coordinates for list in dialog box&lt;br /&gt;I_SCREEN_END_COLUMN: Coordinates for list in dialog box     &lt;br /&gt;I_SCREEN_END_LINE: Coordinates for list in dialog box    &lt;br /&gt;IT_EVENT_EXIT: Standard fcode exit requests table&lt;br /&gt;IS_PRINT: Print information&lt;br /&gt;IS_REPREP_ID: Initialization keys for Re/Re interface&lt;br /&gt;I_SCREEN_START_COLUMN: Coordinates for list in dialog box&lt;br /&gt;I_SCREEN_START_LINE: Coordinates for list in dialog box    &lt;br /&gt;I_SCREEN_END_COLUMN: Coordinates for list in dialog box     &lt;br /&gt;I_SCREEN_END_LINE: Coordinates for list in dialog box&lt;br /&gt;&lt;br /&gt;Export parameters&lt;br /&gt;E_EXIT_CAUSED_BY_CALLER: Delete list in CALLBACK_USER_COMMAND&lt;br /&gt;ES_EXIT_CAUSED_BY_USER: How the user left the list Tables    &lt;br /&gt;T_OUTTAB: Table with data to be displayed ---mandatory&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Documentation on function module : REUSE_ALV_GRID_DISPLAY&lt;br /&gt;&lt;br /&gt;The function module outputs an internal table with whatever structure in  the form of a formatted single- or multi-line list.&lt;br /&gt;&lt;br /&gt;Process:&lt;br /&gt;&lt;br /&gt; Passing an internal table with the set of information to be output&lt;br /&gt;&lt;br /&gt; Passing a structure with general layout specifications for list   layout&lt;br /&gt;&lt;br /&gt; Passing a field catalog in the form of an internal table&lt;br /&gt;&lt;br /&gt;The field catalog describes the fields to be output in the list.&lt;br /&gt;&lt;br /&gt;Notes&lt;br /&gt;&lt;br /&gt; All interactions performed on the list refer directly to the internal output table. Sorting the list, for example, also involves a resorting of the internal output table passed (since it was passed by reference).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; An important factor determining the usability of the tool or of various generic functions (totals, subtotals) is the expected amount of data to be displayed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Parameters :&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• I_INTERFACE_CHECK&lt;br /&gt;• I_BYPASSING_BUFFER&lt;br /&gt;• I_BUFFER_ACTIVE&lt;br /&gt;• I_CALLBACK_PROGRAM&lt;br /&gt;• I_CALLBACK_PF_STATUS_SET&lt;br /&gt;• I_CALLBACK_USER_COMMAND&lt;br /&gt;• I_CALLBACK_TOP_OF_PAGE&lt;br /&gt;• I_CALLBACK_HTML_TOP_OF_PAGE&lt;br /&gt;• I_CALLBACK_HTML_END_OF_LIST&lt;br /&gt;• I_STRUCTURE_NAME&lt;br /&gt;• I_BACKGROUND_ID&lt;br /&gt;• I_GRID_TITLE&lt;br /&gt;• I_GRID_SETTINGS&lt;br /&gt;• IS_LAYOUT&lt;br /&gt;• IT_FIELDCAT&lt;br /&gt;• IT_EXCLUDING&lt;br /&gt;• IT_SPECIAL_GROUPS&lt;br /&gt;• IT_SORT&lt;br /&gt;• IT_FILTER&lt;br /&gt;• IS_SEL_HIDE&lt;br /&gt;• I_DEFAULT&lt;br /&gt;• I_SAVE&lt;br /&gt;• IS_VARIANT&lt;br /&gt;• IT_EVENTS&lt;br /&gt;• IT_EVENT_EXIT&lt;br /&gt;• IS_PRINT&lt;br /&gt;• IS_REPREP_ID&lt;br /&gt;• I_SCREEN_START_COLUMN&lt;br /&gt;• I_SCREEN_START_LINE&lt;br /&gt;• I_SCREEN_END_COLUMN&lt;br /&gt;• I_SCREEN_END_LINE&lt;br /&gt;• IT_ALV_GRAPHICS&lt;br /&gt;• IT_ADD_FIELDCAT&lt;br /&gt;• IT_HYPERLINK&lt;br /&gt;• E_EXIT_CAUSED_BY_CALLER&lt;br /&gt;• ES_EXIT_CAUSED_BY_USER&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_CALLBACK_PROGRAM: Name of the calling program&lt;br /&gt;&lt;br /&gt;Program from which the function module is called and that contains the exit routines. The program should always be a report, function group, module pool or form routine pool (it should not be an include).&lt;br /&gt;&lt;br /&gt;Caution: Never pass SY-REPID directly at the interface. If field SY-REPID contains the desired program name, you must absolutely assign this name to an auxiliary variable and pass this variable to the interface.&lt;br /&gt;&lt;br /&gt;I_CALLBACK_PF_STATUS_SET: Set EXIT runtime to status&lt;br /&gt;&lt;br /&gt;Passing an EXIT routine indicates to the ALV that the caller wants to set a self-defined user status. As a result, the default status of the ALV is not set. The interface of the form routine specified must be defined as follows:&lt;br /&gt;&lt;br /&gt;        FORM set_pf_status USING rt_extab TYPE slis_t_extab&lt;br /&gt;&lt;br /&gt;Table RT_EXTAB contains the function codes that would be hidden on the standard user interface.&lt;br /&gt;&lt;br /&gt;If the caller wants to use a self-defined user interface (for example, in order to provide additional list functions or use existing functions), we recommend that you copy standard status STANDARD from function group SALV and modify it accordingly. ALV standard function codes always start with '&amp;amp;'.&lt;br /&gt;&lt;br /&gt;See also the documentation on parameter  I_CALLBACK_USER_COMMAND.&lt;br /&gt;&lt;br /&gt;If a self-defined user interface is used that includes function codes of the standard user  &lt;br /&gt;interface, the function codes of the excluding table  passed should be taken into account.&lt;br /&gt;&lt;br /&gt;This means that the user status should generally be set as follows:&lt;br /&gt;    SET PF-STATUS user status EXCLUDING rt_extab.&lt;br /&gt;&lt;br /&gt;Application functions can be added to excluding table rt_extab if they  are to be disabled.&lt;br /&gt;&lt;br /&gt;The routine is called whenever the standard user interface would be set  with SET PF-&lt;br /&gt;STATUS.&lt;br /&gt;&lt;br /&gt;Default&lt;br /&gt;&lt;br /&gt;If no EXIT routine is specified, the ALV sets a status that corresponds  to status STANDARD of function group SALV.&lt;br /&gt;&lt;br /&gt;I_CALLBACK_USER_COMMAND&lt;br /&gt;&lt;br /&gt;EXIT routine for command handling&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt; Passing an EXIT routine indicates to the ALV that the application wants  to respond to certain function codes.&lt;br /&gt;Generally, these are function codes that are unknown to the ALV (that is, are not standard ALV functions) and that were defined and set by a user status.&lt;br /&gt;&lt;br /&gt; See also the documentation on parameter  I_CALLBACK_PF_STATUS_SET.&lt;br /&gt;&lt;br /&gt; The interface of the form routine specified must be defined as follows:&lt;br /&gt;&lt;br /&gt;         FORM user_command  USING r_ucomm LIKE sy-ucomm&lt;br /&gt;                              rs_selfield TYPE slis_selfield.&lt;br /&gt;&lt;br /&gt; Parameter R_UCOMM contains the function code triggered.&lt;br /&gt;&lt;br /&gt; Structure RS_SELFIELD contains the following information:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o tabname  :      Name of the internal output table&lt;br /&gt;o tabindex :       Index of the internal output table&lt;br /&gt;o fieldname:      Field name&lt;br /&gt;o endsum   :     Cursor is located on the totals line&lt;br /&gt;o sumindex :     If &gt;0, the cursor is located on a subtotals line&lt;br /&gt;o value    :        Value of the field on the list&lt;br /&gt;o refresh  :       (Exporting) List should be set up again&lt;br /&gt;o col_stable:   (Exporting) Keep column position when list is set up    again&lt;br /&gt;o row_stable:   (Exporting) Keep row position when list is set up again&lt;br /&gt;o exit      :        (Exporting) Exit list (and ALV)&lt;br /&gt;o   before_action: Call before standard action execution&lt;br /&gt;o   after_action : Call after standard action execution, before list    setup&lt;br /&gt;o   ignore_multi : Internal use&lt;br /&gt;o   sel_tab_field: Internal use&lt;br /&gt;&lt;br /&gt;The EXIT routine is called whenever a function unknown to the ALV is triggered or if the routine call before/after the execution of a standard function code has been defined by interface parameter&lt;br /&gt;IT_EVENT_EXIT.&lt;br /&gt;&lt;br /&gt;See also the documentation on parameter IT_EVENT_EXIT.&lt;br /&gt;&lt;br /&gt;The function code and the current cursor position are then passed on to  the calling program through the EXIT routine.&lt;br /&gt;&lt;br /&gt;If the user has selected multiple rows by selecting checkboxes, the output table field designated as the checkbox contains the current state of the checkbox in the list.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_CALLBACK_TOP_OF_PAGE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;EXIT routine for handling TOP-OF-PAGE&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;If the caller specifies an EXIT routine, this routine must have the   following form:&lt;br /&gt;&lt;br /&gt;        FORM top_of_page.&lt;br /&gt;&lt;br /&gt;Module REUSE_ALV_COMMENTARY_WRITE can then be called within the EXIT routine. This module is responsible for formatting the header information and also ensures online TML formatting. In the print preview or in batch mode, the text passed is then output in the normal&lt;br /&gt;format.&lt;br /&gt;&lt;br /&gt;If module REUSE_ALV_COMMENTARY_WRITE cannot be used, you must use two parameters instead. In I_CALLBACK_TOP_OF_PAGE you pass the form routine that is responsible for normal formatting in batch mode or in the print preview mode. The form routine that is responsible for online formatting, is passed in parameter I_CALLBACK_HTML_TOP_OF_PAGE. If one of these parameters is not filled, top-of-page is not output in the respective mode.&lt;br /&gt;&lt;br /&gt;I_CALLBACK_HTML_TOP_OF_PAGE&lt;br /&gt;&lt;br /&gt;EXIT routine for HTML TOP-OF-PAGE&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;If function module REUSE_ALV_COMMENTARY_WRITE is not used in the form   for&lt;br /&gt;CALLBACK_TOP_OF_PAGE, the form routine must be passed in parameter     &lt;br /&gt;I_CALLBACK_HTML_TOP_OF_PAGE for the online mode. The form should then&lt;br /&gt;have the following format:&lt;br /&gt;&lt;br /&gt;form top_of_page using cl_dd type ref to cl_dd_document.&lt;br /&gt;&lt;br /&gt;In the form, you can, for example, use methods of class CL_DD_DOCUMENT&lt;br /&gt;to display text in HTML format.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_CALLBACK_HTML_END_OF_LIST&lt;br /&gt;&lt;br /&gt;EXIT routine for HTML END-OF-LIST&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;In this parameter, you can pass a form for the online handling of   end-of-list. The form must have the followiong format:&lt;br /&gt;&lt;br /&gt;  form end_of_list using cl_dd type ref to cl_dd_document.&lt;br /&gt;&lt;br /&gt;I_STRUCTURE_NAME&lt;br /&gt;&lt;br /&gt;Internal output table structure name&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;If the internal output table is defined through an ABAP Dictionary structure (INCLUDE STRUCTURE struct or LIKE struct), you can automatically set up the field catalog by passing the structure name.&lt;br /&gt;&lt;br /&gt;The field catalog is then internally set up for this structure as   follows:&lt;br /&gt;&lt;br /&gt;o   All fields are on the list (NO_OUT = SPACE) except fields of data   type CLNT.&lt;br /&gt;o   The key fields of the Dictionary structure are adopted in the field  catalog as key fields.&lt;br /&gt;o   References to unit fields stored in the Dictionary are adopted provided that the reference &lt;br /&gt;     fields are contained in the structure.&lt;br /&gt;o   If you additionally pass a field catalog as parameter, the structure information is merged             &lt;br /&gt;     with this field catalog.&lt;br /&gt;&lt;br /&gt;For more information on how to set up the field catalog automatically, see the documentation on function module REUSE_ALV_FIELDCATALOG_MERGE.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_GRID_TITLE&lt;br /&gt;&lt;br /&gt;Control title&lt;br /&gt;&lt;br /&gt;Description :   Specifies the title of the control. This text is displayed above the   grid.&lt;br /&gt;&lt;br /&gt;I_GRID_SETTINGS&lt;br /&gt;&lt;br /&gt;Grid settings&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt;If Top-of-Page or End-of-List are output online, these areas are displayed in a splitter above or below the list. Using I_GRID_SETTINGS you can reduce the default size to 0%. To do this, you use two fields:&lt;br /&gt;&lt;br /&gt;COLL_TOP_P: Sets Top-of-Page to 0%&lt;br /&gt;COLL_END_L: Sets End-of-List to 0%&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IS_LAYOUT&lt;br /&gt;&lt;br /&gt;List layout specifications&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;Structure for describing the list to be output.&lt;br /&gt;The parameters are described and grouped based on the following&lt;br /&gt;categories:&lt;br /&gt;&lt;br /&gt;• Display options&lt;br /&gt;• Exceptions&lt;br /&gt;• Totals&lt;br /&gt;• Interaction&lt;br /&gt;• Detail screen&lt;br /&gt;• Color&lt;br /&gt;• Other&lt;br /&gt;&lt;br /&gt;Note the section on pre-defined settings.&lt;br /&gt;&lt;br /&gt;Display options&lt;br /&gt;&lt;br /&gt;• colwidth_optimize&lt;br /&gt; Value range: SPACE, 'X'&lt;br /&gt; X' = Optimizes the column width to ensure that the content is&lt;br /&gt;displayed completely.&lt;br /&gt;&lt;br /&gt;• no_colhead&lt;br /&gt;Value range: SPACE, 'X'&lt;br /&gt;'X' = Do not output column headings.&lt;br /&gt;&lt;br /&gt;• zebra&lt;br /&gt;Value range: SPACE, 'X'&lt;br /&gt;'X' = Striped pattern (for wide lists, for example)&lt;br /&gt;&lt;br /&gt;• no_vline&lt;br /&gt;      Value range: SPACE, 'X'&lt;br /&gt;      'X' = Separate columns by SPACE.&lt;br /&gt;&lt;br /&gt;Exceptions&lt;br /&gt;&lt;br /&gt;lights_fieldname&lt;br /&gt;Value range: SPACE, field name of the internal output table field of the internal output table that contains the coding of the exceptions to be output .&lt;br /&gt;&lt;br /&gt;Coding in the field of the output table:&lt;br /&gt;'1' = red traffic light&lt;br /&gt;'2' = yellow traffic light&lt;br /&gt;'3' = green traffic light&lt;br /&gt;&lt;br /&gt;lights_tabname&lt;br /&gt;Value range: SPACE, table name of the internal output table Table name of the internal output table that contains the specified field in parameter LIGHTS_FIELDNAME.&lt;br /&gt;&lt;br /&gt;lights_rollname&lt;br /&gt;Value range: SPACE, data element name&lt;br /&gt;    The documentation defined for this data element is displayed when        the F1 help for an exception column is called.&lt;br /&gt;lights_condense&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = The system outputs the 'maximum' exception of the items  included in the total at subtotal level.&lt;br /&gt;Example: If a list row is output with a 'red traffic light', each subtotal included in this list row is also displayed with a 'red traffic light'.&lt;br /&gt;&lt;br /&gt;Totals&lt;br /&gt;&lt;br /&gt;• no_sumchoice&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;'X' = Value fields for which totals are calculated are communicated by the calling program (FIELDCAT-DO_SUM = 'X'). The user should not be allowed to change this pre-defined setting interactively.&lt;br /&gt;&lt;br /&gt;• no_totalline&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;'X' = No overall totals line should be displayed. If required, subtotals can nevertheless be calculated and displayed. The fields which are used for calculating subtotals are to be marked with&lt;br /&gt;    DO_SUM = 'X' in the field catalog.&lt;br /&gt;&lt;br /&gt;• no_subchoice&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;'X' = Characteristics at whose control level subtotals should be calculated are communicated by the calling program. The user should not be allowed to change this pre-defined setting&lt;br /&gt;    interactively.&lt;br /&gt;&lt;br /&gt;    See also the documentation on IMPORTING parameter IT_SORT.&lt;br /&gt;&lt;br /&gt;• no_subtotals&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = Calculating subtotals should not be allowed.&lt;br /&gt;&lt;br /&gt;• totals_only&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = Data is output in compressed format only at totals line level.&lt;br /&gt;    Prerequisite: IMPORTING parameter IT_SORT is filled accordingly with  the sort criteria and the subtotals indicator.&lt;br /&gt;    See also the documentation on IMPORTING parameter IT_SORT.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• totals_text&lt;br /&gt;    Value range: SPACE, string (not more than 60)&lt;br /&gt;' ' = In the first column, the standard system indicates the totals level by displaying an adequate number of '*' for the overall total.After the asterisks, the system displays the string 'total' provided that the column width of the first output column is large enough. If the column width is not sufficient, only the asterisks are displayed. 'string' = After the totals level indicated visually by means of '*', the system displays the string passed provided that the column width is sufficient.&lt;br /&gt;&lt;br /&gt;• subtotals_text&lt;br /&gt;Value range: SPACE, string (not more than 60) ' ' = In the first column, the standard system indicates the totals level by displaying an adequate number of '*' for the subtotals line. After the asterisks, the system displays the string *total* provided that the column width of the first output column is large enough and the characteristic of the first column is not a subtotal criterion. If the column width is not sufficient, only the asterisks are displayed.&lt;br /&gt;&lt;br /&gt;'string' = After the totals level indicated visually by means of '*', the system displays the string passed provided that the column width is sufficient and the characteristic of the first column is not a subtotal criterion.&lt;br /&gt;&lt;br /&gt;If the characteristic is a subtotal criterion, the system repeats the characteristic value for which subtotals were calculated after the totals level provided that the column width is sufficient.&lt;br /&gt;&lt;br /&gt;• numc_sum&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;' ' = In the standard system, it is not possible to calculate totals     for NUMC fields.&lt;br /&gt;'X' = It is generally possible to calculate totals for NUMC fields. If this indicator is set, you can use parameter FIELDCAT-NO_SUM to control for each NUMC column whether totals can be calculated&lt;br /&gt;or  not.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Interaction&lt;br /&gt;&lt;br /&gt;• box_fieldname&lt;br /&gt;Value range: SPACE, field name of the internal output table. If the list should have checkboxes at the beginning of each list row (to allow the user to select multiple rows at once), you must fill this parameter with the field name of the internal output table that represents the selection column for selecting rows with the help of checkboxes. The field is always displayed as a checkbox at the beginning of each list row without a list heading.&lt;br /&gt;&lt;br /&gt;• box_tabname&lt;br /&gt;    Value range: SPACE, table name of the internal output table&lt;br /&gt;&lt;br /&gt;• f2code&lt;br /&gt;    Value range: SPACE, function code&lt;br /&gt;    Meaning when the ALV standard interface is used:&lt;br /&gt;If you want to assign a standard ALV function code to a double-click (F2), you must assign this function code to this parameter.&lt;br /&gt;Example: You want to assign the standard ALV function 'Detail'&lt;br /&gt;    ('&amp;amp;ETA') to F2.&lt;br /&gt;      =&gt; LAYOUT-F2CODE = '&amp;amp;ETA'&lt;br /&gt;    Meaning if a self-defined interface is used:&lt;br /&gt;&lt;br /&gt;Case 1:&lt;br /&gt;You leave the standard ALV function code for F2 '&amp;amp;IC1' in the copied interface of the application. However, you want to have a function executed with F2 that is not assigned to F2 in the interface&lt;br /&gt;(standard ALV function or application function). You must    communicate this function code to the ALV using parameter F2CODE.&lt;br /&gt;&lt;br /&gt;Case 2:&lt;br /&gt;You remove the standard ALV function code for F2 '&amp;amp;IC1' from the interface of the application and use another function code instead (standard ALV function or application function). You must&lt;br /&gt;communicate this function code to the ALV using parameter F2CODE.&lt;br /&gt;&lt;br /&gt;    This is required if you want to allow columns to be selected.&lt;br /&gt;&lt;br /&gt;• confirmation_prompt&lt;br /&gt;   Value range: SPACE, 'X'&lt;br /&gt;   'X' = If one of the functions 'Back(F03)', 'Exit(F15)' or   'Cancel(F12)' is triggered, the&lt;br /&gt;   system asks the user if he wants to   leave the list.&lt;br /&gt;&lt;br /&gt;• key_hotspot&lt;br /&gt;   Value range: SPACE, 'X'&lt;br /&gt;   The columns defined as key fields in the field catalog  (FIELDCAT-KEY = 'X') are&lt;br /&gt;   output as a hotspot. This means that    single-clicking a key field (highlighted in color in       &lt;br /&gt;    the list) triggers the function assigned to F2.&lt;br /&gt;&lt;br /&gt;• reprep&lt;br /&gt;   Value range: SPACE, 'X'&lt;br /&gt;   'X' = Enable report/report interface&lt;br /&gt;   Prerequisite: Application system (=&gt; report RKKBRSTI  exists).&lt;br /&gt;   The list module acts as a potential sender in the report/report   interface (interface      &lt;br /&gt;    initialization, if required).&lt;br /&gt;&lt;br /&gt;The calling report/module pool entered in I_CALLBACK_PROGRAM is declared to the report/report interface as the sender report with type RT=Report. If the sender report is assigned to receiver reports in table TRSTI, function code BEBx is set to active. ( x = function code class)&lt;br /&gt;&lt;br /&gt;   Example:&lt;br /&gt;If sender RKTFGS15 has a receiver assignment for Report Writer report group 7KOI with function code class '3' (SAP setting), this receiver report group is called through the report/report interface at function code 'BEB3'. The selections passed to the report/report interface are the report selections and the key information of the selected row.&lt;br /&gt;&lt;br /&gt;For more information on the report/report interface, see the documentation on function group 'RSTI'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Detail screen&lt;br /&gt;&lt;br /&gt;• detail_initial_lines&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     ' ' = In the detail view, the system displays only fields whose   content is not set to &lt;br /&gt;     initial.&lt;br /&gt;     'X' = Initial field contents are also displayed on the detail     screen.&lt;br /&gt;&lt;br /&gt;• detail_titlebar&lt;br /&gt;     Value range: SPACE, string (not more than 30)&lt;br /&gt;     ' ' = The system displays 'Detail: Display' as the title of the&lt;br /&gt;     detail screen.&lt;br /&gt;     'string' = The system displays the string passed as the title of the&lt;br /&gt;     detail screen.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; Color&lt;br /&gt;&lt;br /&gt;• info_fieldname&lt;br /&gt;     Value range: SPACE, field name of the internal output table.&lt;br /&gt;You can color an entire list row individually by using a color code that is set for each row in a column of the internal output table. You must assign the field name of the field with the color code to&lt;br /&gt;this parameter.&lt;br /&gt;&lt;br /&gt;     The field of the internal output table must be of type CHAR(3).&lt;br /&gt;     The code must comply with the following syntax:     'Cxy':&lt;br /&gt;     C = Color (each code must begin with 'C')&lt;br /&gt;     x = Color number ('1'-'9')&lt;br /&gt;     y = Intensified ('0' = off, '1' = on)&lt;br /&gt;     Note: The color of the key column is not affected. If you also want&lt;br /&gt;     to color the key column at row or cell level, you can use complex&lt;br /&gt;     coloring which is described below for parameter COLTAB_FIELDNAME.&lt;br /&gt;     For information on coloring columns, see the documentation on field   catalog    &lt;br /&gt;     parameter FIELDCAT-EMPHASIZE of IMPORTING parameter   IT_FIELDCAT.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• coltab_fieldname&lt;br /&gt;    Value range: SPACE, field name of the internal output table&lt;br /&gt;You can color cells individually by using a color code that is set for the row of the cells in a column of the internal output table. You must assign the field name of the field with the color code to this parameter.&lt;br /&gt;&lt;br /&gt;The field of the internal output table must be of type   SLIS_T_SPECIALCOL_ALV.&lt;br /&gt;Principle: The field for the color code is filled in the row in which the cells to be colored are located. The field then contains an internal table of the above structure that includes the field&lt;br /&gt;names of the cells to be colored with the color code. The cell coordinates are therefore derived from the row position in which the color code is written and the column information contained in the&lt;br /&gt;color table. The row structure of the internal color table of type SLIS_T_SPECIALCOL_ALV is as follows:&lt;br /&gt;&lt;br /&gt;    Farbtabelle-NAME      = Field name of cell to be colored&lt;br /&gt;    Farbtabelle-COLOR-COL = Color number (1 - 9)&lt;br /&gt;    Farbtabelle-COLOR-INT = Intensified (0 = off, 1 = on)&lt;br /&gt;    Farbtabelle-COLOR-INV = Inverse (0 = off, 1 = on)&lt;br /&gt;    Farbtabelle-NOKEYCOL  = Ignore key coloring ('X' = yes, ' ' = no)&lt;br /&gt;&lt;br /&gt;    If parameter Farbtabelle-NAME is not filled, all color&lt;br /&gt;    specifications refer to all fields. As a result, the entire row is&lt;br /&gt;    colored.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Default&lt;br /&gt;&lt;br /&gt;In many cases, the default layout settings can be kept so that you&lt;br /&gt;frequently do not need to pass this structure with modified flags.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IT_FIELDCAT&lt;br /&gt;&lt;br /&gt;Field catalog with field descriptions&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt;Field catalog containing the field descriptions of the fields to be considered for the list output (usually, this is a subset of the fields in the internal output table).&lt;br /&gt;&lt;br /&gt; Basically, you need a field catalog for each list output that uses the  ALV.&lt;br /&gt;&lt;br /&gt;The field catalog associated with the output table is generated in the code of the caller. You can generate the field catalog automatically or semi-automatically by calling function module&lt;br /&gt; REUSE_ALV_FIELDCATALOG_MERGE.&lt;br /&gt;&lt;br /&gt;See also the documentation on function module : REUSE_ALV_FIELDCATALOG_MERGE.&lt;br /&gt;&lt;br /&gt;The minimum values required for the field catalog are documented in the 'Default' section. The caller can optionally use all other parameters to assign non-standard output attributes to a field.&lt;br /&gt;&lt;br /&gt;It is only in the following cases that you are not required to generate  the field catalog and pass it explicitly:&lt;br /&gt;&lt;br /&gt;• The structure of the internal table to be output corresponds to a structure stored in the Data Dictionary and is referenced with LIKE or INCLUDE STRUCTURE in the declaration of the internal table.&lt;br /&gt;&lt;br /&gt;• All fields of this structure should be output in the list.&lt;br /&gt;&lt;br /&gt;• The structure name is declared to the ALV using parameter&lt;br /&gt;     I_STRUCTURE_NAME.&lt;br /&gt;     See also the documentation on IMPORTNG parameter  I_STRUCTURE_NAME.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Positioning&lt;br /&gt;&lt;br /&gt;• col_pos (column position)&lt;br /&gt;    Value range: 0, 1 - 60&lt;br /&gt;Only relevant if the relative column positions should by default not be identical to the sequence of the fields in the field catalog.&lt;br /&gt;&lt;br /&gt;The parameter determines the relative column position of the field in the list output. The column sequence can interactively be changed by the user. If this parameter is set to its initial value for each field catalog entry, the columns are arranged in the order of the fields in the field catalog.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Identification&lt;br /&gt;&lt;br /&gt;• fieldname (field name)&lt;br /&gt;    Value range: Field name of the internal output table (required    parameter)&lt;br /&gt;    Field name of the field in the internal output table that is   described by this field                       &lt;br /&gt;    catalog entry.&lt;br /&gt;&lt;br /&gt;Reference to the Data Dictionary&lt;br /&gt;&lt;br /&gt;ref_fieldname (field name of the reference field)&lt;br /&gt;       Value range: SPACE, name of a field in the Data Dictionary  Name of the referenced                        &lt;br /&gt;                             field in the Data Dictionary.&lt;br /&gt;&lt;br /&gt;This parameter is only required if the field in the internal output table that is described by the current entry in the field catalog has a reference to the Data Dictionary (that is, is not a program field) and if the field name in the internal output table is not identical to the field name of the field in the Data Dictionary. If both field names are identical, it is sufficient to specify the Data Dictionary structure or table in parameter FIELDCAT-REF_TABNAME.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• ref_tabname (field name of the reference table/structure)&lt;br /&gt;              Value range: SPACE, name of a structure or table in the Data Dictionary   &lt;br /&gt;              Structure or table name of the referenced field in the Data Dictionary.&lt;br /&gt;&lt;br /&gt;This parameter is only required if the field in the internal output table that is described by the current entry in the field catalog has a reference to the Data Dictionary (that is, is not a program field).&lt;br /&gt;&lt;br /&gt;Reference to fields with currency units/units of measure Each amount or quantity field of the internal output table whose decimal places are to be displayed with the proper unit in the list&lt;br /&gt;output, must comply with the following conventions:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;- The field is of data type QUAN or CURR (internal type P). (Physically, the field must actually belong to this data type.Overriding the physical data type with parameter FIELDCAT-DATATYPE has no effect.)&lt;br /&gt;&lt;br /&gt;     -   There is one field in the internal output table that contains   the relevant unit.&lt;br /&gt;&lt;br /&gt;- There is also an entry for the unit field in the field catalog. (If the unit should not be displayed as a column in the list and the user should not be able to show the unit interactively, for example, because the unit is always unique and therefore explicitly output by the caller in the list header, then you can assign parameter FIELDCAT-TECH = 'X' to the field catalog entry for the unit field.&lt;br /&gt;&lt;br /&gt;     If a value field has a reference to a unit, this has the following effects when the list is output:&lt;br /&gt;&lt;br /&gt;     -   The decimal places are displayed with the proper unit.&lt;br /&gt;&lt;br /&gt;- An initial value field with reference to a non-initial unit is displayed as '0' (provided that FIELDCAT-NO_ZERO is initial). If unit-specific totals are calculated for this value field, the unit is considered in the analysis of whether homogeneous units exist.&lt;br /&gt;&lt;br /&gt;- An initial value field with reference to an initial unit is displayed as SPACE. If unit-specific totals are calculated for this value field, the unit SPACE has no effect on the homogeneity of the unit if the value field is initial.&lt;br /&gt;&lt;br /&gt;- For non-initial value fields with initial unit, the unit SPACE is considered as a unit when unit-specific totals are calculated.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Reference to the currency unit&lt;br /&gt;&lt;br /&gt;• cfieldname (field name of the currency unit field) Value range: SPACE, name of a field of the output table Only relevant to amount columns with unit reference.&lt;br /&gt;&lt;br /&gt;Field name of the field in the internal output table that contains the currency unit for the amount field FIELDCAT-FIELDNAME.&lt;br /&gt;   There must be a separate field catalog entry for the field specified in FIELDCAT-CFIELDNAME.&lt;br /&gt;&lt;br /&gt;Reference to the unit of measure&lt;br /&gt;&lt;br /&gt;• qfieldname (field name of the unit of measure field)&lt;br /&gt;   Value range: SPACE, name of a field of the output table&lt;br /&gt;   Only relevant to quantity columns with unit reference.&lt;br /&gt;   Field name of the field in the internal output table that contains&lt;br /&gt;   the unit of measure for the amount field FIELDCAT-FIELDNAME.&lt;br /&gt;   There must be a separate field catalog entry for the field specified&lt;br /&gt;   in FIELDCAT-QFIELDNAME.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Output options for a column&lt;br /&gt;&lt;br /&gt;• outputlen (column width)&lt;br /&gt;   Value range: 0 (initial), n&lt;br /&gt;   For fields with reference to the Data Dictionary you can leave this&lt;br /&gt;   parameter set to initial.&lt;br /&gt;   For fields without reference to the Data Dictionary (program fields)&lt;br /&gt;   you must set the parameter to the desired field output length on the&lt;br /&gt;   list (column width).&lt;br /&gt;   initial = The column width is derived from the output length of the&lt;br /&gt;   referenced field (domain) in the Data Dictionary.&lt;br /&gt;   n = The column width is n characters.&lt;br /&gt;&lt;br /&gt;• key (key column)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     'X' = Key field (colored output for key fields)&lt;br /&gt;     Key fields cannot be hidden interactively by the user.&lt;br /&gt;     Parameter FIELDCAT-NO_OUT must be left set to initial.&lt;br /&gt;     For exceptions, see the documentation on parameter FIELDCAT-KEY_SEL.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• key_sel (key column that can be hidden)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     Only relevant if FIELDCAT-KEY = 'X'&lt;br /&gt;     Key field that can be hidden interactively by the user.&lt;br /&gt;     The user cannot interactively change the sequence of the key&lt;br /&gt;     columns.&lt;br /&gt;     As with non-key fields, output control is performed using parameter&lt;br /&gt;     FIELDCAT-NO_OUT.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• no_out (field in the available fields list)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     'X' = Field is not displayed on the current list.&lt;br /&gt;     The field is available to the user in the field list and can be&lt;br /&gt;     interactively selected as a display field.&lt;br /&gt;     At row level, the user can use the detail function to display the&lt;br /&gt;     content of these fields.&lt;br /&gt;     See also the documentation on the 'Detail screen' section of&lt;br /&gt;     parameter IS_LAYOUT.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• tech (technical field)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     'X' = Technical field&lt;br /&gt;     The field cannot be output on the list and cannot be shown&lt;br /&gt;     interactively by the user.&lt;br /&gt;     The field may only be used in the field catalog (not in IT_SORT,&lt;br /&gt;     ...).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• emphasize (highlight column in color)&lt;br /&gt;    Value range: SPACE, 'X' or 'Cxyz' (x:'1'-'9'; y,z: '0'=off '1'=on)&lt;br /&gt;    'X' = The column is highlighted in the default color for color&lt;br /&gt;    highlighting.&lt;br /&gt;    'Cxyz' = The column is highlighted in the coded color:&lt;br /&gt;&lt;br /&gt;    -   C: Color (coding must start with C)&lt;br /&gt;&lt;br /&gt;    -   x: Color number&lt;br /&gt;&lt;br /&gt;    -   y: Intensified&lt;br /&gt;&lt;br /&gt;    -   z: Inverse&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• hotspot (column as hotspot)&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = The cells of the column are output as a hotspot.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• do_sum (calculate totals for column)&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = Totals are calculated for this field of the internal output&lt;br /&gt;    table.&lt;br /&gt;    This function can also be used interactively by the user.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• no_sum (totals calculation not allowed)&lt;br /&gt;    Value range: SPACE, 'X'&lt;br /&gt;    'X' = No totals may be calculated for this field although the data&lt;br /&gt;    type of the field allows totalling.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Formatting column contents&lt;br /&gt;&lt;br /&gt;• icon (icon)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     'X' = The column contents are displayed as an icon.&lt;br /&gt;     The column contents of the internal output table must consist of&lt;br /&gt;     valid icon strings (@xx@).&lt;br /&gt;     The caller should consider the problem of printing icons.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• symbol (symbol)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     'X' = The column contents are output as a symbol.&lt;br /&gt;     The column contents of the internal output table must consist of&lt;br /&gt;     valid symbol characters.&lt;br /&gt;     The caller should consider the problem of printing symbols.&lt;br /&gt;     Although symbols can generally be printed, they are not always shown&lt;br /&gt;     correctly depending on the printer configuration.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• just (justification)&lt;br /&gt;     Value range: SPACE, 'R', 'L', 'C'&lt;br /&gt;     Only relevant to fields of data type CHAR or NUMC&lt;br /&gt;     ' ' = Default justification according to data type&lt;br /&gt;     'R' = Right-justified output&lt;br /&gt;&lt;br /&gt;     'L' = Left-justified output&lt;br /&gt;     'C' = Centered output&lt;br /&gt;     The justification of the column header depends on the justification&lt;br /&gt;     of the column contents. You cannot justify the column header&lt;br /&gt;     independently of the column contents.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• lzero (leading zeros)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     Only relevant to fields of data type NUMC&lt;br /&gt;     By default, NUMC fields are output in the ALV right-justified&lt;br /&gt;     without leading zeros.&lt;br /&gt;     'X' = Output with leading zeros&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• no_sign (no +/- sign)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     Only relevant to value fields&lt;br /&gt;     'X' = Value output without +/- signs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• no_zero (suppress zeros)&lt;br /&gt;     Value range: SPACE, 'X'&lt;br /&gt;     Only relevant to value fields&lt;br /&gt;     'X' = Supress zeros&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• edit_mask (field formatting)&lt;br /&gt;     Value range: SPACE, mask&lt;br /&gt;     mask = See documentation on the WRITE formatting option&lt;br /&gt;     USING EDIT MASK mask&lt;br /&gt;     Using mask = '== conv' you can force an output conversion conv.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; Texts&lt;br /&gt;     The following parameters for texts are always required for program&lt;br /&gt;     fields without reference to the Data Dictionary.&lt;br /&gt;     For fields with reference to the Data Dictionary, the texts are&lt;br /&gt;     retrieved from the Data Dictionary. If you do not want this, you can&lt;br /&gt;     fill the text parameters also for fields with reference to the Data&lt;br /&gt;     Dictionary. If you do this, the corresponding texts from the Data&lt;br /&gt;     Dictionary will be ignored.&lt;br /&gt;&lt;br /&gt;     If the user changes the column width interactively, the text with&lt;br /&gt;     the appropriate length is always used as the column header.&lt;br /&gt;     If the user optimizes the column width interactively, both the field&lt;br /&gt;         contents and the column headings are considered for the list output:&lt;br /&gt;    If all field contents are shorter than the shortest column heading,&lt;br /&gt;    the column width is set based on the column heading.&lt;br /&gt;&lt;br /&gt;    The long field label is also used in the dialog boxes for defining&lt;br /&gt;    the display variant, the sort order, and so on.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• seltext_l (long field label)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• seltext_m (medium field label)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• seltext_s (short field label)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• reptext_ddic (heading)&lt;br /&gt;    Same as the 'heading' for data element maintenance.&lt;br /&gt;    When the list is output, the system does not necessarily retrieve&lt;br /&gt;    the text stored here, but uses the text that fits best.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• ddictxt (determine text)&lt;br /&gt;    Value range: SPACE, 'L', 'M', 'S', 'R'&lt;br /&gt;    Using possible values 'L', 'M', 'S', 'R' you can predefine the&lt;br /&gt;    keyword that should always be retrieved as the column header. If the&lt;br /&gt;    column width is changed, the system tries to find a heading that&lt;br /&gt;    fits the new output width.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Parameter for program fields without reference to the Data Dictionary&lt;br /&gt;    See also the parameter in the 'Texts' section.&lt;br /&gt;&lt;br /&gt;• datatype (data type)&lt;br /&gt;    Value range: SPACE, data type from the Data Dictionary (CHAR,&lt;br /&gt;    NUMC,...)&lt;br /&gt;    Only relevant to fields without reference to the Data Dictionary.&lt;br /&gt;    Data type of program field&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• ddic_outputlen (external output length)&lt;br /&gt;    Value range: 0 (initial), n&lt;br /&gt;    Only relevant to fields without reference to the Data Dictionary&lt;br /&gt;    whose output should nevertheless be modified using a conversion&lt;br /&gt;    exit.&lt;br /&gt;    Prerequisites:&lt;br /&gt;&lt;br /&gt;    -   FIELDCAT-EDIT_MASK = '==conv'&lt;br /&gt;        See also the documentation on parameter FIELDCAT-EDIT_MASK&lt;br /&gt;&lt;br /&gt;    -   FIELDCAT-INTLEN = n&lt;br /&gt;        See documentation on parameter FIELDCAT-INTLEN&lt;br /&gt;    n = Field output length of the external display&lt;br /&gt;    The column width FIELDCAT-OUTPUTLEN must not be equivalent to the&lt;br /&gt;    output length of the external display (FIELDCAT-DDIC_OUTPUTLEN).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   intlen (internal output length)&lt;br /&gt;    Value range: 0 (initial), n&lt;br /&gt;    Only relevant to fields without reference to the Data Dictionary&lt;br /&gt;    whose output should nevertheless be modified using a conversion&lt;br /&gt;    exit.&lt;br /&gt;    Prerequisites:&lt;br /&gt;&lt;br /&gt;    -   FIELDCAT-EDIT_MASK = '==conv'&lt;br /&gt;        See also the documentation on parameter FIELDCAT-EDIT_MASK&lt;br /&gt;&lt;br /&gt;    -   FIELDCAT-DDIC_OUTPUTLEN = n&lt;br /&gt;        See also the documentation on parameter FIELDCAT-DDIC_OUTPUTLEN&lt;br /&gt;    n = Field output length of the internal display&lt;br /&gt;&lt;br /&gt;o   rollname (data element)&lt;br /&gt;   Value range: SPACE, name of a data element from the Data Dictionary&lt;br /&gt;   You can use this parameter to provide an F1 help for a program field&lt;br /&gt;   without reference to the Data Dictionary or to provide an F1 help&lt;br /&gt;   other than that of the Data Dictionary for a field with reference to&lt;br /&gt;   the Data Dictionary.&lt;br /&gt;   When the F1 help is called for this field, the documentation for the&lt;br /&gt;   data element assigned is displayed.&lt;br /&gt;   If, for fields with reference to the Data Dictionary,&lt;br /&gt;   FIELDCAT-ROLLNAME is initial, the documentation for the data element&lt;br /&gt;   of the referenced field in the Data Dictionary is displayed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Other&lt;br /&gt;&lt;br /&gt;o   sp_group (field group key)&lt;br /&gt;   Value range: SPACE, CHAR(1)&lt;br /&gt;   Key for grouping fields&lt;br /&gt;   You assign the key to the group description using parameter&lt;br /&gt;   IT_SPECIAL_GROUPS (see also the documentation on parameter&lt;br /&gt;   IT_SPECIAL_GROUPS).&lt;br /&gt;   If you define such an assignment in the field catalog using&lt;br /&gt;   IT_SPECIAL_GROUPS, the fields in the field list of the display&lt;br /&gt;   variant dialog box are grouped accordingly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   reprep (selection criterion of the report/report interface)&lt;br /&gt;   Value range: SPACE, 'X'&lt;br /&gt;   Prerequisites:&lt;br /&gt;&lt;br /&gt;   -   The report/report interface exists in the system.&lt;br /&gt;       (function group RSTI, table TRSTI)&lt;br /&gt;&lt;br /&gt;   -   Parameter LAYOUT-REPREP = 'X'&lt;br /&gt;       (See also the documentation on parameter&lt;br /&gt;       LAYOUT-REPREP of IMPORTING parameter              IS_LAYOUT)&lt;br /&gt;     'X' = If the report/report interface is called, the value of this&lt;br /&gt;     field is passed as a selection criterion in the selected branch line&lt;br /&gt;     of the interface.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Default&lt;br /&gt;&lt;br /&gt; o   For internal table fields with reference to a field defined in the&lt;br /&gt;     Data Dictionary, it is normally sufficient to make the following&lt;br /&gt;     specifications:&lt;br /&gt;&lt;br /&gt;     -   fieldname&lt;br /&gt;&lt;br /&gt;     -   ref_tabname&lt;br /&gt;&lt;br /&gt; Note:&lt;br /&gt;&lt;br /&gt; All fields not explicitly mentioned here are either not relevant in this&lt;br /&gt; context or are not released!&lt;br /&gt;&lt;br /&gt; All other information is retrieved by the ALV from the Data Dictionary.&lt;br /&gt;&lt;br /&gt; If you do not specify the relative column position (COL_POS), the fields&lt;br /&gt; are output in the list in the order in which they were added to the&lt;br /&gt; field catalog.&lt;br /&gt;&lt;br /&gt; REF_FIELDNAME must only be specified if the field name of the internal&lt;br /&gt; table field is not identical to the field name of the referenced field&lt;br /&gt; in the Data Dictionary.&lt;br /&gt;&lt;br /&gt; Priority rule:&lt;br /&gt; Specifications made in the field catalog take priority over&lt;br /&gt; specifications in the Data Dictionary.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;• For internal table fields without reference to the Data Dictionary&lt;br /&gt;  (program fields), it is normally sufficient to make the following&lt;br /&gt;  specifications:&lt;br /&gt;&lt;br /&gt;  -   fieldname&lt;br /&gt;&lt;br /&gt;  -   outputlen&lt;br /&gt;&lt;br /&gt;  -   datatype  (without data type, character is the default)&lt;br /&gt;&lt;br /&gt;  -   seltext_s&lt;br /&gt;&lt;br /&gt;  -   seltext_l&lt;br /&gt;&lt;br /&gt;Note:&lt;br /&gt;&lt;br /&gt;If you assign a data element to parameter ROLLNAME, you can, for&lt;br /&gt;example, implement an F1 help for program fields.&lt;br /&gt;&lt;br /&gt;IT_EXCLUDING&lt;br /&gt;&lt;br /&gt;Table of inactive function codes&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; Optional IMPORTING parameter IT_EXCLUDING is an internal table. You must&lt;br /&gt; only fill this table if the caller uses the standard interface of the&lt;br /&gt; list tool but does not need certain interface functions and therefore&lt;br /&gt; wants to disable them.&lt;br /&gt;&lt;br /&gt; In this case, you must enter the function codes of these standard&lt;br /&gt; functions into the table.&lt;br /&gt;&lt;br /&gt;IT_SORT&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Sort criteria for first list display&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; Using internal table IT_SORT, the caller determines the sort order&lt;br /&gt; and/or the subtotalling of the basic list.&lt;br /&gt;&lt;br /&gt; The following fields of this internal table must be filled:&lt;br /&gt;&lt;br /&gt; o   spos&lt;br /&gt;     Sort order&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   fieldname&lt;br /&gt;     Field name in the internal output table&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   up&lt;br /&gt;     'X' = Sorted in ascending order&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   down&lt;br /&gt;     'X' = Sorted in descending order&lt;br /&gt;&lt;br /&gt;     subtot&lt;br /&gt;     'X' = Subtotals for control level changes&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   comp (INTERNAL USE ONLY)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   expa&lt;br /&gt;     Prequisite:&lt;br /&gt;     IT_SORT-SUBTOT = 'X', that is, the sort criterion is also the&lt;br /&gt;     subtotals criterion.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;   If no complete breakdown but only a breakdown to totals level n that&lt;br /&gt;   can be further expanded by the user should be displayed when the&lt;br /&gt;   list is output for the first time, you must set the indicator for&lt;br /&gt;   the totals level criterion of level n.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IT_FILTER&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Filter criteria for first list output&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; Table with filter criteria&lt;br /&gt;&lt;br /&gt; Using this parameter, you can pass on filter criteria resulting from&lt;br /&gt; explicitly loading a display variant in advance, for example, to list&lt;br /&gt; output.&lt;br /&gt;&lt;br /&gt; This table should never be set up 'manually'.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IS_SEL_HIDE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Selection information modification&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; This parameter is currently not supported!&lt;br /&gt;&lt;br /&gt; Only relevant if layout parameter&lt;br /&gt; LAYOUT-GET_SELINFOS of IMPORTING structure IS_LAYOUT is set.&lt;br /&gt;&lt;br /&gt; Complex type for modifying information displayed on the selection dialog&lt;br /&gt; box:&lt;br /&gt;&lt;br /&gt; o   mode:              'R' = Only entries passed in internal table&lt;br /&gt;                              IS_SEL_HIDE-T_ENTRIES are output on&lt;br /&gt;                              the dialog box. Selection information&lt;br /&gt;                              obtained by the list tool by reading the&lt;br /&gt;                              selection screen again (only if the report&lt;br /&gt;                              is called with selection screen) are&lt;br /&gt;                              replaced by the entries passed.&lt;br /&gt;&lt;br /&gt;                        'S' = The selection information obtained by the&lt;br /&gt;                              list tool by reading the selection screen&lt;br /&gt;                              of the calling report again, are modified&lt;br /&gt;                              by the entries of table&lt;br /&gt;                              IS_SEL_HIDE-T_ENTRIES.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   t_entries:         Table with selection information&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   t_entries-mode:   'A' = Display selection information of the current&lt;br /&gt;                             table row on the information dialog box.&lt;br /&gt;                       'D' = Do not display selection information of the&lt;br /&gt;                             the Select option or of parameter SELNAME  on the dialog box.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-selname: (required only if t_entries-mode = 'D')&lt;br /&gt;                      name of Select option or parameter&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The following table fields are only required if t_entries-mode = 'A'.&lt;br /&gt;They contain the selection information to be added.&lt;br /&gt;&lt;br /&gt;o   t_entries-field:  DDIC field name of the field for which selection&lt;br /&gt;                     information is to be displayed&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-table:  DDIC table name of t_entries-field.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-stext:  Field description on the information dialog box.&lt;br /&gt;                     If t_entries-field and t_entries-table were&lt;br /&gt;                     filled, this text is taken from the DDIC.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-valuf:  Selection condition from-value (external format)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-valut:  Selection condition to-value (external format)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-sign0:  (I)nclusive (E)xclusive&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;o   t_entries-optio:  All values of the option field of the Select&lt;br /&gt;                     option are allowed.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The remaining fields are used internally and are irrelevant to the&lt;br /&gt;caller.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_DEFAULT&lt;br /&gt;&lt;br /&gt;Initial variant active/inactive logic&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; Initial variant maintenance active/inactive. .&lt;br /&gt;&lt;br /&gt; Prerequisite:        Parameter IS_VARIANT is filled accordingly.&lt;br /&gt;     See also the documentation on the IMPORTING parameter IS_VARIANT.&lt;br /&gt;&lt;br /&gt;Value Range&lt;br /&gt;&lt;br /&gt; SPACE = Definition of initial variants not allowed&lt;br /&gt;&lt;br /&gt; 'X' =   Definition of initial variants allowed&lt;br /&gt;&lt;br /&gt;Default :      SPACE&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_SAVE&lt;br /&gt;&lt;br /&gt;Variants can be saved&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; Controls the save mode&lt;br /&gt;     Prerequisite:&lt;br /&gt;     Parameter IS_VARIANT is filled accordingly.&lt;br /&gt;     See also the documentation on IMPORTING parameter IS_VARIANT.&lt;br /&gt;&lt;br /&gt;Value Range&lt;br /&gt;&lt;br /&gt; o   ' ' = Display variants cannot be saved&lt;br /&gt;     Defined display variants (such as delivered display variants) can be&lt;br /&gt;     selected for presentation regardless of this indicator. However,&lt;br /&gt;     changes cannot be saved.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   'X' = Standard save mode&lt;br /&gt;     Display variants can be saved as standard display variants.&lt;br /&gt;     Saving display variants as user-specific is not possible.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   'U' = User-specific save mode&lt;br /&gt;     Display variants can only be saved as user-specific.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   'A' = Standard and user-specific save mode&lt;br /&gt;     Display variants can be saved both as user-specific and as standard&lt;br /&gt;     variants. Users make their choice on the dialog box for saving the&lt;br /&gt;     display variant.&lt;br /&gt;&lt;br /&gt;Default : SPACE .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;IS_VARIANT&lt;br /&gt;&lt;br /&gt;Variant information&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt; This structure is only relevant if display variants are to be saved&lt;br /&gt; and/or read.&lt;br /&gt;&lt;br /&gt; Variant information including the name of the list variant that is used&lt;br /&gt; to output the list.&lt;br /&gt;&lt;br /&gt; To allow display variants to be read within the ALV, you must specify&lt;br /&gt; the acess path using fields REPORT (required field), HANDLE (optional&lt;br /&gt; field) and/or LOG_GROUP (optional field).&lt;br /&gt;&lt;br /&gt; If you also want to allow display variants to be saved, you must&lt;br /&gt; additionally fill parameter I_SAVE accordingly.&lt;br /&gt;&lt;br /&gt; See also the documentation on IMPORTING parameter I_SAVE.&lt;br /&gt;&lt;br /&gt; A variant is uniquely described through:&lt;br /&gt;&lt;br /&gt; o   The program to which the variant is assigned (REPORT)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   The handle (HANDLE), if, for example, multiple lists with different&lt;br /&gt;     structures and data are called in a program (I_CALLBACK_PROGRAM).&lt;br /&gt;     The handle is a CHAR(4) field that must be uniquely defined and&lt;br /&gt;     describes the assignment of the call to the current structure of the&lt;br /&gt;     internal output table.&lt;br /&gt;     Example:&lt;br /&gt;     Depending on the user interaction, several types of lists can be&lt;br /&gt;     output in program x.&lt;br /&gt;     The user should be able to define display variants for each type of&lt;br /&gt;     list.&lt;br /&gt;     You provide this function to the user by assigning a HANDLE to each&lt;br /&gt;     list. If variants for the program and the handle are saved, the&lt;br /&gt;     handle must not be modified any more.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   The logical group, if, for example, the same list is created with&lt;br /&gt;     different settings through various transactions (LOG_GROUP).&lt;br /&gt;     The logical group is a CHAR(4) that must be uniquely defined and&lt;br /&gt;     specifies the assignment.&lt;br /&gt;     Example:&lt;br /&gt;     Program x is called through transactions T1 and T2. Depending on the&lt;br /&gt;     transaction code, the fields available to the user through the field&lt;br /&gt;     catalog differ in their assignment to different logical groups.&lt;br /&gt;     If variants for the program and the logical group are saved, the&lt;br /&gt;     logical group must not be modified any more.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   The user name, if user-specific variants are saved (USERNAME).&lt;br /&gt;     You do not have to fill this parameter manually since the variant&lt;br /&gt;     name is unique.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; o   The variant name (VARIANT).&lt;br /&gt;     You only have to fill this parameter if this structure is to be used&lt;br /&gt;     to read a concrete variant and the list is to be output with this&lt;br /&gt;     variant.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Value Range&lt;br /&gt;&lt;br /&gt; To call a list with a variant, you must specify the above fields.&lt;br /&gt;&lt;br /&gt;Default&lt;br /&gt;&lt;br /&gt; If the structure is initial, but saving is active (I_SAVE is not&lt;br /&gt; initial), then IS_VARIANT-REPORT = I_CALLBACK_PROGRAM is set.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;For a possible entries help for variants, function module&lt;br /&gt;REUSE_ALV_VARIANT_F4 is available.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I_SCREEN_START_COLUMN&lt;br /&gt;I_SCREEN_START_LINE&lt;br /&gt;I_SCREEN_END_COLUMN&lt;br /&gt;   I_SCREEN_END_LINE</description><link>http://liveinabap.blogspot.com/2008/06/complete-alv-documentation.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-8818796428830441124</guid><pubDate>Tue, 03 Jun 2008 10:35:00 +0000</pubDate><atom:updated>2008-06-03T03:36:39.824-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP ALV REPORTS</category><title>OOPS AT A GLANCE</title><description>Object orientation (OO), or to be more precise, object-oriented programming, is a problem-solving method in which the software solution reflects objects in the real world.&lt;br /&gt;&lt;br /&gt;A comprehensive introduction to object orientation as a whole would go far beyond the limits of this introduction to ABAP Objects. This documentation introduces a selection of terms that are used universally in object orientation and also occur in ABAP Objects. In subsequent sections, it goes on to discuss in more detail how these terms are used in ABAP Objects. The end of this section contains a list of further reading, with a selection of titles about object orientation.&lt;br /&gt;&lt;br /&gt;Objects&lt;br /&gt;&lt;br /&gt;An object is a section of source code that contains data and provides services. The data forms the attributes of the object. The services are known as methods (also known as operations or functions). Typically, methods operate on private data (the attributes, or state of the object), which is only visible to the methods of the object. Thus the attributes of an object cannot be changed directly by the user, but only by the methods of the object. This guarantees the internal consistency of the object.&lt;br /&gt;&lt;br /&gt;Classes&lt;br /&gt;&lt;br /&gt;Classes describe objects. From a technical point of view, objects are runtime instances of a class. In theory, you can create any number of objects based on a single class. Each instance (object) of a class has a unique identity and its own set of values for its attributes.&lt;br /&gt;&lt;br /&gt;Object References&lt;br /&gt;&lt;br /&gt;In a program, you identify and address objects using unique object references. Object references allow you to access the attributes and methods of an object.&lt;br /&gt;&lt;br /&gt;In object-oriented programming, objects usually have the following properties:&lt;br /&gt;&lt;br /&gt;Encapsulation&lt;br /&gt;&lt;br /&gt;Objects restrict the visibility of their resources (attributes and methods) to other users. Every object has an interface, which determines how other objects can interact with it. The implementation of the object is encapsulated, that is, invisible outside the object itself.&lt;br /&gt;&lt;br /&gt;Polymorphism&lt;br /&gt;&lt;br /&gt;Identical (identically-named) methods behave differently in different classes. Object-oriented programming contains constructions called interfaces. They enable you to address methods with the same name in different objects. Although the form of address is always the same, the implementation of the method is specific to a particular class.&lt;br /&gt;&lt;br /&gt;Inheritance&lt;br /&gt;&lt;br /&gt;You can use an existing class to derive a new class. Derived classes inherit the data and methods of the superclass. However, they can overwrite existing methods, and also add new ones.&lt;br /&gt;&lt;br /&gt;Uses of Object Orientation&lt;br /&gt;&lt;br /&gt;Below are some of the advantages of object-oriented programming:&lt;br /&gt;&lt;br /&gt;Complex software systems become easier to understand, since object-oriented structuring provides a closer representation of reality than other programming techniques.&lt;br /&gt;In a well-designed object-oriented system, it should be possible to implement changes at class level, without having to make alterations at other points in the system. This reduces the overall amount of maintenance required.&lt;br /&gt;Through polymorphism and inheritance, object-oriented programming allows you to reuse individual components.&lt;br /&gt;In an object-oriented system, the amount of work involved in revising and maintaining the system is reduced, since many problems can be detected and corrected in the design phase.</description><link>http://liveinabap.blogspot.com/2008/06/oops-at-glance.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-9070299669198190812</guid><pubDate>Mon, 26 May 2008 12:13:00 +0000</pubDate><atom:updated>2008-05-26T05:16:36.982-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Questions</category><title>Performance Tuning</title><description>&lt;span style="font-size:85%;"&gt;For all entries&lt;br /&gt;The for all entries creates a where clause, where all the entries in the driver table are combined with OR. If the number of&lt;br /&gt;entries in the driver table is larger than rsdb/max_blocking_factor, several similar SQL statements are executed to limit the&lt;br /&gt;length of the WHERE clause.&lt;br /&gt;&lt;br /&gt;The plus&lt;br /&gt;&lt;br /&gt;   * Large amount of data&lt;br /&gt;   * Mixing processing and reading of data&lt;br /&gt;   * Fast internal reprocessing of data&lt;br /&gt;   * Fast&lt;br /&gt;&lt;br /&gt;The Minus&lt;br /&gt;&lt;br /&gt;   * Difficult to program/understand&lt;br /&gt;   * Memory could be critical (use FREE or PACKAGE size)&lt;br /&gt;&lt;br /&gt;Some steps that might make FOR ALL ENTRIES more efficient:&lt;br /&gt;&lt;br /&gt;   * Removing duplicates from the the driver table&lt;br /&gt;   * Sorting the driver table&lt;br /&gt;&lt;br /&gt;     If possible, convert the data in the driver table to ranges so a BETWEEN statement is used instead of and OR statement:&lt;br /&gt;     FOR ALL ENTRIES IN i_tab&lt;br /&gt;       WHERE mykey &gt;= i_tab-low and&lt;br /&gt;             mykey &lt;= i_tab-high.  Nested selects The plus:      * Small amount of data      * Mixing processing and reading of data      * Easy to code - and understand   The minus:      * Large amount of data      * when mixed processing isn’t needed      * Performance killer no. 1  Select using JOINS The plus      * Very large amount of data      * Similar to Nested selects - when the accesses are planned by the programmer      * In some cases the fastest      * Not so memory critical   The minus      * Very difficult to program/understand      * Mixing processing and reading of data not possible   Use the selection criteria   SELECT * FROM SBOOK.                       CHECK: SBOOK-CARRID = 'LH' AND                           SBOOK-CONNID = '0400'.          ENDSELECT.                                SELECT * FROM SBOOK                         WHERE CARRID = 'LH' AND                         CONNID = '0400'.                  ENDSELECT.                                 Use the aggregated functions   C4A = '000'.                SELECT * FROM T100            WHERE SPRSL = 'D' AND             ARBGB = '00'.         CHECK: T100-MSGNR &gt; C4A.&lt;br /&gt; C4A = T100-MSGNR.       &lt;br /&gt;ENDSELECT.                &lt;br /&gt;&lt;br /&gt;SELECT MAX( MSGNR ) FROM T100 INTO C4A &lt;br /&gt;WHERE SPRSL = 'D' AND                &lt;br /&gt;      ARBGB = '00'.                  &lt;br /&gt;&lt;br /&gt;Select with view&lt;br /&gt;&lt;br /&gt;SELECT * FROM DD01L                    &lt;br /&gt; WHERE DOMNAME LIKE 'CHAR%'           &lt;br /&gt;       AND AS4LOCAL = 'A'.            &lt;br /&gt; SELECT SINGLE * FROM DD01T           &lt;br /&gt;   WHERE   DOMNAME    = DD01L-DOMNAME &lt;br /&gt;       AND AS4LOCAL   = 'A'           &lt;br /&gt;       AND AS4VERS    = DD01L-AS4VERS &lt;br /&gt;       AND DDLANGUAGE = SY-LANGU.     &lt;br /&gt;ENDSELECT.                             &lt;br /&gt;&lt;br /&gt;SELECT * FROM DD01V                    &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%'           &lt;br /&gt;      AND DDLANGUAGE = SY-LANGU.     &lt;br /&gt;ENDSELECT.                             &lt;br /&gt;&lt;br /&gt;Select with index support&lt;br /&gt;&lt;br /&gt;SELECT * FROM T100            &lt;br /&gt;WHERE     ARBGB = '00'      &lt;br /&gt;      AND MSGNR = '999'.    &lt;br /&gt;ENDSELECT.                    &lt;br /&gt;&lt;br /&gt;SELECT * FROM T002.             &lt;br /&gt; SELECT * FROM T100            &lt;br /&gt;   WHERE     SPRSL = T002-SPRAS&lt;br /&gt;         AND ARBGB = '00'      &lt;br /&gt;         AND MSGNR = '999'.    &lt;br /&gt; ENDSELECT.                    &lt;br /&gt;ENDSELECT.                      &lt;br /&gt;&lt;br /&gt;Select … Into table&lt;br /&gt;&lt;br /&gt;REFRESH X006.                 &lt;br /&gt;SELECT * FROM T006 INTO X006. &lt;br /&gt; APPEND X006.                &lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;br /&gt;SELECT * FROM T006 INTO TABLE X006.&lt;br /&gt;&lt;br /&gt;Select with selection list&lt;br /&gt;&lt;br /&gt;SELECT * FROM DD01L              &lt;br /&gt; WHERE DOMNAME LIKE 'CHAR%'     &lt;br /&gt;       AND AS4LOCAL = 'A'.      &lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;br /&gt;SELECT DOMNAME FROM DD01L    &lt;br /&gt;INTO DD01L-DOMNAME         &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%' &lt;br /&gt;      AND AS4LOCAL = 'A'.  &lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;br /&gt;Key access to multiple lines&lt;br /&gt;&lt;br /&gt;LOOP AT TAB.          &lt;br /&gt;CHECK TAB-K = KVAL. &lt;br /&gt;" ...               &lt;br /&gt;ENDLOOP.              &lt;br /&gt;&lt;br /&gt;LOOP AT TAB WHERE K = KVAL.     &lt;br /&gt; " ...                         &lt;br /&gt;ENDLOOP.                        &lt;br /&gt;&lt;br /&gt;Copying internal tables&lt;br /&gt;&lt;br /&gt;REFRESH TAB_DEST.              &lt;br /&gt;LOOP AT TAB_SRC INTO TAB_DEST. &lt;br /&gt; APPEND TAB_DEST.             &lt;br /&gt;ENDLOOP.                       &lt;br /&gt;&lt;br /&gt;TAB_DEST[] = TAB_SRC[].&lt;br /&gt;&lt;br /&gt;Modifying a set of lines&lt;br /&gt;&lt;br /&gt;LOOP AT TAB.             &lt;br /&gt; IF TAB-FLAG IS INITIAL.&lt;br /&gt;   TAB-FLAG = 'X'.      &lt;br /&gt; ENDIF.                 &lt;br /&gt; MODIFY TAB.            &lt;br /&gt;ENDLOOP.                 &lt;br /&gt;&lt;br /&gt;TAB-FLAG = 'X'.                  &lt;br /&gt;MODIFY TAB TRANSPORTING FLAG     &lt;br /&gt;          WHERE FLAG IS INITIAL.&lt;br /&gt;&lt;br /&gt;Deleting a sequence of lines&lt;br /&gt;&lt;br /&gt;DO 101 TIMES.               &lt;br /&gt; DELETE TAB_DEST INDEX 450.&lt;br /&gt;ENDDO.                      &lt;br /&gt;&lt;br /&gt;DELETE TAB_DEST FROM 450 TO 550.&lt;br /&gt;&lt;br /&gt;Linear search vs. binary&lt;br /&gt;&lt;br /&gt;READ TABLE TAB WITH KEY K = 'X'.&lt;br /&gt;&lt;br /&gt;READ TABLE TAB WITH KEY K = 'X' BINARY SEARCH.&lt;br /&gt;&lt;br /&gt;Comparison of internal tables&lt;br /&gt;&lt;br /&gt;DESCRIBE TABLE: TAB1 LINES L1,      &lt;br /&gt;               TAB2 LINES L2.      &lt;br /&gt;&lt;br /&gt;IF L1 &lt;&gt; L2.                        &lt;br /&gt; TAB_DIFFERENT = 'X'.              &lt;br /&gt;ELSE.                               &lt;br /&gt; TAB_DIFFERENT = SPACE.            &lt;br /&gt; LOOP AT TAB1.                     &lt;br /&gt;   READ TABLE TAB2 INDEX SY-TABIX. &lt;br /&gt;   IF TAB1 &lt;&gt; TAB2.                &lt;br /&gt;     TAB_DIFFERENT = 'X'. EXIT.    &lt;br /&gt;   ENDIF.                          &lt;br /&gt; ENDLOOP.                          &lt;br /&gt;ENDIF.                              &lt;br /&gt;&lt;br /&gt;IF TAB_DIFFERENT = SPACE.           &lt;br /&gt; " ...                             &lt;br /&gt;ENDIF.                              &lt;br /&gt;&lt;br /&gt;IF TAB1[] = TAB2[].  &lt;br /&gt;" ...              &lt;br /&gt;ENDIF.               &lt;br /&gt;&lt;br /&gt;Modify selected components&lt;br /&gt;&lt;br /&gt;LOOP AT TAB.           &lt;br /&gt;TAB-DATE = SY-DATUM. &lt;br /&gt;MODIFY TAB.          &lt;br /&gt;ENDLOOP.               &lt;br /&gt;&lt;br /&gt;WA-DATE = SY-DATUM.                    &lt;br /&gt;LOOP AT TAB.                           &lt;br /&gt;MODIFY TAB FROM WA TRANSPORTING DATE.&lt;br /&gt;ENDLOOP.                               &lt;br /&gt;&lt;br /&gt;Appending two internal tables&lt;br /&gt;&lt;br /&gt;LOOP AT TAB_SRC.              &lt;br /&gt; APPEND TAB_SRC TO TAB_DEST. &lt;br /&gt;ENDLOOP&lt;br /&gt;&lt;br /&gt;APPEND LINES OF TAB_SRC TO TAB_DEST.&lt;br /&gt;&lt;br /&gt;Deleting a set of lines&lt;br /&gt;&lt;br /&gt;LOOP AT TAB_DEST WHERE K = KVAL. &lt;br /&gt; DELETE TAB_DEST.               &lt;br /&gt;ENDLOOP&lt;br /&gt;&lt;br /&gt;DELETE TAB_DEST WHERE K = KVAL.&lt;br /&gt;&lt;br /&gt;Tools available in SAP to pin-point a performance problem&lt;br /&gt;&lt;br /&gt;     The runtime analysis (SE30)&lt;br /&gt;&lt;br /&gt;     SQL Trace (ST05)&lt;br /&gt;&lt;br /&gt;     Tips and Tricks tool&lt;br /&gt;&lt;br /&gt;     The performance database&lt;br /&gt;&lt;br /&gt;Optimizing the load of the database&lt;br /&gt;Using table buffering&lt;br /&gt;Using buffered tables improves the performance considerably. Note that in some cases a stament can not be used with a buffered table, so when using these staments the buffer will be bypassed. These staments are:&lt;br /&gt;&lt;br /&gt;   * Select DISTINCT&lt;br /&gt;   * ORDER BY / GROUP BY / HAVING clause&lt;br /&gt;   * Any WHERE clasuse that contains a subquery or IS NULL expression&lt;br /&gt;   * JOIN s&lt;br /&gt;   * A SELECT... FOR UPDATE&lt;br /&gt;&lt;br /&gt;If you wnat to explicitly bypass the bufer, use the BYPASS BUFFER addition to the SELECT clause.&lt;br /&gt;Use the ABAP SORT Clause Instead of ORDER BY&lt;br /&gt;The ORDER BY clause is executed on the database server while the ABAP SORT statement is executed on the application server. The datbase server will usually be the bottleneck, so sometimes it is better to move thje sort from the datsbase server to the application server.&lt;br /&gt;&lt;br /&gt;If you are not sorting by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are sorting by another key, it could be better to use the ABAP SORT stament to sort the data in an internal table. Note however that for very large result sets it might not be a feasible solution and you would want to let the datbase server sort it.&lt;br /&gt;Avoid ther SELECT DISTINCT Statement&lt;br /&gt;As with the ORDER BY clause it could be better to avoid using SELECT DISTINCT, if some of the fields are not part of an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on an internal table, to delete duplciate rows.&lt;/span&gt;</description><link>http://liveinabap.blogspot.com/2008/05/performance-tuning.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-6163698801474754855</guid><pubDate>Mon, 26 May 2008 11:59:00 +0000</pubDate><atom:updated>2008-05-26T05:12:56.861-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Questions</category><title>ABAP - Questions</title><description>&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is a 'Z' report?&lt;/b&gt;
&lt;br /&gt;Y or Z report refer to customized abap programs written for modules such as mm, sd, pp or fi/co etc. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can we create an ABAP program without using Y or Z?&lt;/b&gt;
&lt;br /&gt;No, this is because all non Yor Z programs are standard SAP programs. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. How data is stored in cluster table? &lt;/b&gt;
&lt;br /&gt;Each field of cluster table behaves as tables which contains the no. of entries.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. What are client dependant objects in abap/sap? &lt;/b&gt;
&lt;br /&gt;SAP Script layout, text element, and some DDIC objects.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. On which even we can validate the input fields in module progams? &lt;/b&gt;
&lt;br /&gt;In PAI (Write field statement on field you want to validate, if you want to validate group of fields put in chain and End chain statement.)  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. In selection screen I have three fields, plant mat no and material group. If I input plant how do I get the mat no and material group based on plant dynamically? &lt;/b&gt;
&lt;br /&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR MATERIAL.
&lt;br /&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' to get material and material group for the plant.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. How do you get output from IDOC? &lt;/b&gt;
&lt;br /&gt;Data in IDOc is stored in segments, the output from Idoc is obtained by reading the data stored in its respective segments.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;6. When top of the page event is triggered? &lt;/b&gt;
&lt;br /&gt;After excuteing first write statement in start-of-selection event.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;7. Can we create field without data element and how? &lt;/b&gt;
&lt;br /&gt;In SE11 one option is available above the fields strip. Data element/ direct type.  &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;8. How do we debug sapscript? &lt;/b&gt;
&lt;br /&gt;Go to SE71 give lay set name , go to utilities select debugger mode on. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;9. Which transaction code can I used to analyze the performance of ABAP program. &lt;/b&gt;
&lt;br /&gt;TCode AL21. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;10. How can I copy a standard table to make my own z_table.&lt;/b&gt;
&lt;br /&gt;Go to transaction SE11. Then there is one option to copy table. Press that button.  Enter the name of the standard table and in the Target table enter Z table name and press enter. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Following are some of the answers which I gave upto my knowledge.&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;1. What is the use of 'outerjoin' &lt;/b&gt;
&lt;br /&gt;Ans. With the use of outer join you can join the tables even there is no entry in all the tables used in the view.
&lt;br /&gt;       In case of inner join there should be an entry in al the tables use in the view. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;2. When to  use logical database?&lt;/b&gt;
&lt;br /&gt;Ans. Advantage of Logical databases:
&lt;br /&gt;       less coding s required to retrieve data compared to normal internel tables.
&lt;br /&gt;       Tables used LDB are in hierarchial structure. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;3. What is the use of 'table index'?&lt;/b&gt;
&lt;br /&gt;Ans .Index is used for faster access of data base tables. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. What is the use of 'FOR ALL ENTRIES'?&lt;/b&gt;
&lt;br /&gt;Ans. To avoid nested select statements we use SELECT FOR ALL ENTRIES statement.
&lt;br /&gt;       If there r more than 10000 records SELECT FOR ALL ENTRIES is used.
&lt;br /&gt;       Performance wise SELECT FOR ALL ENTRIES is better to use. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;5. Can you set up background processing using CALL TRANSACTION?&lt;/b&gt;
&lt;br /&gt;      Yes,Using No Screen Mode. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;6. What are table buffers?&lt;/b&gt;
&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;Table buffers reside locally on each application server in the system. The data of buffered tables can thus be accessed directly  from the buffer of the application server. This avoids the time-consuming process of accessing the database.  Buffering is useful if table needs to be accessed more no. of times in a program. &lt;/span&gt;&lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;1. How do I set a flag for a field in any table?&lt;/span&gt;&lt;/b&gt;
&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:85%;" &gt;Create a char field of length 1. for example field STAS-LKENZ is Deletion Indicator. It means that if the value in the field is 'X' then that record has been deleted.&lt;/span&gt; &lt;/p&gt;&lt;p  style="text-align: justify; font-family: verdana;font-family:verdana;"&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;2. Can I execute user exits? If yes, how?&lt;/span&gt;&lt;/b&gt;
&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:85%;" &gt;Yes you can. after finding the user exit, you need to use, goto CMOD add ur user-exit to your project. Then activate the FM which you require. Now go into that function module there will be a Include program wit name ZX* . Double click on it, it will ask to create an object, answer it Yes and then write your code in it. &lt;/span&gt; &lt;/p&gt;&lt;div style="text-align: justify; font-family: verdana;"&gt;&lt;span style=";font-size:85%;" &gt;&lt;b&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;3. How do I find the output type of a table or a program?&lt;/span&gt;&lt;/b&gt; &lt;/span&gt;&lt;span style="font-size:85%;"&gt;
&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:85%;" &gt;Table TNAPR / NAST
&lt;br /&gt;
&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;4. How to execute a program step by step on the ABAP editor?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;First test your code with '/h' type in command window which shall take you to debug or by putting break points with F8. You test your program from code and then go to se30 performance analysis transaction and there you can know what are the drawbacks. Then go to SLIN transaction and do extended syntax check or from code in menu options where you have debugging -&gt; extended check and the program id ready without error. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span style="color:#000000;"&gt;Tips by : Harichand Chandunair &lt;/span&gt;&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Testing your code.&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;As mentioned above after doing syntax check and extended syntax check you have to create a TEST PLAN. You have  to  test all possible Postive &amp;amp; Negative test cases.  &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Test for division by zero if it involves calculation or code accordingly.  &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Try to test for field overflows. If it involves sap script or smart forms  try to  print  outputs which have single page and also multiple page and which does not have any output at all.  &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Test by leaving all parameters in selection screen blank.  &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Test by  entering  wrong  values in selection screen and display a pop-up if the user enters wrong selection screen values. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;You can also do ABAP trace and SQL trace to make sure that your program is efficient. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Debugging code/program.&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;As mentioned above type /h in command line and try to execute the program. Another way is to set break-point at the function module or the required line and do single step execute or execute.  Once you finished debugging, you can select Delete to clear all the break points.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;
&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;5) &lt;/span&gt;&lt;span style="text-decoration: underline; font-weight: bold;"&gt;&lt;/span&gt;&lt;b&gt;What are dml statements in sap?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Insert, Update, Delete. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the difference between open sql &amp;amp; native sql?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;Ans: Open SQL allows you to access all database tables known to the SAP system, regardless of the database manufacturer. Sometimes, however, we may want to use database-specific SQL statements called Native SQL in your ABAP/4 program.  To avoid incompatibilities between different database tables and also to make ABAP/4 programs independent of the database system in use, SAP has created a set of separate SQL statements called Open SQL. Open SQL contains a subset of standard SQL statements as well as some enhancements which are specific to SAP.
&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;A database interface translates SAP's Open SQL statements into SQL commands specific to the database in use. Native SQL statements access the database directly &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is Primary key, foreign key ? what is primary index? secondary index?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Primary index: the primary index contains key fiels of a table and a pointer to non-key fields of the table. The primary index is created automatically when a table is created in database and moreover you can further define reference to the primary index which are known as Secondary index. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How many indexes can be created for a table?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: 9. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is data class?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: The data class specifies in which table space the table is created in database. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Give few names of cluster tables in sap?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Give few names of pooled tables in sap?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: A pool table has many to one relation with the table in the database. For one table in the database there are many tables in the dictionary. Tha table in the database has a diff name than in the table in the data dict, it has diff no of fields and field names are different. A pooled table is stored in the pool at the database level. A table pool is a databse table with a special struct that enables the data of many R3 tables to be stored in it. It can hold only pooled tables. 
&lt;br /&gt;Sorry I dont know table names &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Give few names of transparent tables?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: A transparent table has a one to one relataionship in the database. The table in the dictionary has the same name, same no of fields, and the fields have the same name as in the R3 table defn. A transparent tabel has application data (Master and Transaction). sorry i dont know table names &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is a buffer and how many types?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Buffer is othing but which stores data temporarily. there are two types of buffers. they are Roll and Page areas.
&lt;br /&gt;Pages : it stores the application data.
&lt;br /&gt;Roll area: it stores the data of previous pages.Data areas of used programs are created in roll areas for each internal session. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is table maintenance generator and how to create that? What is the transaction code?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Table maintanence generator is nothing but  making a table available for adding records and deleting records.
&lt;br /&gt;The transaction code used is SM30. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How to add new fields to a standard sap table?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans:   1. Appended structures      2. Customizing tables &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are lock objects?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Lock objects are nothing but which holds a data for particular field value until you remove a lock.. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Diff betwn inner &amp;amp; outer join?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the use of start-of-selection event?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Start-of-selection is called implicity even it is not used in the program. start-of-selection is triggered after the standard selection screen has been displayed. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the difference between end-of-page and end-of-selection?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: End-of-page : is footer of the page.  End-of-selection: is triggered At the end of the processing block. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;If you write a write statement after end-of-selection, will that be triggered?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Yes &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How to create a button in selection screen?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Using parametres &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How to add a gui status in a selection screen?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: sorry i dont know i thik using set pf. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How to create a check box/option button in a list?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: &lt;span style="text-decoration: underline;"&gt;
&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;For this... &lt;/span&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;   Create an Internal table as : &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;   data: Begin itab occurs 0,
&lt;br /&gt;           cb_field type char1,
&lt;br /&gt;           matnr like mara-matnr,
&lt;br /&gt;          .....
&lt;br /&gt;          end of itab. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt; Now you fetch the data into the internal table of itab using 
&lt;br /&gt;   some query... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;   select * ...... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;  Now you are going to display it as.... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;    Loop at itab.
&lt;br /&gt;    write:/ cb_field as checkbox...
&lt;br /&gt;              ......
&lt;br /&gt;    at this time only write the Hide statement.... as... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;    HIDE: values.... u want... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;   Endloop.. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Now capturing of selected data process... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt; This can be done by clicking on some USER Command button... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;  for suppose you're clicking F8 means... &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;  AT pf8.
&lt;br /&gt;  IF SY-LSIND = 1.
&lt;br /&gt;  describe table itab lines VARIABLE NAME.
&lt;br /&gt;    cnt = 3. " Initiate value for Count 3 if you're including page header.
&lt;br /&gt;    do VARIABLE NAME times.
&lt;br /&gt;      read line cnt. " Above counter....
&lt;br /&gt;      if sy-lisel(1) =   'X'.
&lt;br /&gt;        WRITE:/ 'SELECTED RECORDS:', itab-cb_field,.....
&lt;br /&gt;      endif.
&lt;br /&gt;      COUNTER = COUNTER - 1.
&lt;br /&gt;      cnt = cnt + 1.
&lt;br /&gt;    enddo.
&lt;br /&gt; ENDIF.&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you call a bdc program from a report? how?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Yes through Submit and return &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Can you call a transaction from a report? how?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Yes Using Call transaction and leave to. &lt;/span&gt;&lt;/p&gt;&lt;span style="font-size:85%;"&gt;
&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are ALV reports? how they are different from normal reports?&lt;/b&gt;
&lt;br /&gt;Ans: these reports are used to find subtotals and totals in a report. If you want i'll give you an example program &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are the main events that are used in an ALV report?&lt;/b&gt;
&lt;br /&gt;Ans: sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the use of SLIS type pool in alv reports?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Slis type pool is a global defination of pooltypes of catalog structure, table and layout which we use in ALV reports &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Difference between top-of-page and top-of-page during at-line- selection?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Top-of-page is a header on primary list.  Top-of-page during line-selection is a header on secondary lists &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;In an interactive report, after going to 5th list, can you come back to 2nd list? how?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How many type of internal tables are there?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Standard, Hashed, Sorted tables &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the difference between hashed &amp;amp; sorted internal tables?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Sorted internal table works on Binary Search and Hashed internal tables works on hashed alogorthim through indexes. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the difference between standard and sorted internal tables? (in performance wise)&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans:  Sorted table improve the performance in case of a huge table which has no: of records &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the use of at new statement?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans:sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;When do you need to create an internal table with header line? and with out a header line? line?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: If we don't want to use any explicit work area then its better to go for an internal table with header line. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does it mean occurs 0 while creating an internal table?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Which of these methods can be best used in background process?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans : Batch Input method. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is direct input method?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Exec Sql[Performing &lt;sql]
&lt;br /&gt;        [Native sql statements]
&lt;br /&gt;        endexec.
&lt;br /&gt;        The above is the syntax for the native sql statements. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Disadvantages: &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;    . Syntax check is not done to statements written inside the EXEC SQL statements. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the meaning of ABAP/4 editor integrated with ABAP/4 data dictionary?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What transactions do you use for data analysis?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;ANs: Sorry i dont know but for runtime analysis we use transaction code : se30. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are selection texts?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: in the selection screen you can change the name of the field,title etc using selection texts. go to text--&gt; text elemets---&gt; selection texts in the menu bar to set selection texts. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the client concept in SAP? What is the meaning of client independent?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;How to find the return code of a statement in ABAP programs?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Through functions. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What are steps you follow to improve the performance of a report?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: 1) USe select fields statements (not select *)
&lt;br /&gt;        2) Use views rather than tables
&lt;br /&gt;        3) Don't use nested Select. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the role of secondary index in performance?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the role of ST05 in performance tuning?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: SQL trace &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;What is the role of extended syntax check in performance tuning?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: sorry i dont know &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Will join conditions in sql queries affect perfomance? how?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans : Yes &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Will sorted internal tables help in performance?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: Yes &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;Will where conditions in a sql query help improve performance?&lt;/b&gt;&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;Ans: No Not at all &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-questions.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-3496941191972916279</guid><pubDate>Mon, 26 May 2008 11:57:00 +0000</pubDate><atom:updated>2008-05-26T04:58:47.465-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Interview Questions</category><title>ABAP - Interview Questions 3</title><description>&lt;p&gt;&lt;b&gt;1. What is the typical structure of an ABAP/4 program? &lt;/b&gt;&lt;br /&gt;   HEADER ,BODY,FOOTER. &lt;/p&gt;&lt;p&gt;&lt;b&gt;2. What are field symbols and field groups.? &lt;/b&gt;&lt;br /&gt;    &lt;b&gt;Have you used "component idx of structure" clause with field groups? &lt;/b&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;    Field symbols:-  &lt;/p&gt;&lt;p&gt;    Field groups :- &lt;/p&gt;&lt;p&gt;&lt;b&gt;Can any body explain me what is field group?&lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;Field groups are groups similar fields together into one name. Field group works in conjuction with    &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;INSERT f1 f2 INTO fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;EXTRACT fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;SORT BY fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;LOOP ... ENDLOOP&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;INSERT f1 f2 INTO fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;---------------------&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;The insert statement is used to create a field group dynamically by inserting the field into it. Only global data fields can be inserted and not local data fields eg : in form modules.&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;EXTRACT fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;----------  &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;This will combine all the fields in the fieldgroup and write them to a sequential dataset as a single record.&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;SORT BY fg&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;----------&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;Sorting of sequential dataset by field group.&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;LOOP AND ENDLOOP&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;---------------&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="color:#990000;"&gt;LOOP.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;  AT ***&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;......&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;....&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;ENDAT.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;  AT ***&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;.....&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;....&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;ENDAT.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;ENDLOOP.                          &lt;/span&gt;&lt;span style="color:#000000;"&gt;*-- Chinmaya&lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;3. What should be the approach for writing a BDC program? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;STEP 1: CONVERTING THE LEGACY SYSTEM DATA TO A FLAT FILE to internal table CALLED "CONVERSION".&lt;br /&gt;STEP 2: TRANSFERING THE FLAT FILE INTO SAP SYSTEM CALLED "SAP DATA TRANSFER".&lt;br /&gt;STEP 3: DEPENDING UPON THE BDC TYPE i)call transaction(Write the program explicity)&lt;br /&gt;         ii) create sessions (sessions are created and processed.if success data will transfer). &lt;/p&gt;&lt;p&gt;&lt;b&gt;4. What is a batch input session? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;BATCH INPUT SESSION is an intermediate step between internal table and database table. &lt;br /&gt;Data along with the action is stored in session ie data for screen fields, to which screen it is passed,program name behind it, and how next screen is processed. &lt;/p&gt;&lt;p&gt;&lt;b&gt;5. What is the alternative to batch input session? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Call transaction. &lt;/p&gt;&lt;p&gt;&lt;b&gt;6. A situation: An ABAP program creates a batch input session. &lt;/b&gt;&lt;br /&gt;&lt;b&gt;    We need to submit the program and the batch session in back ground. How to do it? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;     go to SM36 and create background job by giving &lt;br /&gt;     job name,job class and job steps (JOB SCHEDULING)  &lt;/p&gt;&lt;p&gt;&lt;b&gt;8. What are the problems in processing batch input sessions? &lt;/b&gt;&lt;br /&gt;  &lt;b&gt;  How is batch input process different from processing online? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;PROBLEMS:-&lt;br /&gt; i) If the user forgets to opt for keep session then the session will be automatically removed from the session queue(log remains).  However if session is processed we may delete it manually.&lt;br /&gt;ii)if session processing fails data will not be transferred to SAP database table. &lt;/p&gt;&lt;p&gt;&lt;b&gt;10. What are the different types of data dictionary objects? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;tables, structures, views, domains, data elements, lock objects, Matchcode objects. &lt;/p&gt;&lt;p&gt;&lt;b&gt;11. How many types of tables exists and what are they in data dictionary? &lt;/b&gt;&lt;br /&gt;ans :-&lt;br /&gt;4 types of tables&lt;br /&gt;i)Transparent tables - Exists with the same structure both in dictionary as well as in database exactly with the same data and fields.   Both Opensql and Nativesql can be used. &lt;/p&gt;&lt;p&gt;ii)Pool tables &amp;amp; iii)Cluster tables - &lt;br /&gt;These are logical tables that are arranged as records of transparent tables.one cannot use native sql on these tables&lt;br /&gt;(only opensql).They are not managable directly using database system tools. &lt;/p&gt;&lt;p&gt;iv)Internal tables - . &lt;/p&gt;&lt;p&gt;&lt;b&gt;12. What is the step by step process to create a table in data dictionary? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;   step 1: creating domains(data type,field length,range).&lt;br /&gt;   step 2: creating data elements(properties and type for a table &lt;br /&gt;field).&lt;br /&gt;   step 3: creating tables(SE11). &lt;/p&gt;&lt;p&gt;&lt;b&gt;13. Can a transparent table exist in data dictionary but not in the data base physically?&lt;/b&gt;&lt;br /&gt;ANS:- NO.&lt;br /&gt;TRANSPARENT TABLE DO EXIST WITH THE SAME STRUCTURE BOTH IN THE DICTIONARY AS WELL AS IN THE DATABASE,EXACTLY WITH THE SAME DATA AND FIELDS. &lt;/p&gt;&lt;p&gt;&lt;b&gt;14. What are the domains and data elements? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;DOMAINS : FORMAL DEFINITION OF THE DATA TYPES.THEY SET ATTRIBUTES SUCH  AS DATA TYPE,LENGTH,RANGE.&lt;br /&gt;DATA ELEMENT : A FIELD IN R/3 SYSTEM IS A DATA ELEMENT. &lt;/p&gt;&lt;p&gt;&lt;b&gt;15. Can you create a table with fields not referring to data elements? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;br /&gt;YES.  eg:- ITAB LIKE SPFLI.here we are referening to a data object(SPFLI) not data element. &lt;/p&gt;&lt;p&gt;&lt;b&gt;16. What is the advantage of structures? How do you use them in the ABAP programs? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Adv:- GLOBAL EXISTANCE(these could be used by any other program without creating it again).  &lt;/p&gt;&lt;p&gt;&lt;b&gt;17. What does an extract statement do in the ABAP program? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Once you have declared the possible record types as field groups and defined their structure, you can fill the extract dataset using the following statements: &lt;br /&gt;EXTRACT &lt;fg&gt;. &lt;/p&gt;&lt;p&gt;When the first EXTRACT statement occurs in a program, the system creates the extract dataset and adds the first extract record to it. In each subsequent EXTRACT statement, the new extract record is added to the dataset &lt;/p&gt;&lt;p&gt;EXTRACT HEADER. &lt;/p&gt;&lt;p&gt;When you extract the data, the record is filled with the current values of the corresponding fields. &lt;/p&gt;&lt;p&gt;As soon as the system has processed the first EXTRACT statement for a field group &lt;fg&gt;, the structure of the corresponding extract record in the extract dataset is fixed. You can no longer insert new fields into the field groups &lt;fg&gt; and HEADER. If you try to modify one of the field groups afterwards and use it in another EXTRACT statement, a runtime error occurs.  &lt;/p&gt;&lt;p&gt;By processing EXTRACT statements several times using different field groups, you fill the extract dataset with records of different length and structure. Since you can modify field groups dynamically up to their first usage in an EXTRACT statement, extract datasets provide the advantage that you need not determine the structure at the beginning of the program. &lt;/p&gt;&lt;p&gt;&lt;b&gt;18. What is a collect statement? How is it different from append? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;If an entry with the same key already exists, the COLLECT statement does not append a new line, but adds the contents of the numeric fields in the work area to the contents of the numeric fields in the existing entry.  &lt;/p&gt;&lt;p&gt;&lt;b&gt;19. What is open sql vs native sql? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;span style="color:#990000;"&gt;by Madhukar&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;Open SQL , native SQL are the interfaces to create the database applicatons.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;Open SQL is consistant across different types of existing Databases.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;Native SQL is the database language specific to database.Its API is specific to the databse.&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#990000;"&gt;Open SQL API is consistent across all vendors &lt;/span&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;20. What does an EXEC SQL stmt do in ABAP? What is the disadvantage of using it? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;21. What is the meaning of ABAP/4 editor integrated with ABAP/4 data dictionary?&lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;22. What are the events in ABAP/4 language? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Initialization, At selection-screen,Start-of-selection,end-of-selection,top-of-page,end-of-page, At line-selection,At user-command,At PF,Get,At New,At LAST,AT END, AT FIRST.  &lt;/p&gt;&lt;p&gt;&lt;b&gt;23. What is an interactive report? &lt;/b&gt;&lt;br /&gt;What is the obvious diff of such report compared with classical type reports? &lt;br /&gt;ANS:- &lt;br /&gt;An Interactive report is a dynamic drill down report that produces the list on users choice.&lt;br /&gt;diff:-&lt;br /&gt;a)  THE LIST PRODUCED BY CLASSICAL REPORT DOESN'T allow user to interact with the system&lt;br /&gt;    the list produced by interactive report allows the user to interact with the system.&lt;br /&gt;b)  ONCE A CLASSICAL REPORT EXECUTED USER LOOSES CONTROL.IR USER HAS CONTROL.&lt;br /&gt;c)  IN CLASSICAL REPORT DRILLING IS NOT POSSIBLE.IN INTERACTIVE DRILLING IS POSSIBLE. &lt;/p&gt;&lt;p&gt;&lt;b&gt;24. What is a drill down report? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Its an Interactive report where in the user can get more relavent data by selecting explicitly. &lt;/p&gt;&lt;p&gt;&lt;b&gt;25. How do you write a function module in SAP? describe. &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;creating function module:-&lt;br /&gt;called program - se37-creating funcgrp,funcmodule by assigning attributes,importing,exporting,tables,exceptions.&lt;br /&gt;calling program - SE38-in pgm click pattern and write function name- provide export,import,tables,exception values. &lt;/p&gt;&lt;p&gt;&lt;b&gt;26. What are the exceptions in function module? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;COMMUNICATION_FAILURE &lt;br /&gt;SYSTEM_FAILURE  &lt;/p&gt;&lt;p&gt;&lt;b&gt;27. What is a function group? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;GROUP OF ALL RELATED FUNCTIONS.  &lt;/p&gt;&lt;p&gt;&lt;b&gt;28. How are the date and time field values stored in SAP? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;DD.MM.YYYY.  HH:MM:SS  &lt;/p&gt;&lt;p&gt;&lt;b&gt;30. Name a few data dictionary objects? //rep//&lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;TABLES,VIEWS,STRUCTURES,LOCK OBJECTS,MATCHCODE OBJECTS. &lt;/p&gt;&lt;p&gt;&lt;b&gt;31. What happens when a table is activated in DD? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;It is available for any insertion,modification and updation of records by any user. &lt;/p&gt;&lt;p&gt;&lt;b&gt;32. What is a check table and what is a value table? &lt;/b&gt;&lt;br /&gt;Check table will be at field level checking.&lt;br /&gt;Value table will be at domain level checking ex: scarr table is check table for carrid. &lt;/p&gt;&lt;p&gt;&lt;b&gt;33. What are match codes? describe? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;It is a similar to table index that gives list of possible values for either primary keys or non-primary keys. &lt;/p&gt;&lt;p&gt;&lt;b&gt;34. What transactions do you use for data analysis? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;35. What is table maintenance generator? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;36. What are ranges? What are number ranges? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;    max,min values provided in selection screens. &lt;/p&gt;&lt;p&gt;&lt;b&gt;37. What are select options and what is the diff from parameters? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;select options provide ranges where as parameters do not.  &lt;/p&gt;&lt;p&gt;SELECT-OPTIONS declares an internal table which is automatically filled with values or ranges &lt;br /&gt;of values entered by the end user. For each SELECT-OPTIONS , the system creates a selection table. &lt;/p&gt;&lt;p&gt;SELECT-OPTIONS &lt;sel&gt; FOR &lt;field&gt;. &lt;/p&gt;&lt;p&gt;A selection table is an internal table with fields SIGN, OPTION, LOW and HIGH. &lt;br /&gt;The type of LOW and HIGH is the same as that of &lt;field&gt;. &lt;br /&gt;The SIGN field can take the following values: I Inclusive (should apply) E Exclusive (should not apply)&lt;br /&gt;The OPTION field can take the following values: EQ Equal GT Greater than NE Not equal BT Between LE Less &lt;br /&gt;than or equal NB Not between LT Less than CP Contains pattern GE Greater than or equal NP No pattern.&lt;br /&gt;diff:-&lt;br /&gt;PARAMETERS allow users to enter a single value into an internal field within a report. &lt;br /&gt;SELECT-OPTIONS allow users to fill an internal table with a range of values. &lt;/p&gt;&lt;p&gt;For each PARAMETERS or SELECT-OPTIONS statement you should define text elements by choosing &lt;br /&gt;Goto - Text elements - Selection texts - Change.  &lt;/p&gt;&lt;p&gt;Eg:- Parameters name(30).&lt;br /&gt;when the user executes the ABAP/4 program,an input field for 'name' will appear on the selection screen.You can change the comments on the left side of the input fields by using text elements as described in Selection Texts. &lt;/p&gt;&lt;p&gt;&lt;b&gt;38. How do you validate the selection criteria of a report? &lt;/b&gt;&lt;br /&gt;&lt;b&gt;And how do you display initial values in a selection screen? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;validate :- by using match code objects.&lt;br /&gt;display :- Parameters &lt;name&gt; default 'xxx'.&lt;br /&gt;               select-options &lt;name&gt; for spfli-carrid. &lt;/p&gt;&lt;p&gt;&lt;b&gt;39. What are selection texts? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;40. What is CTS and what do you know about it? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;The Change and Transport System (CTS) is a tool that helps you to organize development projects in the ABAP Workbench and in Customizing, and then transport the changes between the SAP Systems and clients in your system landscape.&lt;br /&gt;This documentation provides you with an overview of how to manage changes with the CTS and essential information on setting up your system and client landscape and deciding on a transport strategy. Read and follow this documentation when planning your development project.&lt;br /&gt;For practical information on working with the Change and Transport System, see Change and Transport Organizer and Transport Management System. &lt;/p&gt;&lt;p&gt;&lt;b&gt;41. When a program is created and need to be transported to prodn does selection texts always go with it? if not how do you make sure? Can you change the CTS entries? How do you do it? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;42. What is the client concept in SAP? What is the meaning of client independent? &lt;/b&gt;&lt;br /&gt;ANS:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;43. Are programs client dependent? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;    Yes.Group of users can access these programs with a client no. &lt;/p&gt;&lt;p&gt;&lt;b&gt;44. Name a few system global variables you can use in ABAP programs? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;SY-SUBRC,SY-DBCNT,SY-LILLI,SY-DATUM,SY-UZEIT,SY-UCOMM,SY-TABIX.....&lt;br /&gt;SY-LILLI IS ABSOLUTE NO OF LINES FROM WHICH THE EVENT WAS TRIGGERED. &lt;/p&gt;&lt;p&gt;&lt;b&gt;45. What are internal tables? How do you get the number of lines in an internal table? &lt;/b&gt;&lt;br /&gt;&lt;b&gt;How to use a specific number occurs statement? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt; i)It is a standard data type object which exists only during the runtime of the program.&lt;br /&gt;They are used to perform table calculations on subsets of database tables and for re-organising the contents of database tables according to users need.&lt;br /&gt;ii)using SY-DBCNT.&lt;br /&gt;iii)The number of memory allocations the system need to allocate for the next record population. &lt;/p&gt;&lt;p&gt;&lt;b&gt;46. How do you take care of performance issues in your ABAP programs? &lt;/b&gt;&lt;br /&gt;Performance of ABAPs can be improved by minimizing the amount of data to be transferred. &lt;br /&gt;The data set must be transferred through the network to the applications, so reducing the amount OF time and also reduces the network traffic. &lt;/p&gt;&lt;p&gt;Some measures that can be taken are:  &lt;/p&gt;&lt;p&gt;- Use views defined in the ABAP/4  DDIC (also has the advantage of better reusability).&lt;br /&gt;- Use field list (SELECT clause) rather than SELECT *.&lt;br /&gt;- Range tables should be avoided (IN operator)&lt;br /&gt;- Avoid nested SELECTS.  &lt;/p&gt;&lt;p&gt;i)system tools &lt;/p&gt;&lt;p&gt;ii)field symbols and field groups.&lt;br /&gt;ans:-&lt;br /&gt;Field Symbols : Field symbols are placeholders for existing fields. A Field Symbol does not physically reserve space for a field,but points to a field which is not known until runtime of the program.&lt;br /&gt;eg:-  FIELD-SYMBOL &lt;fs&gt; [&lt;type&gt;].  &lt;/p&gt;&lt;p&gt;Field groups :  A field group combines several fields under one name.At runtime,the INSERT command is used to define which data fields are assigned to which field group.&lt;br /&gt;There should always be a HEADER field group that defines how the extracted data will be sorted,the data is sorted by the fields grouped under the HEADER field group. &lt;/p&gt;&lt;p&gt;&lt;b&gt;47. What are datasets? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;The sequential files(ON APPLICATION SERVER) are called datasets. They are used for file handling in SAP. &lt;/p&gt;&lt;p&gt;&lt;b&gt;48. How to find the return code of a statement in ABAP programs? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Using function modules. &lt;/p&gt;&lt;p&gt;&lt;b&gt;49. What are interface/conversion programs in SAP? &lt;/b&gt;&lt;br /&gt;ANS : &lt;br /&gt;CONVERSION : LEGACY SYSTEM TO FLAT FILE.&lt;br /&gt;INTERFACE  : FLAT FILE TO SAP SYSTEM.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;b&gt;51. What are the techniques involved in using SAP supplied programs? &lt;/b&gt;&lt;br /&gt;&lt;b&gt;Do you prefer to write your own programs to load master data? Why? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;52. What are logical databases? What are the advantages/disadvantages of logical databases? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;To read data from a database tables we use logical database.&lt;br /&gt;A logical database provides read-only access to a group of related tables to an ABAP/4 program. &lt;/p&gt;&lt;p&gt;adv:-&lt;br /&gt;The programmer need not worry about the primary key for each table.Because Logical database knows how the different tables relate to each other,and can issue the SELECT command with proper where clause to retrieve the data.&lt;br /&gt;i)An easy-to-use standard user interface.&lt;br /&gt;ii)check functions which check that user input is complete,correct,and plausible.&lt;br /&gt;iii)meaningful data selection.&lt;br /&gt;iv)central authorization checks for database accesses.&lt;br /&gt;v)good read access performance while retaining the hierarchical data view determined by the application logic.  &lt;/p&gt;&lt;p&gt;disadv:-&lt;br /&gt;i)If you donot specify a logical database in the program attributes,the GET events never occur.&lt;br /&gt;ii)There is no ENDGET command,so the code block associated with an event ends with the next event &lt;br /&gt;statement (such as another GET or an END-OF-SELECTION).  &lt;/p&gt;&lt;p&gt;&lt;b&gt;53. What specific statements do you using when writing a drill down report? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;AT LINE-SELECTION,AT USER-COMMAND,AT PF. &lt;/p&gt;&lt;p&gt;&lt;b&gt;54. What are different tools to report data in SAP? What all have you used? &lt;/b&gt;&lt;br /&gt;ans:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;55. What are the advantages and disadvantages of ABAP/4 query tool? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;56. What are the functional areas? User groups? and how does ABAP/4 query work in relation to these? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;57. Is a logical database a requirement/must to write an ABAP/4 query? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;59. What are Change header/detail tables? Have you used them? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;60. What do you do when the system crashes in the middle of a BDC batch session? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;we will look into the error log file (SM35). &lt;/p&gt;&lt;p&gt;&lt;b&gt;61. What do you do with errors in BDC batch sessions? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;We look into the list of incorrect session and process it again. To correct incorrect session we analyize the session to determine which screen and value produced the error.For small errors in data we correct them interactively otherwise&lt;br /&gt;modify batch input program that has generated the session or many times even the datafile. &lt;/p&gt;&lt;p&gt;&lt;b&gt;62. How do you set up background jobs in SAP? What are the steps? What are the event driven batch jobs? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;go to SM36 and create background job by giving job name,job class and job steps(JOB SCHEDULING) &lt;/p&gt;&lt;p&gt;&lt;b&gt;63. Is it possible to run host command from SAP environment? How do you run? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;64. What kind of financial periods exist in SAP? What is the relavent table for that? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;65. Does SAP handle multiple currencies? Multiple languages? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;Yes. &lt;/p&gt;&lt;p&gt;&lt;b&gt;66. What is a currency factoring technique? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;67. How do you document ABAP/4 programs? Do you use program documentation menu option? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;68. What is SAPscript and layout set? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;The tool which is used to create layout set is called SAPscript. Layout set is a design document. &lt;/p&gt;&lt;p&gt;&lt;b&gt;69. What are the ABAP/4 commands that link to a layout set? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;control commands,system commands, &lt;/p&gt;&lt;p&gt;&lt;b&gt;70. What is output determination? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;71. What are IDOCs? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;IDOCs are intermediate documents to hold the messages as a container. &lt;/p&gt;&lt;p&gt;&lt;b&gt;72. What are screen painter? menu painter? Gui status? ..etc. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;dynpro - flow logic + screens.&lt;br /&gt;menu painter - &lt;br /&gt;GUI Status - It is subset of the interface elements(title bar,menu bar,standard tool bar,push buttons) used for a certain screen.&lt;br /&gt;The status comprises those elements that are currently needed by the transaction. &lt;/p&gt;&lt;p&gt;&lt;b&gt;73. What is screen flow logic? What are the sections in it? Explain PAI and PBO. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;The control statements that control the screen flow.&lt;br /&gt;PBO - This event is triggered before the screen is displayed.&lt;br /&gt;PAI - This event is responsible for processing of screen after the user enters the data and clicks the pushbutton. &lt;/p&gt;&lt;p&gt;&lt;b&gt;74. Overall how do you write transaction programs in SAP? &lt;/b&gt;&lt;br /&gt;ans:- &lt;br /&gt;Create program-SE93-create transcode-Run it from command field. &lt;/p&gt;&lt;p&gt;&lt;b&gt;75. Does SAP has a GUI screen painter or not? If yes what operating systems is it available on? What is the other type of screen painter called? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;76. What are step loops? How do you program pagedown pageup in step loops? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;step loops are repeated blocks of field in a screen. &lt;/p&gt;&lt;p&gt;&lt;b&gt;77. Is ABAP a GUI language? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Yes.&lt;br /&gt;ABAP IS AN EVENT DRIVEN LANGUAGE. &lt;/p&gt;&lt;p&gt;&lt;b&gt;78. Normally how many and what files get created when a transaction program is written? &lt;/b&gt;&lt;br /&gt;&lt;b&gt;What is the XXXXXTOP program? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;ABAP/4 program.&lt;br /&gt;DYNPRO &lt;/p&gt;&lt;p&gt;&lt;b&gt;79. What are the include programs? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;When the same sequence of statements in several programs are to be written repeadly they are coded in include programs (External programs) and  are included in ABAP/4 programs. &lt;/p&gt;&lt;p&gt;&lt;b&gt;80. Can you call a subroutine of one program from another program? &lt;/b&gt;&lt;br /&gt;ans:-  Yes- only external subroutines Using 'SUBMIT' statement. &lt;/p&gt;&lt;p&gt;&lt;b&gt;81. What are user exits? What is involved in writing them? What precations are needed? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;82. What are RFCs? How do you write RFCs on SAP side? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;83. What are the general naming conventions of ABAP programs? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;Should start with Y or Z. &lt;/p&gt;&lt;p&gt;&lt;b&gt;84. How do you find if a logical database exists for your program requrements? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;SLDB-F4. &lt;/p&gt;&lt;p&gt;&lt;b&gt;85. How do you find the tables to report from when the user just tell you the transaction he uses? And all the underlying data is from SAP structures? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;Transcode is entered in command field to open the table.Utilities-Table contents-display. &lt;/p&gt;&lt;p&gt;&lt;b&gt;86. How do you find the menu path for a given transaction in SAP? &lt;/b&gt;&lt;br /&gt;ans:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;87. What are the different modules of SAP? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;FI,CO,SD,MM,PP,HR. &lt;/p&gt;&lt;p&gt;&lt;b&gt;89. How do you get help in ABAP? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;HELP-SAP LIBRARY,by pressing F1 on a keyword. &lt;/p&gt;&lt;p&gt;&lt;b&gt;90. What are different ABAP/4 editors? What are the differences? &lt;/b&gt;&lt;br /&gt;ans:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;91. What are the different elements in layout sets? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;PAGES,Page windows,Header,Paragraph,Character String,Windows. &lt;/p&gt;&lt;p&gt;&lt;b&gt;92. Can you use if then else, perform ..etc statements in sap script? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;yes. &lt;/p&gt;&lt;p&gt;&lt;b&gt;93. What type of variables normally used in sap script to output data? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;94. How do you number pages in sapscript layout outputs? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;95. What takes most time in SAP script programming? &lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;LAYOUT DESIGN AND LOGO INSERTION. &lt;/p&gt;&lt;p&gt;&lt;b&gt;96. How do you use tab sets in layout sets? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;97. How do you backup sapscript layout sets? Can you download and upload? How? &lt;/b&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;98. What are presentation and application servers in SAP?&lt;/b&gt;&lt;br /&gt;ANS:-&lt;br /&gt;The application layer of an R/3 System is made up of the application servers and the message server. Application programs in an R/3 System are run on application servers. The application servers communicate with the presentation components, the database, and also with each other, using the message server. &lt;/p&gt;&lt;p&gt;&lt;b&gt;99. In an ABAP/4 program how do you access data that exists on a presentation server vs on an application server? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;i)using loop statements.&lt;br /&gt;ii)flat  &lt;/p&gt;&lt;p&gt;&lt;b&gt;100. What are different data types in ABAP/4? &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;     Elementary - &lt;br /&gt;          predefined C,D,F,I,N,P,T,X.&lt;br /&gt;          userdefined TYPES.&lt;br /&gt; ex: see in intel book page no 35/65 &lt;/p&gt;&lt;p&gt;     Structured - &lt;br /&gt;         predefined    TABLES.&lt;br /&gt;         userdefined Field Strings and internal tables. &lt;/p&gt;&lt;p&gt;&lt;b&gt;101. What is difference between session method and Call Transaction? &lt;/b&gt;&lt;br /&gt;ans:- &lt;/p&gt;&lt;p&gt;&lt;b&gt;102. Setting up a BDC program where you find information from? &lt;/b&gt;&lt;br /&gt;ans:-  &lt;/p&gt;&lt;p&gt;&lt;b&gt;103. What has to be done to the packed fields before submitting to a BDC session. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;     fields converted into character type. &lt;/p&gt;&lt;p&gt;&lt;b&gt;104. What is the structure of a BDC sessions. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;      BDCDATA (standard structure). &lt;/p&gt;&lt;p&gt;&lt;b&gt;105. What are the fields in a BDC_Tab Table. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;      program,dynpro,dynbegin,fnam,fval. &lt;/p&gt;&lt;p&gt;&lt;b&gt;106. What do you define in the domain and data element. &lt;/b&gt;&lt;br /&gt;Technical details like  &lt;/p&gt;&lt;p&gt;&lt;b&gt;107. What is the difference between a pool table and a transparent table and how they are stored at the database level. &lt;/b&gt;&lt;br /&gt;ans:-&lt;br /&gt;ii)Pool tables is a logical representation of transparent tables .Hence no existence at database level. Where as transparent tables are physical tables and exist at database level. &lt;/p&gt;&lt;p&gt;&lt;b&gt;108. What is cardinality? &lt;/b&gt;&lt;br /&gt;For cardinality one out of two (domain or data element) should be the same for Ztest1 and Ztest2 tables. M:N&lt;br /&gt;Cardinality specifies the number of dependent(Target) and independent (source) entities which can be in a relationship.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-interview-questions-3.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-6290724230709496116</guid><pubDate>Mon, 26 May 2008 05:14:00 +0000</pubDate><atom:updated>2008-05-25T22:14:44.316-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - OTHERS</title><description>&lt;span style="color:#336666;"&gt; &lt;h3&gt; &lt;a name="Config_Related"&gt;Config Related&lt;/a&gt; &lt;/h3&gt; &lt;/span&gt;    &lt;description&gt;&lt;/description&gt;                         &lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLE"&gt;OLE&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;OLE demo transaction&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLI0"&gt;OLI0&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C Plant Maintenance Master Data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLI1"&gt;OLI1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Set Up INVCO for Material Movements&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLI8"&gt;OLI8&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Set Up SIS for Deliveries&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIA"&gt;OLIA&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C Maintenance Processing&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIP"&gt;OLIP&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C Plant Maintenance Planning&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIQ"&gt;OLIQ&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;New set-up of QM info system&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIX"&gt;OLIX&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Set Up Copying/Deleting of Versions&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIY"&gt;OLIY&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Set Up Deletion of SIS/Inter.Storage&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLIZ"&gt;OLIZ&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Stat Set Up INVCO: Invoice Verif&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLM2"&gt;OLM2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing: Volume-Based Rebates&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMB"&gt;OLMB&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C RM-MAT Inventory Management Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMD"&gt;OLMD&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C RM-MAT MRP Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLME"&gt;OLME&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C MM Menu: Purchasing&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLML"&gt;OLML&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C MM Menu for Warehouse Management&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMR"&gt;OLMR&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C RM-MAT Menu: Invoice Verification&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMS"&gt;OLMS&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C RM-MAT Master Data Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMW"&gt;OLMW&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C RM-MAT Valuation/Acct. Assgt. Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPA"&gt;OLPA&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SOP Configuration&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPE"&gt;OLPE&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Sales order value&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPK"&gt;OLPK&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing for capacity planning&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPR"&gt;OLPR&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Project System Options&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPS"&gt;OLPS&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing Basic Data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLPV"&gt;OLPV&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing: Std. Value Calculation&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQB"&gt;OLQB&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C QM QM in Procurement&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQI"&gt;OLQI&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Analysis&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQM"&gt;OLQM&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing QM Quality Notifications&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQS"&gt;OLQS&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C QM Menu Basic Data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQW"&gt;OLQW&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C QM Inspection Management&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLQZ"&gt;OLQZ&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Quality Certificates&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLS1"&gt;OLS1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing for Rebates&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLSD"&gt;OLSD&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customizing: SD&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLVA"&gt;OLVA&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C SD Sales Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLVD"&gt;OLVD&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C SD Shipping Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLVF"&gt;OLVF&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C SD Billing Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLVS"&gt;OLVS&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;C SD Menu for Master Data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SPRO"&gt;SPRO&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Start SAP IMG (Implementation Guide). (from john.omeara@syskoplan.ie)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-others.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-17494400141734449</guid><pubDate>Mon, 26 May 2008 05:13:00 +0000</pubDate><atom:updated>2008-05-25T22:13:47.865-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - MM configuration transactions</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td&gt;&lt;b&gt;&lt;a name="OLMB-"&gt;OLMB-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Inventory management/Physical Inventory&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMD-"&gt;OLMD-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;MM Consumption-Based Planning&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLME-"&gt;OLME-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;MM Purchasing&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLML-"&gt;OLML-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Warehouse Management&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMR-"&gt;OLMR-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Invoice Verification&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMS"&gt;OLMS&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Material Master data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMW-"&gt;OLMW-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;MM Valuation/Account Assignment&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-mm-configuration.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-4500797330749913389</guid><pubDate>Mon, 26 May 2008 05:12:00 +0000</pubDate><atom:updated>2008-05-25T22:13:05.795-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Material Management (MM)</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td&gt;&lt;b&gt;&lt;a name="MM06"&gt;MM06&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Flag material for deletion. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OLMS-"&gt;OLMS-&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;materials management configuration menu, most of the stuff under this menu is not under the implementation guide&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-material-management.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-5113300020138979607</guid><pubDate>Mon, 26 May 2008 05:11:00 +0000</pubDate><atom:updated>2008-05-25T22:12:27.667-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - FI Financial Management</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td&gt;&lt;b&gt;&lt;a name="FGRP"&gt;FGRP&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Report Writer screen&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="FM12"&gt;FM12&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;View blocked documents by user&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="FST2"&gt;FST2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Insert language specific name for G/L account. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="FST3"&gt;FST3&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display G/L account name. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KEA0"&gt;KEA0&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain operating concern. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KEKE"&gt;KEKE&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Activate CO-PA. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KEKK"&gt;KEKK&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Assign operating concern. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KL04"&gt;KL04&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete activity type. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KS04"&gt;KS04&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete a cost centre. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="KSH2"&gt;KSH2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Change cost centre group - delete. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OBR2"&gt;OBR2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Deletion program for customers, vendors, G/L accounts. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OKC5"&gt;OKC5&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Cost element/cost element group deletion. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OKE1"&gt;OKE1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete transaction data. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OKE2"&gt;OKE2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete a profit centre. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OKI1"&gt;OKI1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Determine Activity Number: Activity Types (Assignment of material number/service to activity type) (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OMZ1"&gt;OMZ1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Definition of partner roles. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OMZ2"&gt;OMZ2&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Language dependent key reassignment for partner roles. (from john.omeara@syskoplan.ie)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-fi-financial.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-8352598166851505848</guid><pubDate>Mon, 26 May 2008 05:09:00 +0000</pubDate><atom:updated>2008-05-25T22:11:43.007-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - SAP OFFICE</title><description>&lt;b&gt;&lt;a name="SO00"&gt;SO00    &lt;/a&gt;&lt;/b&gt;send a note through SAP, can be sent to internet, X400, etc</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-sap-office.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-1409360117690519354</guid><pubDate>Mon, 26 May 2008 05:08:00 +0000</pubDate><atom:updated>2008-05-25T22:09:24.538-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Sales and Distribution (SD)</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td&gt;&lt;b&gt;&lt;a name="OLSD"&gt;OLSD&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Config for SD. Use Tools-Data Transfer-Conditions to setup SAP supplied BDC to load pricing data&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="VA01"&gt;VA01&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Create Sales/Returns Order:Initial Screen&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="VB21"&gt;VB21&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Transaction for Volume Lease Purchases (done as a sales deal)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="VK15"&gt;VK15&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Transaction used to enter multiple sales conditions (most will be entered here)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-sales-and.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-949449159615608225</guid><pubDate>Mon, 26 May 2008 05:08:00 +0000</pubDate><atom:updated>2008-05-25T22:08:45.805-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Human Resources (HR)</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td&gt;&lt;b&gt;&lt;a name="PA03"&gt;PA03&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Change Payroll control record&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="PA20"&gt;PA20&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display PA Infotypes&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="PA30"&gt;PA30&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Create/Change PA Infotypes&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="PP02"&gt;PP02&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Quick Entry for PD object creation&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="PU00"&gt;PU00&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete PA infotypes for an employee. Will not be able to delete an infotype if there is cluster data assigned to the employee.&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-human-resources-hr.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-2302486673248304478</guid><pubDate>Mon, 26 May 2008 05:02:00 +0000</pubDate><atom:updated>2008-05-25T22:07:58.695-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Basis / ABAP</title><description>&lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt;&lt;td colspan="2"&gt;&lt;p&gt;You can execute the following commands in the transaction code (tcode) field with Enter. You will find some useful transaction codes below to work in tandem with the following commands:&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;To call a transaction - In the same session (window) Enter: /nxxxx (xxxx = transaction code). - In an additional session, Enter: /oxxxx (xxxx = transaction code).&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;If you enter this function before any of the tcodes below, you are able to break out of your current screen/business and begin a completely new session. Otherwise, the current business process has to be terminated, and return to the initial user screen (the main menu) has to be initiated before entering tcode spro). /o tcode saves you the effort of having to do this.&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;To end the current transaction Enter: /n. Caution: Unsaved changes are lost without warning&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;To delete the current session. Enter: /i.&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;To generate a session list Enter: /o.&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;To log off from the system Enter: /nend.&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;From John O'Meara&lt;/p&gt; &lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td colspan="2"&gt; &lt;p&gt;OSS Note 0026171 has additional information on OKCodes in SAP, and is a very useful read&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;span style="color:#336666;"&gt; &lt;h3&gt; &lt;a name="BASIS_ABAP"&gt;BASIS/ABAP&lt;/a&gt; &lt;/h3&gt; &lt;/span&gt;    &lt;description&gt;&lt;/description&gt;                  &lt;table&gt;&lt;tbody&gt;&lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="USMM"&gt;USMM&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Pressing F8 will display all hotpacks applied.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;        &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SEARCH_SAP_MENU"&gt;SEARCH_SAP_MENU&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;         Show the menu path to use to execute a given tcode.  You can search by transaction code or menu text.        &lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;        &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="DI02"&gt;DI02&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Repository Information System: Tables.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="LSMW"&gt;LSMW&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Legacy System Migration Workbench. An addon available from SAP that can make data converstion a lot easier. Thanks to Serge Desland for this one.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OSS1"&gt;OSS1&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAP Online Service System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="OY19"&gt;OY19&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Compare Tables&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM13"&gt;SM13&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Update monitor.  Will show update tasks status.  Very useful to determine why an update failed.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="S001"&gt;S001&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP Development Workbench&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="S001"&gt;S001&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Development Weorkbench. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="S002"&gt;S002&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;System Administration. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SA38"&gt;SA38&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Execute a program. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SCAT"&gt;SCAT&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Computer Aided Test Tool&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SCU0"&gt;SCU0&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Compare Tables&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE01"&gt;SE01&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Old Transport &amp;amp; Corrections screen&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE03"&gt;SE03&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Groups together most of the tools that you need for doing transports. In total, more than 20 tools can be reached from this one transaction.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE09"&gt;SE09&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Workbench Organizer&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE10"&gt;SE10&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;New Transport &amp;amp; Correction screen&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE11"&gt;SE11&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Dictionary Maintenance SE12 ABAP/4 Dictionary Display SE13 Maintain Technical Settings (Tables)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE12"&gt;SE12&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Dictionary: Initial Screen - enter object name. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE13"&gt;SE13&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Access tables in ABAP/4 Dictionary. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE14"&gt;SE14&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Utilities for Dictionary Tables&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE15"&gt;SE15&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Repository Information System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE16"&gt;SE16&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Data Browser: Initial Screen. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE16N"&gt;SE16N&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Table Browser (the N stands for New, it replaces SE16). Provided by Smijo Mathew.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE17"&gt;SE17&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;General Table Display&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE24"&gt;SE24&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Class Builder&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE30"&gt;SE30&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Runtime Analysis&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE32"&gt;SE32&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Text Element Maintenance&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE35"&gt;SE35&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Dialog Modules&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE36"&gt;SE36&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4: Logical Databases&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE37"&gt;SE37&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Function Modules&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE38"&gt;SE38&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP Editor&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE39"&gt;SE39&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Splitscreen Editor: Program Compare&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE41"&gt;SE41&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Menu Painter&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE43"&gt;SE43&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain Area Menu&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE48"&gt;SE48&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Show program call hierarchy.  Very useful to see the overall structure of a program.  Thanks to Isabelle Arickx for this tcode.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE49"&gt;SE49&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Table manipulation.  Show what tables are behind a transaction code.  Thanks to Isabelle Arickx for this tcode.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE51"&gt;SE51&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Screen Painter: Initial Screen. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE54"&gt;SE54&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Generate View Maintenance Module&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE61"&gt;SE61&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;R/3 Documentation&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE62"&gt;SE62&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Industry utilities&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE63"&gt;SE63&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Translation&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE64"&gt;SE64&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Terminology&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE65"&gt;SE65&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;R/3 document. short text statistics SE66 R/3 Documentation Statistics (Test!)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE68"&gt;SE68&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Translation Administration&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE71"&gt;SE71&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript layout set&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE71"&gt;SE71&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPScript Layouts Create/Change&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE72"&gt;SE72&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript styles&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE73"&gt;SE73&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript font maintenance (revised)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE74"&gt;SE74&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript format conversion&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE75"&gt;SE75&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript Settings&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE76"&gt;SE76&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript Translation Layout Sets&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE77"&gt;SE77&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAPscript Translation Styles&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE80"&gt;SE80&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Development Workbench&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE81"&gt;SE81&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;SAP Application Hierarchy&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE82"&gt;SE82&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Customer Application Hierarchy&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE83"&gt;SE83&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Reuse Library. Provided by Smiho Mathew.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE84"&gt;SE84&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Repository Information System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE85"&gt;SE85&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Dictionary Information System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE86"&gt;SE86&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Repository Information System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE87"&gt;SE87&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Data Modeler Information System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE88"&gt;SE88&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Development Coordination Info System&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE91"&gt;SE91&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain Messages&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE92"&gt;SE92&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain system log messages&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SE93"&gt;SE93&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain Transaction. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SEARCH_SAP_MENU"&gt;SEARCH_SAP_MENU&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;From the SAP Easy Access screen, type it in the command field and you will be able to search the standard SAP menu for transaction codes / keywords. It will return the nodes to follow for you.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SEU"&gt;SEU&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Object Browser&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SHD0"&gt;SHD0&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Transaction variant maintenance&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM04"&gt;SM04&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Overview of Users (cancel/delete sessions)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM12"&gt;SM12&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Lock table entries (unlock locked tables)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM21"&gt;SM21&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;View the system log, very useful when you get a short dump. Provides much more info than short dump&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM30"&gt;SM30&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Maintain Table Views. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM31"&gt;SM31&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Table Maintenance&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM32"&gt;SM32&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Table maintenance&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM35"&gt;SM35&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;View Batch Input Sessions&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM37"&gt;SM37&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;View background jobs&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM50"&gt;SM50&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Process Overview. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM51"&gt;SM51&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Delete jobs from system (BDC)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SM62"&gt;SM62&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display/Maintain events in SAP, also use function BP_EVENT_RAISE&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SMEN"&gt;SMEN&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display the menu path to get to a transaction&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SMOD_CMOD"&gt;SMOD/CMOD&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Transactions for processing/editing/activating new customer enhancements.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SNRO"&gt;SNRO&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Object browser for number range maintenance. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SPRO"&gt;SPRO&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Start SAP IMG (Implementation Guide). (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SQ00"&gt;SQ00&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Query: Start Queries&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SQ01"&gt;SQ01&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Query: Maintain Queries&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SQ02"&gt;SQ02&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Query: Maintain Funct. Areas&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SQ03"&gt;SQ03&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Query: Maintain User Groups&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SQ07"&gt;SQ07&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP/4 Query: Language Comparison&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="ST05"&gt;ST05&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Trace SQL Database Requests. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="ST22"&gt;ST22&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;ABAP Dump analysis&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;         &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="SU53"&gt;SU53&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display Authorization Values for User. (from john.omeara@syskoplan.ie)&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="WEDI"&gt;WEDI&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;EDI Menu.  IDOC and EDI base.&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="WE02"&gt;WE02&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;Display an IDOC&lt;/td&gt; &lt;/tr&gt; &lt;tr valign="top"&gt; &lt;td colspan="2"&gt;&lt;br /&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;tr valign="top"&gt; &lt;td&gt;&lt;b&gt;&lt;a name="WE07"&gt;WE07&lt;/a&gt;&lt;/b&gt;&lt;/td&gt;&lt;td&gt;IDOC Statistics&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-basis-abap.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-4937565299157077422</guid><pubDate>Mon, 26 May 2008 05:01:00 +0000</pubDate><atom:updated>2008-05-25T22:02:07.734-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Production Planning (PP)</title><description>C001 Create Production Order&lt;br /&gt;C005N Collective Release&lt;br /&gt;C011N Time Ticket&lt;br /&gt;C012 Confirmation - Collective&lt;br /&gt;C013 Confirmation - Cancel&lt;br /&gt;C00IS Production order information system&lt;br /&gt;C0GI Reprocess Goods Movements&lt;br /&gt;C223 Maintain production version</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-production-planning.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-3379310400305221942</guid><pubDate>Mon, 26 May 2008 04:59:00 +0000</pubDate><atom:updated>2008-05-25T22:01:14.228-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">TRANSACTION CODES</category><title>TRANSACTION CODES - Plant Maintenance (PM)</title><description>IW31 Create Plant Maintenance Order&lt;br /&gt;IW32 Change Plant Maintenance Order&lt;br /&gt;IW33 Display Plant Maintenance Order&lt;br /&gt;IW34 Create Notification Order&lt;br /&gt;IW51 Create Service Notification&lt;br /&gt;IW52 Change Service Notification&lt;br /&gt;IW53 Display Service Notification&lt;br /&gt;IW54 Create Service Notification :Problem notification&lt;br /&gt;IW55 Create Service Notification :Activity Request&lt;br /&gt;IW56 Create Service Notification :Service Request&lt;br /&gt;IW57 Assign deletion Flag to Completed Service Notifications&lt;br /&gt;IW58 Change Service Notifications: Selection of Notification&lt;br /&gt;IW59 Display Service Notifications: Selection of Notification</description><link>http://liveinabap.blogspot.com/2008/05/transaction-codes-plant-maintenance-pm.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-5006238532156144664</guid><pubDate>Mon, 26 May 2008 03:05:00 +0000</pubDate><atom:updated>2008-05-25T20:09:57.180-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Interview Questions</category><title>ABAP - Interview Questions - 2</title><description>&lt;p&gt;&lt;span&gt;1. What is an ABAP data dictionary?&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;ABAP 4 data dictionary describes the logical structures of the objects used  in application development and shows how they are mapped to the underlying  relational database in tables/views.&lt;br /&gt;&lt;br /&gt;2. What are domains and data  element?&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;Domains:Domain is the central object for describing the technical  characteristics of an attribute of an business objects. It describes the value  range of the field. Data Element: It is used to describe the semantic definition  of the table fields like description the field. Data element describes how a  field can be displayed to end-user. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;3. What is foreign key relationship?&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;A relationship which can be defined between tables and must be explicitly  defined at field level. Foreign keys are used to ensure the consistency of data.  Data entered should be checked against existing data to ensure that there are  now contradiction. While defining foreign key relationship cardinality has to be  specified. Cardinality mentions how many dependent records or how referenced  records are possible. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;4. Describe data classes.&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;Master data: It is the data which is seldomly changed. Transaction data: It  is the data which is often changed. Organization data: It is a customizing data  which is entered in the system when the system is configured and is then rarely  changed. System data:It is the data which R/3 system needs for itself. &lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;5. What are indexes?&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;Indexes are described as a copy of a database table reduced to specific  fields. This data exists in sorted form. This sorting form ease fast access to  the field of the tables. In order that other fields are also read, a pointer to  the associated record of the actual table are included in the index. Yhe indexes  are activated along with the table and are created automatically with it in the  database.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;6. Difference between transparent tables and pooled tables&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span&gt;Transparent tables: Transparent tables in the dictionary has a one-to-one  relation with the table in database. Its structure corresponds to single  database field. Table in the database has the same name as in the dictionary.  Transparent table holds application data. Pooled tables. Pooled tables in the  dictionary has a many-to-one relation with the table in database. Table in the  database has the different name as in the dictionary. Pooled table are stored in  table pool at the database level. &lt;/span&gt;&lt;/p&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-interview-questions-2.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-4940358682298118463</guid><pubDate>Thu, 15 May 2008 08:33:00 +0000</pubDate><atom:updated>2008-05-15T01:34:04.593-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">SAP</category><title>SAP System - Fields</title><description>&lt;table class="MsoNormalTable" style="border-collapse: collapse; width: 659px; height: 5843px;color:#808080;" border="1" border cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;ABCDE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Constant: Alphabet (A,B,C,...)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;APPLI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;SAP applications     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATCH &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background active (X)     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;IF &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-BATCH&lt;/span&gt;&lt;span style="color:#000080;"&gt; EQ SPACE.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;WRITE: / 'Report was started on-line'.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'Using variant:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-SLSET&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;ELSE.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;WRITE: / 'Report was started in background'.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;ENDIF.&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATZD &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Daily     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATZM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Monthly     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATZO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Once     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATZS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Immediately     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BATZW &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Weekly     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BINPT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Batch input active (X)     &lt;/span&gt; &lt;/p&gt;     &lt;p&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;This field indicates if the transaction was      called in a Batch Input session or by an online user. To test it, a batch      input session must be created. From Release 3.1g the next procedure can be      used.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Create a report which displays this      system field&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Create a Transaction code for this      report&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Use transaction SHDB to record a      the previous transaction&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Press the Overview button and      choose the 'generate program' function.&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;     &lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Running the previously generated      program it will create a Batch Input session&lt;/span&gt;&lt;span style="color:#000080;"&gt;     &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Now call transaction SM35 and      process the created Batch Input in foreground. It should display an 'X' for      system field SY-BINPT.&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BREP4 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: Root name of request report     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;BSPLD &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Background SUBMIT: List output to spool     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CALLD &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;CALL mode active (X)     &lt;/span&gt; &lt;/p&gt;     &lt;p&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;This field indicates if the transaction was      called from another transaction.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Create a report which displays this      system field&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Create a Transaction code for this      report&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;     &lt;p class="smallbullet" style="text-indent: -0.25in; margin-left: 1in;"&gt;     &lt;span style="color:#000080;"&gt;&lt;span style="font-family:Times New Roman;"&gt;o&lt;/span&gt;&lt;span style="font-style: normal; font-variant: normal; font-weight: normal; font-family: Times New Roman;"&gt;        &lt;/span&gt;     &lt;/span&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Create a new report containing the      next ABAP command: CALL TRANSACTION tcode. Where tcode is the Transaction      code you created. When you run this report, it should display an 'X' for      system field SY-CALLD.&lt;/span&gt;&lt;span style="color:#000080;"&gt; &lt;/span&gt;&lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CALLR &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: ID for print dialog function     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CCURS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Rate specification/result field (CURRENCY CONVERT)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CCURT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Table rate from currency conversion     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CDATE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Date of rate from currency conversion     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;COLNO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current column during list creation     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE:     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-COLNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, ',',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LINNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, 'Cursor position (column, row).'.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CPAGE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current page number     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-CPAGE:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-CPAGE&lt;/span&gt;&lt;span style="color:#000080;"&gt; LEFT-JUSTIFIED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CPROG &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Main program     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: /5 'Main program:' RIGHT-JUSTIFIED, 40     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-CPROG&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CTABL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Exchange rate table from currency conversion     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CTYPE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Exchange rate type 'M','B','G' from CURRENCY CONVERSION     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CUCOL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Cursor position (column)     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-CUCOL:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-CUCOL&lt;/span&gt;&lt;span style="color:#000080;"&gt; LEFT-JUSTIFIED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;CUROW &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Cursor position (line)     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-CUROW:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-CUROW&lt;/span&gt;&lt;span style="color:#000080;"&gt; LEFT-JUSTIFIED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DATAR &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Flag: Data received     &lt;/span&gt; &lt;/p&gt;     &lt;p&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;In transaction programming this field      indicates the change of data on the screen. In the PBO part you may set      default values of the input fields of the dynpro. In the PAI part you can      check if they were changed. If SY-DATAR is set, then the user has modified      or entered new data on the screen.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DATLO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Local date for user     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DATUM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: Date     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DATUT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Global date related to UTC (GMT)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DAYST &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Summertime active ? ('daylight saving time')     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DBCNT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of elements in edited dataset with DB operations     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: /12 'Number of selected records:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-DBCNT&lt;/span&gt;&lt;span style="color:#000080;"&gt; CENTERED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DBNAM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Logical database for ABAP/4 program     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DBSYS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: Database system     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DCSYS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: Dialog system     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DSNAM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Name of dataset for spool output     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DYNGR &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Screen group of current screen     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;DYNNR &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of current screen     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;FDAYW &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Factory calendar weekday     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;FDPOS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Location of a string     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;SEARCH T FOR 're'.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;READ TABLE T INDEX     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-TABIX&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;WRITE: / SY-TABIX, T-FIELD.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;SKIP.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: /9 'At the example of sy-tabix, Row', (3)     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-TABIX&lt;/span&gt;&lt;span style="color:#000080;"&gt;, ',' ,&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;'keyword ''re'' found at off-set position:', (3)     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-FDPOS&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;FMKEY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current function code menu     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;HOST &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Host     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;INDEX &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of loop passes     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;DO 5 TIMES.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE:     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-INDEX&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;ENDDO.&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LANGU &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;SAP logon language key     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LDBPG &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Program: ABAP/4 database program for SY-DBNAM     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LILLI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of current list line     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;AT LINE-SELECTION.     &lt;/span&gt; &lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;DETAIL. &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;* SY-LSIND is the index of the current list &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;WRITE: /      'SY-LSIND:', &lt;/span&gt;&lt;span style="font-family: Times New Roman; color: navy;"&gt;SY-LSIND&lt;/span&gt;&lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt; LEFT-JUSTIFIED. &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;* SY-LISTI is the index of the previous list &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;WRITE: /      'SY-LISTI:', &lt;/span&gt;&lt;span style="font-family: Times New Roman; color: navy;"&gt;SY-LISTI&lt;/span&gt;&lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt; LEFT-JUSTIFIED. &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;* SY-LILLI is the number of the selected line in the absolute list &lt;/span&gt;&lt;/p&gt;     &lt;p class="MsoNormal" style="margin-left: 1in;"&gt;     &lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt;WRITE: /      'SY-LILLI:', &lt;/span&gt;&lt;span style="font-family: Times New Roman; color: navy;"&gt;SY-LILLI&lt;/span&gt;&lt;span style="font-family: Times New Roman; color: rgb(0, 0, 128);"&gt; LEFT-JUSTIFIED. &lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LINCT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of list lines     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: /     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LINCT&lt;/span&gt;&lt;span style="color:#000080;"&gt;, 'line      and', (3) &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LINSZ&lt;/span&gt;&lt;span style="color:#000080;"&gt;, 'column is a page'.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LINNO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current line for list creation     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE:     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-COLNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, ',',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LINNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, 'Cursor position (column, row).'.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LINSZ &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Line size of list     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE:     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-COLNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, ',',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LINNO&lt;/span&gt;&lt;span style="color:#000080;"&gt;, 'Cursor position (column, row).'.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LISEL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Selected line     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;* contents of the selected line&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-LISEL:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LISEL&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LISTI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of current list line     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;* SY-LISTI is the index of the      previous list&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-LISTI:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LISTI&lt;/span&gt;&lt;span style="color:#000080;"&gt; LEFT-JUSTIFIED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LOCDB &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Local database exists     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LOCOP &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Local database operation     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LOOPC &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of LOOP lines at screen step loop     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LSIND &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of secondary list     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;* SY-LSIND is the index of the      current list&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;WRITE: / 'SY-LSIND:',     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-LSIND&lt;/span&gt;&lt;span style="color:#000080;"&gt; LEFT-JUSTIFIED.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;LSTAT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Status information for each list level     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MACDB &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Program: Name of file for matchcode access     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MACOL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of columns from SET MARGIN     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MANDT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Client number from SAP logon     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MARKY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current line character for MARK     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MAROW &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;No. of lines from SET MARGIN statement     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MODNO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of alternative modi     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGID &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message ID     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGLI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Message line (line 23)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGNO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message number     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGTY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message type (E,I.W,...)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGV1 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message variable     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGV2 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message variable     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGV3 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message variable     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;MSGV4 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Message variable     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;OPSYS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: Operating system     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PAART &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Format     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PAGCT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Page size of list from REPORT statement     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PAGNO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Current page in list     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PDEST &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Output device     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PEXPI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Spool retention period     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PFKEY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Current F key status     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PLIST &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Name of spool request (list name)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRABT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Department on cover sheet     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRBIG &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Selection cover sheet     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRCOP &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Number of copies     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRDSN &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Name of spool dataset     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PREFX &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;ABAP/4 prefix for background jobs     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRIMM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Print immediately     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRNEW &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: New spool request (list)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRREC &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Recipient     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRREL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Delete after printing     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;PRTXT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Text for cover sheet     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;REPID &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Program: Name of ABAP/4 program     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;RTITL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Print: Report title of program to be printed     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SAPRL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: SAP Release     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SCOLS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Columns on screen     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SLSET &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Name of selection set     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SPONO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Spool number for list output     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SPONR &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Spool number from TRANSFER statement     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SROWS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Lines on screen     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;STACO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: List displayed from column     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;STARO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Page displayed from line     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;STEPL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of LOOP line at screen step     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SUBRC &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Return value after specific ABAP/4 statements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SUBTY &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;ABAP/4: Call type for SUBMIT     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;SYSID &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: SAP System ID     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TABIX &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Current line of an internal table     &lt;/span&gt; &lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;SEARCH T FOR 're'.&lt;/span&gt;&lt;/p&gt;     &lt;p class="code"&gt;&lt;span style="font-family:Times New Roman;"&gt;&lt;span style="color:#000080;"&gt;READ TABLE T INDEX     &lt;/span&gt; &lt;span style="color: navy;"&gt;SY-TABIX&lt;/span&gt;&lt;span style="color:#000080;"&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TCODE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Session: Current transaction code     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TFDSN &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Dataset for data extracts     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TFILL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Current number of entries in internal table     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TIMLO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Local time for user     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TIMUT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Global time related to UTC (GMT)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TITLE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Title of ABAP/4 program     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TLENG &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Line width of an internal table     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TMAXL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Maximum number of entries in internal table (?)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TNAME &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Name of internal table after an access (?)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TOCCU &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;OCCURS parameter with internal tables     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TPAGI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Flag indicating roll-out of internal table to paging      area (?) &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TSTLO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Timestamp (date and time) for user     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TSTUT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Timestamp (date and time) related to UTC (GMT)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TTABC &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of line last read in an internal table (?)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TTABI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Offset of internal table in roll area (?)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR0 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR1 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR2 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR3 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR4 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR5 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR6 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR7 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR8 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TVAR9 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Runtime: Text variable for ABAP/4 text elements     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;TZONE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Time difference from 'Greenwich Mean Time' (UTC) in      seconds &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;UCOMM &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Command field function entry     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;ULINE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Constant: Underline (---------...)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;UNAME &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Session: SAP user from SAP logon     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;UZEIT &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;System: Time     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;VLINE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Constant: Vertical bar     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WAERS &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;T001: Company code currency after reading B segment     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WILLI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Number of current window line     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINCO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Cursor position in window (column)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINDI &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Index of current window line     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINRO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Cursor position in window (line)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINSL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Interact.: Selected window line     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINX1 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Window coordinate (column left)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINX2 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Window coordinate (column right)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINY1 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Window coordinate (line left)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WINY2 &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Window coordinate (line right)     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;WTITL &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Standard page header indicator     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;XCODE &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Extended command field     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;     &lt;td style="padding: 0.75pt;" valign="top" width="142"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;&lt;b&gt;ZONLO &lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;     &lt;td style="padding: 0.75pt; width: 376px;"&gt;     &lt;p class="MsoNormal"&gt;&lt;span style="font-family:Times New Roman;color:#000080;"&gt;Time zone of user     &lt;/span&gt; &lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/sap-system-fields.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-2807901151059141112</guid><pubDate>Thu, 15 May 2008 08:20:00 +0000</pubDate><atom:updated>2008-05-25T20:05:11.486-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Interview Questions</category><title>ABAP - Interview Questions - 1</title><description>1. Preparation of the data records by the L.D.B and reading of the data records in the actual&lt;br /&gt;   report are accomplished with the command pair Put and Get.&lt;br /&gt;&lt;br /&gt;2. The three main elements of LDB are Structure, Selections, and Database Program.&lt;br /&gt;&lt;br /&gt;3. In LDB what determines hierarchy of the tables?  Structure.&lt;br /&gt;&lt;br /&gt;4. In general what are the two ways in which one can retrieve data from tables?&lt;br /&gt;&lt;br /&gt;Using Select statements, Database Program.&lt;br /&gt;&lt;br /&gt;5. With LDB one can modify the pre-generated selection screen to their needs (T/F).&lt;br /&gt;Yes.&lt;br /&gt;&lt;br /&gt;6. Logical databases are programs that read data from Database tables (Dictionary Structures).&lt;br /&gt;&lt;br /&gt;7. The event Get&lt;table name=""&gt; LATE process all tables that are hierarchically superior to the &lt;/table&gt;&lt;table name=""&gt;. (True/False)&lt;br /&gt;&lt;br /&gt;False.  It processes all tables that are hierarchically inferior to the &lt;/table&gt;&lt;table style="width: 691px; height: 4700px;" name=""&gt;.&lt;br /&gt;&lt;br /&gt;8. The Database Program of LDB is a collection of SUBROUTINES, which selects data and passes it to the report.&lt;br /&gt;&lt;br /&gt; 9. The layout of the Database program is determined by both Structure and Selections.&lt;br /&gt;10. The order in which data is made available to the report depends on Structure of the LDB.&lt;br /&gt;&lt;br /&gt;11. Apart from the structure and selections of the LDB the GET statements in the report&lt;br /&gt;     determines the behavior of the database at runtime.&lt;br /&gt;&lt;br /&gt;12. Node at the highest level in the structure is known as Root.&lt;br /&gt;&lt;br /&gt;13. There can be more than one node at the highest level in the structure. (T/F)&lt;br /&gt;      False.&lt;br /&gt;     One can define only one node at the highest level in the structure on LDB.&lt;br /&gt;&lt;br /&gt;14. All nodes in the structure of LDB need not be defined in the ABAP/4 Dictionary (T/F).&lt;br /&gt;     False.&lt;br /&gt;&lt;br /&gt;     One has to define all nodes in the Dictionary or one has to select all nodes that are defined in&lt;br /&gt;     the Dictionary.&lt;br /&gt;&lt;br /&gt;15.  It is not possible to use ABAP/4 Dictionary Structures without an underlying database using LDB. (T/F)&lt;br /&gt;&lt;br /&gt;True.  One can use additionally related tables, along with the tables defined in the structure of LDB.&lt;br /&gt;&lt;br /&gt;16. Dynamic selections allow the user to define further selections for database access in addition to the selection criteria already defined in the LDB selections.&lt;br /&gt;&lt;br /&gt;17. Check statement can be used along with the event GET in the report for checking the selections, which are not table-specific values.&lt;br /&gt;&lt;br /&gt;18. In sense of Database Management System (DBMS) LOGICAL DATABASE is a database Structure. (T/F).&lt;br /&gt;&lt;br /&gt;False.&lt;br /&gt;&lt;br /&gt;19.  It is not necessary to maintain the Parent-Child relationship between the tables in Logical Database Structure. (T/F)&lt;br /&gt;&lt;br /&gt;False.  One has to maintain the Parent-Child relationship.&lt;br /&gt;&lt;br /&gt;20. Is it possible to extract data from tables without using the event ‘GET’ in the report with an appropriate LDB. (T/F).&lt;br /&gt;&lt;br /&gt;False.  One can extract data from tables using Select statements in a report, though the report is having a LDB attribute.&lt;br /&gt;&lt;br /&gt;21. What sorts of tables one can se in designing the hierarchy of a LDB?&lt;br /&gt;&lt;br /&gt;Tables, which are having Foreign Key relations.&lt;br /&gt;&lt;br /&gt;22. A report program, which uses only SELECT statements, is called SQL Report.&lt;br /&gt;&lt;br /&gt;23. One cannot use SELECT statements in a report program linked to a Logical Database (T/F).  False.&lt;br /&gt;&lt;br /&gt;24. Is it true that the Logical Database reads the data from the database tables using Select Statements (T/F).&lt;br /&gt;&lt;br /&gt;Yes. We are coding that in Database part of LDB.&lt;br /&gt;&lt;br /&gt;25. In a report with an LDB attribute, you do not have to define how the information should be retrieved from the database tables, but only how the data should be represented on the screen. (T/F).&lt;br /&gt;&lt;br /&gt;True.&lt;br /&gt;&lt;br /&gt;26. One can use the event GET in a report without LDB attribute. (T/F).&lt;br /&gt;&lt;br /&gt;False.&lt;br /&gt;&lt;br /&gt;27. The last character of the LDB name denotes Application.&lt;br /&gt;&lt;br /&gt;28. The structure of Logical Databases reflects the Foreign Key dependencies of hierarchical tables in the SAP system.&lt;br /&gt;&lt;br /&gt;29. It is mandatory that for each table in the LDB hierarchy there should exist one GET statement in the report. (T/F).&lt;br /&gt;&lt;br /&gt;False.  It is not necessary.&lt;br /&gt;&lt;br /&gt;30.  What happens if a report does not contain a GET statement for a particular node of a Logical Database.&lt;br /&gt;&lt;br /&gt;Process will transfer to the next event.&lt;br /&gt;&lt;br /&gt;31.  In a Logical Database, one can define input fields on the selection screen with Select-Options and Parameters statements.&lt;br /&gt;&lt;br /&gt;32.  Suppose a logical database program contains the following lines:&lt;br /&gt;&lt;br /&gt;SELECT-OPTIONS CONNID FOR SPFLI-CONNID.&lt;br /&gt;&lt;br /&gt;PARAMETERS CARRID LIKE SFLIGHT-CARRID FOR TABLE SFLIGHT.&lt;br /&gt;&lt;br /&gt;What will be the output, for the above two statements?&lt;br /&gt;&lt;br /&gt;Only select-options connid for spfli-carrid will be displayed on the screen.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;33.  Consider a report with F1S attribute, what will be the output for the following code.  Whether you will get the data from spfli and sflight or not, with corresponding tables statement,&lt;br /&gt;&lt;br /&gt;   GET SPFLI.&lt;br /&gt;&lt;br /&gt;   GET SFLIGHT.&lt;br /&gt;&lt;br /&gt;   Write:/ spfli-carrid, spfli-connid, sflight-fldate, sbook-bookid.&lt;br /&gt;&lt;br /&gt;   Yes, you will get the data from spfli and sflight.&lt;br /&gt;&lt;br /&gt;34.  Consider a report with F1S attribute, what will be the output of the following code.  Whether you will get the data from sbook or not, with corresponding tables statement.&lt;br /&gt;&lt;br /&gt;GET SPFLI.&lt;br /&gt;&lt;br /&gt;GET SFLIGHT.&lt;br /&gt;&lt;br /&gt;Write:/ spfli-carrid, spfli-connid, sflight-fldate, sbook-bookid.&lt;br /&gt;&lt;br /&gt;You cannot extract data from sbook.&lt;br /&gt;&lt;br /&gt;35.  Identify any errors in the following code and correct the same, and what will be the output.  If there exists corresponding tables statement, for spfli, sflight, sbook.&lt;br /&gt;&lt;br /&gt;GET SPFLI.&lt;br /&gt;&lt;br /&gt;GET SBOOK.&lt;br /&gt;&lt;br /&gt;Write:/ spfli-carrid, spfli-connid, sflight-fldate, sbook-bookid, sbook-class.&lt;br /&gt;&lt;br /&gt;No syntax errors.  You will get data from all the three tables.&lt;br /&gt;&lt;br /&gt;36.  Does the following two statements do the same task?  If so which one takes less time and which one is recommended.&lt;br /&gt;&lt;br /&gt;   Select * from spfli where spfli-carrid = ‘LH’ and spfli-connid = ‘400’.&lt;br /&gt;&lt;br /&gt;   Endselect.&lt;br /&gt;&lt;br /&gt;   Select * from spfli. Check: spfli-carrid = ‘LH’ and spflid-connid = ‘400’.&lt;br /&gt;&lt;br /&gt;   Endselect.&lt;br /&gt;&lt;br /&gt;  -Yes they will do the same task.  Second Select statement takes less time and is recommended.&lt;br /&gt;&lt;br /&gt;37.  If you want to improve the response time (time to access data) Logical Databases permits you to achieve this using VIEWS.&lt;br /&gt;&lt;br /&gt;38. Is there any upper limit (max) to the possible number of nodes in a logical database structure? If so what is the limit?&lt;br /&gt;&lt;br /&gt;Yes, there is an upper limit for defining number of nodes in a Logical Database Structure.&lt;br /&gt;&lt;br /&gt;Maximum nodes = 1200 / length where length = max. Length of name in the structure.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;39.  In the structure of Logical Database nodes at different levels are displayed in the same columns. (T/F) If false what types of nodes are displayed in the same columns. If true what type of nodes are not displayed in the same columns.&lt;br /&gt;&lt;br /&gt;False.  Nodes at same levels are displayed in the same columns.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;40. What are the advantages of Logical Databases?&lt;br /&gt;&lt;br /&gt;It offers an easy-to-use selection screens.  You can modify the pre-generated selection screen to your needs.  It offers check functions to check whether user input is complete, correct, and plausible.  It offers reasonable data selections.  It contains central authorization checks for data base accesses.  Enhancements such as improved performance immediately apply to all report programs that use the logical database.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;41.  Though all the ABAP/4 Dictionary Structures that exists in the structure of the LDB, being defined in Database Program, we are defining the Dictionary Structures in the Report.  What is the reason for such declaration?&lt;br /&gt;&lt;br /&gt;By declaring so we are providing work areas for data passing between Logical Database and Report.  In addition, the logical database configures the selection screen depending on the selection of database tables.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;42.  Is it mandatory to declare all the tables in Report by the key word tables for all the tables that exist in the structure of LDB, and are being defined in the Database part of LDB.&lt;br /&gt;&lt;br /&gt;No, It is not mandatory to declare all tables in report.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;43. If one wants to access data using Logical Database, the use of events is unavoidable. (T/F).&lt;br /&gt;     True.&lt;br /&gt;&lt;br /&gt;&lt;/table&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-interview-questions.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-5266789719850386940</guid><pubDate>Thu, 15 May 2008 07:00:00 +0000</pubDate><atom:updated>2008-05-15T00:54:01.064-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP - Others</category><title>ABAP - Performance tuning</title><description>&lt;span style="font-family:Arial;"&gt;&lt;br /&gt;&lt;a href="#For%20all%20entries"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);font-size:85%;" &gt;For all entries&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Nested%20selects"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Nested selects&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Select%20using%20JOINS"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Select using JOINS&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Use%20the%20selection%20criteria"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Use the selection  criteria &lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Use%20the%20aggregated%20functions"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Use the aggregated  functions &lt;/span&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Select%20with%20view"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;Select with view&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Select%20with%20index%20support"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Select with index support&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Select%20%E2%80%A6%20Into%20table"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Select … Into table&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Select%20with%20selection%20list"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Select with selection  list&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Key%20access%20to%20multiple%20lines"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Key access to multiple  lines&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Copying%20internal%20tables"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Copying internal tables&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Modifying%20a%20set%20of%20lines"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Modifying a set of lines&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Deleting%20a%20sequence%20of%20lines"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Deleting a sequence of  lines&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Linear%20search%20vs.%20binary"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Linear search vs. binary&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Comparison%20of%20internal%20tables"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Comparison of internal  tables&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Modify%20selected%20components"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Modify selected  components&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Appending%20two%20internal%20tables"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Appending two internal  tables&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Deleting%20a%20set%20of%20lines"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Deleting a set of lines&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;span style="color: rgb(0, 0, 128);"&gt;&lt;strong&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;a href="#Tools%20available%20in%20SAP%20to%20pin-point%20a%20performance%20problem"&gt;&lt;strong&gt; &lt;span style="color: rgb(0, 0, 128);"&gt;Tools  available in SAP to pin-point a performance problem&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt;&lt;/span&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 128);font-size:85%;" &gt;&lt;br /&gt;&lt;/span&gt; &lt;/strong&gt;&lt;a href="#Optimizing%20the%20load%20of%20the%20database"&gt; &lt;span style="color: rgb(0, 0, 128);font-size:85%;" &gt;&lt;strong&gt; Optimizing the load of the database&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;b&gt;&lt;a href="#TIPS%20&amp;amp;%20TRICKS%20FOR%20OPTIMIZATION"&gt; &lt;span style="color: rgb(0, 0, 128);font-size:85%;" &gt;Other General Tips &amp;amp; Tricks for Optimization&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="For all entries"&gt; For all entries&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The for all entries&lt;br /&gt;&lt;br /&gt;creates a where clause, where all the entries in the driver table are combined  with OR. If the number of entries in the driver table is larger&lt;br /&gt;&lt;br /&gt;than rsdb/max_blocking_factor,  several similar SQL statements are executed to limit the length of the WHERE  clause. &lt;/span&gt; &lt;/p&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The plus&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Large amount of      data&lt;/span&gt;  &lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Mixing processing      and&lt;br /&gt;&lt;br /&gt;reading of data&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Fast internal      reprocessing of data&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Fast&lt;/span&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The Minus&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Difficult to      program/understand&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Memory could be      critical (use FREE or PACKAGE size)&lt;/span&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Some steps that might  make FOR ALL ENTRIES more&lt;br /&gt;&lt;br /&gt;efficient:&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Removing&lt;br /&gt;&lt;br /&gt;duplicates      from the the driver table&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Sorting the driver      table&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;div align="justify"&gt;       &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;If possible, convert the data in the driver table to ranges so a BETWEEN statement is used instead of and OR&lt;br /&gt;&lt;br /&gt;statement:&lt;br /&gt;FOR ALL ENTRIES IN i_tab&lt;br /&gt;WHERE mykey &gt;= i_tab-low and&lt;br /&gt;mykey &lt;= i_tab-high.&lt;/span&gt;&lt;/pre&gt;     &lt;/div&gt;     &lt;/li&gt;&lt;/ul&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Nested selects"&gt; Nested selects&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The plus:&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Small amount of      data&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Mixing processing      and reading of data&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Easy to code - and      understand&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The minus:&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Large amount of      data &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;  &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;when mixed   &lt;br /&gt;&lt;br /&gt;processing isn’t needed&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Performance killer      no. 1&lt;br /&gt;&lt;/span&gt;          &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Select using JOINS"&gt; Select using JOINS&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The plus&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Very large amount      of data&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Similar to Nested      selects - when the accesses are planned by the programmer&lt;/span&gt;  &lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;In some cases the   &lt;br /&gt;&lt;br /&gt;fastest&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Not so&lt;br /&gt;&lt;br /&gt;memory      critical&lt;/span&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The minus&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Very&lt;br /&gt;&lt;br /&gt;difficult to      program/understand&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Mixing processing      and reading of data not possible&lt;/span&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Use the selection criteria"&gt; Use the selection criteria &lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;br /&gt;&lt;br /&gt;&lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;SELECT * FROM SBOOK.          &lt;br /&gt;CHECK: SBOOK-CARRID = 'LH' AND&lt;br /&gt;        SBOOK-CONNID = '0400'.&lt;br /&gt;ENDSELECT.                              &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;     &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;&lt;strong&gt;SELECT * FROM SBOOK            &lt;br /&gt;WHERE CARRID = 'LH' AND      &lt;br /&gt;CONNID = '0400'.       &lt;br /&gt;ENDSELECT.                     &lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Use the aggregated functions"&gt; Use the aggregated functions &lt;/a&gt;&lt;br /&gt;&lt;/span&gt; &lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;C4A = '000'.     &lt;br /&gt;SELECT * FROM T100&lt;br /&gt;WHERE SPRSL = 'D' AND&lt;br /&gt;ARBGB = '00'.&lt;br /&gt;CHECK: T100-MSGNR &gt; C4A.&lt;br /&gt;C4A = T100-MSGNR.&lt;br /&gt;ENDSELECT.       &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SELECT MAX( MSGNR ) FROM T100 INTO C4A&lt;br /&gt;WHERE SPRSL = 'D' AND       &lt;br /&gt;ARBGB = '00'.         &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Select     with view"&gt; Select with view&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;SELECT * FROM DD01L              &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%'     &lt;br /&gt; AND AS4LOCAL = 'A'.      &lt;br /&gt;SELECT SINGLE * FROM DD01T     &lt;br /&gt;WHERE   DOMNAME    = DD01L-DOMNAME&lt;br /&gt; AND AS4LOCAL   = 'A'     &lt;br /&gt; AND AS4VERS    = DD01L-AS4VERS&lt;br /&gt; AND DDLANGUAGE = SY-LANGU.&lt;br /&gt;ENDSELECT.                       &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SELECT * FROM DD01V              &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%'     &lt;br /&gt;AND DDLANGUAGE = SY-LANGU.&lt;br /&gt;ENDSELECT.                              &lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Select with index support"&gt; Select with index support&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;SELECT * FROM T100      &lt;br /&gt;WHERE     ARBGB = '00'&lt;br /&gt;AND MSGNR = '999'.&lt;br /&gt;ENDSELECT.              &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SELECT * FROM T002.       &lt;br /&gt;SELECT * FROM T100      &lt;br /&gt;WHERE     SPRSL = T002-SPRAS&lt;br /&gt;   AND ARBGB = '00'&lt;br /&gt;   AND MSGNR = '999'.&lt;br /&gt;ENDSELECT.              &lt;br /&gt;ENDSELECT.                       &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Select …     Into table"&gt; Select … Into table&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;REFRESH X006.           &lt;br /&gt;SELECT * FROM T006 INTO X006.&lt;br /&gt;APPEND X006.          &lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SELECT * FROM T006 INTO TABLE X006.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Select     with selection list"&gt; Select with selection list&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;SELECT * FROM DD01L        &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%'&lt;br /&gt; AND AS4LOCAL = 'A'.&lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;SELECT DOMNAME FROM DD01L&lt;br /&gt;INTO DD01L-DOMNAME   &lt;br /&gt;WHERE DOMNAME LIKE 'CHAR%'&lt;br /&gt;AND AS4LOCAL = 'A'.&lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Key access to multiple lines"&gt; Key access to multiple lines&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;LOOP AT TAB.    &lt;br /&gt;CHECK TAB-K = KVAL.&lt;br /&gt;" ...         &lt;br /&gt;ENDLOOP.        &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;LOOP AT TAB WHERE K = KVAL.&lt;br /&gt;" ...                   &lt;br /&gt;ENDLOOP.                  &lt;br /&gt;&lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Copying internal tables"&gt; Copying internal tables&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;REFRESH TAB_DEST.        &lt;br /&gt;LOOP AT TAB_SRC INTO TAB_DEST.&lt;br /&gt;APPEND TAB_DEST.       &lt;br /&gt;ENDLOOP.                 &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;TAB_DEST[] = TAB_SRC[].&lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Modifying a set of lines"&gt; Modifying a set of lines&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;LOOP AT TAB.       &lt;br /&gt;IF TAB-FLAG IS INITIAL.&lt;br /&gt;TAB-FLAG = 'X'.&lt;br /&gt;ENDIF.           &lt;br /&gt;MODIFY TAB.      &lt;br /&gt;ENDLOOP.           &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;TAB-FLAG = 'X'.            &lt;br /&gt;MODIFY TAB TRANSPORTING FLAG&lt;br /&gt;    WHERE FLAG IS INITIAL.&lt;br /&gt;&lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Deleting a sequence of lines"&gt; Deleting a sequence of lines&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;DO 101 TIMES.         &lt;br /&gt;DELETE TAB_DEST INDEX 450.&lt;br /&gt;ENDDO.                &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;DELETE TAB_DEST FROM 450 TO 550.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Linear     search vs. binary"&gt; Linear search vs. binary&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;READ TABLE TAB WITH KEY K = 'X'.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;READ TABLE TAB WITH KEY K = 'X' BINARY SEARCH.&lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Comparison of internal tables"&gt; Comparison of internal tables&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;DESCRIBE TABLE: TAB1 LINES L1,&lt;br /&gt;         TAB2 LINES L2.&lt;br /&gt;                       &lt;br /&gt;IF L1 &lt;&gt; L2.                  &lt;br /&gt;TAB_DIFFERENT = 'X'.        &lt;br /&gt;ELSE.                         &lt;br /&gt;TAB_DIFFERENT = SPACE.      &lt;br /&gt;LOOP AT TAB1.               &lt;br /&gt;READ TABLE TAB2 INDEX SY-TABIX.&lt;br /&gt;IF TAB1 &lt;&gt; TAB2.          &lt;br /&gt;TAB_DIFFERENT = 'X'. EXIT.&lt;br /&gt;ENDIF.                    &lt;br /&gt;ENDLOOP.                    &lt;br /&gt;ENDIF.                        &lt;br /&gt;                       &lt;br /&gt;IF TAB_DIFFERENT = SPACE.     &lt;br /&gt;" ...                       &lt;br /&gt;ENDIF.                        &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;IF TAB1[] = TAB2[].&lt;br /&gt;" ...        &lt;br /&gt;ENDIF.                &lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Modify selected components"&gt; Modify selected components&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;LOOP AT TAB.     &lt;br /&gt;TAB-DATE = SY-DATUM.&lt;br /&gt;MODIFY TAB.    &lt;br /&gt;ENDLOOP.         &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;WA-DATE = SY-DATUM.              &lt;br /&gt;LOOP AT TAB.                     &lt;br /&gt;MODIFY TAB FROM WA TRANSPORTING DATE.&lt;br /&gt;ENDLOOP.                         &lt;br /&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Appending two internal tables"&gt; Appending two internal tables&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;LOOP AT TAB_SRC.        &lt;br /&gt;APPEND TAB_SRC TO TAB_DEST.&lt;br /&gt;ENDLOOP&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;APPEND LINES OF TAB_SRC TO TAB_DEST.&lt;/strong&gt; &lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Deleting a set of lines"&gt; Deleting a set of lines&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;      &lt;div align="justify"&gt;  &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;LOOP AT TAB_DEST WHERE K = KVAL.&lt;br /&gt;DELETE TAB_DEST.         &lt;br /&gt;ENDLOOP&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;DELETE TAB_DEST WHERE K = KVAL.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;      &lt;/div&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Tools     available in SAP to pin-point a performance problem"&gt;Tools available  in SAP to pin-point a performance problem&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;ul&gt;&lt;li&gt;     &lt;div align="justify"&gt;       &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;The runtime analysis (SE30)&lt;/span&gt;&lt;/pre&gt;     &lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;     &lt;div align="justify"&gt;       &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;SQL Trace (ST05)&lt;/span&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;     &lt;/li&gt;&lt;li&gt;     &lt;div align="justify"&gt;       &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;Tips and Tricks&lt;br /&gt;&lt;br /&gt;tool &lt;/span&gt;&lt;/pre&gt;     &lt;/div&gt;     &lt;/li&gt;&lt;li&gt;     &lt;div align="justify"&gt;       &lt;pre&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;" &gt;The performance database&lt;/span&gt;&lt;/pre&gt;     &lt;/div&gt;     &lt;/li&gt;&lt;/ul&gt;  &lt;p align="justify"&gt; &lt;/p&gt;  &lt;h2 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;&lt;a name="Optimizing the load of the database"&gt; Optimizing the load of the&lt;br /&gt;&lt;br /&gt;database&lt;/a&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;h3 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Using table&lt;br /&gt;&lt;br /&gt;buffering&lt;/span&gt;&lt;/h3&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Using buffered tables&lt;br /&gt;&lt;br /&gt;improves the performance considerably. Note that in some cases a stament can not  be used with a buffered table, so when using these staments the&lt;br /&gt;&lt;br /&gt;buffer will be  bypassed. These staments are:&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Select DISTINCT&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;ORDER BY / GROUP BY      / HAVING clause&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Any WHERE clasuse      that contains a subquery or IS NULL expression&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt; &lt;br /&gt;&lt;br /&gt;&lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;JOIN s&lt;/span&gt;     &lt;/p&gt;&lt;/li&gt;&lt;li&gt;     &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;A SELECT... FOR      UPDATE&lt;/span&gt; &lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;&lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;If you wnat to  explicitly bypass the bufer,&lt;br /&gt;&lt;br /&gt;use the BYPASS BUFFER addition to the SELECR  clause.&lt;/span&gt;&lt;/p&gt;  &lt;h3 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Use the ABAP SORT  Clause Instead of ORDER BY&lt;/span&gt;&lt;/h3&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;The ORDER BY clause is  executed on the database server while the ABAP SORT statement is executed&lt;br /&gt;&lt;br /&gt;on the  application server. The datbase server will usually be the bottleneck, so  sometimes it is better to move thje sort from the datsbase&lt;br /&gt;&lt;br /&gt;server to the  application server.&lt;/span&gt;&lt;/p&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;If you are not sorting  by the primary key ( E.g. using the ORDER BY PRIMARY key statement) but are  sorting by another key, it could be better to&lt;br /&gt;&lt;br /&gt;use the ABAP SORT stament to sort  the data in an internal table. Note however that for very large result sets it  might not be a feasible solution&lt;br /&gt;&lt;br /&gt;and you would want to let the datbase server  sort it.&lt;/span&gt;&lt;/p&gt;  &lt;h3 align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;Avoid ther SELECT  DISTINCT Statement&lt;/span&gt;&lt;/h3&gt;  &lt;p align="justify"&gt;&lt;span style="color: rgb(17, 17, 17);font-family:Times New Roman;font-size:85%;"  &gt;As with the ORDER BY  clause it could be better to avoid using SELECT DISTINCT, if some of the fields  are not part of&lt;br /&gt;&lt;br /&gt;an index. Instead use ABAP SORT + DELETE ADJACENT DUPLICATES on  an internal table, to delete duplciate rows.&lt;/span&gt;&lt;/p&gt;  &lt;p align="center"&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;&lt;b&gt;&lt;i&gt; &lt;a name="TIPS &amp;amp; TRICKS FOR OPTIMIZATION"&gt;TIPS &amp;amp; TRICKS FOR OPTIMIZATION&lt;/a&gt;&lt;/i&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt; &lt;tt&gt;&lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;ul type="disc"&gt;&lt;tt&gt;  &lt;/tt&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;&lt;b&gt;Use the GET RUN TIME command to help evaluate performance.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;It's    hard to know whether that optimization technique REALLY helps unless you test    it out. Using this tool can help you know what is&lt;br /&gt;&lt;br /&gt;effective, under what kinds    of conditions. The GET RUN TIME has problems under multiple CPUs, so you    should use it to test small pieces of&lt;br /&gt;&lt;br /&gt;your program, rather than the whole    program. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;&lt;b&gt;Generally,&lt;br /&gt;&lt;br /&gt;try to reduce I/O first, then memory, then CPU activity. &lt;/b&gt;   I/O operations that read/write to hard disk are always the most expensive &lt;br /&gt;&lt;br /&gt;operations. Memory, if not controlled, may have to be written to swap space on    the hard disk, which therefore increases your I/O read/writes to&lt;br /&gt;&lt;br /&gt;disk. CPU    activity can be reduced by careful program design, and by using commands such    as SUM (SQL) and COLLECT (ABAP/4). &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Avoid 'SELECT *', especially in tables that have a lot of fields. Use&lt;br /&gt;&lt;br /&gt;SELECT A B C INTO instead, so that fields are only read if they are used. This    can make a very big difference. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt; &lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Field-groups can be useful for multi-level sorting and displaying.    However, they&lt;br /&gt;&lt;br /&gt;write their data to the system's paging space, rather than to    memory (internal tables use memory). For this reason, field-groups are only &lt;br /&gt;&lt;br /&gt;appropriate for processing large lists (e.g. over 50,000 records). If you have    large lists, you should work with the systems administrator to&lt;br /&gt;&lt;br /&gt;decide the    maximum amount of RAM your program should use, and from that, calculate how    much space your lists will use. Then you can decide&lt;br /&gt;&lt;br /&gt;whether to write the data    to memory or swap space. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use as&lt;br /&gt;&lt;br /&gt;many table keys as possible in the WHERE part of your select    statements. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Whenever possible, design the program to access a relatively constant    number of records (for instance, if you only access the&lt;br /&gt;&lt;br /&gt;transactions for one    month, then there probably will be a reasonable range, like 1200-1800, for the    number of transactions inputted within&lt;br /&gt;&lt;br /&gt;that month). Then use a SELECT A B C    INTO TABLE ITAB statement. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Get a good idea of how many records you will be accessing. Log into your    productive system, and use SE80 -&gt; Dictionary Objects (press&lt;br /&gt;&lt;br /&gt;Edit), enter the    table name you want to see, and press Display. Go To Utilities -&gt; Table    Contents to query the table contents and see the&lt;br /&gt;&lt;br /&gt;number of records. This is    extremely useful in optimizing a program's memory allocation. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Try to make the user interface such that the program gradually unfolds    more information to the user, rather than&lt;br /&gt;&lt;br /&gt;giving a huge list of information    all at once to the user. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Declare your internal tables using OCCURS NUM_RECS, where NUM_RECS is the    number of records you expect to be accessing. If the number of&lt;br /&gt;&lt;br /&gt;records exceeds    NUM_RECS, the data will be kept in swap space (not memory). &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use SELECT A B C INTO TABLE ITAB whenever possible. This will read all of    the records into the itab in one operation, rather&lt;br /&gt;&lt;br /&gt;than repeated operations    that result from a SELECT A B C INTO ITAB... ENDSELECT statement. Make sure    that ITAB is declared with OCCURS&lt;br /&gt;&lt;br /&gt;NUM_RECS, where NUM_RECS is the number of    records you expect to access. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;If the number of records you are reading is constantly growing, you may be    able to break it into chunks of relatively constant&lt;br /&gt;&lt;br /&gt;size. For instance, if you    have to read all records from 1991 to present, you can break it into quarters,    and read all records one quarter at&lt;br /&gt;&lt;br /&gt;a time. This will reduce I/O operations.    Test extensively with GET RUN TIME when using this method. &lt;/span&gt;   &lt;/tt&gt;&lt;p&gt;&lt;tt&gt; &lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Know how to use the 'collect' command. It can be very efficient.   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use the SELECT SINGLE command whenever possible.   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/tt&gt;&lt;p&gt;&lt;tt&gt;    &lt;/tt&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;tt&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Many tables contain totals fields (such as monthly expense totals). Use&lt;br /&gt;&lt;br /&gt;these avoid wasting resources by calculating a total that has already been    calculated and stored.&lt;/span&gt;&lt;/tt&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;p&gt;&lt;b&gt;&lt;span style="color: rgb(17, 17, 17);font-size:85%;" &gt;ABAP/4 Development Code Efficiency  Guidelines&lt;/span&gt;&lt;/b&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;ABAP/4 (Advanced Business Application Programming 4GL) language is an  "event-driven",&lt;br /&gt;&lt;br /&gt;"top-down", well-structured and powerful programming language.   The ABAP/4 processor controls the execution of an event.  Because the ABAP/4&lt;br /&gt;&lt;br /&gt;language incorporates many "event" keywords and these keywords need not be in  any specific order in the code, it is wise to implement in-house&lt;br /&gt;&lt;br /&gt;ABAP/4 coding  standards. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SAP-recommended customer-specific ABAP/4 development guidelines can&lt;br /&gt;&lt;br /&gt;be found  in the SAP-documentation. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;This page contains some general guidelines for efficient&lt;br /&gt;&lt;br /&gt;ABAP/4 Program  Development that should be considered to improve the systems performance on the  following areas:- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Physical I/O - data must be read from and written into I/O devices. This can  be a potential bottle neck. A well&lt;br /&gt;&lt;br /&gt;configured system always runs 'I/O-bound' -  the performance of the I/O dictates the overall performance. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Memory consumption of the database resources eg. buffers, etc. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;CPU&lt;br /&gt;&lt;br /&gt;consumption on the database and application servers &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Network communication - not critical for&lt;br /&gt;&lt;br /&gt;little data volumes, becomes a  bottle neck when large volumes are transferred. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Policies and&lt;br /&gt;&lt;br /&gt;procedures can also be put into place so that every SAP-customer  development object is thoroughly reviewed (quality – program correctness as well&lt;br /&gt;&lt;br /&gt;as code-efficiency) prior to promoting the object to the SAP-production  system.   Information on the SAP R/3 ABAP/4 Development Workbench&lt;br /&gt;&lt;br /&gt;programming  tools and its features can be found on the SAP Public Web-Server. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;&lt;b&gt;CLASSIC GOOD 4GL PROGRAMMING CODE-PRACTICES GUIDELINES&lt;/b&gt; &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Avoid dead-code &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Remove unnecessary code and redundant processing &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Spend time documenting and adopt good change control practices &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Spend adequate time&lt;br /&gt;&lt;br /&gt;anayzing business requirements, process flows,  data-structures and data-model &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Quality&lt;br /&gt;&lt;br /&gt;assurance is key: plan and execute a good test plan and testing  methodology &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Experience&lt;br /&gt;&lt;br /&gt;counts &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;--------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * FROM &lt;table&gt;&lt;br /&gt;CHECK:  &lt;condition&gt;&lt;br /&gt;ENDSELECT   &lt;/condition&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;  vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * FROM&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;&lt;br /&gt;WHERE &lt;condition&gt;&lt;br /&gt;ENDSELECT&lt;br /&gt;&lt;/condition&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;In order to keep the amount of data which is relevant to the query the hit  set small, avoid&lt;br /&gt;&lt;br /&gt;using SELECT+CHECK statements wherever possible. As a general  rule of thumb, always specify all known conditions in the WHERE clause (if&lt;br /&gt;&lt;br /&gt;possible). If there is no WHERE clause the DBMS has no chance to make  optimizations.  Always specify your conditions in the Where-clause instead&lt;br /&gt;&lt;br /&gt;of  checking them yourself with check-statements.  The database system can also  potentially make use a database index (if possible) for greater&lt;br /&gt;&lt;br /&gt;efficiency  resulting in less load on the database server and considerably less load on the  network traffic as well. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Also, it is important to use EQ (=) in the WHERE clause wherever possible,  and analyze the SQL-statement for the&lt;br /&gt;&lt;br /&gt;optimum path the database optimizer will  utilize via SQL-trace when necessary. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Also, ensure&lt;br /&gt;&lt;br /&gt;careful usage of  "OR", "NOT"  and value range tables (INTTAB)  that are used inappropriately in Open SQL statements. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT SINGLE * &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;If you are interested in exactly one row of a database table or view,&lt;br /&gt;&lt;br /&gt;use the  SELECT SINGLE statement instead of a SELECT * statement.  SELECT SINGLE requires  one communication with the database system whereas&lt;br /&gt;&lt;br /&gt;SELECT * requires two. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT&lt;br /&gt;&lt;br /&gt;* FROM &lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;  INTO &lt;int-tab&gt;&lt;br /&gt;APPEND &lt;int-tab&gt;&lt;br /&gt;ENDSELECT   &lt;/int-tab&gt;&lt;/int-tab&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * FROM&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt; INTO TABLE &lt;int-tab&gt;&lt;br /&gt;&lt;/int-tab&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;It is usually faster to use the INTO TABLE version of a SELECT statement than  to use APPEND&lt;br /&gt;&lt;br /&gt;statements &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;--------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT ... WHERE + CHECK &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT using aggregate function &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;If you want to&lt;br /&gt;&lt;br /&gt;find the maximum, minimum, sum and average value or the count  of a database column, use a select list with aggregate functions instead of&lt;br /&gt;&lt;br /&gt;computing the aggregates within the program.   The RDBMS is responsible for  aggregated computations instead of transferring large amount of data&lt;br /&gt;&lt;br /&gt;to the  application. Overall Network, Application-server and Database load is also  considerably less. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT INTO TABLE &lt;int-tab&gt; + LOOP AT T&lt;br /&gt;…………&lt;br /&gt;SELECT * FROM &lt;/int-tab&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt; INTO TABLE &lt;int-tab&gt;.&lt;br /&gt;LOOP AT &lt;int-tab&gt;.&lt;br /&gt;ENDLOOP.   &lt;/int-tab&gt;&lt;/int-tab&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * FROM&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;&lt;br /&gt;……….&lt;br /&gt;ENDSELECT   &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;If you process your data only once, use a SELECT-ENDSELECT loop instead of  collecting data in&lt;br /&gt;&lt;br /&gt;an internal table with SELECT ... INTO TABLE.  Internal table  handling takes up much more space &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Nested&lt;br /&gt;&lt;br /&gt;SELECT statements:&lt;br /&gt;SELECT * FROM &lt;table-a&gt;&lt;br /&gt;SELECT * FROM &lt;table-b&gt;&lt;br /&gt;……..&lt;br /&gt;ENDSELECT.&lt;br /&gt;ENDSELECT &lt;/table-b&gt;&lt;/table-a&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Select with view&lt;br /&gt;SELECT * FROM &lt;view&gt;&lt;br /&gt;ENDSELECT &lt;/view&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;To process a join, use a view wherever possible instead of nested SELECT&lt;br /&gt;&lt;br /&gt;statements.&lt;br /&gt;Using nested selects is a technique with low performance. The inner select  statement is executed several times which might be an overhead. In&lt;br /&gt;&lt;br /&gt;addition,  fewer data must be transferred if another technique would be used eg. join  implemented as a view in ABAP/4 Repository. &lt;/span&gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;· SELECT ... FORM ALL ENTRIES&lt;br /&gt;· Explicit cursor handling (for more information, goto Transaction SE30 – Tips &amp;amp;  Tricks) &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Nested&lt;br /&gt;&lt;br /&gt;select:&lt;br /&gt;SELECT * FROM pers WHERE condition.&lt;br /&gt;   SELECT * FROM persproj WHERE person = pers-persnr.&lt;br /&gt;         ... process ...&lt;br /&gt;   ENDSELECT.&lt;br /&gt;ENDSELECT. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT persnr FROM pers&lt;br /&gt;&lt;br /&gt;INTO TABLE ipers WHERE cond.  ……….&lt;br /&gt;SELECT * FROM persproj FOR ALL ENTRIES IN ipers&lt;br /&gt;WHERE person = ipers-persnr&lt;br /&gt;………... process .……………&lt;br /&gt;ENDSELECT. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;In the lower version the new Open SQL statement FOR ALL ENTRIES is used.  Prior to&lt;br /&gt;&lt;br /&gt;the call, all interesting records from 'pers' are read into an internal  table. The second SELECT statement results in a call looking like this&lt;br /&gt;&lt;br /&gt;(ipers  containing: P01, P02, P03):&lt;br /&gt;(SELECT * FROM persproj WHERE person = 'P01')&lt;br /&gt;UNION&lt;br /&gt;(SELECT * FROM persproj WHERE person = 'P02')&lt;br /&gt;UNION&lt;br /&gt;(SELECT * FROM persproj WHERE person = 'P03') &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;In case of large statements, the R/3's database&lt;br /&gt;&lt;br /&gt;interface divides the  statement into several parts and recombines the resulting set to one.  The  advantage here is that the number of transfers&lt;br /&gt;&lt;br /&gt;is minimized and there is minimal  restrictions due to the statement size (compare with range tables). &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT * FROM &lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;   &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT &lt;column(s)&gt; FROM &lt;/column(s)&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use a select list or a view instead of SELECT *, if you are only interested  in specific columns of the&lt;br /&gt;&lt;br /&gt;table. If only certain fields are needed then only  those fields should be read from the database.  Similarly, the number of columns  can also be&lt;br /&gt;&lt;br /&gt;restricted by using a view defined in ABAP/4 Dictionary. Overall  database and network load is considerably less. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT without table buffering support &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;SELECT with table buffering support &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;For all&lt;br /&gt;&lt;br /&gt;frequently used, read-only(few updates) tables, do attempt to use  SAP-buffering for eimproved performance response times. This would reduce the&lt;br /&gt;&lt;br /&gt;overall Database activity and Network traffic. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Single-line inserts&lt;br /&gt;LOOP AT &lt;int-tab&gt;&lt;br /&gt;INSERT INTO &lt;/int-tab&gt;&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt; VALUES &lt;int-tab&gt;&lt;br /&gt;ENDLOOP   &lt;/int-tab&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Array inserts &lt;/span&gt; &lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Whenever possible, use array operations instead of single-row operations to  modify the database tables.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Frequent communication between the application program and database system  produces&lt;br /&gt;&lt;br /&gt;considerable overhead. &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Single-line updates&lt;br /&gt;SELECT * FROM &lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt;&lt;br /&gt;&lt;column-update&gt;&lt;br /&gt;UPDATE &lt;/column-update&gt;&lt;/table&gt;&lt;table&gt;&lt;br /&gt;ENDSELECT   &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs.&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Column updates&lt;br /&gt;UPDATE &lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;table&gt; SET &lt;column-update&gt;   &lt;/column-update&gt;&lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Wherever possible, use column&lt;br /&gt;&lt;br /&gt;updates instead of single row updates to update  your database tables &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;DO....ENDDO loop with Field-Symbol &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Using CA operator &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use the special operators CO, CA, CS instead of programming the&lt;br /&gt;&lt;br /&gt;operations  yourself&lt;br /&gt;If ABAP/4 statements are executed per character on long strings, CPU consumprion  can rise substantially &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use of a CONCATENATE function module &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use of a CONCATENATE statement &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Some function modules for string manipulation have&lt;br /&gt;&lt;br /&gt;become obsolete, and  should be replaced by ABAP statements or functions &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;STRING_CONCATENATE...   ---&gt; CONCATENATE&lt;br /&gt;STRING_SPLIT...  ---&gt; SPLIT&lt;br /&gt;STRING_LENGTH...  ---&gt; strlen()&lt;br /&gt;STRING_CENTER...  ---&gt; WRITE..TO. ..CENTERED&lt;br /&gt;STRING_MOVE_RIGHT  ---&gt; WRITE...TO...RIGHT-JUSTIFIED &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Moving&lt;br /&gt;&lt;br /&gt;with offset &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs. &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use of the CONCATENATE&lt;br /&gt;&lt;br /&gt;statement &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use the CONCATENATE statement instead of programming a string concatenation  of&lt;br /&gt;&lt;br /&gt;your own &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;--------------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use of SEARCH and MOVE with offset &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs.&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use of SPLIT statement&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use the SPLIT statement instead of programming a string split yourself &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Shifting by SY-FDPOS places &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Using SHIFT...LEFT DELETING LEADING... &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;If you want ot delete&lt;br /&gt;&lt;br /&gt;the leading spaces in a string use the ABAP/4  statements SHIFT...LEFT DELETING LEADING...  Other constructions (with CN and  SHIFT... BY SY-FDPOS&lt;br /&gt;&lt;br /&gt;PLACES, with CONDENSE if possible, with CN and ASSIGN  CLA+SY-FDPOS(LEN) ...) are not as fast &lt;/span&gt; &lt;/p&gt; &lt;p&gt; &lt;span style="color: rgb(17, 17, 17);"&gt;-------------------------------------------------------------------------------- &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Get a&lt;br /&gt;&lt;br /&gt;check-sum with field length &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt; vs &lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Get a&lt;br /&gt;&lt;br /&gt;check-sum with strlen ()&lt;br /&gt;&lt;/span&gt; &lt;/p&gt; &lt;p&gt;&lt;span style="color: rgb(17, 17, 17);"&gt;Use the strlen () function to restrict the DO loop to the relevant part of  the field, eg.&lt;br /&gt;&lt;br /&gt;when determinating a check-sum&lt;/span&gt;&lt;/p&gt;&lt;/table&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-performance-tuning.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-8710685609205992353</guid><pubDate>Thu, 15 May 2008 06:52:00 +0000</pubDate><atom:updated>2008-05-15T00:00:14.582-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ALV</category><title>ALV</title><description>&lt;span style="font-size: 11px; font-weight: 700;font-family:sans-serif;font-size:85%;"  &gt;1)  &lt;/span&gt;&lt;span style="font-size: 11px; font-weight: 700;font-family:sans-serif;font-size:85%;"  &gt;&lt;a target="_blank" href="http://www.savefile.com/files/156563"&gt;&lt;span style="color:#333333;"&gt;ALV GRID CONTROL&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2)&lt;/span&gt;&lt;b&gt;&lt;span style="font-size: 11px;font-family:sans-serif;color:#333333;"  &gt; &lt;/span&gt;&lt;span style="font-size: 11px;font-family:sans-serif;color:#0000ff;"  &gt;&lt;a target="_blank" href="http://www.savefile.com/files/156566"&gt;&lt;span style="color:#333333;"&gt;SAP      List Viewer&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;p align="left"&gt;           &lt;/p&gt;&lt;span style="font-size: 11px; font-weight: 700;font-family:sans-serif;font-size:85%;"  &gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</description><link>http://liveinabap.blogspot.com/2008/05/alv.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-4003483069305011450</guid><pubDate>Thu, 15 May 2008 06:45:00 +0000</pubDate><atom:updated>2008-05-14T23:51:30.969-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP REPORT FORMATTING</category><title>ABAP - REPORT GENERATION - FORMATTING</title><description>REPORT GENERATION – FORMATTING&lt;br /&gt;&lt;br /&gt; 1. The alignment of a type ‘c’ field in a report is left Aligned.&lt;br /&gt; 2. In the statement Write:/15(10) Ofal-lifnr. what do the number 15 and 10 stand for&lt;br /&gt;   15 stand for the offset on the screen and 10 stands for the field length displayed.&lt;br /&gt;&lt;br /&gt;3.      Specify the default alignment for the following field types:&lt;br /&gt;    ‘D’ – Left, ‘F’-Right, ‘N’-Left, ‘I’-Right, ‘T’-Left.&lt;br /&gt;&lt;br /&gt; 4.  If s_time has the value ‘123456’ how would you get an output of 12:34:56 with a single&lt;br /&gt;     ‘Write:’ statement.  Write:s_time using edit mask’--:--:--‘.&lt;br /&gt;&lt;br /&gt; 5. In order to suppress the leading zeroes of a number field the keywords used are NO-ZERO.&lt;br /&gt;&lt;br /&gt; 6.  The total no of date formats that can be used to display a date during output is MM/DD/YY, DD/MM/YY, DD/MM/YYYY, MM/DD/YYYY, MMDDYY, DDMMYY, YYMMDD.&lt;br /&gt;&lt;br /&gt; 7.  The UNDER Command allows for vertical alignment of fields one below the other.&lt;br /&gt;&lt;br /&gt;8.  In order to concatenate strings only for output purposes the command NO-GAP can be used in conjunction with the ‘Write’ statement.&lt;br /&gt;&lt;br /&gt; 9. The no of decimal places for output can be defines within a write statement. (T/F).&lt;br /&gt;&lt;br /&gt;TRUE.  Write:/&lt;f&gt; decimals 2.&lt;br /&gt;&lt;br /&gt;10.&lt;br /&gt;&lt;br /&gt;    Data can be moved from one field to another using a ‘Write:’ Statement and stored in the desired format. (T/F).&lt;br /&gt;&lt;br /&gt;TRUE. Write: Date_1 to Date_2 format DD/MM/YY.&lt;br /&gt;&lt;br /&gt;11.&lt;br /&gt;&lt;br /&gt;    In the statement Write:/15(10) lfa1-lifnr. The values 15 and 11 can also be defined by variables (T/F). False.&lt;br /&gt;12.&lt;br /&gt;&lt;br /&gt;    Differentiate between the following two statements if any.&lt;br /&gt;&lt;br /&gt;ULINE.&lt;br /&gt;&lt;br /&gt;Write: sy-uline.&lt;br /&gt;&lt;br /&gt;No-difference.  Except that uline is used outside the ‘Write’ Statement.&lt;br /&gt;&lt;br /&gt;13.&lt;br /&gt;&lt;br /&gt;    In order to skip a single line the number of lines need not be given as an assignment (T/F)&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;14.&lt;br /&gt;&lt;br /&gt;    The “SKIP TO LINE line number” is dependent on the LINE-COUNT  statement included in the report statement of the program.&lt;br /&gt;15.&lt;br /&gt;&lt;br /&gt;    In order to skip columns the command used is POSITION &lt;n&gt;.&lt;br /&gt;16.&lt;br /&gt;&lt;br /&gt;    In order to have boldfaced text as output the command used is Write:&lt;f&gt;INTENSIFIED.&lt;br /&gt;17.&lt;br /&gt;&lt;br /&gt;    Background and foreground colors can be interchanged using the command Format Inverse.&lt;br /&gt;18.&lt;br /&gt;&lt;br /&gt;    In order to restore the system defaults for all changes made with the format statement is Format Reset.&lt;br /&gt;19.&lt;br /&gt;&lt;br /&gt;     Like ULINE the statement VLINE is used to insert vertical lines. (T/F).&lt;br /&gt;&lt;br /&gt;False.&lt;br /&gt;&lt;br /&gt;20. Suppressing the number signs (+/-) is carried out using the addition NO-SIGNS to the Write statement. (T/F).    False.&lt;br /&gt;&lt;br /&gt;21.&lt;br /&gt;&lt;br /&gt;    If SY-UZEIT has the value 6:34:45 it can be displayed as 063445 using No Edit Mask.&lt;br /&gt;22.&lt;br /&gt;&lt;br /&gt;    If the variable “Text” has the value ‘ABCDEF’ the output for the statement “Write:/Text+2(3)” will be “CDE”&lt;br /&gt;23.&lt;br /&gt;&lt;br /&gt;    The fields specified by select-options and parameters statement cannot be grouped together in the selection screen. (T/F).  False.&lt;br /&gt;24.&lt;br /&gt;&lt;br /&gt;    When calling an external report the parameters or select-options specified in the external report cannot be called. (T/F)&lt;br /&gt;&lt;br /&gt;FALSE.&lt;br /&gt;&lt;br /&gt;25.&lt;br /&gt;&lt;br /&gt;    Selection Texts  in the text elements of the program helps in changing the displayed names of variables in the parameters statement.&lt;br /&gt;26.&lt;br /&gt;&lt;br /&gt;     Type F  datatype cannot be used to define parameters.&lt;br /&gt;&lt;br /&gt;27. Rounding off of values can be carried out using the write statement. (T/F). TRUE&lt;br /&gt;&lt;br /&gt;28.&lt;br /&gt;&lt;br /&gt;    How would you define the exponents for a type ‘f’ field?&lt;br /&gt;&lt;br /&gt;Exponent &lt;e&gt;.&lt;br /&gt;&lt;br /&gt;29.&lt;br /&gt;&lt;br /&gt;    How would you format the output as left, centered or right-justified using the write statement.&lt;br /&gt;&lt;br /&gt;Left-justified, Centered, Right-justified.&lt;br /&gt;&lt;br /&gt;30.&lt;br /&gt;&lt;br /&gt;    If the same formatting options were used for a WRITE statement that follows the FORMAT statement, which settings would take precedence.&lt;br /&gt;&lt;br /&gt;The settings in the Write Statement.&lt;br /&gt;&lt;br /&gt;31.&lt;br /&gt;&lt;br /&gt;    For each new event, the system resets all formatting options to their default values (T/F)&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;32.&lt;br /&gt;&lt;br /&gt;    All formatting options have the default value OFF. (T/F).&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;33.&lt;br /&gt;&lt;br /&gt;    How would you set the formatting options statically and dynamically within a report? Statically: FORMAT &lt;option1&gt;[ON|OFF]….&lt;br /&gt;&lt;br /&gt;Dynamically: FORMAT &lt;option1&gt; = &lt;var1&gt;&lt;option2&gt;=&lt;var2&gt;….&lt;br /&gt;&lt;br /&gt;34.&lt;br /&gt;&lt;br /&gt;    The page footer is defined using the statement END-OF-PAGE.&lt;br /&gt;35.&lt;br /&gt;&lt;br /&gt;    The processing block following END-OF-PAGE is processed only if you reserve lines for the footer in the LINE-COUNT option of the REPORT statement. (T/F)&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;36.&lt;br /&gt;&lt;br /&gt;    To execute a page break under the condition that less than a certain number of lines is left on a page is achieved by RESERVE n lines.&lt;br /&gt;37.&lt;br /&gt;&lt;br /&gt;    The RESERVE statement only takes effect if output is written to the subsequent page.  No blank pages are created and it defines a block of lines that must be output as a whole. (T/F). TRUE.&lt;br /&gt;38.&lt;br /&gt;&lt;br /&gt;    To set the next output line to the first line of a block of lines defined with the RESERVE statement the statement BACK  is used.&lt;br /&gt;39.&lt;br /&gt;&lt;br /&gt;    What is the limit for the length of a page if the page length is not specified in the report statement. 60,000 lines.&lt;br /&gt;40.&lt;br /&gt;&lt;br /&gt;    How would you start the printing process from within the program while creating a list?&lt;br /&gt;&lt;br /&gt;NEW-PAGE PRINT ON.&lt;br /&gt;&lt;br /&gt;41.&lt;br /&gt;&lt;br /&gt;    You can change the width of pages within list levels triggered by page breaks. (T/F).&lt;br /&gt;&lt;br /&gt;FALSE.&lt;br /&gt;&lt;br /&gt;42.&lt;br /&gt;&lt;br /&gt;    Hotspots are special areas of an output list used to trigger events. (T/F) TRUE.&lt;br /&gt;43.&lt;br /&gt;&lt;br /&gt;    To designate fields as hotspots at runtime, use FORMAT HOTSPOT = &lt;h&gt;.&lt;br /&gt;44.&lt;br /&gt;&lt;br /&gt;    Horizontal lines created with ULINE and blank lines created with SKIP can be formatted as hotspots. (T/F). FALSE.&lt;br /&gt;45.&lt;br /&gt;&lt;br /&gt;    How would you suppress the display of a parameter on the selection screen?&lt;br /&gt;&lt;br /&gt;Parameters &lt;/h&gt;&lt;/var2&gt;&lt;/option2&gt;&lt;/var1&gt;&lt;/option1&gt;&lt;/option1&gt;&lt;/e&gt;&lt;/f&gt;&lt;/n&gt;&lt;/f&gt;&lt;p&gt; ………..No-Display.&lt;br /&gt;&lt;br /&gt;46.&lt;br /&gt;&lt;br /&gt;    Can you assign a matchcode object to a parameter? If so how?&lt;br /&gt;&lt;br /&gt;Yes.  PARAMETERS &lt;/p&gt;&lt;p&gt;……..MATCHCODE OBJECT &lt;obj&gt;……..&lt;br /&gt;&lt;br /&gt;47.&lt;br /&gt;&lt;br /&gt;    For each SELECT-OPTIONS statement, the system creates a selection table. (T/F)&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;48.&lt;br /&gt;&lt;br /&gt;    To position a set of parameters or comments on a single line on the selection screen, you must declare the elements in a block enclosed by&lt;br /&gt;&lt;br /&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;br /&gt;&lt;br /&gt;……..&lt;br /&gt;&lt;br /&gt;SELECTION-SCREEN END OF LINE.&lt;br /&gt;&lt;br /&gt;49.&lt;br /&gt;&lt;br /&gt;    How can Symbols or R/3 icons be output on the screen?&lt;br /&gt;&lt;br /&gt;   WRITE &lt;symbol-name&gt;AS SYMBOL.&lt;br /&gt;&lt;br /&gt;   WRITE &lt;icon-name&gt; AS ICON.&lt;br /&gt;&lt;br /&gt;50.&lt;br /&gt;&lt;br /&gt;    In the standard setting, you cannot create empty lines with the WRITE statement alone. (T/F).  TRUE.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;REPORTING – GENERAL&lt;br /&gt;&lt;br /&gt; 1.&lt;br /&gt;&lt;br /&gt;    The system field, which indicates success or failure of a SQL operation, is SY-SUBRC.&lt;br /&gt; 2.&lt;br /&gt;&lt;br /&gt;    What is the syntax for specifying database table name at runtime in SELECT statement.&lt;br /&gt;&lt;br /&gt;NAME = ‘SPFL1’.&lt;br /&gt;&lt;br /&gt;SELECT * FROM (NAME).&lt;br /&gt;&lt;br /&gt;……………….&lt;br /&gt;&lt;br /&gt;……………….&lt;br /&gt;&lt;br /&gt;ENDSELECT.&lt;br /&gt;&lt;br /&gt; 3.&lt;br /&gt;&lt;br /&gt;    How do you read selected lines of database table into an internal table in packages of predefined size.&lt;br /&gt;&lt;br /&gt;SELECT * FROM &lt;spfli&gt;INTO TABLE &lt;itab&gt;PACKAGE SIZE&lt;n&gt;.&lt;br /&gt;&lt;br /&gt;Where n is variable.&lt;br /&gt;&lt;br /&gt; 4.&lt;br /&gt;&lt;br /&gt;    Name the WILDCARD characters which are used for comparisons with character strings &amp;amp; numeric strings. ‘%’ and ‘-‘.&lt;br /&gt; 5.&lt;br /&gt;&lt;br /&gt;    In SELECT statements can you specify a variable in WHERE condition or a part of the condition, if so what is the syntax.&lt;br /&gt;&lt;br /&gt;SELECT * FROM &lt;/n&gt;&lt;/itab&gt;&lt;/spfli&gt;&lt;/icon-name&gt;&lt;/symbol-name&gt;&lt;/obj&gt;&lt;table&gt;WHERE &lt;var1&gt;&lt;condition&gt;&lt;var or="" const=""&gt;.&lt;br /&gt;&lt;br /&gt; 6.&lt;br /&gt;&lt;br /&gt;    Name the ABAP/4 key words, which are used to change the contents of database table.&lt;br /&gt;&lt;br /&gt;UPDATE or MODIFY.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;7. How to specify a client for database table processing.&lt;br /&gt;&lt;br /&gt;TABLES SPFLI.&lt;br /&gt;&lt;br /&gt;SELECT * FROM SPFLI CLIENT SPECIFIED WHERE MANDT BETWEEN ‘001’ AND ‘003’.&lt;br /&gt;&lt;br /&gt;……..&lt;br /&gt;&lt;br /&gt;ENDSELECT.&lt;br /&gt;&lt;br /&gt; 8.&lt;br /&gt;&lt;br /&gt;    How do you write a DATA object from ABAP/4 program to ABAP/4 memory and restore the same from memory to program.&lt;br /&gt;&lt;br /&gt;EXPORT &lt;f1&gt;[FROM &lt;g1&gt;]&lt;f2&gt;[FROM &lt;g2&gt;]…. TO MEMORY ID &lt;key&gt;.&lt;br /&gt;&lt;br /&gt;The ID &lt;key&gt;, which can be up to 32 characters long, identifies the data in memory.&lt;br /&gt;&lt;br /&gt; 9.&lt;br /&gt;&lt;br /&gt;    What are DATA CLUSTERS?&lt;br /&gt;&lt;br /&gt;You can group any complex internal data objects of an ABAP/4 program together in data clusters and store them temporarily in ABAP/4 memory or for longer periods in databases.  You can store data clusters in special databases of the ABAP/4 Dictionary.  These databases are known as ABAP/4 cluster databases and have a predefined structure.  Storing a data cluster is specific to ABAP/4.  Although you can also access cluster databases using SQL statements, only ABAP/4 statements are able to decode the structure of the stored data cluster.&lt;br /&gt;&lt;br /&gt;10.&lt;br /&gt;&lt;br /&gt;    Statements used to delete data objects in ABAP/4 memory FREE MEMORY [ID &lt;key&gt;].&lt;br /&gt;11.&lt;br /&gt;&lt;br /&gt;    How will you create a file on application server.&lt;br /&gt;&lt;br /&gt;Open dataset &lt;dsn&gt; for output.&lt;br /&gt;&lt;br /&gt;12.&lt;br /&gt;&lt;br /&gt;    ABAP/4 statement for opening a file on application server for reading Open dataset &lt;dsn&gt; for input.&lt;br /&gt;13.&lt;br /&gt;&lt;br /&gt;    How will you transfer data into a file in application server?&lt;br /&gt;&lt;br /&gt;Data fname(60) value ‘mYFILE’.&lt;br /&gt;&lt;br /&gt;Data num type i.&lt;br /&gt;&lt;br /&gt;Open dataset fname for output.&lt;br /&gt;&lt;br /&gt;Do 10 times.&lt;br /&gt;&lt;br /&gt;Num = Num +1.&lt;br /&gt;&lt;br /&gt;Transfer num to fname.&lt;br /&gt;&lt;br /&gt;Enddo.&lt;br /&gt;&lt;br /&gt;     …….etc.&lt;br /&gt;&lt;br /&gt;14.&lt;br /&gt;&lt;br /&gt;    Name the function modules to write data from an Internal Table to the Presentation Server.&lt;br /&gt;&lt;br /&gt;DOWNLOAD and WS_DOWNLOAD.&lt;br /&gt;&lt;br /&gt;15.&lt;br /&gt;&lt;br /&gt;    Name the function module that can be used to give information about files on Presentation Server and about its Operating System.&lt;br /&gt;&lt;br /&gt;WS_QUERY.&lt;br /&gt;&lt;br /&gt;16.&lt;br /&gt;&lt;br /&gt;    Name the ABAP/4 key word, which is used to clear the Headerline of an Internal Table.&lt;br /&gt;&lt;br /&gt;CLEAR&lt;itab&gt;.&lt;br /&gt;&lt;br /&gt;17.&lt;br /&gt;&lt;br /&gt;    Name the function modules to read data from Presentation Server into an Internal Table.&lt;br /&gt;&lt;br /&gt;UPLOAD and WS_UPLOAD.&lt;br /&gt;&lt;br /&gt;18.&lt;br /&gt;&lt;br /&gt;    Name the ABAP/4 keywords to initialize an Internal Table with and without headerline.&lt;br /&gt;&lt;br /&gt;REFRESH &lt;itab&gt;.&lt;br /&gt;&lt;br /&gt;19.&lt;br /&gt;&lt;br /&gt;    How to determine the attributes of an internal table?&lt;br /&gt;&lt;br /&gt;DESCRIBE TABLE &lt;itab&gt;[LINES &lt;lin&gt;] [OCCURS &lt;occ&gt;].&lt;br /&gt;&lt;br /&gt;20.&lt;br /&gt;&lt;br /&gt;    Name the ABAP/4 key word for searching a string in an Internal Table.&lt;br /&gt;&lt;br /&gt;SEARCH &lt;itab&gt; FOR &lt;str&gt;&lt;options&gt;.&lt;br /&gt;&lt;br /&gt;The different options (&lt;options&gt;) for the search in an internal table are:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;ABBREVIATED&lt;br /&gt;&lt;br /&gt;Searches table&lt;itab&gt;for a word containing the character string specified in &lt;str&gt;, where other characters might separate the characters. The first letter of the word and the string &lt;str&gt; must be the same.&lt;br /&gt;&lt;br /&gt;STARTING AT&lt;lin1&gt;&lt;br /&gt;&lt;br /&gt;Searches table&lt;itab&gt; for &lt;str&gt;, starting at line &lt;line1&gt;. &lt;\lin1&gt; can be a variable.&lt;br /&gt;&lt;br /&gt;ENDING AT&lt;n2&gt;&lt;br /&gt;&lt;br /&gt;Searches table &lt;itab&gt;for &lt;str&gt;upto line&lt;lin2&gt;. &lt;lin2&gt;can be a variable.&lt;br /&gt;&lt;br /&gt;AND MARK&lt;br /&gt;&lt;br /&gt;If the search string is found, all the characters in the search string (and all the characters in between when using ABBREVIATED) are converted to upper case.&lt;br /&gt;&lt;br /&gt;21.&lt;br /&gt;&lt;br /&gt;    What are the different attributes that can be assigned to a variant?&lt;br /&gt;&lt;br /&gt;The different attributes that can be assigned to a variant are….&lt;br /&gt;&lt;br /&gt;Description&lt;br /&gt;&lt;br /&gt;Enter a short, meaningful description of the variant.  This may be upto 30 characters long.&lt;br /&gt;&lt;br /&gt;Background only&lt;br /&gt;&lt;br /&gt;Specify whether you want to use the variant in background processing only, or in online environment as well.&lt;br /&gt;&lt;br /&gt;Protected variant.&lt;br /&gt;&lt;br /&gt;Mark the field if you want to protect your variant against being changed by other users.&lt;br /&gt;&lt;br /&gt;Do not display variant.&lt;br /&gt;&lt;br /&gt;Mark this field if you want the variant name to be displayed in the catalog only, but not in the F4 value list.&lt;br /&gt;&lt;br /&gt;For the selections you cover in a variant, you can enter the following attributes:&lt;br /&gt;&lt;br /&gt;Type&lt;br /&gt;&lt;br /&gt;The system displays whether the field is a parameter or a select option.&lt;br /&gt;&lt;br /&gt;Protected&lt;br /&gt;&lt;br /&gt;Mark this field for each field on the selection screen you want to protect from being overwritten.  Values that you mark this way are displayed to the users, but they cannot change them, that are they are not ready to accept input.&lt;br /&gt;&lt;br /&gt;Invisible&lt;br /&gt;&lt;br /&gt;If you mark this column, the system will not display the corresponding field on the selection screen the user sees when starting the report program.&lt;br /&gt;&lt;br /&gt;Variable&lt;br /&gt;&lt;br /&gt;Mark this column if you want to set the value for this field at runtime.&lt;br /&gt;&lt;br /&gt;22.&lt;br /&gt;&lt;br /&gt;    Is it possible to create new dynamic programs during runtime of an ABAP/4 program? If so how?&lt;br /&gt;&lt;br /&gt;To create new dynamic programs during the runtime of an ABAP/4 program, you must use an internal table.  For this purpose, you should create this internal table with one character type column and a line width of 72.  You can use any method you like from Filling Internal Tables to write the code of your new program into the internal table.  Especially, you can use internal fields in which contents are dependent on the flow of the program that you use to create a new one, to influence the coding of the new program dynamically.  The following example shows how to proceed in principal:&lt;br /&gt;&lt;br /&gt;DATA CODE (72) OCCURS 10.&lt;br /&gt;&lt;br /&gt;APPEND ‘REPORT ZDYN1.’&lt;br /&gt;&lt;br /&gt;TO CODE.&lt;br /&gt;&lt;br /&gt;APPEND ‘WRITE/”Hello, I am dynamically created!”.’&lt;br /&gt;&lt;br /&gt;TO CODE.&lt;br /&gt;&lt;br /&gt;Two lines of a very simple program are written into the internal table CODE.&lt;br /&gt;&lt;br /&gt;In the next step you have to put the new module, in the above example it is a report, into the library.  For this purpose you can use the following statement:&lt;br /&gt;&lt;br /&gt;Syntax&lt;br /&gt;&lt;br /&gt;INSERT REPORT &lt;prog&gt;FROM &lt;itab&gt;.&lt;br /&gt;&lt;br /&gt;The program &lt;prog&gt; is inserted in your present development class in the R/3 Repository.  If a program with this name does not already exists, it is newly created with the following attributes:&lt;br /&gt;&lt;br /&gt;Title: none,&lt;br /&gt;&lt;br /&gt;Type: 1 (Reporting),&lt;br /&gt;&lt;br /&gt;Application: S (Basis).&lt;br /&gt;&lt;br /&gt;You can specify the name of the program &lt;prog&gt; explicitly within single quotation marks or you can write the name of a character field, which contains the program name.  The name of the program must not necessarily be the same as given in the coding, but it is recommended to do so.  &lt;itab&gt; is the internal table containing the source code.  For the above example you could write:&lt;br /&gt;&lt;br /&gt;INSERT REPORT ‘ZDYN1’ FROM CODE.&lt;br /&gt;&lt;br /&gt;Or&lt;br /&gt;&lt;br /&gt;DATA REP (8).&lt;br /&gt;&lt;br /&gt;REP = ‘ZDYN1’&lt;br /&gt;&lt;br /&gt;INSERT REPORT REP FROM CODE.&lt;br /&gt;&lt;br /&gt;23.&lt;br /&gt;&lt;br /&gt;    Data types can be elementary or structured (T/F).&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;24.&lt;br /&gt;&lt;br /&gt;    The amount of memory associated with a data type is ZERO.&lt;br /&gt;25.&lt;br /&gt;&lt;br /&gt;    Data objects are the physical units a program uses at runtime. (T/F).&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;26.&lt;br /&gt;&lt;br /&gt;    The data object does not occupy any space in memory. (T/F)&lt;br /&gt;&lt;br /&gt;FALSE.&lt;br /&gt;&lt;br /&gt;27.&lt;br /&gt;&lt;br /&gt;    What are the three hierarchical levels of data types and objects?&lt;br /&gt;&lt;br /&gt;Program-independent data, defined in the ABAP/4 Dictionary.&lt;br /&gt;&lt;br /&gt;Internal data used globally in one program.&lt;br /&gt;&lt;br /&gt;Data used locally in a procedure (subroutine, function module)&lt;br /&gt;&lt;br /&gt;28.&lt;br /&gt;&lt;br /&gt;    How would you find the attributes of a data type or data object?&lt;br /&gt;&lt;br /&gt;DESCRIBE FIELD &lt;f&gt; [LENGTH &lt;l.] type=""&gt;&lt;t&gt; [COMPONENTS &lt;n&gt;]]&lt;br /&gt;&lt;br /&gt;           [OUTPUT-LENGTH &lt;o&gt;] [DECIMALS &lt;d&gt;]&lt;br /&gt;&lt;br /&gt;           [EDIT MASK &lt;m&gt;].&lt;br /&gt;&lt;br /&gt;29.&lt;br /&gt;&lt;br /&gt;    The components of a field string cannot have different data types. (T/F).&lt;br /&gt;&lt;br /&gt;FALSE.&lt;br /&gt;&lt;br /&gt;30.&lt;br /&gt;&lt;br /&gt;    Field strings are also called as Record or Structures.&lt;br /&gt;31.&lt;br /&gt;&lt;br /&gt;    If a field string is aligned (Left, centered, right justified etc.), the filler fields are also added to the length of the type C field. (T/F).&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;32.&lt;br /&gt;&lt;br /&gt;    You cannot assign a local data object defined in a subroutine or function module to a field group. (T/F)&lt;br /&gt;&lt;br /&gt;TRUE.&lt;br /&gt;&lt;br /&gt;33.&lt;br /&gt;&lt;br /&gt;    Field group reserves storage space for the fields, and does not contain pointers to existing fields (T/F).&lt;br /&gt;&lt;br /&gt;False.&lt;br /&gt;&lt;br /&gt;34.&lt;br /&gt;&lt;br /&gt;    Defining a field group as ‘HEADER’ is optional (T/F)&lt;br /&gt;&lt;br /&gt;FALSE.&lt;br /&gt;&lt;br /&gt;35.&lt;br /&gt;&lt;br /&gt;    How would you define a field symbol?&lt;br /&gt;&lt;br /&gt;FIELD-SYMBOLS&lt;fs&gt;.&lt;br /&gt;&lt;br /&gt;36.&lt;br /&gt;&lt;br /&gt;    Which function module would you use to check the user’s authorization to access files before opening a file?&lt;br /&gt;&lt;br /&gt;AUTHORITY_CHECK_DATASET&lt;br /&gt;&lt;br /&gt;37.  Name the function module used to convert logical file names to physical file names in ABAP/4 programs.&lt;br /&gt;&lt;br /&gt;FILE_GET_NAME.&lt;br /&gt;&lt;br /&gt;38.&lt;br /&gt;&lt;br /&gt;    Parameters, which are defined during the definition of a subroutine with the FORM statement, are called Formal Parameters.&lt;br /&gt;39.&lt;br /&gt;&lt;br /&gt;    Parameters which are specified during the call of a subroutine with the PERFORM statement are called Actual Parameters.&lt;br /&gt;40.&lt;br /&gt;&lt;br /&gt;    In subroutines internal tables that are passed by TABLES, are always called by value and result. (T/F)&lt;br /&gt;&lt;br /&gt;FALSE.  They are called by reference.&lt;br /&gt;&lt;br /&gt;INTERACTIVE REPORTING&lt;br /&gt;&lt;br /&gt;1.      What is interactive reporting?&lt;br /&gt;&lt;br /&gt;It helps you to create easy-to-read lists.  You can display an overview list first that contains general information and provide the user with the possibility of choosing detailed information that you display on further lists.&lt;br /&gt;&lt;br /&gt; 2.&lt;br /&gt;&lt;br /&gt;    What are the uses of interactive reporting?&lt;br /&gt;&lt;br /&gt;The user can actively control data retrieval and display during the session.  Instead of an extensive and detailed list, you create a basic list with condensed information from which the user can switch to detailed displays by positioning the cursor and entering commands.  The detailed information appears in secondary lists.&lt;br /&gt;&lt;br /&gt; 3.&lt;br /&gt;&lt;br /&gt;    What are the event key words in interactive reporting?&lt;br /&gt;&lt;br /&gt;Event Keyword                                                Event&lt;br /&gt;&lt;br /&gt;AT LINE-SELECTION                            Moment at which the user selects a line by double clicking on it or by positioning the cursor on it and pressing F2.&lt;br /&gt;&lt;br /&gt;AT USER-COMMAND                            Moment at which the user presses a function key.&lt;br /&gt;&lt;br /&gt;TOP-OF-PAGE DURING                        Moment during list processing of a&lt;br /&gt;&lt;br /&gt;LINE-SELECTION                                  secondary list at which a new page starts.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; 4.&lt;br /&gt;&lt;br /&gt;    What is secondary list?&lt;br /&gt;&lt;br /&gt;It allows you to enhance the information presented in the basic list.  The user can, for example, select a line of the basic list for which he wants to see more detailed information.  You display these details on a secondary list.  Secondary lists may either overlay the basic list completely or you can display them in an extra window on the screen.  The secondary lists can themselves be interactive again.&lt;br /&gt;&lt;br /&gt; 5.&lt;br /&gt;&lt;br /&gt;    How to select valid lines for secondary list?&lt;br /&gt;&lt;br /&gt;To prevent the user from selecting invalid lines, ABAP/4 offers several possibilities.  At the end of the processing block END-OF-SELECTION, delete the contents of one or more fields you previously stored for valid lines using the HIDE statement.  At the event AT LINE-SELECTION, check whether the work area is initial or whether the HIDE statement stored field contents there.  After processing the secondary list, clear the work area again.  This prevents the user from trying to create further secondary lists from the secondary list displayed.&lt;br /&gt;&lt;br /&gt; 6.&lt;br /&gt;&lt;br /&gt;    How to create user interfaces for lists?&lt;br /&gt;&lt;br /&gt;The R/3 system automatically, generates a graphical user interface (GUI) for your lists that offers the basic functions for list processing, such as saving or printing the list.  If you want to include additional functionality, such as pushbuttons, you must define your own interface status.  To create a new status, the Development Workbench offers the Menu Painter.  With the Menu Painter, you can create menus and application toolbars.  And you can assign Function Keys to certain functions.  At the beginning of the statement block of AT END-OF-SELECTION, active the status of the basic list using the statement: SET PF-STATUS ‘STATUS’.&lt;br /&gt;&lt;br /&gt; 7.&lt;br /&gt;&lt;br /&gt;    What is interactive reporting?&lt;br /&gt;&lt;br /&gt;A classical non-interactive report consists of one program that creates a single list.  Instead of one extensive and detailed list, with interactive reporting you create basic list from which the user can call detailed information by positioning the cursor and entering commands.  Interactive reporting thus reduces information retrieval to the data actually required.&lt;br /&gt;&lt;br /&gt; 8.&lt;br /&gt;&lt;br /&gt;    Can we call reports and transactions from interactive reporting lists?&lt;br /&gt;&lt;br /&gt;Yes.  It also allows you to call transactions or other reports from lists.  These programs then use values displayed in the list as input values.  The user can, for example, call a transaction from within a list of change the database table whose data is displayed in the list.&lt;br /&gt;&lt;br /&gt; 9.&lt;br /&gt;&lt;br /&gt;    What are system fields for secondary lists?&lt;br /&gt;&lt;br /&gt;SY-LSIND   Index of the list created during the current event (basic list = 0)&lt;br /&gt;&lt;br /&gt;SY-LISTI                 Index of the list level from which the event was triggered.&lt;br /&gt;&lt;br /&gt;SY-LILLI                 Absolute number of the line from which the event was triggered.&lt;br /&gt;&lt;br /&gt;SY-LISEL                Contents of the line from which the event was triggered.&lt;br /&gt;&lt;br /&gt;SY-CUROW            Position of the line in the window from which the event was triggered   (counting starts with 1)&lt;br /&gt;&lt;br /&gt;SY-CUCOL              Position of the column in the window from which the event was triggered             (counting starts with 2).&lt;br /&gt;&lt;br /&gt;SY-CPAGE              Page number of the first displayed page of the list from which the event was triggered.&lt;br /&gt;&lt;br /&gt;SY-STARO              Number of the first line of the first page displayed of the list from which the event was triggered (counting starts with 1).  Possibly, a page header occupies this line.&lt;br /&gt;&lt;br /&gt;SY-STACO              Number of the first column displayed in the list from which the event was triggered (counting starts with 1).&lt;br /&gt;&lt;br /&gt;SY-UCOMM            Function code that triggered the event.&lt;br /&gt;&lt;br /&gt;SY-PFKEY  Status of the displayed list.&lt;br /&gt;&lt;br /&gt;10.&lt;br /&gt;&lt;br /&gt;    How to maintain lists?&lt;br /&gt;&lt;br /&gt;To return from a high list level to the next-lower level (SY-LSIND), the user chooses Back on a secondary list.  The system then releases the currently displayed list and activates the list created one step earlier.  The system deletes the contents of the released list.  To explicitly specify the list level, into which you want to place output, set the SY-lsind field.  The system accepts only index values, which correspond to existing list levels.  It then deletes all existing list levels whose index is greater or equal to the index specify.  For example, if you set SY-LSIND to 0, the system deletes all secondary lists and overwrites the basic list with the current secondary list.&lt;br /&gt;&lt;br /&gt;11.&lt;br /&gt;&lt;br /&gt;    What are the page headers for secondary lists?&lt;br /&gt;&lt;br /&gt;On secondary lists, the system does not display a standard page header and it does not trigger the event. TOP-OF-PAGE.  To create page headers for secondary list, you must enhance TOP-OF-PAGE: Syntax TOP-OF-PAGE DURING LINE-SELECTION.  The system triggers this event for each secondary list.  If you want to create different page headers for different list levels, you must program the processing block of this event accordingly, for example by using system fields such as SY-LSIND or SY-PFKEY in control statements (IF, CASE).&lt;br /&gt;&lt;br /&gt;12.&lt;br /&gt;&lt;br /&gt;    How to use messages in lists?&lt;br /&gt;&lt;br /&gt;ABAP/4  allows you to react to incorrect or doubtful user input by displaying messages that influence the program flow depending on how serious the error was.  Handling messages is mainly a topic of dialog programming.  You store and maintain messages in Table T100.  Messages are sorted by language, by a two-character ID, and by a three-digit number.  You can assign different message types to each message you output.  The influence of a message on the program flow depends on the message type.  In our program, use the MESSAGE statement to output messages statically or dynamically and to determine the message type.&lt;br /&gt;&lt;br /&gt;Syntax:REPORT &lt;rep&gt; MESSAGE-ID &lt;id&gt;.&lt;br /&gt;&lt;br /&gt;13.&lt;br /&gt;&lt;br /&gt;    What are the types of messages?&lt;br /&gt;&lt;br /&gt;A message can have five different types.  These message types have the following effects during list processing:&lt;br /&gt;&lt;br /&gt;.A (=Abend):&lt;br /&gt;&lt;br /&gt;.E (=Error) or W (=Warning):&lt;br /&gt;&lt;br /&gt;.I (=Information):&lt;br /&gt;&lt;br /&gt;.S (=Success):&lt;br /&gt;&lt;br /&gt;14.&lt;br /&gt;&lt;br /&gt;    What are the user interfaces of interactive lists?&lt;br /&gt;&lt;br /&gt;If you want the user to communicate with the system during list display, the list must be interactive.  You can define specific interactive possibilities in the status of the list’s user interface (GUI).  To define the statuses of interfaces in the R/3 system, use the Menu Painter tool.  In the Menu Painter, assign function codes to certain interactive functions.  After an user action occurs on the completed interface, the ABAP/4 processor checks the function code and, if valid, triggers the corresponding event.&lt;br /&gt;&lt;br /&gt;15.&lt;br /&gt;&lt;br /&gt;    What are the drill-down features provided by ABAP/4 in interactive lists?&lt;br /&gt;&lt;br /&gt;ABAP/4 provides some interactive events on lists such as AT LINE-SELECTION (double click) or AT USER-COMMAND (pressing a button). You can use these events to move through layers of information about individual items in a list.&lt;br /&gt;&lt;br /&gt;16.&lt;br /&gt;&lt;br /&gt;    What is meant by stacked list?&lt;br /&gt;&lt;br /&gt;A stacked list is nothing but secondary list and is displayed on a full-size screen unless you have specified its coordinates using the window command.&lt;br /&gt;&lt;br /&gt;17.&lt;br /&gt;&lt;br /&gt;    Is the basic list deleted when the new list is created?&lt;br /&gt;&lt;br /&gt;No.  It is not deleted and you can return back to it using one of the standard navigation functions like clicking on the back button or the cancel button.&lt;br /&gt;&lt;br /&gt;18.&lt;br /&gt;&lt;br /&gt;    What is meant by hotspots?&lt;br /&gt;&lt;br /&gt;A Hotspot is a list area where the mouse pointer appears as an upright hand symbol. When a user points to that area (and the hand cursor is active), a single click does the same thing as a double-click.  Hotspots are supported from R/3 release 3.0c.&lt;br /&gt;&lt;br /&gt;19.&lt;br /&gt;&lt;br /&gt;    What is the length of function code at user-command?&lt;br /&gt;&lt;br /&gt;Each menu function, push button, or function key has an associated function code of length FOUR (for example, FREE), which is available in the system field SYUCOMM after the user action.&lt;br /&gt;&lt;br /&gt;20.&lt;br /&gt;&lt;br /&gt;    Can we create a gui status in a program from the object browser?&lt;br /&gt;&lt;br /&gt;Yes.  You can create a GUI STATUS in a program using SET PF-STATUS.&lt;br /&gt;&lt;br /&gt;21.&lt;br /&gt;&lt;br /&gt;    In which system field does the name of current gui status is there?&lt;br /&gt;&lt;br /&gt;The name of the current GUI STATUS is available in the system field SY-PFKEY.&lt;br /&gt;&lt;br /&gt;22.&lt;br /&gt;&lt;br /&gt;    Can we display a list in a pop-up screen other than full-size stacked list?&lt;br /&gt;&lt;br /&gt;Yes, we can display a list in a pop-up screen using the command WINDOW with the additions starting at X1 Y1 and ending at X2 Y2 to set the upper-left and the lower-right corners where x1 y1 and x2 y2 are the coordinates.&lt;br /&gt;&lt;br /&gt;23.&lt;br /&gt;&lt;br /&gt;    What is meant by hide area?&lt;br /&gt;&lt;br /&gt;The hide command temporarily stores the contents of the field at the current line in a system-controlled memory called the HIDE AREA.  At an interactive event, the contents of the field are restored from the HIDE AREA.&lt;br /&gt;&lt;br /&gt;24.&lt;br /&gt;&lt;br /&gt;    When the get cursor command used in interactive lists?&lt;br /&gt;&lt;br /&gt;If the hidden information is not sufficient to uniquely identify the selected line, the command GET CURSOR is used.  The GET CURSOR command returns the name of the field at the cursor position in a field specified after the addition field, and the value of the selected field in a field specified after value.&lt;br /&gt;&lt;br /&gt;25.&lt;br /&gt;&lt;br /&gt;    How can you display frames (horizontal and vertical lines) in lists?&lt;br /&gt;&lt;br /&gt;You can display tabular lists with horizontal and vertical lines (FRAMES) using the ULINE command and the system field SY-VLINE.  The corners arising at the intersection of horizontal and vertical lines are automatically drawn by the system.&lt;br /&gt;&lt;br /&gt;26.&lt;br /&gt;&lt;br /&gt;    What are the events used for page headers and footers?&lt;br /&gt;&lt;br /&gt;The events TOP-OF-PAGE and END-OF-PAGE are used for pager headers and footers.&lt;br /&gt;&lt;br /&gt;27.&lt;br /&gt;&lt;br /&gt;    How can you access the function code from menu painter?&lt;br /&gt;&lt;br /&gt;From within the program, you can use the SY-UCOMM system field to access the function code.  You can define individual interfaces for your report and assign them in the report to any list level.  If you do not specify self-defined interfaces in the report but use at least one of the three interactive event keywords.  AT LINE-SELECTION, AT PF&lt;nn&gt;, OR AT USER-COMMAND in the program, the system automatically uses appropriate predefined standard interfaces.  These standard interfaces provide the same functions as the standard list described under the standard list.&lt;br /&gt;&lt;br /&gt;28.&lt;br /&gt;&lt;br /&gt;    How the at-user command serves mainly in lists?&lt;br /&gt;&lt;br /&gt;The AT USER-COMMAND event serves mainly to handle own function codes.  In this case, you should create an individual interface with the Menu Painter and define such function codes.&lt;br /&gt;&lt;br /&gt;29.&lt;br /&gt;&lt;br /&gt;    How to pass data from list to report?&lt;br /&gt;&lt;br /&gt;ABAP/4 provides three ways of passing data:&lt;br /&gt;&lt;br /&gt;---Passing data automatically using system fields&lt;br /&gt;&lt;br /&gt;---Using statements in the program to fetch data&lt;br /&gt;&lt;br /&gt;---Passing list attributes&lt;br /&gt;&lt;br /&gt;30.&lt;br /&gt;&lt;br /&gt;    How can you manipulate the presentation and attributes of interactive lists?&lt;br /&gt;&lt;br /&gt;---Scrolling through Interactive Lists.&lt;br /&gt;&lt;br /&gt;---Setting the Cursor from within the Program.&lt;br /&gt;&lt;br /&gt;---Modifying List Lines.&lt;br /&gt;&lt;br /&gt;31.&lt;br /&gt;&lt;br /&gt;    How to call other programs?&lt;br /&gt;&lt;br /&gt;Report                                                  Transaction&lt;br /&gt;&lt;br /&gt;Call and return          SUBMIT AND RETURN                      CALL TRANSACTION&lt;br /&gt;&lt;br /&gt;Call without return   SUBMIT                                             LEAVE TO TRANSACTION&lt;br /&gt;&lt;br /&gt;You can use these statements in any ABAP/4 program.&lt;br /&gt;&lt;br /&gt;32.&lt;br /&gt;&lt;br /&gt;    What will exactly the hide statement do?&lt;br /&gt;&lt;br /&gt;For displaying the details on secondary lists requires that you have previously stored the contents of the selected line from within the program.  To do this, ABAP/4 provides the HIDE statement.  This statement stores the current field contents for the current list line.  When calling a secondary list from a list line for which the HIDE fields are stored, the system fills the stored values back into the variables in the program.  In the program code, insert the HIDE statement directly after the WRITE statement for the current line.  Interactive lists provide the user with the so-called ‘INTERACTIVE REPORTING’ facility.  For background processing the only possible method of picking the relevant data is through ‘NON INTERACTIVE REPORT’ .  After starting a background job, there is no way of influencing the program.  But whereas for dialog sessions there are no such restrictions.&lt;br /&gt;&lt;br /&gt;33.&lt;br /&gt;&lt;br /&gt;    How many lists can a program can produce?&lt;br /&gt;&lt;br /&gt;Each program can produce up to 21 lists: one basic list and 20 secondary lists.  If the user creates a list on the next level (that is, SY-LSIND increases), the system stores the previous list and displays the new one.  Only one list is active, and that is always the most recently created list.&lt;br /&gt;&lt;br /&gt;     FALSE.&lt;br /&gt;&lt;/nn&gt;&lt;/id&gt;&lt;/rep&gt;&lt;/fs&gt;&lt;/m&gt;&lt;/d&gt;&lt;/o&gt;&lt;/n&gt;&lt;/t&gt;&lt;/l.]&gt;&lt;/f&gt;&lt;/itab&gt;&lt;/prog&gt;&lt;/prog&gt;&lt;/itab&gt;&lt;/prog&gt;&lt;/lin2&gt;&lt;/lin2&gt;&lt;/str&gt;&lt;/itab&gt;&lt;/n2&gt;&lt;/line1&gt;&lt;/str&gt;&lt;/itab&gt;&lt;/lin1&gt;&lt;/str&gt;&lt;/str&gt;&lt;/itab&gt;&lt;/options&gt;&lt;/options&gt;&lt;/str&gt;&lt;/itab&gt;&lt;/occ&gt;&lt;/lin&gt;&lt;/itab&gt;&lt;/itab&gt;&lt;/itab&gt;&lt;/dsn&gt;&lt;/dsn&gt;&lt;/key&gt;&lt;/key&gt;&lt;/key&gt;&lt;/g2&gt;&lt;/f2&gt;&lt;/g1&gt;&lt;/f1&gt;&lt;/var&gt;&lt;/condition&gt;&lt;/var1&gt;&lt;/table&gt;&lt;/p&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-report-generation-formatting.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-5073576013807299641</guid><pubDate>Thu, 15 May 2008 03:28:00 +0000</pubDate><atom:updated>2008-05-14T20:52:44.620-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP SYNTAX</category><title>ABAP - ABAP SYNTAX</title><description></description><link>http://liveinabap.blogspot.com/2008/05/abap-abap-syntax.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-4721961106672999813</guid><pubDate>Sun, 11 May 2008 14:27:00 +0000</pubDate><atom:updated>2008-05-11T17:19:48.568-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP</category><title>ABAP - Creating and Changing ABAP Programs</title><description>&lt;div style="TEXT-ALIGN: justify"&gt;ABAP programs are objects of the R/3 Repository. Like all other Repository objects, you maintain them using an ABAP Workbench - in this case, the ABAP Editor. This section provides a brief description of the ABAP Workbench and an overview of how to create and edit ABAP programs. It describes the different ways of starting the ABAP Editor. In the text below, 'open a program' always means 'start the ABAP Editor and use it to open a program'.&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Starting the ABAP Editor : &lt;/span&gt;To start the ABAP Editor to create or change ABAP programs, the R/3 system offers three possibilities:&lt;br /&gt; &lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Using the Repository Browser&lt;/span&gt; : The Repository Browser in the ABAP Workbench (transaction SE80) offers a hierarchical overview of all R/3 Repository objects, ordered by development class, user name of the programmer, object type, and so on. If you enter a program name, you can directly access all of its components, such as the main program, subroutines, and global data. If you select a program object in the Repository Browser and choose Change, the system automatically opens the appropriate tool; in this case, the ABAP Editor. This method is suitable for complex programs, since the Repository Browser always provides you with an overview of all of the program components.   &lt;span style="FONT-WEIGHT: bold"&gt;&lt;br /&gt;&lt;br /&gt;Using the ABAP Editor : &lt;/span&gt;You can open a program directly by choosing ABAP Editor from the initial screen of the ABAP Workbench (Transaction SE38). If you want to change a program using this method, you must already know its name and environment. This procedure is suited for maintaining or creating relatively simple or short programs, which have few or no additional components.&lt;span style="FONT-WEIGHT: bold"&gt; &lt;br /&gt;&lt;br /&gt;Using Forward Navigation &lt;/span&gt;: In any of the tools in the ABAP Workbench, you can open a different Repository object by positioning the cursor on it and double-clicking. The system automatically opens the object using the correct tool. This also applies to ABAP programs. Forward navigation by double-clicking is possible wherever an ABAP program is called from another object, such as screen flow logic or another program.&lt;br /&gt;&lt;br /&gt;&lt;span style="FONT-WEIGHT: bold"&gt;Naming ABAP Programs : &lt;/span&gt;The name of an ABAP program can be between 1 and 30 characters long.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-creating-and-changing-abap.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-671838296202292656</guid><pubDate>Sun, 11 May 2008 14:15:00 +0000</pubDate><atom:updated>2008-05-11T07:23:53.334-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP Statements</category><title>ABAP - ABAP Statements</title><description>ABAP statements always begin with an ABAP keyword and are always concluded with a period (.) . Statements can be several lines long; conversely, a line may contain more than one statement.&lt;br /&gt;&lt;br /&gt;Comments are distinguished by the preceding signs * (at the beginning of a line) and “ (at any&lt;br /&gt;position in a line).&lt;br /&gt;&lt;br /&gt;ABAP statements use ABAP data types and objects.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;Statements and Keywords :  &lt;/span&gt;The first element of an ABAP statement is the ABAP keyword. This determines the category of the statements. The different statement categories are as follows:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Declarative Statements : &lt;/span&gt;&lt;br /&gt;These statements define data types or declare data objects which are used by the other statements in a program or routine. The collected declarative statements in a program or routine make up its declaration part.&lt;br /&gt;&lt;br /&gt;Examples of declarative keywords: TYPES, DATA, TABLES&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Modularization Statements :&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;1) Event Keywords : You use statements containing these keywords to define event blocks. There are no special statements to conclude processing blocks - they end when the next processing block is introduced.&lt;br /&gt;Examples of event keywords are: AT SELECTION SCREEN, START-OF-SELECTION, AT USER-COMMAND&lt;br /&gt;&lt;br /&gt;2) Defining keywords : You use statements containing these keywords to define subroutines, function modules, dialog modules and methods. You conclude these processing blocks using the ENDstatements.&lt;br /&gt;&lt;br /&gt;Examples of definitive keywords:&lt;br /&gt;FORM ..... ENDFORM, FUNCTION ... ENDFUNCTION,&lt;br /&gt;MODULE ... ENDMODULE.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Control Statements : &lt;/span&gt;&lt;br /&gt;You use these statements to control the flow of an ABAP program within a processing block&lt;br /&gt;according to certain conditions.&lt;br /&gt;&lt;br /&gt;Examples of control keywords: IF, WHILE, CASE&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Call Statements : &lt;/span&gt;&lt;br /&gt;You use these statements to call processing blocks that you have already defined using modularization statements. The blocks you call can either be in the same ABAP program or in a&lt;br /&gt;different program.&lt;br /&gt;Examples of call keywords: PERFORM, CALL, SET USER-COMMAND, SUBMIT, LEAVE TO&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Operational Statements : &lt;/span&gt;These keywords process the data that you have defined using declarative statements.&lt;br /&gt;Examples of operational keywords: WRITE, MOVE, ADD&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Database Statements : &lt;/span&gt;&lt;br /&gt;These statements use the database interface to access the tables in the central database system. There are two kinds of database statement in ABAP: Open SQL and Native SQL.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Open SQL : &lt;/span&gt;Open SQL is a subset of the standard SQL92 language. It contains only Data Manipulation Language (DML) statements, such as SELECT, IINSERT, and DELETE. It does not contain any Data Definition Language (DDL) statements (such as CREATE TABLE or CREATE INDEX). Functions of this type are contained in the ABAP Dictionary. Open SQL contains all of the DML functions from SQL92 that are common to all of the database systems supported by SAP. It also contains a few SAP-specific functions. ABAP programs that use only Open SQL statements to access the database are fully portable. The database interface converts the OPEN SQL commands into commands of the relevant database.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Native SQL : &lt;/span&gt;Native SQL statements are passed directly from the database interface to the database without first being converted. It allows you to take advantage of all of your database’s characteristics in your programs. In particular, it allows you to use DDL operations. The ABAP Dictionary uses Native SQL for tasks such as creating database tables. In ordinary ABAP programs, it is not worth using DDL statements, since you cannot then take advantage of the central administration functions of thie ABAP Dictionary. ABAP programs that use Native SQL statements are database-specific, because there is no standardized programming interface for SQL92.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-abap-statements.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7817206599643283286.post-948856890370533518</guid><pubDate>Sun, 11 May 2008 14:02:00 +0000</pubDate><atom:updated>2008-05-11T07:15:03.442-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">ABAP</category><title>ABAP - Program Types and Execution</title><description>&lt;div style="text-align: justify;"&gt;In the R/3 System, there are various types of ABAP program. The program type determines the&lt;br /&gt;basic technical attributes of the program, and you must set it when you create it. The main difference between the different program types is the way in which the runtime environment calls its processing blocks. When you run an application program, you must call at least the first processing block from outside the program, that is, from the runtime environment. This processing block can then either call further processing blocks or return control to the runtime environment. When you start an ABAP program, the runtime environment starts a processor (dependent on the program type), which calls the first ABAP processing block. An ABAP program can be started either by the user or by the system (for example, in background processing), or through an external interface (for example, Remote Function Call). There are two ways of allowing users to execute programs - either by entering the program name or by entering a transaction code. You can assign a transaction code to any program. Users can then start that program by entering the code in the command field. Transaction codes are also usually linked to a menu path within the R/3 System.&lt;br /&gt;&lt;br /&gt;The following program types are relevant to application programming:&lt;br /&gt;&lt;br /&gt;Type 1 :&lt;br /&gt;Type 1 programs have the important characteristic that they do not have to be controlled using&lt;br /&gt;user-defined screens. Instead, they are controlled by the runtime environment, which calls a series of processing blocks (and selection screens and lists where necessary) in a fixed sequence. User actions on screens can then trigger further processing blocks. You can start a type 1 program and the corresponding processor in the runtime environment using the SUBMIT statement in another ABAP program. There are also various ways of starting a type1 program by entering its program name. This is why we refer to type 1 programs as executable programs.&lt;br /&gt;When you run a type 1 program, a series of processors run in a particular order in the runtime environment. The process flow allows the user to enter selection parameters on a selection screen. The data is them selected from the database and processed. Finally, an output list is displayed. At no stage does the programmer have to define his or her own screens. The runtime&lt;br /&gt;environment also allows you to work with a logical database. A logical database is a special ABAP program which combines the contents of certain database tables. The flow of a type 1 program is oriented towards reporting, whose main tasks are to read data from the database, process it, and display the results. This is why executable programs (type 1) in the R/3 System are often referred to as reports, and why running an executable program is often called reporting. Since it is not compulsory to define event blocks, you can yourself determine the events to which your ABAP program should react. Furthermore, you can call your own screens or processing blocks at any time, leaving the prescribed program flow. You can use this, for example, to present data in a table on a dialog screen instead of in a list. The simplest executable program (report) contains only one processing block (START-OF-SELECTION). Executable programs do not require any user dialog. You can fill the selection screen using a variant and output data directly to the spool system instead of to a list. This makes executable programs (reports) the means of background processing in the R/3 System. You can also assign a transaction code to an executable program. Users can then start it using the transaction code and not the program name. The reporting-oriented runtime environment is also called when you run a report using a transaction code. This kind of transaction is called a report transaction. It is appropriate to use executable programs (reports) when the flow of your program corresponds either wholly or in part to the pre-defined flow of the runtime environment. Until Release 4.5A, the only way to use a logical database was to use an executable program. However, from Release 4.5A, it is also possible to call logical databases on their own.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type M &lt;/span&gt;: The most important technical attribute of a type M program is that it can only be controlled using screen flow logic. You must start them using a transaction code, whcih is linked to the program and one of its screens (initial screen). Another feature of these programs is that you must define your own screens in the Screen Painter (although the intial screen can be a selection screen). When you start a program using a transaction code, the runtime environment starts a processor that calls the initial screen. This then calls a dialog module in the corresponding ABAP program. The remainder of the program flow can take any form. For example, the dialog module can:   return control to the screen, after which, the processing passes to a subsequent screen. Each screen has a following screen, set either statically or dynamically.   call other sequences of screens, selection screens or lists, from which further processing blocks in the ABAP program are started.   call other processing blocks itself, either internally or externally. call other application programs using CALL TRANSACTION (type M program) or SUBMIT (type 1 program). ABAP programs with type M contain the dialog modules belonging to the various screens. They are therefore known as module pools. It is appropriate to use module pools when you write dialog-oriented programs using a large number of screens whose flow logic largely determines the program flow.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type F : &lt;/span&gt;Type F programs are containers for function modules, and cannot be started using a transaction code or by entering their name directly. Function modules are special procedures that you can call from other ABAP programs. Type F programs are known as function groups. Function modules may only be programmed in function groups. The Function Builder is a tool in the ABAP Workbench that you can use to create function groups and function modules. Apart from function modules, function groups can contain global data declarations and subroutines. These are visible to all function modules in the group. They can also contain event blocks for screens in function modules.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type K : &lt;/span&gt;You cannot start type K programs using a transaction code or by entering the program name. They are containers for global classes in ABAP Objects . Type K programs are known as class definitions. The Class Builder is a tool in the ABAP Workbench that you can use to create&lt;br /&gt;class definitions.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type J : &lt;/span&gt;You cannot start type J programs using a transaction code or by entering the program name. They are containers for global interface in ABAP Objects . Type J programs are known as&lt;br /&gt;interface definitions. Like class definitions, you create interface definitions in the Class Builder.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type S : &lt;/span&gt;You cannot start a type S program using a transaction code or by entering the program name. Instead, they are containers for subroutines, which you can call externally from other ABAP programs. Type S programs are known as subroutine pools. They cannot contain screens.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Type I: &lt;/span&gt;Type I programs - called includes - are a means of dividing up program code into smaller, more manageable units. You can insert the coding of an include program at any point in another ABAP program using the INCLUDE statement. There is no technical relationship between include programs and processing blocks. Includes are more suitable for logical programming units, such as data declarations, or sets of similar processing blocks. The ABAP Workbench has a mechanism for automatically dividing up module pools and function groups into include programs.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</description><link>http://liveinabap.blogspot.com/2008/05/abap-program-types-and-execution.html</link><author>noreply@blogger.com (A S Chakrapani)</author><thr:total>0</thr:total></item></channel></rss>