Tuesday, October 24, 2017

SYSTEM.CURSOR_BLOCK in Oracle Forms

SYSTEM.CURSOR_BLOCK:-
 
The value that the SYSTEM.CURSOR_BLOCK system variable represents depends on the current navigation unit:
  • If the current navigation unit is the block, record, or item (as in the Pre- and Post- Item, Record, and Block triggers), the value of SYSTEM.CURSOR_BLOCK is the name of the block where the cursor is located. 
  • The value is always a character string.
  • If the current navigation unit is the form (as in the Pre- and Post-Form triggers), the value of SYSTEM.CURSOR_BLOCK is NULL.

No comments:

Post a Comment

Query to get Parent and Child Accounts in Oracle APPS R12

SELECT ffv1.flex_value parent_account       ,ffvt1.description parent_account_desc   ,ffv2.flex_value child_account   ,ffvt2.description...