pls 00382 expression is of the wrong type as he returned a record

Hi Experts,

I returned a record type variable in the function below. but I'm getting pls 00382 expression is of the wrong type error

Could you please all you please solve this problem.

{format} {format}

CREATE or REPLACE TYPE vp40.t_attr_list_tab AS TABLE OF VARCHAR2 (4000);

CREATE or REPLACE TYPE vp40.t_fin_tab () AS OBJECT

object_id NUMBER (8),

object_name VARCHAR2 (50)

);

create or replace type vp40.t_objects_info

AS AN OBJECT

(

node_id number,

NUMBER THE OBJECT_ID,

OBJECT_NAME VARCHAR2 (200)

);

/ * Formatted on 2013/09/03 07:58 (trainer more v4.8.8) * /.

(Vp40.findobjects) FUNCTION to CREATE or REPLACE

i_object_type_id in NUMBERS

i_l_filter_list IN VARCHAR2,

i_scope_node_id NUMBER

)

RETURN t_fin_tab

AS

l_tab t_attr_list_tab: = t_attr_list_tab ();

TYPE t_objects_info_arr IS TABLE OF THE t_objects_info

INDEX BY PLS_INTEGER;

l_obj_info t_objects_info_arr;

TYPE t_fin_tab_arr IS TABLE OF THE t_fin_tab

INDEX BY PLS_INTEGER;

l_fin_tab t_fin_tab_arr;

l_text VARCHAR2 (32767): = i_l_filter_list | ',';

l_idx NUMBER;

BEGIN

LOOP

l_idx: = INSTR (l_text, ",");

OUTPUT WHEN NVL (l_idx, 0) = 0;

l_tab. EXTEND;

