skip to Main Content

Enhancing an SAP Fiori App Gateway Service (PO Tracking)

Fearless Founder Gavin recently finished a Herculean task: setting up SAP Fiori on our AWS development landscape.  I would compare this feat to casting the One Ring into the fires of Mount Doom, but Gavin’s really not all that hobbit-like, and he only encountered metaphorical orcs on his journey.

I think I’ve met my mythology/fantasy reference quota for today.

SAP Fiori applications are pretty useful and user-friendly right out of the box.  Side-by-side with this initial usefulness is a set of tools and process that you can use to enhance and extend the delivered services with your own business logic.  As a developer, the first thing I wanted to do was mess around with stuff anyway – so it’s nice to know that SAP built in ways for me to do that.  :)

I picked apart one of the apps we have and present below how I went about changing the services that power it.

Things you should note:

  • In this example, I’m using the Track Purchase Order application.  I’m tackling the service enhancements first, and will post later about the Fiori UI enhancement process.
  • SAP publishes an overview of the apps.  Note that most of these ERP apps have separate pages detailing their extensibility and identify the specific enhancement points.
  • This app is part of the first wave of Fiori apps.  I can’t make any promises that this process will fit all next-gen apps, and in fact future releases of Fiori will probably follow a bit more standardized process for extensions – which I’ll make sure to blog about when we get our hands on the next wave.
  • I am following some of the things on this SAP page, but I have added some steps of my own as I discovered how to get this done.
  • To do the play-at-home version you need the appropriate Fiori installation set up in your ECC system.
  • After every step in enhancing things, I made sure to clean up cache on both my ECC and my Gateway systems.  I found that sometimes I didn’t see the changes I wanted until I ran /IWBEP/CACHE_CLEANUP on both systems.  I recommend this as a general step in creating

Scenario

The Track Purchase Order app lets you view PO/items/item detail for selected POs.  In the screenshot below, I have chosen the first item from one of our test POs and navigated to the item detail page.  You can see that the item is delivered to one of the plants in our system.  I am going to enhance the backend logic to include the distribution channel for that plant.
Fiori App Gateway

Enhancing the entity

If you navigate to SEGW in your ERP system and open project SRA020_PO_TRACKING, you’ll see all the entity types available to this service.  The item detail page has its basis in the POItemDetailData entity, which is the entity we’ll enhance.
Fiori App Gateway
Instead of redefining the service and editing the entity directly as you would probably do for a custom-developed scenario, we have to edit a data dictionary structure and implement a couple of BAdIs.

The ABAP dictionary structure that defines this entity is SRA020_S_PO_ITEM_DETAILED.  If you open that structure and scroll to the bottom of the components list, you’ll see that SAP has provided an append SRA020_S_PO_ITEM_DETAILED_INCL.  For my purposes, I opened this include and created a customer append that held the field I wanted (vtweg, the distribution channel).

Next, you’ll need to create an implementation of BAdI SRA020_PO_TRACKING_MPC.  This provides the code hooks to update the runtime definition of the structures of the service.  Go to t-code SE18 and enter the BAdI name in the “BAdI Name” field.

Create an implementation with whatever naming conventions your organization uses.  Eventually, you’ll be led to implementing method ENHANCE_GW_SERVICE_ENTITY_MPC in your implementation class.  The simple code I used below will accomplish adding the field to the entity at runtime.

 METHOD if_sra020_po_tracking_mpc~enhance_gw_service_entity_mpc.  
  
  DATA: lo_property TYPE REF TO /iwbep/if_mgw_odata_property.  
   
  IF iv_entity_type_name = 'POItemDetailData'.  
   lo_property = io_entity_type->create_property(  
           iv_property_name = 'VTWEG'  
           iv_abap_fieldname = 'VTWEG' ).  
   
   lo_property->set_nullable( abap_true ).  
  ENDIF.  
   
 ENDMETHOD.  

At this point, you should be able to see a (blank) VTWEG field in your Gateway service.  As part of getting the Fiori application installed (if you’re lucky to have a Ringbearer like Gavin on your team this will be done for you) you will end up with a service you can test in Gateway from t-code /IWFND/GW_CLIENT.

Getting data at runtime

