cancel
Showing results for 
Search instead for 
Did you mean: 

Default Logic Question

Former Member
0 Kudos

Hi,

Is there any way to only run certain packages based on the category? For example, after submitting data through an input schedule, I want FX Restatement to run for Actual category, however, I do not want FX Restatement to run for Flash category.

Apparently, we cannot place any "WHEN" or "SELECTCASE" statements in the default logic.

Any ideas?

Thank you,

Nikunj

Accepted Solutions (1)

Accepted Solutions (1)

JHattendorf
Active Participant
0 Kudos

You have a couple of options:

  • set up a DM package that allows users to select the desired category

  • define the category members to be used in the logic

  • use a WHEN statement to limit the logic to a specific category

Jeff

Former Member
0 Kudos

Jim,

No i want to specify the following:

When i submit data thru the input schedule..it will trigger the default logic automatically ..however, i do not want to run default logic which consists of FX Restatement, AccountCalculations packages for all categories. How can i write logic to do this if I cannot place a "when" statement inside of default.lgf???

pravin_datar
Employee
Employee
0 Kudos

Hi Nikunj,

If you want, in your default logic, you can call other lgl/lgf functions if you want. In those reusable lgl scripts, you can define all the restrictions that you want to apply. If you don't want FX to run with the defualt logic, you can comment it out in default .lgf and run it through other lgl/lgf where you have defined the conditions/restrictions.

Regards

Pravin

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks everyone.