ORACLE reports Build 10g - Data Model - query - If statement in Alias ?

I have the following select statement. It has the alias Survivors, Deaths and "All
With the ORACLE reports Build 10g - Data Model - I have the following query statement. I require the alias to change. Can the following be done.
Cases". Is it posible to use :P_LANGUAGE variable to say that -- IF :P_LANGUAGE = FRENCH THEN alias are Survivants for survivors, Décès for Deaths, Tous_les_cas for All Cases. Please advise
SELECT ALL T_NTR_MULTIBAR.CAT, T_NTR_MULTIBAR.NUM_CASES_LEFTBAR AS Survivors,
T_NTR_MULTIBAR.NUM_CASES_MIDDLEBAR AS Deaths, T_NTR_MULTIBAR.NUM_CASES_RIGHTBAR AS "All Cases"
FROM T_NTR_MULTIBAR
WHERE INSTANCE_NUM = :P_INSTANCENUM
order by ORDERS

It is no problem, you can automatically change the complete query before the report is running, which delivers you different kind of values. But the alias names does not change in the group of the data-model, although two query are running with different alias names at different times. In the data model you see the alias names of the first implemented select statement, which are the column fields in the layout.

Similar Messages

  • Report Builder 6i Data Model

    Report Builder 6i is ending in error if we try to add additional column in the data model query
    select rpad('a',50,'-') cust_name_inv,
    rpad('a',30,'-') cust_no_inv,
    rpad('a',30,'-') sal_name, ---added column
    rpad('a',4000,'-') sort_field1_inv,
    rpad('a',4000,'-') sort_field2_inv,
    0 inv_tid_inv,
    0 contact_site_id_inv,
    rpad('a',60,'-') cust_state_inv,
    rpad('a',60,'-') cust_city_inv,
    0 addr_id_inv,
    0 cust_id_inv,
    0 payment_sched_id_inv,
    rpad('a',20,'-') class_inv,
    sysdate due_date_inv,
    0 amt_due_remaining_inv,
    rpad('a',30,'-') invnum,
    0 days_past_due,
    0 amount_adjusted_inv,
    0 amount_applied_inv,
    0 amount_credited_inv,
    sysdate gl_date_inv,
    'x' data_converted_inv,
    0 ps_exchange_rate_inv,
    0 b0_inv,
    0 b1_inv,
    0 b2_inv,
    0 b3_inv,
    0 b4_inv,
    0 b5_inv,
    0 b6_inv,
    rpad('a',25,'-') company_inv,
    rpad('a',30,'-') cons_billing_number,
    rpad('a',32,'-') invoice_type_inv
    from dual
    where 1=2
    UNION ALL
    &common_query_inv
    We checked the number of columns passed in the lexical parameter, it tallys with the columns in the data model
    Any suggestions is welcome to overcome this issue
    Thanks
    The lexical parameter passes the following query at run time
    SELECT SUBSTRB (party.party_name, 1, 50) cust_name_inv,
    cust_acct.account_number cust_no_inv,
    jr.NAME sal_name,
    c.segment1|| ' '|| c.segment2|| ' '|| c.segment3|| ''|| c.segment4||''|| c.segment5|| ''|| c.segment6 sort_field1_inv,
    arpt_sql_func_util.get_trx_type_details(ps.cust_trx_type_id,'NAME') sort_field2_inv,
    c.code_combination_id inv_tid_inv,
    site.site_use_id contact_site_id_inv,
    loc.state cust_state_inv,
    loc.city cust_city_inv,
    DECODE (:format_detailed,NULL, -1, acct_site.cust_acct_site_id) addr_id_inv,
    NVL (cust_acct.cust_account_id, -999) cust_id_inv,
    ps.payment_schedule_id payment_sched_id_inv,
    ps.CLASS class_inv,
    ps.due_date due_date_inv,
    DECODE (:c_convert_flag,'Y', ps.acctd_amount_due_remaining, ps.amount_due_remaining) amt_due_remaining_inv,
    ps.trx_number invnum,
    CEIL (:as_of_date - ps.due_date) days_past_due,
    ps.amount_adjusted amount_adjusted_inv,
    ps.amount_applied amount_applied_inv,
    ps.amount_credited amount_credited_inv,
    ps.gl_date gl_date_inv,
    DECODE (ps.invoice_currency_code,:functional_currency, NULL,DECODE (ps.exchange_rate, NULL, '*', NULL)) data_converted_inv,
    NVL (ps.exchange_rate, 1) ps_exchange_rate_inv,
    arpt_sql_func_util.bucket_function (:bucket_line_type_0,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_0,
    :bucket_days_to_0,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b0_inv, --------------bucket 1
    arpt_sql_func_util.bucket_function (:bucket_line_type_1,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_1,
    :bucket_days_to_1,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b1_inv, --------------bucket 2
    arpt_sql_func_util.bucket_function (:bucket_line_type_2,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_2,
    :bucket_days_to_2,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b2_inv, --------------bucket 3
    arpt_sql_func_util.bucket_function (:bucket_line_type_3,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_3,
    :bucket_days_to_3,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b3_inv, --------------bucket 4
    arpt_sql_func_util.bucket_function (:bucket_line_type_4,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_4,
    :bucket_days_to_4,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b4_inv, --------------bucket 5
    arpt_sql_func_util.bucket_function (:bucket_line_type_5,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_5,
    :bucket_days_to_5,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b5_inv, --------------bucket 6
    arpt_sql_func_util.bucket_function (:bucket_line_type_6,
    dh.amount_in_dispute,
    ps.amount_adjusted_pending,
    :bucket_days_from_6,
    :bucket_days_to_6,
    ps.due_date,
    :bucket_category,
    :as_of_date
    ) b6_inv, --------------bucket 7
    c.segment1 company_inv,
    TO_CHAR (NULL) cons_billing_number,
    arpt_sql_func_util.get_trx_type_details(ps.cust_trx_type_id,'NAME') invoice_type_inv
    FROM hz_cust_accounts cust_acct,
    hz_parties party,
    ar_payment_schedules_all ps,
    jtf_rs_salesreps jr,
    ra_customer_trx_all ra,
    hz_cust_site_uses_all site,
    hz_cust_acct_sites_all acct_site,
    hz_party_sites party_site,
    hz_locations loc,
    ra_cust_trx_line_gl_dist_all gld,
    ar_dispute_history dh,
    gl_code_combinations c
    WHERE ps.gl_date <= :as_of_date
    AND UPPER (RTRIM (RPAD (:p_in_summary_option_low, 1))) = 'I'
    AND ps.customer_site_use_id = site.site_use_id
    AND site.cust_acct_site_id = acct_site.cust_acct_site_id
    AND acct_site.party_site_id = party_site.party_site_id
    AND loc.location_id = party_site.location_id
    AND ps.gl_date_closed > :as_of_date
    AND DECODE (UPPER (:p_in_currency),
    NULL, ps.invoice_currency_code,
    UPPER (:p_in_currency)
    ) = ps.invoice_currency_code
    AND gld.account_class = 'REC'
    AND gld.latest_rec_flag = 'Y'
    AND gld.code_combination_id = c.code_combination_id
    AND ps.payment_schedule_id = dh.payment_schedule_id(+)
    AND :as_of_date >= NVL (dh.start_date(+), :as_of_date)
    AND :as_of_date < NVL (dh.end_date(+), :as_of_date + 1)
    AND cust_acct.party_id = party.party_id
    AND jr.salesrep_id = ra.primary_salesrep_id
    AND ps.customer_id + 0 = cust_acct.cust_account_id
    AND ps.customer_trx_id + 0 = gld.customer_trx_id
    AND 1 = 1

    The error is query block consists of inconsistent no of columns

  • Error when open Oracle Report Builder 10g (Windows 7 Ultimate 32-bit)

    Hi all,
    I installed Oracle Developer 10g on windows 7 ultimate 32bit.
    Form builder running well, but the report got problem when i opened.
    This is the error message:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: rwbuilder.exe
    Application Version: 10.1.2.0
    Application Timestamp: 42ea43b7
    Fault Module Name: ROS.dll
    Fault Module Version: 10.1.2.0
    Fault Module Timestamp: 42c3b2b7
    Exception Code: c0000005
    Exception Offset: 0000afaa
    OS Version: 6.1.7601.2.1.0.256.1
    Locale ID: 1033
    Additional Information 1: 0a9e
    Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
    Additional Information 3: 0a9e
    Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
    Can anyone help?
    Regards,
    eRie

    Hello,
    For installing Developer suite 10gR2 on windows 7 there are some special installation steps.
    Please make sure that i hava followed them as described in the metalink note:
    Certification of Oracle Developer Suite 10g (10.1.2) on Windows 7 (32-bit) (Doc ID 1292919.1)
    Also be aware of the following issue:
    Cannot Open Forms/Reports Within Forms/Reports Builder 10gR2(10.1.2.3) on Windows 7 (Doc ID 1306651.1)
    Regards,
    Alex

  • How to subsitute Button in Oracle Report Builder 10g

    Hi,
    I am using Oracle Developer 10.1.2.
    I'd like to include a Button in my report (drill down report).
    This functional (Button) is available in the previous Oracle developer (Oracle 6i).Now it is no longer avaliable.
    How can I subsitute the Button functionality?
    Many Thanks,
    Imelda

    Hello,
    In the Reports 10.1.2.0.2 online help :
    button
    1. An interface element used to select an action item, display a dialog box, or acknowledge the current condition.
    2. An object in an application that has a PL/SQL procedure associated with it. The procedure is generally executed upon a user mouse event.
    Note: The ability to create a button in the Paper Layout view is no longer supported in Oracle Reports 10g. Use hyperlinks instead. If you open an existing report that contains buttons, the buttons will be converted into text items.
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b13895/orbr_concepts2.htm#sthref370
    2.2.5 About hyperlinks
    Regards

  • Interfacing of oracle report builder and java

    hi all,
    I have build a report using Oracle Report Builder 10g.Now i want to make use of this report in displaying the data in IE using core java.
    This is the first time i am using the Oracle Report Builder .
    Can anyone tell me how to proceed in right direction?Do i need to have some specific Jar,Environment to accomplish this task?
    Thanks in advance

    I'm not sure what version of the product you're using, but since you're just installing it may well be the base version (6.0.8.8.3).
    Similar issues were addressed in a patch release (6.0.8.12), which was related to issues with some types of keyboard. You may want to upgrade to the latest patch release and retry.

  • How to handle Exceptions in Oracle Report Builder 10.1.2.0.2?

    We are using Oracle Reports Builder 10g 10.1.2.0.2, Windows XP with Oracle 10g database. The reports are converted into JSP reports.
    How and where do we write exception handling code in Reports Builder? We want to achieve the following:
    1. Display a customized JSP page with customized error message
    2. Allow users to cancel the report execution, if possible and then direct them to the parameter form with all the values they entered before.
    Once we write these codes in the Oracle Report Builder where will it show in .jsp files?
    Thanks
    Hemant

    this link may be helpful:
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwwhthow/whatare/pformobj/a_pf_web.htm

  • Reports Builder 10g

    Hi,
    I want examples of
    Before Parameter Form Report Trigger and After Parameter Form Report Trigger
    I am using Oracle Report Builder 10g
    can someone please help here..

    Check this link...
    1. Difference between After parameter Form Trigger and before Report Trigger
    2. http://docs.oracle.com/cd/E12839_01/bi.1111/b32122/orbr_multoc003.htm
    For more search in this forum and google.com
    Hope this helps
    Hamid
    If someone's response is helpful or correct, please mark it accordingly.*

  • How to run a Report of version 10g in Oracle Report Builder  6i

    Hi,
    I have a report of version r10g . I want to run this report in oracle reports 6i version.
    Could any body help me out.
    Please any body give the solution urgently.
    Thanx,
    sam

    Hello,
    I have a report of version r10g . I want to run this report in oracle reports 6i version.BTW what is the reason to run report in report builder? If you want to see the report preview in report builder as you normally see in report 6i you can use Ctrl+Shift+R to run report in report builder 10g.
    -Ammad

  • Guide Oracle Reports Developer 10g: Build Reports

    Hello ...
    I'm doing the guide Oracle Reports Developer 10g: Build Reports
    and practices begin cuando not find files like ("p2q2.jsp, p2q3.rdf, p2q4.jsp, p2q5.jsp, p2q6.rdf, p2q7.rdf")
    Can someone help me and tell me where I can find them ...
    Sorry for my English poor quality ......
    thanks hope prompt response ....
    Edited by: 991659 on 4/03/2013 07:58 AM
    Edited by: 991659 on 4/03/2013 08:04 AM

    Hello,
    summit database files
    Regards

  • Dependent parameters in oracle report builder

    1)in user parameter property we have list of values.can we write select query for binding? for example:: select empno from emp where deptno=:deptnum :deptnum is first parameter it displays distinct dept nos. if i do like this it is giving error:: bind variables are not allowed in the select statement
    2)HI in report builder am creating paramters.for that i have taken emp table from scott user . in deptnum am displaying distinct deptno.if i select dept 10 ,empnum drop down should display empno's of deptno 10. .if i select dept 20 ,empnum drop down should display empno's of deptno 20.for this wat i have to do.
    3)in reports 1og.if we enter a query in list of values then parameter form displays a dropdown.in that if any ething is selected then that will display in the report.supp if i am not selected any value then it should display all the values.how it is possible?can any one help me........
    4)in user parameter property we have list of values.can we write select query for binding? for example:: select empno from emp where deptno=:deptnum :deptnum is first parameter it displays distinct dept nos. if i do like this it is giving error:: bind variables are not allowed in the select statement
    5)how to use buttons,check boxes in paper layout,paper design and paper parameter form in oracle report developer 10g 0 5
    HI in report builder am creating paramters.for that i have taken emp table from scott user . in deptnum am displaying distinct deptno.if i select dept 10 ,empnum drop down should display empno's of deptno 10. .if i select dept 20 ,empnum drop down should display empno's of deptno 20.for this wat i have to do.

    What I had to do is create a query using query builder. This works fine; it's when trying to add the column to an existing query is where the data inconstancy error occurs. One thing you have to keep in mind is it will only work using the query builder in conjunction with the report wizard; I am not sure why. To incorporate the comments into an existing frame you will have to cut the frame created by the wizards and copy it into the existing frame. Otherwise the column name will not show in the source list of the property Inspector.
    Good Luck

  • Data Model--Query Background colour

    Hi All
    In Oracle Applications(11i)----Standard Reports ,Query Background colour is changed to different colours(other than standard blue colour)
    How Can we Achive This.?
    Any Suugestions are welcome
    Tahnks In Advance
    Sasi

    Hello Sasi,
    I have never touched an Oracle Application before, but in Report builder, i don't think there is a way to change the background color of the Data Model query to anything other than the standard blue.
    -Marilyn

  • Can you change the data model query dynamically based on its parent query

    Hi
    Question:
    I have a data model query q1 and q2 is the child of q1
    Say q1 returns 2 rows and and
    for the first row
    i want q2 to be select 1 from table1
    for the second row
    i want q2 to be select 1 from table2
    Basically i want to build the q2 dynamically
    for each row fetched in q1.
    Can this be done?
    If so where do i write the code to achieve this
    Thanx in advance.
    Suresh

    One simple (but not very realistic) example:
    1. DATABASE TABLES AND DATA
    CREATE TABLE dept_all (
    deptno NUMBER (2),
    dname VARCHAR2 (20),
    in_usa CHAR (1) DEFAULT 'Y')
    INSERT INTO dept_all VALUES (10, 'DEPT 10', 'Y');
    INSERT INTO dept_all VALUES (20, 'DEPT 20', 'N');
    INSERT INTO dept_all VALUES (30, 'DEPT 30', 'Y');
    CREATE TABLE emp_usa (
    empno NUMBER (4),
    ename VARCHAR2 (20),
    deptno NUMBER (2))
    INSERT INTO emp_usa VALUES (1001, 'EMP 1001', 10);
    INSERT INTO emp_usa VALUES (1002, 'EMP 1002', 10);
    INSERT INTO emp_usa VALUES (3001, 'EMP 3001', 30);
    INSERT INTO emp_usa VALUES (3002, 'EMP 3002', 30);
    CREATE TABLE emp_non_usa (
    empno NUMBER (4),
    ename VARCHAR2 (20),
    deptno NUMBER (2))
    INSERT INTO emp_non_usa VALUES (2001, 'EMP 2001', 20);
    INSERT INTO emp_non_usa VALUES (2002, 'EMP 2002', 20);
    2. DATABASE PACKAGE
    Note that Oracle Reports 3.0 / 6i needs 'static' ref cursor type for building Report Layout.
    So, in package specification we must have both ref cursor types, static for Report Layout
    and dynamic for ref cursor query.
    CREATE OR REPLACE PACKAGE example IS
    TYPE t_dept_static_rc IS REF CURSOR RETURN dept_all%ROWTYPE;
    TYPE t_dept_rc IS REF CURSOR;
    FUNCTION dept_query (p_where VARCHAR2) RETURN t_dept_rc;
    TYPE t_emp_rec IS RECORD (
    empno emp_usa.empno%TYPE,
    ename emp_usa.ename%TYPE);
    TYPE t_emp_static_rc IS REF CURSOR RETURN t_emp_rec;
    TYPE t_emp_rc IS REF CURSOR;
    FUNCTION emp_query (
    p_in_usa dept_all.in_usa%TYPE,
    p_deptno dept_all.deptno%TYPE)
    RETURN t_emp_rc;
    END;
    CREATE OR REPLACE PACKAGE BODY example IS
    FUNCTION dept_query (p_where VARCHAR2) RETURN t_dept_rc IS
    l_dept_rc t_dept_rc;
    BEGIN
    OPEN l_dept_rc FOR
    'SELECT * FROM dept_all WHERE ' || NVL (p_where, '1 = 1') || ' ORDER BY deptno';
    RETURN l_dept_rc;
    END;
    FUNCTION emp_query (
    p_in_usa dept_all.in_usa%TYPE,
    p_deptno dept_all.deptno%TYPE)
    RETURN t_emp_rc
    IS
    l_emp_rc t_emp_rc;
    l_table VARCHAR2 (30);
    BEGIN
    IF p_in_usa = 'Y' THEN
    l_table := 'emp_usa';
    ELSE
    l_table := 'emp_non_usa';
    END IF;
    OPEN l_emp_rc FOR
    'SELECT * FROM ' || l_table || ' WHERE deptno = :p_deptno ORDER BY empno'
    USING p_deptno;
    RETURN l_emp_rc;
    END;
    END;
    3. REPORT - QUERY FUNCTIONS AND DATA LINK
    FUNCTION q_dept RETURN example.t_dept_static_rc IS
    BEGIN
    -- "p_where" is a User Parameter
    RETURN example.dept_query (:p_where);
    END;
    FUNCTION q_emp RETURN example.t_emp_static_rc IS
    BEGIN
    -- "in_usa" and "deptno" are columns from Parent Group (G_DEPT)
    RETURN example.emp_query (:in_usa, :deptno);
    END;
    Of course, we must create Data Link between Parent Group (G_DEPT) and Child Query (Q_EMP).
    Regards
    Zlatko Sirotic

  • Dynamic Order By on Report Builder 10g

    Hi,
    How can I do a dynamic order by clause using user parameters on Report Builder 10g? I need to set dynamically the column and the direction on the clause.
    Thanks.
    Bruno Galletti
    Brazil.

    Hi Bruno / Rainer,
    I am implementing the same solution, and after adding the lexical parameter reference in the SQL statement and calling the report from Oracle Forms the report failed with the following error on the report server:
    Terminated with error: <br>REP-300: missing expression select wcsr_no , wcsr_date , wcsr_rec_week_zone , wcsr_loc_house_num || ' ' || wcsr_loc_pre_dir || ' ' || wcsr_loc_street_name || ' ' || wcsr_loc_street_type || ' ' || wcsr_loc_post_dir || ' ' || wcsr_loc_unit || ' ' || wcsr_loc_city || ' ' || wcsr ==>
    No change has been done to the SQL statement except adding the &p_orderby parameter at the end of the query.
    Any suggestions? Are all parameters defined as "bind" parameters on the Repotr Object Navigator.?
    Thanks
    Gabriel Aguirre
    [email protected]

  • Using CLOBs in oracle Report Builder

    I want to select all the data in a CLOB column using SQL Navigator by just doing
    select entry_note
    from chartentries;
    just as you say in your example by it just gives me back a result of (ORACLOB).
    If I do
    select to_char(entry_note)
    from chartentries;
    I get this error.
    If I do
    select dbms_lob.substr(entry_note,4000,1)
    from chartentries
    I get this (there’s more up to 32000 characters in a clob) and these weird squares which I think are CR (carriage returns) or LF (line feeds). I don’t want to see those characters and I would like to retrieve the entire CLOB in one swoop without doing data manipulations of substringing.
    Using the same data in Oracle Report Builder, I want to select all the data in a CLOB column into a field in a Paper report layout but I keep getting errors, ora-6502, and I've found out that I am restricted to 4000 characters and in Report 9i it looks like the largest field you can have is 4000 characters. My CLOB information can be up to 32000 characters long or longer and I do not want to substring out 4000 characters at a time into separate fields. In Crystal reports there is no problem just selecting the clob in a simple query and it is there in one shot. I would have thought by now that Oracle would have changed its development tools to be able to handle Clobs simply without any manipulation. Does anyone know how to do this in Report builder? I just have a simple query:
    select entry_datetime,
    to_char(replace((entry_note),chr(13))) as entry_note
    from chartentries
    where patient_id = 49741
    Another thing I want to do, is call this Oracle report from a PL/SQL block passing several parameters to the report and also call a Crystal report from a PL/SQL block passing several parameters to the report. Does anyone know what the commands are?

    What I had to do is create a query using query builder. This works fine; it's when trying to add the column to an existing query is where the data inconstancy error occurs. One thing you have to keep in mind is it will only work using the query builder in conjunction with the report wizard; I am not sure why. To incorporate the comments into an existing frame you will have to cut the frame created by the wizards and copy it into the existing frame. Otherwise the column name will not show in the source list of the property Inspector.
    Good Luck

  • BI Publisher Report with Multiple data models

    I have an Oracle Report with two different data model(querys) and Layouts for Summary and Details. When the user Choses Summary it execute the summary data model query and display the result in summary Repeating frame Layout and when user choses Details it execute the other query and uses the other layout.
    Now I am creating the same report in Stand alone BI Publisher. As a company standard we are using Data Template for Data model. How can I accomplish the same feature I mentioned above in BI Publisher? Meaning How can I control and execute the querys in BIP based on a parameter "Summary" or "Details" ?
    Can Someone help
    George

    option1:
    The query should be same @ detail level, only the template has to be different for summary and details.
    @runtime, user can choose to see the detail/summary
    Disadvantage, if the data is huge,
    advantage , only one report.
    option2:
    create two separate reports summary and details
    and create diff data and diff layout and keep it as different report
    Advantage, query will perform based on the user run report, summary/detail, so that you can write efficient query.
    Dis advantage , two reports query/template to be maintained.

Maybe you are looking for

  • .mov file in Quicktime: Audio OK, Video not OK

    Reposting this as a new topic, since it was buried in the other thread. I have a small HD video camera that records .mov files to an SD flash card. I get audio, but no video. The Quicktime movie inspector says the format is "mbarella AVC encoder 3avc

  • Flash Catalyst CS5.5 Crashes when importing photoshop document

    I am trying to import a photoshop file authored in Photoshop CS5.1 into Flash Catalyst CS5.5, and Flash catalyst crashes every time part way through the import. A few specifics: Mac OS X 10.6.8 Photoshop CS5.1 Catalyst CS5.5 I have searched this foru

  • Profile Parameter to execute Abap Program at user logon.

    Hi Experts I've written a small printer selection program to change the users profile parameter. Is there another profile parameter that can be given to execute this program automatically when the user logs on.....The reason why I'm looking for a pro

  • Bpm workspace incompatible with O.S. version

    Hi I have a big problem the bpm worspace in weblogic is not working well, is not loading all the images and icons. It only works fin in xp sp2, but many machines that work with this project uses vista or xp sp3.... Any solution, Hope you can help me

  • HT5052 how to download ios 5.0.1 instead of ios 5.1?

    how to download ios 5.0.1 instead of ios 5.1?