displaying serial no in the detail block [message #78961] |
Mon, 08 April 2002 03:47 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ayaz
Messages: 4 Registered: April 2002
|
Junior Member |
|
|
I am having master detail form. In detail block I want to show serial number of the item . It should be displayed as the user goes to next record...
Help is needed urgently....
Thanks for your effort...
regards,
|
|
|
|
|
|
Re: displaying serial no in the detail block [message #199058 is a reply to message #198918] |
Thu, 19 October 2006 22:38 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ali1983
Messages: 13 Registered: October 2006 Location: Faisalabad
|
Junior Member |
|
|
MasterTable
REFNO (P.K) NOT NULL VARCHAR2(50)
REFID (P.K) NOT NULL VARCHAR2(50)
VENDORID NUMBER(4)
TERMS VARCHAR2(100)
E_DATE DATE
SYS_DATE DATE
-----------------------------------------------------------------
Detail Table
REFNO (F.K) NOT NULL VARCHAR2(50)
REFID (F.K) NOT NULL VARCHAR2(50)
P_IN NUMBER
ITEM_CODE NOT NULL NUMBER(4)
ITEM_NAME VARCHAR2(100)
RATE NUMBER(8,4)
UOM VARCHAR2(100)
-----------------------------------------------------------------
above is a structure of a Master Detail Table.
Now In detail block I add a text Item for Serial Number(Not part of a dtaabase) and assign a value ":System.Coursor_record" It works fine when inserting new records in Detail Block.But when it comes to viewing record it don't work. The Serial Number field(Non Database Item) remains empty. Now I hope that u have got my question. Waiting 4 ur reply with full solution.
|
|
|
|
|
|
|
|