Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
former_member84787
Active Participant
If you wish to add any change or customization to the standard content, it will lead to the content package falling out content update contract – this means that any further updates released on that content package by the content developer, although notified, will not be implementable, i.e. the content will be marked with the *“Update Available”* tag, but it will not be possible to implement the update.

If you wish to add custom code to the pre-delivered standard content without falling out of the content update contract – request the content developer for either or the following:

  1. Externalize more parameters or add additional routes in the integration flow

  2. Create 'custom exits' in the integration flow – the previous option can be used when the custom changes required by the customer as small or basic. However, if the custom changes are more complex, this option comes handy. This can be achieved as follows-



    1. Create an exit point in the flow for custom processing by adding a service call to another integration flow.

    2. All standard processing will be added to the calling integration flow (referred to as Standard integration flow) by the content developer, whereas the called integration flow (referred to as Custom integration flow) is where the customer will add all his custom logic.

    3. The standard integration flow will be managed by the content developer. The customer will never update this integration flow.

    4. The content developer can add standard updates to the standard integration flow. Since the customer does not update this flow, he can always update the flow as soon as a standard update is released by the content developer.

    5. The custom flow will enable the customer to add all his custom processing without changing the standard flow.

    6. The address field of the channel in the standard flow that calls the custom flow should be externalized so that the customer can configure the actual endpoint URL of the custom flow.

    7. The call to the custom flow can be controlled via an additional externalized parameter which can be set to indicate whether the standard flow should call the custom flow or not. So, the customers who do not wish to add any custom flow, can simply set this parameter to false – this way the call to the custom flow will not be made.

    8. The custom flow will be released by the content developer but managed by the customer. No more updates shall be released by content developer on this integration flow. The most important thing to keep in mind for the customer and content developer here is that the interfaces between the 2 integration flows are always compatible. Once defined, (as demonstrated in the figure 2 above) the input to the custom flow should always be C and the output should always be D – this ensures that when there are message structure changes in the main flow, there is no mandate on the custom flow to change and things will keep working.

    9. If the custom flow needs access to the input message in addition to the output of the standard processing, the content developer should concatenate them and pass the concatenated message to the custom flow.




However, if the content developer does not agree to change his content, copy the content package twice to your design view. Ensure that you keep one copy untouched. Add all your customized changes to the other copy. Whenever a standard update is released by the content developer, update the untouched copy with the latest changes. Then manually merge the custom update to the updated content. Every change from the content developer is backed by a release note – this gives an idea about what has changed in the content with each release. The customer can then decide if he wants to merge the custom changes manually or standard changes based on whichever is less.

Also good to read:

FAQ on standard content

Managing multiple updated versions of content in various tenants
1 Comment