Advertisement

01.25.2008 at 08:24AM PST, ID: 23111457
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.0

Upgrading Oracle Forms 6i to 10g

Asked by camposaa in Oracle 10.x, Oracle Database, PL / SQL

Tags: ,

Upgraded Forms 6i to Forms 10g  (10.1.2.0.2)

I recently upgraded my application server to the 10g environment and recompiled all my forms, reports, libraries, menus, etc...The only problem I am receiving is with running reports from a form. The message was FRM-41842 : Run_Product(Reports) is no longer supported. Use Run_Report_Object instead.  Any ideas/workarounds for the code I included or will the whole procedure need to be re-written, any ideas?

Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
PROCEDURE RUN_REPORTS(PL_REPORT_NAME VARCHAR2) IS 
alert_result number; 
param_list paramlist; 
param_list_name varchar2(12) := 'WHERE_PL'; 
lv_sqlerrm VARCHAR2(600); 
where_clause VARCHAR2(1000) := null; 
FILE_NAME varchar2(60); 
FILE_SEQ number; 
FILE_EXT varchar2(10) := 'pdf'; 
REPORT_NAME varchar2(60) := 'REPORT1'; 
v_forms60_output varchar2(60); 
v_forms60_mapping varchar2(60); 
 
BEGIN 
BEGIN 
select seq_report.nextval 
into FILE_SEQ 
from dual; 
END; 
 
tool_env.getvar('FORMS60_OUTPUT',v_forms60_output); 
tool_env.getvar('FORMS60_MAPPING',v_forms60_mapping); 
FILE_NAME := REPORT_NAME||'_'||FILE_SEQ||'.'||FILE_EXT; 
 
if :report1_vw.field1 is null then 
raise form_trigger_failure; 
end if; 
 
--make sure parameter list does not exist 
param_list := get_parameter_list(param_list_name); 
if not id_null(param_list) then 
destroy_parameter_list(param_list); 
end if; 
 
--create parameter list 
param_list := create_parameter_list(param_list_name); 
if id_null(param_list) then 
message('Cannot create parameter list'); 
raise form_trigger_failure; 
end if; 
 
add_parameter(param_list_name, 'PARAMFORM',text_parameter,'NO'); 
add_parameter(param_list_name, 'SALT',text_parameter, to_char(:report1_vw.field1)); 
add_parameter(param_list_name, 'INC',text_parameter,:report1_vw.field2); 
add_parameter(param_list_name, 'TCOM',text_parameter,:report1_vw.field3); 
add_parameter(param_list_name, 'DESFORMAT', text_parameter, 'PDF'); 
add_parameter(param_list_name, 'DESTYPE', text_parameter, 'FILE'); 
add_parameter(param_list_name, 'DESNAME', text_parameter, v_forms60_output||'\'||FILE_NAME); 
RUN_PRODUCT(REPORTS, PL_REPORT_NAME, SYNCHRONOUS, RUNTIME, FILESYSTEM, param_list_name, NULL); 
Web.Show_document(v_forms60_mapping||'/'||FILE_NAME, '_SELF'); 
END;
[+][-]01.25.2008 at 08:31AM PST, ID: 20743855

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 08:38AM PST, ID: 20743934

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 08:40AM PST, ID: 20743959

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 08:43AM PST, ID: 20743987

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 08:50AM PST, ID: 20744051

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 08:51AM PST, ID: 20744069

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 11:32AM PST, ID: 20745575

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 11:35AM PST, ID: 20745620

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 11:44AM PST, ID: 20745670

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 11:52AM PST, ID: 20745736

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 11:59AM PST, ID: 20745794

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 12:05PM PST, ID: 20745853

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01.25.2008 at 12:40PM PST, ID: 20746148

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01.28.2008 at 12:56PM PST, ID: 20762812

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01.29.2008 at 02:07AM PST, ID: 20766560

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Oracle 10.x, Oracle Database, PL / SQL
Tags: PL/SQL Oracle 10g Forms 10.1.2.0.2, IE 7
Sign Up Now!
Solution Provided By: sonicefu
Participating Experts: 3
Solution Grade: A
 
 
[+][-]01.30.2008 at 06:26AM PST, ID: 20777182

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628