Give an example for open_form with parameter passing from one form to another form?
Latest Answer: sample code:BEGIN CALL_FORM('FORM2', NO_HIDE, DO_REPLACE, -- replace menu ...
Can we add scroll bar at on all tab pages in a single canvas? If yes then how:
Latest Answer: You can put a Stacked Canvas on Tab Pages. A Stack Canvas can have Scroll Bars. You Can hide and show the Stacked canvas according to requirements.Regards,Nitin Guru ...
I am making an oracle 10g report and in Query Builder I tried to use lexical reference after the from clauselike SELECT ORDID, TOTALFROM &ATABLE;But it was showing me an error "invalid table name"Can't
Latest Answer: It is working fine with Oracle 10g and even with 11gSQL>select &a, &b from &tablename;It will ask respective values and it work fine ...
Illustrate a scenario where post change and pre-change trigger get fired?
Latest Answer: pre-change trigger fires when the value is changed or selected from the listitem andpost-change trigger fires when the value is changed after the value is selected from the list item.BY Mr. Aijaz Ahmad Kumar D2k Expert ...
How many times pre query and post query fired when we fetch 10 record from a table ?
Latest Answer: Pre-Query fires one time and Post-Query fires 10 times. ...
some tell me code to attach SecuGen thumb device and scan and handle attendance in form 6i.i'll be thank full....
i want to retrieve data from table where apply date field from table which likedate = sysdate,so i not got a data , what i doe.g.select date from abc where date = sysdate;this is right or wrong ,plz give
Latest Answer: select app_date from application where app_date=sysdate;The above query is right but may not fetch record.sysdate defult format is = 'dd/mm/yyyy hh:mi:ss'app_date might format may be = 'dd/mm/yyyy'so please writeselect app_date from applicationwhere trunc(app_date)=trunc(sysdate) ...
i want to run a report daily, actually there is a whole data retrieving in one report so, i want the report daily at evening auto run and generate data and convert it into pdf, so how i it put the report
Latest Answer: You can schedule the task using unix shell scripting and crontab file inorder to execute it on specified time. ...
how can i implement progress bar in form 6i.
Latest Answer: We can incorporate the Progress Bar(Status Bar) in the D2K(Forms) as below.1. Create static Canvas with Small Size & Place the Control item (text item) with colour or Visual attribute assign to the text item. Create One window with the same sizes ...
Can :SYSTEM.CURRENT_BLOCK value be changed. If yes how? If no Why?With Example
Latest Answer: Because it's a read only variable which contains the value of current block in itself and this could not be used to assign value to current block rather used for retain the value. ...
View page [1] 2 3 4 5 6 7 8 Next >>

Go Top