cancel
Showing results for 
Search instead for 
Did you mean: 

Skip executing IP in Daily Process Chain

Former Member
0 Kudos

Dear experts,

I have an InfoCube that loads Activity Journals on a daily basis. However, on the first day of the fiscal year (1st April) a loop has to be executed over the InfoCube.

I need this loop (InfoPackage) to be included in the daily chain as it has to run right after the daily load. However, only on the first day of the new fiscal year.

How can I make the daily Process Chain to skip the InfoPackage if it is not the first day of the Fiscal Year?

Thanks in advance for your thoughts and points are rewarded!

Best regards,

Hans de Klein

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Hans,

I don't know your infopackage, but may be you can do the following: Add a piece of code to the infopackage to create a restriction for which no data can be extracted if it is the 1st of april and skip that coding on all other days.

kind regards

Siggi

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Klein,

Instead of including "loop (InfoPackage)" in your daily chain, add a new ABAP process at end of your daily chain to raise an event to trigger annual chain(first day of the new fiscal year).

You can write this simple logic in ABAP program and include at end of daily process chain.

To create an event : T Code : SM62.

To Raise and event: use function module : BP_EVENT_RAISE.

Hope it Helps

Srini