+ All Categories
Home > Documents > Enable Zoom on From

Enable Zoom on From

Date post: 09-Nov-2015
Category:
Upload: navedkhan
View: 5 times
Download: 2 times
Share this document with a friend
Description:
Enable Zoom on Form
Popular Tags:
18
http://erpschools.com/articles/forms-personalization-tutorial Zoom Functionality through Forms Personalization What is Zoom? Directly going from one form to another form with click of a button is called zoom functionality in oracle applications. This can be done in different ways. Firstly, We can just call the second form and then leave it for user to enter the data. Second way is call the second form from first and then dynamically populate the data in second form based on first forms data. How to implement Zoom functionality? In this tutorial we will zoom from Order Organizer form to Shipping transactions form and also populate the order number dynamically in destination form. Know the following things before you start Know the names of source form and destination form If you need to populate the data dynamically know what fields that you need to populate. Global Variables: These variables can be initialized in any form and can be used in any form all over the applications Trigger & Action: trigger is an event and action is operation/execution that we do. When an event occurs we do operation/execution Source form: Order Organizer form ( ) Destination form: Shipping transactions form (WSHFSTRX) Source field: Order number () Destination field1: Order number low (QM_DLVB.DLVB_SOURCE_HEADER_NUMBER_LO) Destination field2: Order number high (QM_DLVB.DLVB_SOURCE_HEADER_NUMBER_HI) Destination field3: Line Status (QM_DLVB.DLVB_LINE_RELEASED)
Transcript

http://erpschools.com/articles/forms-personalization-tutorialZoom Functionality through Forms PersonalizationWhat is Zoom?Directly going from one form to another form with click of a button is called zoom functionality in oracle applications. This can be done in different ways. Firstly, We can just call the second form and then leave it for user to enter the data. Second way is call the second form from first and then dynamically populate the data in second form based on first forms data.How to implement Zoom functionality?In this tutorial we will zoom from Order Organizer form to Shipping transactions form and also populate the order number dynamically in destination form.Know the following things before you start Know the names of source form and destination form If you need to populate the data dynamically know what fields that you need to populate. Global Variables: These variables can be initialized in any form and can be used in any form all over the applications Trigger & Action: trigger is an event and action is operation/execution that we do. When an event occurs we do operation/executionSource form: Order Organizer form ( )Destination form: Shipping transactions form (WSHFSTRX)Source field: Order number ()Destination field1: Order number low (QM_DLVB.DLVB_SOURCE_HEADER_NUMBER_LO)Destination field2: Order number high (QM_DLVB.DLVB_SOURCE_HEADER_NUMBER_HI)Destination field3: Line Status (QM_DLVB.DLVB_LINE_RELEASED)Process flow: Initialize the menu/icon in source form Initialize the global variables When the menu/icon is clicked copy the order number from source form filed to global variable and then launch the destination form In the destination form copy the value from global variable to destination form field.Initialize the menu/icon in source formNavigation: Order Management Super User >Orders, Returns >Order Organizer

Navigation: Help >Diagnostics >Custom Code >Personalize

Follow the screenshots

Personalization in Destination Form

Related Articles


Recommended