‎2015 May 21 9:14 AM
Dear All,
Who can tell me where the parameters are read in this method. Any Table, from Customizing??
In the debugger you cannot see that even when you step in with F5 or turn on sytem debugging, It is quite magic. You can not figure out how the parameters are really determined.
Who can explain me how to approach in such case, since it is like a black box.
Some where later in the coding you will see this. All of a sudden the result has 50 Parameters in my case. Why.
Where are these values coming
Regards
Alex
‎2015 May 22 12:35 AM
Hi Alexander,
There are 2 explanations for this, you chose the one suits you better:
1- It's magic
2 - Parameters come from Parameters tab onn the FPM Application:
I hope it helps.
Cheers,
Custodio
‎2015 May 22 8:21 AM
Hi Custodio,
thx you for this hint. But, from where have you this information, within abap coding.
Regards
Alex
‎2015 May 22 8:47 AM
Not sure I understand your question... what exactly you need? The code to read the application parameters? If so, it's in line 12 of your code snipet. Now, if you want to know the exact ABAP code...
Then, on debug you can see lo_application:
Then you go to this Function group and you will see the local class:
And in the implementation you can see the magic code:
Finally, if you set a breakpoint and activate your system-debug, you can see the magic happening:
Is it what you were looking for?
Cheers,
Custodio