l_tab (l_tab. (Last): = TRIM (SUBSTR (l_text, 1, l_idx - 1));

l_text: = SUBSTR (l_text, l_idx + 1);

END LOOP;

SELECT t_objects_info (n.node_id, o.object_id, o.NAME)

LOOSE COLLECTION l_obj_info

FROM (SELECT n.node_id, n.object_id

N nodes

START WITH n.node_id = i_scope_node_id

N.node_id CONNECT BY PRIOR = n.parent_node_id) n

JOIN IN-HOUSE

objects o ON o.object_id = n.object_id

WHERE o.object_type_id = i_object_type_id;

IF l_obj_info. COUNT > 0

THEN

BECAUSE me IN l_obj_info. FIRST... l_obj_info. LAST

LOOP

FOR j IN l_tab. FIRST... l_tab. LAST

LOOP

BEGIN

SELECT t_fin_tab (o.object_id, o.NAME)

LOOSE COLLECTION l_fin_tab

O objects, ATTRIBUTES att

WHERE o.object_id = l_obj_info (i) .object_id;

AND att. VALUE = l_tab (j);

EXCEPTION

WHEN NO_DATA_FOUND

THEN

raise_application_error

(- 20004,

"Attribute values do not match."

);

WHILE OTHERS

THEN

raise_application_error (-20005, "an error has occurred.");

END;

END LOOP;

END LOOP;

END IF;

RETURN l_fin_tab;

END;

/

{format} {format}

Hello

Sorry, I don't understand,

mbb774 wrote:

...

-for example with node_id = 100 and object_type_id = 200

-Suppose we get 4 items

...

Do you have after the bad examples of data? I don't see numbers of 100 or 200 anywhere in the sample data you posted.

Tags: Database

Similar Questions

  • PLS-00382: expression is of the wrong type

    Hello

    PL/SQL code
    CREATE OR REPLACE TYPE prof_ctab_value_rec_t AS OBJECT (
      prof_id         INTEGER
     ,ctabv_id        INTEGER
     ,ctab_id         INTEGER
    )
    
    
    CREATE OR REPLACE TYPE prof_ctab_value_table_t IS TABLE OF prof_ctab_value_rec_t
    
    
    
    FUNCTION get_prof_ctab_value
    
    RETURN prof_ctab_value_table_t PIPELINED
    IS
    
      v_sql          VARCHAR2(4000);
      v_cursor       SYS_REFCURSOR;
      v_result_set   prof_ctab_value_table_t;
    
    
    BEGIN
    
       v_sql := 'select .....';
    
      EXECUTE IMMEDIATE v_sql USING
      OUT v_cursor;
          
        LOOP
        FETCH v_cursor INTO v_result_set;
        EXIT WHEN v_cursor%NOTFOUND;
        PIPE ROW(v_result_set);
    
        END LOOP;
    
    
    END;
    Compile errors


    Error: PLS-00382: expression is of the wrong type
    Text: PIPE ROW (v_result_set);

    Error: PL/SQL: statement ignored
    Text: PIPE ROW (v_result_set);

    Please tell me wht causes the compile error. Thanks in advance.

    I don't know what you're trying to do... Probably, this will help you...

    SQL> create or replace FUNCTION get_prof_ctab_value
      2  RETURN prof_ctab_value_table_t PIPELINED
      3  IS
      4    v_sql          VARCHAR2(4000);
      5    v_cursor       SYS_REFCURSOR;
      6    v_result_set   prof_ctab_value_rec_t :=
      7                prof_ctab_value_rec_t(null,null,null);
      8  BEGIN
      9     v_sql := 'select 1,2,3 from dual union all select 4,5,6 from dual';
     10    open  v_cursor for v_sql;
     11      LOOP
     12      FETCH v_cursor INTO
     13     v_result_set.prof_id,
     14     v_result_set.ctabv_id,
     15     v_result_set.ctab_id;
     16      EXIT WHEN v_cursor%NOTFOUND;
     17      PIPE ROW(v_result_set);
     18      END LOOP;
     19   return;
     20  END;
     21  /
    
    Function created.
    
    SQL> select *
      2  from table(get_prof_ctab_value);
    
       PROF_ID   CTABV_ID    CTAB_ID
    ---------- ---------- ----------
             1          2          3
             4          5          6
    
  • ORA-06550 PLS-00382: expression is of the wrong type

    Please help me with the following script:

    declare
    cursor c1 is
    Select prod_country_id
    of prod_country
    where eccnum = "NOCLASS-SG" and ccode = 'SG ';
    New_data_type TYPE IS TABLE C1% ROWTYPE;
    new_data_tab new_data_type;
    Start
    Open c1;
    loop
    collect fetch c1 into bulk
    in new_data_tab limit 500000;
    OUTPUT WHEN c1% NOTFOUND;
    ForAll i in 1... new_data_tab. Count
    Update prod_country
    Set eccnum = "NOCLASS".
    where prod_country_id = new_data_tab (i);
    end loop;
    Close c1;
    commit;
    end;

    Gives following error:

    ORA-06550: line 17, column 32:
    PLS-00382: expression is of the wrong type


    Please help immediately.
    Need to update block.

    Thanks in advance

    user13759851 wrote:
    Just change my query and now its execution without the previous error:

    So what? It is always wrong.

    The correct way using just SQL to perform the update - which is the most effective and scalable way. And much faster.

    As for your code? Everything is fake.

    You read the update lines. Without locking of these lines. And these same lines are changed in the code. This is false.

    Then you agree inside the loop. This is false.

    You now get a cursor (where the lines are not locked) and changes of committng to these same lines. It is a violation of the standard ANSI SQL - get everywhere is committed. You consume more resources Oracle doing this. If this process crashes - and there is an excellent chance that Oracle will not provide a coherent reading/snapshot while the data are changed and committed - you what? A process that has changed some data and no other data. We ask that the corruption of data. A total lack of data integrity.

    You set the limit to a ridiculous 500000. This is false.

    It's not faster than with a 1000 limit. But she will consume 500 times more memory. And not just any memory. The more expensive server memory that a process of PL/SQL can consume - PGA.

    You have provided a perfect example of How not to Code for Oracle+.

    Now trash. You never forget retry such an erroneous approach. Use a single SQL UPDATE statement. And then a COMMIT.

  • ERROR MESSAGE PLS-00382 - expression is of the wrong type

    I read similar publication on the web. I tried everything, but I still get the error message. Please note planner_id was defined as a varchar2 when the table was created.
    ---------------------------------------------------------------------------------------------------------------------------------------------------------------

    SEE SPECIFICATIONS BELOW

    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    type labour_rec is MADE
    (
    labour_cell VARCHAR2 (300));

    Type cur_labour is REF CURSOR RETURN labour_rec;

    FUNCTION labour_record (l_planner_id in rcl.copq_raw_labour.planner_id%type) return cur_labour;
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

    SEE BELOW IN THE BODY
    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Cur_labour return of labour_record (l_planner_id in rcl.copq_raw_labour.planner_id%type) FUNCTION IS
    my_cur_labour cur_labour;
    BEGIN
    OPEN FOR My_cur_labour

    Select c1.transaction_date, c1.workorder, c1.seq_no, c1.resource_id, c1.warehouse_id, c1.planner_id, c1.employee_id, c1.hours_worked

    copq_raw_labour C1
    where c1.planner_id = l_planner_id;
    close my_cur_labour;
    -return my_cur_labour;
    end labour_record;

    user13046875 wrote:
    So, how define a Ref Cursor low... Please note that I am still new to Pl/SQl developer.

    Use SYS_REFCURSOR instead of your strongly typed cur_labour.

    create or replace package mmmm_hmmmm
    as
      3
       function do_something return SYS_REFCURSOR;
    
    end;
    /
    
    create or replace package body mmmm_hmmmm
    as
    
       function do_something return SYS_REFCURSOR
       is
          o_cursor    SYS_REFCURSOR;
       begin
          open o_cursor for
          select 'something', 'something else'
          from dual;
    
          return o_cursor;
       end;
    
    end;
    /
    
    Package created.
    
    Elapsed: 00:00:00.13
    TUBBY_TUBBZ?TUBBY_TUBBZ?  2    3    4    5    6    7    8    9   10   11   12   13   14   15   16  
    
    Package body created.
    
    Elapsed: 00:00:00.11
    
  • Sys_RefCursor - expression is of the wrong type

    Greetings,

    I'm having a problem when compiling the code, and I wonder if you can help me.


    ===============
    CREATE OR REPLACE PROCEDURE RA
    v_cursor sys_refcursor;
    BEGIN
    FOR I IN 1.3 LOOP

    query_str: = 'SELECT DISTINCT STAGE_NAME, SUN |
    i: ' _MEMBER_NAME OF EXT_STG WHERE DIM' |
    i: ' _MEMBER_NAME AS "A: %" ';

    V_cursor OPEN FOR query_str; - error here

    V_cursor CLOSE;
    END LOOP;
    END;
    ===============


    This Code gives me the following error: rError (43.23): PLS 00382: expression is of the wrong type

    I read askTom: http://asktom.oracle.com/pls/asktom/f?p=100:11:0:P11_QUESTION_ID:492620500346758810
    This code is supposed to work, so I don't understand this error.


    He also reffers that versions before 11g this code fails. However, my version is: PL/SQL Release 11.2.0.2.0 - Production


    Thanks for your help.

    >
    NVARCHAR2 (200)
    >

    Try VARCHAR2 (200)

    http://docs.Oracle.com/CD/B28359_01/AppDev.111/b28370/openfor_statement.htm

    documentation
    >
    syntax

    A string literal, a string variable or string expression that represents a select (without the final semicolon) several cursor_variable_name associated lines. It must be of type CHAR, VARCHAR2 or CLOB (not NCHAR or NVARCHAR2).
    >

    Published by: user6806750 on 09.12.2011 03:41

  • "expression is of the wrong type" - but who and where... ?

    Hello.

    I hope that it will be clear as day to someone... Please could someone tell me why I get the following error message...
    [061010_042222995][][EXCEPTION] SQLException encounter while executing data trigger....
    java.sql.SQLException: ORA-06550: line 4, column 20:
    PLS-00382: expression is of wrong type
    ORA-06550: line 4, column 1:
    PL/SQL: Statement ignored
    data model when the trigger is called...
      <?xml version="1.0" encoding="utf-8" ?> 
    - <dataTemplate name="UofS_OutstandngExpenses_Report" defaultPackage="SUBIXCLT" dataSourceRef="FINDEV" version="1.0">
    - <properties>
      <property name="xml_tag_case" value="upper" /> 
      <property name="include_parameters" value="true" /> 
      <property name="debug_mode" value="on" /> 
      </properties>
    - <parameters>
      <parameter name="p_claimant" dataType="character" defaultValue="" /> 
      <parameter name="p_expense_date_from" dataType="date" defaultValue="" /> 
      <parameter name="p_expense_date_to" dataType="date" defaultValue="" /> 
      <parameter name="p_raisedby" dataType="character" defaultValue="" /> 
      <parameter name="p_status" dataType="character" defaultValue="" /> 
      <parameter name="p_ordered_by" dataType="varchar2" defaultValue="" /> 
      </parameters>
    - <dataQuery>
    - <sqlStatement name="Q1">
    - <![CDATA[ 
    SELECT DISTINCT
    erh.invoice_num, 
    pap.full_name EMP_CLAIMING,
    DECODE(NVL(erh.expense_status_code, 'Not yet Submitted (NULL)'), 'CANCELLED', 'CANCELLED',
         'EMPAPPR', 'Pending Individuals Approval',      'ERROR', 'Pending System Administrator Action',
         'HOLD_PENDING_RECEIPTS     ', 'Hold Pending Receipts', 'INPROGRESS', 'In Progress', 'INVOICED', 'Ready for Payment',
         'MGRAPPR', 'Pending Payables Approval', 'MGRPAYAPPR', 'Ready for Invoicing', 'PAID', 'Paid',
         'PARPAID', 'Partially Paid',     'PAYAPPR', 'Payables Approved',     'PENDMGR', 'Pending Manager Approval',
         'PEND_HOLDS_CLEARANCE', 'Pending Payment Verification',     'REJECTED', 'Rejected',     'RESOLUTN',     'Pending Your Resolution',
         'RETURNED',     'Returned',     'SAVED',     'Saved',     'SUBMITTED',     'Submitted',     'UNUSED',     'UNUSED',
         'WITHDRAWN','Withdrawn',     'Not yet Submitted (NULL)') "EXPENSE_STATUS" ,
    NVL(TO_CHAR(erh.report_submitted_date,'dd-MON-yyyy'),'NULL') SUBMIT_DATE,
    NVL(TO_CHAR(erh.expense_last_status_date,'dd-MON-yyyy'),'NULL') LAST_UPDATE,
    erh.override_approver_name ER_Approver,
    fu.description EXP_ADMIN,
    erh.total, 
    erh.description  
    FROM
    AP_EXPENSE_REPORT_HEADERS_all erh, 
    per_all_people_f pap, fnd_user fu
    WHERE erh.employee_id = pap.person_id 
    AND fu.user_id = erh.created_by
    AND NVL(erh.expense_status_code, 'Not yet Submitted') NOT IN  ('MGRAPPR', 'INVOICED', 'PAID', 'PARPAID')
    AND pap.full_name = NVL(:p_claimant, pap.full_name)
    AND TRUNC(erh.report_submitted_date) BETWEEN NVL(:p_expense_date_from, '01-JAN-1999') AND NVL(:p_expense_date_to,'31-DEC-2299')
    AND fu.description = NVL(:p_raisedby,fu.description)
    AND erh.expense_status_code = NVL(:p_status,erh.expense_status_code) &L_ORDERED_BY
    
      ]]> 
      </sqlStatement>
      </dataQuery>
      <dataTrigger name="beforeReport" source="SUBIXCLT.beforeReportTrigger" /> 
    - <dataStructure>
    - <group name="G_XP_CLM_TRACKNG" source="Q1">
      <element name="INVOICE_NUM" value="INVOICE_NUM" /> 
      <element name="EMP_CLAIMING" value="EMP_CLAIMING" /> 
      <element name="EXPENSE_STATUS" value="EXPENSE_STATUS" /> 
      <element name="SUBMIT_DATE" value="SUBMIT_DATE" /> 
      <element name="LAST_UPDATE" value="LAST_UPDATE" /> 
      </group>
      </dataStructure>
      </dataTemplate>
    specifications of the package and the body...

    --THE SPEC...
    
    CREATE OR REPLACE PACKAGE Subixclt IS
    FUNCTION beforeReportTrigger RETURN VARCHAR2;
    p_order_by VARCHAR2(50);
    l_ordered_by VARCHAR2(350);
    p_claimant  VARCHAR2(80); 
    expense_date_from DATE;
    expense_date_to DATE;
    p_raisedby   VARCHAR2(80);
    p_status   VARCHAR2(80);
    p_ordered_by   VARCHAR2(80);
    --RETURN VARCHAR2;
    END;
    
    
    --THE BODY...
    
    REATE OR REPLACE PACKAGE BODY Subixclt IS
    FUNCTION BeforeReportTrigger RETURN VARCHAR2 IS
    
    BEGIN
    Fnd_File.PUT_LINE(Fnd_File.LOG,'L_ORDERED_by'||L_ORDERED_BY);
    
    DECLARE
    
    L_ORDERED_BY VARCHAR2(50);
    P_ORDERED_BY  VARCHAR2(50);
    P_RAISEDBY VARCHAR2(50);
    P_STATUS VARCHAR2(50);
    P_CLAIMANT VARCHAR2(100);
    P_EXPENSE_DATE_FROM DATE;
    --P_EXPENSE_DATE_FROM  VARCHAR2(50);
    --P_EXPENSE_DATE_TO  VARCHAR2(50);
    P_EXPENSE_DATE_TO DATE;
    
    BEGIN
     IF (P_ORDERED_BY='Expense Report Number') THEN
         L_ORDERED_BY :='order by 1 asc;';
      ELSIF (P_ORDERED_BY='Person Claiming') THEN
         L_ORDERED_BY :='order by 2 asc;';
      ELSIF (P_ORDERED_BY='Submit Date') THEN
      L_ORDERED_BY :='order by 4 asc;';
      END IF;
     
    RETURN(L_ORDERED_BY);
    --RETURN NULL;
    END;
    END;
    END;
    Thank you very much for looking...

    D

    Hi Steven,

    your settings are not correctly spread. P_ORDERED_BY in your package does not get the value of the report parameter.

    Can you please send me the full source code by email? XML, spec data definition package & body? (name (at) melexis.com)

    Thank you
    David.

  • expression is of the wrong type

    Hello
    I have this function
    FUNCTION MY_F_SUB_EXISTS (
          p_email_address   IN cnsmr.email_addr%TYPE,
          p_question_cd     IN ref_cd.quest_num%TYPE,
          p_language        IN ref_cd.language%TYPE)
          RETURN BOOLEAN
       AS
          CURSOR cur_exists (
             l_email_address   IN cnsmr.email_addr%TYPE,
             l_question_cd     IN ref_cd.quest_num%TYPE)
          IS
             SELECT 1
               FROM queue_consumers qc, queue_consumer_subsc qcs
              WHERE     qcs.queue_consumer_id = qc.queue_consumer_id
                    AND qcs.question_cd = l_question_cd
                    AND LOWER (qc.email_address) = LOWER (l_email_address);
    
          --
          CURSOR cur_rtr_exists (
             l_email_address   IN cnsmr.email_addr%TYPE,
             l_question_cd     IN ref_cd.quest_num%TYPE,
             l_language        IN ref_cd.language%TYPE)
          IS
             SELECT 1
               FROM cnsmr idv,
                    cnsmr_opt idv_sbc,
                    ref_cd sbsc
              WHERE     idv_sbc.indiv_id = idv.indiv_id
                    AND idv_sbc.subsc_cd = sbsc.subsc_cd
                    AND idv_sbc.subsc_prod_cd = sbsc.subsc_prod_cd
                    AND idv_sbc.subsc_chnl_cd = sbsc.subsc_chnl_cd
                    AND sbsc.quest_num = l_question_cd
                    AND sbsc.language = l_language
                    AND LOWER (idv.email_addr) = LOWER (l_email_address);
    
          --
          v_exist   NUMBER DEFAULT NULL;
       BEGIN
          --
          OPEN cur_exists (p_email_address, p_question_cd);
    
          FETCH cur_exists INTO v_exist;
    
          --
          IF cur_exists%FOUND
          THEN
             CLOSE cur_exists;
    
             RETURN TRUE;
          ELSE
             --
             CLOSE cur_exists;
    
             OPEN cur_rtr_exists (p_email_address, p_question_cd, p_language);
    
             FETCH cur_rtr_exists INTO v_exist;
    
             --
             IF cur_rtr_exists%FOUND
             THEN
                CLOSE cur_rtr_exists;
    
                RETURN TRUE;
             ELSE
                CLOSE cur_rtr_exists;
    
                RETURN FALSE;
             END IF;
          END IF;
       --
       EXCEPTION
          WHEN OTHERS
          THEN
             raise_application_error (
                -20001,
                   'error in MY_F_SUB_EXISTS:'
                || SQLCODE
                || '-'
                || SQLERRM);
       END MY_F_SUB_EXISTS;
    Please ignore any syntax error if it is changed, I am more concern about its input parameter and the call to this function

    My question is
    While call you that
    select MY_F_SUB_EXISTS('[email protected]','SUB-F','EN') 
     from dual;
    I get this error
    ORA-06552: PL/SQL: Statement ignored
    ORA-06553: PLS-382: expression is of wrong type
    what I'm missing here?

    BOOLEAN cannot be used in SQL:

    SQL> create or replace function bla
      2  return boolean
      3  as
      4  begin
      5   return true;
      6  end;
      7  /
    
    Function created.
    
    SQL> select bla from dual;
    select bla from dual
           *
    ERROR at line 1:
    ORA-06552: PL/SQL: Statement ignored
    ORA-06553: PLS-382: expression is of wrong type
    

    Only in PL/SQL.

  • PLS-00597: expression "v_record" in the list is wrong type

    Hi experts,

    I'm working on

    Oracle Database 10 g Enterprise Edition Release 10.2.0.3.0 - 64 bit

    I have 2 Sp allows to call SP1 and Sp2.

    SP1 now have an output of the Ref cursor. and I get this output to my SP2. Output slider Ref of SP1 have column 4.
    create or replace procedure sp2 (out_cur out sys_refcursor) is
    type record_typ is record(value_date     date,
                              name           varchar2(20),
                             category        varchar2(20),
                              amount         number);
    
    type tbl_typ is a table of record_typ;
    
    v_record      tbl_typ;
    out_cur1    sys_refcursor;
    
    begin
    
              Sp1(:out_cur1);
             loop
              fetch out_cur1 into v_record;
              exit when out_cur1%notfound;
             insert into tmp_tbl values(v_record.value_date, v_record.name, v_record.category, v_record.amount);
           end loop;
    
       open out_cur for
         select * from tmp_tbl;
    end;
    and I got the error PLS-00597: expression "v_record" in the list is wrong type
    Please suggest me where I am doing wrong.

    Thank you much in advance.
    Ritesh

    Hello

    Well you just put your type declaration in each stored procedure to refer to him...

    create table tmp_tbl
    (       value_date     date,
            name           varchar2(20),
            category        varchar2(20),
            amount         number
    )
    /
    
    CREATE OR REPLACE PROCEDURE  sp1
    (out_cur out sys_refcursor
    )
    IS
    
    begin
    
        OPEN out_cur FOR
        SELECT
            sysdate         value_date,
            'Bravid'        name,
            'Ape'           category,
            1               amount
        FROM
            dual;
    
    END;
    /
    
    CREATE OR REPLACE PROCEDURE sp2
    (out_cur out sys_refcursor
    )
    IS
        TYPE record_typ is record(value_date     date,
                              name           varchar2(20),
                             category        varchar2(20),
                              amount         number);
    
        v_record      record_typ;
        out_cur1    sys_refcursor;
    
    begin
    
             Sp1(out_cur1);
    
             loop
              fetch out_cur1 into v_record;
              exit when out_cur1%notfound;
             insert into tmp_tbl values(v_record.value_date, v_record.name, v_record.category, v_record.amount);
           end loop;
    
       open out_cur for
         select * from tmp_tbl;
    
    END;
    /
    

    HTH

    David

  • Message error "the preconfiguration file has the wrong type of preset."

    I try to import the Preset brushes for newborn photography.  They are. Irtemplate files. I'm going in in my cc in Lightroom Develop Module, then opening presets Panel and hover the cursor over the user Presets.  I right click and choose "import".  So I find the real. The Irtemplate file and then click Import.  What I get is the above error message «the presets file has the wrong type of preset.»  What I am doing wrong?

    Predefined live (Windows): C:\Users\User Name\AppData\Roaming\Adobe\Lightroom\Local of adjustment presets.

    Presets to develop 'Global' live in: C:\Users\User Name\AppData\Roaming\Adobe\Lightroom\Develop Presets.

    Find your presets in the "Lightroom" file folders (similar to above) tab Preferences dialog - Presets > [show Lightroom Presets folder]

    Manually copy & paste your .lrtemplate files to the appropriate folder and restart Lightroom.

    Note: The folder [develop Presets] can tolerate and allows subfolders, the folder [Local adjustment presets] cannot.

    If only in the folder [Local adjustment presets] .lrtemplate files.

  • Save my pictures worked with adobe photoshop 9. keeps telling me unable to open, the wrong type of file and it says it's a "file 2" - How can I change this please

    How can I change the type of file it becomes an adobe raf or raw file, it worked with the camera but the pc is save them as files of type 2 and photoshop 9 does not open these.  I have a fuji s2 pro if it's any help, thank you.

    http://www.Adobe.com/support/downloads/product.jsp?product=106&platform=Windows&promoid=HTENB

    You can use the free DNG Converter from Adobe, download the file above.

    DNG is digital negitive and it's open in Camera Raw Editor.

    This converter supports more than 500 different types of camera.

    If someone sends you a raw file and your Raw editor does not support this type of camera, you use the converter.

    Once converted, you can open it.

    http://helpx.Adobe.com/Creative-Suite/KB/camera-raw-plug-supported-cameras.html

    The list above shows FinePix S2 Pro, RAF file type,

    A plug-in version Camera Raw minimum required 1.0

    http://helpx.Adobe.com/x-productkb/global/camera-raw-compatible-applications.html

    The list above shows Photoshop Elements 9 comes with the Camera Raw plug-in version ... 6.1

    Compatible with Camera Raw-plug-in, thanks to the version... 6.5

    http://helpx.Adobe.com/cfusion/search/index.cfm?loc=en_US&term=elements%209%20raw%20update

    The list above shows that there is an update to Camera Raw in Photoshop Elements 9... 6.3 or 6.5... 6.5 it is better.

    It also shows an update for first items 6.4.1 9 If you who also have.

    You can also get updates through the app.

    However you do not have these updates now since your comes with the version is 6.1 and the

    Plug in Camera Raw minimum required version is 1.0

    OK... so it shows your camera has not been defined to take RAW images or you downloaded the wrong file in Photoshop.

    Most cameras that take RAW images have a framework for Raw images only or adjustment to take RAW images and regular at the same time.

    Test your camera again files for RAF types and if you do not check your settings of the camera again.

    You can not save or convert a regular image as a type RAW or DNG file.

    http://forums.Adobe.com/index.jspa?promoid=JOPCT

    I am a member of the Adobe forums, help is very good, the link above will take you there.

    I hope that helps.

  • When you try to activate Windows Vista with the key that came with it, I get an error that the key is of the wrong type for activation.

    activation code

    I had a hard drive crash and installed the new hard drive. Installed my copy of vista that came with computer and when I tried to activate the software with the code provided with this windows says it's the wrong activation for this software.

    1. start your own, new thread in the following Microsoft Genuine Advantage forum and repost your MGA journal, and a clear description of your problem:

    http://social.Microsoft.com/forums/en-us/genuinevista/threads>

    2 Troubleshooting specialist will analyze the data and recommend an appropriate solution.

    Please run the Microsoft Genuine Diagnostics Tool then copy and paste the results into an answer here for further analysis:

    http://go.Microsoft.com/fwlink/?LinkId=52012>

    3. try the listed here appropriate phone number: phone numbers Microsoft Activation centers worldwide:

    http://www.Microsoft.com/licensing/existing-customers/activation-centers.aspx>

    UTC/GMT is 21:19 Saturday, may 12, 2012

  • Get the number of the wrong Type on the registration Site

    I have a toshiba satalite 440cdx, but when I enter the serial number, it is reconised as one: toshiba satalite 440 pro. can someone help me how to fix this. because I don't know if the drivers ect are working now.

    Hello, Denis

    As much as I know Satellite 440cdx doesn t exist, just Satellite Pro. If you want you can also check Toshiba download under http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp?service=EU page.

    Under product type go to the archives. You will see that your unit is listed under Satellite Pro option.

    Good bye

  • Failed to open AdobeStock_56567161.ai because it's the wrong type of file

    Hello

    I'm on a PC w/Windows 10, Photoshop elements running 11. I recently downloaded Ten files .ai Adobe stock.

    With four of the files, I received a PDF import window, then a window of file of the rasterization, then Photoshop Elements displays the image.

    With the other six files I get "Failed to open AdobeStock_59291716.ai because it's the incorrect file type."

    I cleared my cache history and internet browser. I used Google Chrome and Microsoft Edge to download files. One of the files that I was not able to download a second time-, I learned "Licensing for this image are no longer available." All nine other allowed me to download twice.

    Has anyone else had this problem with some files being accessible and not others?

    P.S. I tried to watch the Intro to the use of Adobe Stock (without libraries CC) 5 min. but it took me to the link creative cloud.

    Thank you for any help with this.

    Hello Ann,.

    . HAVE the files require Adobe Illustrator to open because they are vector files.

    I think that you have downloaded and licensed to the incorrect file format.

    You must allow the jpeg images you can use in Adobe Photoshop Elements.

    Please refer to the below document.

    With the help of Adobe Stock

    Kind regards

    Gerard

  • ORA-01790 expression must have the same type of data, matching expression

    SELECT *  from award_test
            UNPIVOT(VAL for operator in(                                                                                                                                                                                                        
    AWARD_NAME,                                                                                                                                                                                                               
    TOTAL_PROCEEDS,                                                                                                                                                                                                              
    EARNING_PROCS ,                                                                                                                                                                                                               
    TOT_PROCS_EARNINGS ,                                                                                                                                                                                                            
    GROSS_PROCS    ,                                                                                                                                                                                                                
    PROC_REF_DEF_ESCR ,                                                                                                                                                                                                         
    OTH_UNSP_PROCS ,                                                                                                                                                                                                               
    ISSUANCE_COST ,                                                                                                                                                                                                             
    WORK_CAP_EXP ))
            PIVOT(max(VAL) for award_number in  ('XIAAE' as "XIAAE",'XIBNG' as "'XIBNG"))
    Expected results
    operator   XIAAE     XIBNG     
    AWARD_NAME ab          cd                                                                                                                                                                                    
    TOTAL_PROCEEDS   0     1                                                                                                                                                                                              
    EARNING_PROCS                                                                                                                                                                                                            
    TOT_PROCS_EARNINGS                                                                                                                                                                                                          
    GROSS_PROCS                                                                                                                                                                                                                  
    PROC_REF_DEF_ESCR                                                                                                                                                                                                         
    OTH_UNSP_PROCS                                                                                                                                                                                                               
    ISSUANCE_COST                                                                                                                                                                                                            
    WORK_CAP_EXP
    the data stored will be populated as columns

    Hello

    Is this the same probllem like
    Re: ORA-56901: no constant expression is not allowed to pivot. UNPIVOT values
    ?

    You do not post again and again the same problem. One of these threads mark as "Answered" right away; and only continue in the other. In this way, you will have only to look in one place to find answers.
    I suggest marking it as 'Response', given that the other has a few examples of data.

  • deskjet1512: 1512 deskjet cartridges seem to be the wrong type and can not install them

    I watched the video & the instructions step by step but my cartridges are different from those shown.  The diagram shows the contacts on the longer side up while the contacts of my cartridges that came with it & the numbers correspond) have contacts on the side short & above.  How can I know if it is good or not?  They will correspond to only with the side short in (with contacts), but will not lock in place.

    Hi @dawna4d55,

    Welcome to the Forums of HP Support!

    I understand that you have problems of an ink cartridge installation in the all-in-one printer HP Deskjet 1512. I will definitely do my best to help you.

    What is the product number on the cartridge that you are having problems with?

    Please check that you have one of the following ink cartridges.

    Data sheet

    Black HP 61 ink cartridge (~ 190 pages)

    Ink cartridge HP 61 three-color (~ 165 pages)

    HP 61XL black ink cartridge (~ 480 pages)

    Ink cartridge HP 61XL three colors (~ 330 pages)

    Specifications of printer for printer HP Deskjet 1510 and Deskjet Ink Advantage 1510 All - in - One Printer Series

