Versiones comparadas

Clave

  • Se ha añadido esta línea.
  • Se ha eliminado esta línea.
  • El formato se ha cambiado.

Transaction /EDGE/FC_SPRO -> Configuration Folders "InterpretersBusiness Objects" -> "Interpreter Business Object Parameters"

Through this option, it is possible to configure the parameters or constants that the steps of an interpreter business object will use in their logic. These constants serve to avoid the use of hard-coded or "hard code" in any ABAP functionality that needs to be developed.

...

The columns that need to be configured are:

  • Parameter

    This corresponds to the name of the parameter or constant. Usually, this value is in a class called "Constants" as a constant attribute.

    Example:

    Image Modified
    And in the configuration, it appears as follows:
    Image Modified


  • Value
    Corresponds to the value of the parameter.

The way to obtain these constants from ABAP code is as follows:

Image Modified

Assuming that the parameter pc_context is present in all methods of the executing step.

...