Now that there’s a field in the entity to be a placeholder for the data you want to add, you can implement a different BAdI to fill the live system data you want to into this field.  Once again, t-code SE18 is your friend; enter BAdI SRA020_PO_TRACKING_DPC and do the same stuff.
When it’s time to implement your code, you’ll notice that this BAdI has a lot more available methods.  For the data we want to monkey around with, method CHANGE_POITEMDETAILDATA_API suits our needs.  Code I used:
 METHOD if_sra020_po_tracking_dpc~change_poitemdetaildata_api.  
   
  TYPES: BEGIN OF ltyp_vtweg,  
       werks TYPE werks_d,  
       vtweg TYPE vtwiv,  
      END OF ltyp_vtweg.  
   
  DATA: lt_vtweg TYPE TABLE OF ltyp_vtweg,  
     ls_vtweg TYPE ltyp_vtweg,  
     lv_vtweg TYPE vtwiv,  
     lt_werks TYPE RANGE OF werks_d,  
     ls_werks LIKE LINE OF lt_werks.  
   
  FIELD-SYMBOLS: <ls_po_items_details> LIKE LINE OF ct_po_items_details.  
   
  LOOP AT ct_po_items_details ASSIGNING <ls_po_items_details>.  
   CLEAR ls_werks.  
   ls_werks-sign = 'I'.  
   ls_werks-option = 'EQ'.  
   ls_werks-low = <ls_po_items_details>-plant.  
   APPEND ls_werks TO lt_werks.  
  ENDLOOP.  
   
  CHECK lt_werks IS NOT INITIAL.  
   
  SELECT werks vtweg INTO CORRESPONDING FIELDS OF TABLE lt_vtweg  
   FROM t001w  
   WHERE werks IN lt_werks.  
   
  CHECK lt_vtweg IS NOT INITIAL.  
   
  SORT lt_vtweg BY werks.  
  LOOP AT ct_po_items_details ASSIGNING <ls_po_items_details>.  
   READ TABLE lt_vtweg INTO ls_vtweg WITH KEY  
    werks = <ls_po_items_details>-plant BINARY SEARCH.  
   IF sy-subrc IS INITIAL.  
    <ls_po_items_details>-vtweg = ls_vtweg-vtweg.  
   ENDIF.  
  ENDLOOP.  
   
 ENDMETHOD.  

I hope it’s obvious here that I’m just taking the PO items’ plant (weeks). And, then, using that to select on T100W to get the plant’s associated distribution channel.  The changing parameter CT_PO_ITEMS_DETAILS has the fields we need to change.

After this, it’s a simple matter of rewriting the SAP kernel in Prolog, implementing your own custom RDBMS, and installing a quantum computer in your datacenter.  These are, of course, optional steps – but any developer should have an easy time doing such trivial tasks.

All joking aside, after implementing the DPC BAdI you’re all done.  You should see the field come into the service data and filled with the appropriate distribution channel.  Proof:

Fiori App Gateway

 

 

 

 

 

 

 

 

Hope this helps!  Remember, this doesn’t get you all the way there. You still have to update your UI5 to reveal that field on your screen.  We’ll cover that soon.

Follow Ups

Feel free to follow up with me on SCN for any questions, demonstrations, implementation assistance, or customization requests. You can read more about Mindset, an SAP Partner, at https://mindsetstg.wpengine.com where we specialize in implementation and customization of alternative SAP User Interfaces. You can also connect with me on LinkedIn.

If you are interested in viewing similar articles, visit our blog, here

View our LinkedIn, here

Paul Modderman loves creating things and sharing them. He has spoken at SAP TechEd, multiple ASUG regional events, ASUG Fall Focus, Google DevFest MN, Google ISV Days, and several webinars and SAP community gatherings. Paul's writing has been featured in SAP Professional Journal, on the SAPinsider blog, and the popular Mindset blog. He believes clear communication is just as important as code, but also has serious developer chops. His tech career has spanned web applications with technologies like .NET, Java, Python, and React to SAP soutions in ABAP, OData and SAPUI5. His work integrating Google, Fiori, and Android was featured at SAP SAPPHIRE. Paul was principal technical architect on Mindset's certified solutions CloudSimple and Analytics for BW. He's an SAP Developer Hero, honored in 2017. Paul is the author of two books: Mindset Perspectives: SAP Development Tips, Tricks, and Projects, and SAPUI5 and SAP Fiori: The Psychology of UX Design. His passion for innovative application architecture and tech evangelism shines through in everything he does.

Back To Top