cancel
Showing results for 
Search instead for 
Did you mean: 

small two doubts in fiori

former_member225253
Participant
0 Kudos

Hi Members ,

Greetings for the day ahead .

I am presently working on core abap and new to fiori .had these two doubts .

Plz clear these doubts of mine .

1) In sap GUI to see the backend program we goto system->status and then see the program so likewise in FIORI for any standard app like MM03 0R VA03 how to see the backendcode

2) if i write a badi or exit will that badi or exit trigger even while using the fiori app ??

Thanks & Rgds ,

Devendra Singh

Accepted Solutions (1)

Accepted Solutions (1)

ChrisSolomon
Active Contributor
0 Kudos

1. By backendcode, do you mean what "service" your Fiori app calls? You can see that in the Fiori app code itself. It will tell you what it is calling to populate the model(s). Remember, it is pretty much like this:

FIORI APP <---------> GATEWAY <----------> BACKEND

  • Fiori calls a Gateway service(s).
  • That service will call the backend to either generate data from a table or from a function/code.
  • The service takes the results from the backend and creates your OData response.
  • Fiori picks up the OData as it's "model" and then is able to use/manipulate as needed.

2. The service(s) your Fiori app calls via Gateway will either be services built directly off a table or off a remote function (for lack of a better way to explain). If that function has or calls any BAdI or ehancment, then yes, if will trigger. More than likely not however, and you will....as is historic with SAP...likely have to duplicate your custom business logic code there as well.

Answers (0)