Reputation: 349
I have two text items. Need to create dynamic action for the following:
When a user enters an order number starting with 1, the order type should type should automatically displayed as CONSUMER.
When a user enters an order number starting with 2, the order type should type should automatically displayed as BUSINESS else display null.
Upvotes: 0
Views: 2847
Reputation: 1934
Your dynamic action should fire on change of the ORDER_NUMBER
page item and can contain a PL/SQL action like the one below (could also use a JavaScript action if you are comfortable with it).
Upvotes: 1