× Discuss on Template programming, jBASE programming, Enquiries, No-File enquiry, Enquiry routines, Version, Version routines, Menus, Abbriviations, Creating local reference fields, Fast path enquiries, Creating charts and graphs, Generating Reports, Deal slips, Straight through processing, Multi Company and Multi Book setup, Tabbed screens, Composite Screens, T24 API, etc...

How to trigger two type of overrides based on condition

  • manoj@1993
  • manoj@1993's Avatar Topic Author
  • Offline
  • New Member
  • New Member
  • t24 CONSULTANT
More
7 years 10 months ago #21350 by manoj@1993
Hi,

I need to generate override via OVERRIDE.CLASS.DETAILS based on the below condition.

If the amount is between 0 and 10000, head of departments should be allowed to authorize the limit ; above 10000 EUR, only management should be allowed to authorize the limit.

please advise me how to achieve this.

Thanks,
Manoj J

Please Log in or Create an account to join the conversation.

More
7 years 10 months ago #21356 by Leelaprashant
Hi Manoj,

The OVERRIDE CLASS DETAILS table can be used in more complex cases where a detailed sub-classification of an individual override condition is required.

A typical example might be the override condition which arises when an unauthorised overdraft is generated by a transaction. The OVERRIDE CLASS table will allow this condition to be classified so that only certain users can approve the transaction. The OVERRIDE CLASS DETAILS table will, on the other hand, allow this condition to be given one of several sub-classifications according to, for example, the extent of the overdraft.

An override classification, once assigned to a transaction record, has exactly the same functionality whether it has been established by OVERRIDE CLASS or by the OVERRIDE CLASS DETAILS decision table.


Data Def.1 @MB.OCD.ODRAFT.ROUTINE()
Data Def.2 &2
Classification.1 MGR
Data Def No.1.1 1
Comparison.1.1 Eq
Data From.1.1 SAVINGS
Classification.2 AOFF
Data Def No.2.1 2
Comparison.2.1 Rg
Data From.2.1 10001
Data To.2.1 50000
Classification.3 BOFF
Data Def No.3.1 2
Comparison.3.1 Rg
Data From.3.1 50001
Data To.3.1 100000
Classification.4 MGR
Data Def No.4.1 2
Comparison.4.1 Ge
Data From.4.1 100001

you have to include that classification filed value in user application(override class) to accepts the respective override conditions as mentioned in above.

-Thank you
Br,
The following user(s) said Thank You: manoj@1993

Please Log in or Create an account to join the conversation.

Time to create page: 0.028 seconds