How to create New Record in Browse?

Creating a new record in a browse is the same as creating a new record. The only difference is to appear in the browse, the criteria of the row created must match that of the query for the browse. Hard to say without seeing your browse query, though if the browse query has criteria where FieldName = SomeValue (I am sure it will - it must) simply make the created row match this criteria. Eg make sure that the fields are assigned the required values to populate the browse
 
hi,
thank you for ur Kind reply,
while creating new Record in browse (MFG/Pro Charecter based) i am populating all records in to a temp table and then writing into the Database, i have written a trigger to get the values in a frame for the new record, at that time, even if i refresh the browse,my browse is not getting refreshed --> means not rdisplaying the newly created record, so i am closing the query an opening it again(if i do so my browse is getting refreshed means displaying the newly created record but if i try again to create a new record, that trigger is not working ........ means the trigger is working only once. kindly help me in solving this issue..
thanking you
 
TempTable???

Greetings,
Why are you creating a TempTable buffer?
If I am appreciating your method, you are creating a TempTable (buffer) Which then populates the (live)db. That seems a bit silly and a wate of resources. You seem to just create a TempTable (buffer) then immediately apply this to live, for what reason is the use of the TempTable (buffer). When all you seem to be doing is righting immediately to live after creation. You have 'dry run' the process now using the TempTable, surely you can alter the process, righting to live.
 
hi, i am fetching records from more than two tables, so first i am populating all the datas into a temp table and displaying in a browse... then trying to create a record in the temp-table and again posting back to the actual tables.
 
Back
Top