Maybe you are looking for

  • Repair of 2013 MBP and Pick Up

    Hi all. I have a MBP 2013 with start-stop does not pad and keyboard so plan to send it to repair. Q1: How long does take to fix it? Q2: Can I drop at 1 store and then pick up the other?

  • Installation problems drivers MEI for HP Compaq 6000 Pro MT

    The OS is Windows 7 x 64. An unknown device in device of systems management is registered as VEN_8086 DEV_3048.  I think it fits with the Management Engine Interface drivers.  I tried to install the HECI drivers on the site of HP (SP45411).  It insta

  • BBM BBM stuck on the transfer of your data from bbm surveys

    Hoping someone has a solution. My jump of BB's stuck on the transfer of your data from bbm surveys. I tried everything I know how to deal with a BB, which is not much. And everytime I open BBM it goes to the spinning wheel and glued on the transfer o

  • Reset the password of the homegroup?

    I just did a few upgrades (no change to HDs), C: formatted, installed Win 7 Home Premium, but ignored (or so I thought) homegroup Setup during the installation of Win 7.  I have 4 HD, no RAID currently.  I went to setup Homegroup and I "Tell me more

  • Disable the file of the bar - descriptor.xml automatically update

    Hello My application is dependent on an engine.so file.  the bar - decripptor.xml contains the following lines: armle-v7 MyTest lib/libengine.so.1 The problem is, when I clean and engine rebuilding in the IDE, the following line will automatically be