Oracle - Forms/Forms 문법 관련
Oracle Forms - 문법 - GET_BLOCK_PROPERTY
bok01
2022. 1. 24. 22:00
728x90
GET_BLOCK_PROPERTY('XXPO_PRICE_PO_LINES_V', CURRENT_RECORD)
:
// get first Item of Particular Block
get_Block_property (v_block, first_Item );
// get last Item of ParticularBlock
get_Block_property (v_block, last_Item );
// get Next Item of Particular Block
get_Block_property (cur_Item nextItem);
// get next block of particular block. blk is the name of block you will give your block name.
get_block_property (blk, nextblock );
//get first block of Current Form
get_form_property ( :system.current_form, first_block );
// get current record of Block
get_Block_Property( ‘DOC_DETAIL’, CURRENT_RECORD);
반응형