Skip to main content

Settings for Customer Exit Variables

To support the documentation/analysis of Customer Exit Variables some settings regarding how the coding is implemented need to be set.

These settings will be saved regardless of the settings variants.

Supported Implementation Types

The implementation types can be customized in "Settings" > "Business Warehouse" > "Customer Exit Variables":

image-20240130-073455.png
  1. The code is maintained directly in Include ZXRSRU01 (or in other Includes that are called directly from ZXRSRU01) or BAdI (RSROA_VARIABLES_EXIT_BADI)

  2. The code is encapsulated in Function Modules

  3. The code is encapsulated in Classes/Methods

In case of two and three, the name of the Class/Method or Function Module per Variable is derived from a mapping table or the Variable's technical name. In variant three it is also supported to use a fixed Class name and the code for each Variable is stored in the respective Methods.

If all three checkboxes are ticked, all three ways are executed to find the coding of the Variable. So in case, you use different ways of implementation please tick several boxes. However, please be aware that as soon as Customer Exit Coding is found, the further search will be terminated!

(info) Please contact support@bluetellience.de in case you are using other implementations that are not supported by the Performer Suite yet. 

Settings for implementations using Include ZXRSU01 or BAdI

In case the coding is maintained directly in the Include ZXRSRU01 or BAdI , there are the following options:

image-20240130-085830.png

Include ZXRSU01

  • First nested includes are identified by parsing the code of ZXRSU01.

  • Finally, the coding of all identified includes is read and checked to see whether customer exit variables occur.

BAdI

  • First, the Performer Suite determines Classes that inherit the IF_RSROA_VARIABLES_EXIT_BADI interface

  • Next, the Methods are identified based on the Class name

  • In the last step, the coding of the identified Methods is read and checked to see whether customer exit variables occur.

Settings for implementations using Function Modules

In case the coding is encapsulated in Function Modules, there are the following options:

image-20240130-073817.png

First, the name of the function modules must be determined. For this, we have two options:

  • “Derivce Function Module name from Mapping Table”
    --> The name will be fetched from the provided mapping table: Select <field for function module name> from <mapping table> where <field for variable name>='<the name of variable>' [and <add. sel. criteria>]

  • “Derivce Function Module name from Variable tech. name”
    --> Function Module name = Provided prefix + <name of the variable> + provided suffix

In the next steps, the code of the identified Function Modules will be parsed and the coding of the respective Customer Exit Variable will be returned.

(info) For more information regarding the parsing logic, please refer to the last chapter “Logic of Code Parsing”.

Settings for implementations using Classes/Methods 

In case the coding is encapsulated in Classes/Methods, there are the following options:

image-20240130-080923.png

First, the name of the class is determined. For this, we have three options:

  • “Single Class Implementation”:
    --> Name of Class = <class name> and the method name = prefix + <name of the variable> + suffix.

  • “Derivce Class Name from Variable tech. Name”:
    --> Name of Class = provided prefix + <name of the variable> + provided suffix

  • “Derivce Class Name from Mapping Table”:
    --> The name will be fetched from the provided mapping table: Select <field for class name> from <mapping table> where <field for variable name>='<the name of variable>' [and <add. sel. criteria>]

If the class name was derived from the name of the variable or a mapping table, then you need to give the Performer Suite information to determine the name of the respective methods:

  • “All steps are treated in one common Method”:
    --> The common method name will be used

  • “Every step is treated in a separate Method”:
    --> The list of the separate methods will be used for each step

Next, the coding of the Class and Method will be parsed and the coding of the Customer Exit Variable will be returned.

(info) For more information regarding the parsing logic, please refer to the last chapter “Logic of Code Parsing”.


Customer Exit Coding in Performer Suite

If the correct implementation option has been selected and set up correctly, the Performer Suite shows the coding in analysis functions and the documentation:

Analysis Functions

The Customer Exit Coding can be opened and displayed via the context menu of a Variable - here are two examples:

