oracle-fusion-middleware

Oracle Form freezes after configure WEBUTIL

青春壹個敷衍的年華 提交于 2019-12-13 15:45:07
问题 I am using oracle forms 10g. It is web based oracle form application. I want to generate Excel Report from Oracle Forms 10g. I configured WEBUTIL and use CLIENT_OLE2 package. Procedure declared in trigger WHEN-BUTTON-PRESSED. When button pressed then suddenly the form freezes and they cannot do anything. Exit button and menu options stops working. It does not give any message and does not do any action also. Procedure Code: declare application client_ole2.obj_type; workbooks client_ole2.obj

FRM-50026 date must be entered in a format like DD-MON-YYYY

耗尽温柔 提交于 2019-12-13 05:26:49
问题 I am creating form in which user select "CSV" File and import "CSV" Data into oracle forms Data Block.I have date column when I import date column values into data block then getting following error "FRM-50026 date must be entered in a format like DD-MON-YYYY" My Date Column format in "CSV" File: My Form: Code: DECLARE application Client_OLE2.Obj_Type; workbooks Client_OLE2.Obj_Type; workbook Client_OLE2.Obj_Type; worksheets Client_OLE2.Obj_Type; worksheet Client_OLE2.Obj_Type; worksheet2

Is there a way to recreate an ODI package using ODI Scenario?

柔情痞子 提交于 2019-12-12 13:29:13
问题 I mistakenly deleted an ODI package from my project which is very large in size. Is there a way to recreate the same package if I have a previously exported scenario for the same project? 回答1: Unfortunately there isn't any way to directly generate a deleted package from a scenario which you can see as a compiled version of the package. Here are a couple of things to check to see if you can retrieve some information : When promoting from one environment to another, it's recommended to export

OBIEE 12c - cannot login to analytics

扶醉桌前 提交于 2019-12-12 05:10:26
问题 Able to access OBIEE Console and EM but unable to login to Analytics . I have already scratched my head over searching for solutions all over. Any suggestion would help here. [Update] - Not using DB Authentication or BISQLProvider. Tying to login with weblogic on a fresh installation of OBIEE Steps I have tried: Checked bi server and admin server - Both running Checked deployments - all running Checked JDBC connection (from EM-> Weblogic Domain -> JDBC Datasources) for biplatform_datasource,

Dialog Box not open with GET_FILE_NAME Oracle Forms

不问归期 提交于 2019-12-11 01:56:01
问题 I have oracle database 11g with oracle forms and reports 11g. I created browse button to open CSV File from computer or laptop directory I am using this code on trigger when-button-press: declare filename varchar2(500); begin filename := GET_FILE_NAME(File_Filter=> ‘CSV Files (*.Csv)|*.Csv|’); :block2.FILE_NAME:= filename; end; When I pressed the button then did not open dialog box. 回答1: Your code works on Forms 6i provided you have properly attached the .olb and .pll files for webutil , but

How to check conditions and write text into text file oracle forms

夙愿已清 提交于 2019-12-02 19:27:34
问题 I am creating Procedure in Oracle Forms in which Check Validation data and insert data into table. Also check Validation data If condition true then write Some texts into text file and If condition is not true then write some texts into text file. Like: Validation No.1 : OK Validation No.2 : OK I created procedure successfully for "TRUE" Condition. Now I want If One Condition is True and 2nd Condition is False then write texts into text file. Like: Validation No.1 : OK Validation No.2 : ERROR

How to check conditions and write text into text file oracle forms

北城以北 提交于 2019-12-02 10:34:58
I am creating Procedure in Oracle Forms in which Check Validation data and insert data into table. Also check Validation data If condition true then write Some texts into text file and If condition is not true then write some texts into text file. Like: Validation No.1 : OK Validation No.2 : OK I created procedure successfully for "TRUE" Condition. Now I want If One Condition is True and 2nd Condition is False then write texts into text file. Like: Validation No.1 : OK Validation No.2 : ERROR And If both conditions "FALSE" Then Validation No.1 : ERROR Validation No.2 : ERROR Code: PROCEDURE

how to read a excel file and insert data into oracle table

梦想的初衷 提交于 2019-12-01 07:41:22
问题 i am using oracle 11g.how to read a excel file and insert data into oracle table using plsql and oracle forms.i am new to to his topic. enter code here i tried https://sites.google.com/site/craigsoraclestuff/oracle-forms-webutil/read-excel-into-forms i need simple correct answer. how to inser this part to the program : v_fName := WebUtil_File.File_Open_Dialog( directory_name => 'C:\' ,File_Filter => null ,Title => 'Select Client filename to Open.' ); how to get cell value to a variable.i don