Entity Grid:

Show ABAP code function in the context menu of variables in the main Grid

Variable Analyzer:

Show ABAP code function in the context menu of variables in the Variable Analyzer

Documentation Functions

The coding of the customer exit variable can also be integrated into the documentation.

In the settings, it is possible to specify which sections of the coding should be displayed for customer exit variables:

image-20240130-084516.png

There are two settings for this in the Query documentation:

  • Documentation of Variables within a Query

  • Documentation of Variables standalone (out of Query context)

Image, showing where the mentioned settings can be found in the export settings for Reporting entities

Show entire coding option

The Performer Suite identifies the steps of the coding for Customer Exit Variables and displays the code step by step and only the code that is done in these steps.
With the setting Show entire coding, you can see the entire coding of the Customer Exit Variable. In the screenshot below you can see the difference. The left screenshot shows the coding with the setting Show entire coding, on the right screenshot you can see the coding without this setting.

Coding with Show entire coding activated (left) versus with Show entire coding deactivated (right)

Logic of Code Parsing

The parsing logic is described in detail in the section below:

Logic of Code Parsing
  • IF|ELSEIF i_vnam […] <var_name> […]

    • if the parent statement is IF|ELSEIF i_step = <step>.

    • or the parent is WHEN [..] ‘0'|’1'|'2'|'3'|'4' and the parent’s parent is CASE i_step

      • take step from the parent

      • take the code inside the current block

    • else if one of the child statements is CASE i_step

      • take all the children of this child

        • take step from these children

        • take the code inside these children

    • else if at least one of the children is IF|ELSEIF i_step

      • for each child, take the step and the code below

    • else if no step was found neither above (parent/grandparent) nor below (child/grandchild)

      • take the code inside the current block

      • do not set any step

  • IF|ELSEIF i_step (this section applies only for FM Encapsulation, Method Encapsulation, and BAdI)

    • if the parent is WHEN → IGNORE

    • if the parent is IF|ELSEIF i_vnam […] <var_name> […] → IGNORE

    • if any of the children is IF|ELSEIF i_vnam […] <var_name> […] → IGNORE

    • if any of the children is WHEN <var_name> and its parent is CASE i_vnam.→ IGNORE

    • else take the code inside the current block and set i_step

  • WHEN <var_name> and parent is CASE i_vnam.

    • if the parent of CASE is IF|ELSEIF i_step = <step>.

    • or the parent of CASE is WHEN [..] ‘0'|’1'|'2'|'3'|'4' and its parent is CASE i_step

      • take step from the parent

      • take the code inside the current block

    • else if one of the child statements is CASE i_step

      • take all the children of this child

        • take step from these children

        • take the code inside these children

    • else if at least one of the children is IF|ELSEIF i_step

      • for each child, take the step and the code below

    • else if no step was not found either above (ancestors) or below (descendants)

      • take the code inside the current block

      • do not set any step

  • WHEN [..] ‘0'|’1'|'2'|'3'|'4' and its parent is CASE i_step (this section applies only for FM Encapsulation, Method Encapsulation and BAdI)

    • if the parent of case is IF|ELSEIF i_vnam […] <var_name> […] → IGNORE

    • if the parent of case is WHEN <var_name> and its parent is CASE i_vnam.→ IGNORE

    • if any of the children is IF|ELSEIF i_vnam […] <var_name> […] → IGNORE

    • if any of the children is WHEN <var_name> and its parent is CASE i_vnam.→ IGNORE

    • else take the code inside the current block and set i_step

  • if no customer exit variable was found in the current search approach (by include/by FM/by method)

    • if the current search is done in the context of Include (only include, not BAdi)

      • check if the variable name is found somewhere in the code; if yes, return the result with no step and no code set

    • else

      • Search in code for the first FUNCTION or METHOD; if found, return a result containing the function/method body

      • (warning) this means that searching doesn’t continue with the next checked option, even though the variable was not found in the code

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.