No passing Denorm type

Hello

On the one hand of the custom section, we want to destandardize, denormalization type is set to None.

Denorm documentation once said that it is set to None. It cannot be changed. Is anyway we can do default denorm type directmap.

I am not able to destandardize this custom section. Plz help me how can I change.

Thank you

Mani

You must update the table of database DENORM_CS_TABLE and set the DENORM_APPROACH value to "directmap" for the custom section. Be sure to set the status value to a zero, so that you can configure in the user interface.

You can find the pkid in your custom section using the custom Section number, for example:

Select a.pkid in the commonEASectionTemplate where a.Num = '1001049'

This PKID value represents the column FKSECTIONTEMPLATE in DENORM_CS_TABLE

Tags: Oracle Applications

Similar Questions

  • How to pass the type of procedure

    Hi all

    I have a package: xxabc

    There is a type

    type qty_compl_t is (record

    action varchar2 (30),

    production_order varchar2 (30),

    number of qty_completed

    number of operation_code,

    production_card varchar2 (30),

    Maj varchar2 (10),

    number of rejects,

    resource_code varchar (30),

    number of time_usage

    VARCHAR2 (200) of the operator.

    date of reg_date,

    crate_id varchar2 (200)

    );

    type qty_com_table_t is table of the directory index qty_compl_t;

    in the package body

    procedure qtycom (p_prod_no in varchar2, p_qty_com_table in qty_com_table_t)

    How can we move from the p_qty_com_table to this procedure?

    with regard to:

    Maybe this will help you?

    CLEARS THE SCREEN

    SET SERVEROUTPUT UNLIMITED SIZE

    CREATE or REPLACE PACKAGE xxabc AS

    TYPE qty_compl_t IS RECORD)

    action VARCHAR2 (30)

    , production_order VARCHAR2 (30)

    qty_completed NUMBER

    operation_code NUMBER

    , production_card VARCHAR2 (30)

    , pass VARCHAR2 (10)

    Number of scrap

    , resource_code varchar (30)

    time_usage NUMBER

    , operator VARCHAR2 (200)

    reg_date DATE

    (, crate_id VARCHAR2 (200));

    TYPE qty_com_table_t IS TABLE OF qty_compl_t INDEX DIRECTORY.

    PROCEDURE qtycom

    (

    p_prod_no in VARCHAR2

    p_qty_com_table IN qty_com_table_t

    );

    END;

    /

    Sho err

    CREATE or REPLACE PACKAGE BODY xxabc AS

    PROCEDURE qtycom

    (

    p_prod_no in VARCHAR2

    p_qty_com_table IN qty_com_table_t

    ) IS

    BEGIN

    dbms_output.put_line ('p_prod_no:' | p_prod_no);

    dbms_output.put_line ('p_qty_com_table.count:' | p_qty_com_table.count);

    NULL;

    END;

    END;

    /

    Sho err

    DECLARE

    l_tab xxabc.qty_com_table_t;

    BEGIN

    l_tab (1) .Act: = "Hello";

    l_tab (2) .Act: = "world";

    xxabc.qtycom ('value', l_tab);

    END;

    /

  • Pass userdefined types / % rowtype from java to pl/sql

    Hello!
    I would like to know if I'm right with my 'research ':
    I use the following configuration on my test system:
    TimesTen version: 11.2.1.5 (32-bit) on Windows XP (pl/sql enabled) which I connect (direct - shared memory) with the jdbc TimesTen (ttjdbc6.jar) driver.

    It is not possible to pass + % rowtype + or a user defined type (TYPE XXX "is the TABLE of" / "is RECORD"...) as IN-parameter of a java application to a pl/sql function/procedure in TimesTen. To aid in the manner described in other Oracle ( StructDescriptor.createDescriptor or ArrayDescriptor.createDescriptor ), I always get the error:
    com.timesten.jdbc.JdbcOdbcConnection cannot be cast to oracle.jdbc.OracleConnection - which is what I expected...

    Native types, such as numbers and strings of fine work (using for example + .setDouble).


    Am I missing something? Is there a workaround or if she is just not supported?

    Thanks in advance!

    See you soon,.
    Thilo

    Edited by: user11933944 the 07.05.2010 08:01

    Edited by: user11933944 the 07.05.2010 08:01

    This is currently not supported as TimesTen itself does not have any support rowtypes, or any other type of user types defined / composite. You can use these types of PL/SQL procedures and functions, but you can not use them outside here.

    Chris

  • Pass complex Types with chains to stored procedures: become null

    Hello

    I would like to pass an array of strings or a type of custom to a PL/SQL stored procedure object, you use the JDBC thin driver. It is possible if the tables or object types contain integers. With strings (resp. varchar2) However, I encountered a repetitive problem, no matter what I tried: the varchar2 field seems to be null in the stored procedure.

    There is something special with the passage of short strings?

    I tested with Oracle version server 10.2.0.3, 10.2.0.4 and 11.1.0.7.0.
    JDBC Thin drivers used are ojdbc14.jar is of 10.2.0.4 and ojdbc5.jar 11.1.0.7.0.
    I use Java 5.

    Tested approaches include:
    -oracle.sql.StructDescriptor, preparedStatement.setSTRUCT, or setStruct
    -Pass a Java type that implements the SQLData with preparedStatement.setObject
    -Pass a Java type that implements ORAData and ORADataFactory

    I tested it with an example of metalink (Doc ID 458572.1), and as I said, this example shows the same problem: strings passed appear as null - in three versions of Oracle that I tested. The example has been changed only with respect to the scheme name.
    ()Doc ID 458572.1 refers to a bug that shows the behavior I describe here, but this bug should be fixed in 10.2.0.4 and 11).

    I can paste some of my source code, but I feel that the solution could be found elsewhere, such as problems, version mismatch, the character set...

    Any ideas on the specialties with passage of strings in types of objects or paintings? My strings are null. (For tables, I get the right amount of NULL values).
    I even checked that I can pass a string argument simple to a procedure that worked indeed.

    Kind regards
    Carsten

    There is something special with the passage of short strings?

    Yes, this is a common problem. You must include orai18n.jar classpath. BTW it is documented here and here.

  • If it is possible to pass the variable of type table in sceduler.

    Hello

    need to schedule a task to call a procedure but procedure a array as a parameter.

    Let me know we can pass the type of object as a parameter in the Scheduler.

    procedure definition: procedure (number, varchar2, ch. pakage.table_type b)

    I don't think that you can do with a PL/SQL type in a package, but you can do it with a SQL type, as shown below.

    Scott@orcl12c > test_tab CREATE TABLE

    2 (col1 NUMBER,

    VARCHAR2 (30) 3 col2.

    col3 4 VARCHAR2 (30))

    5.

    Table created.

    Scott@orcl12c > CREATE or REPLACE TYPE table_type AS TABLE OF VARCHAR2 (30);

    2.

    Type of creation.

    Scott@orcl12c > test_proc CREATE OR REPLACE PROCEDURE

    2 (a NUMBER;

    3B VARCHAR2,

    4 c. table_type)

    5 AS

    6 BEGIN

    7 BECAUSE I have 1... c.COUNT LOOP

    8 INSERT INTO test_tab (col1, col2, col3) VALUES (a, b, c (i));

    9 END OF THE LOOP;

    10 END test_proc;

    11.

    Created procedure.

    Scott@orcl12c > SHOW ERRORS

    No errors.

    Scott@orcl12c > START

    2 DBMS_SCHEDULER. CREATE_JOB

    3 (job_name-online 'test_job',

    job_type 4-online "procedure_stockee."

    5 job_action-online 'test_proc. "

    6 number_of_arguments-online 3);

    7 DBMS_SCHEDULER. SET_JOB_ARGUMENT_VALUE

    8 (job_name-online 'test_job',

    argument_position 9-online 1.

    argument_value 10-10 online);

    11 DBMS_SCHEDULER. SET_JOB_ARGUMENT_VALUE

    12 (job_name-online 'test_job',

    13 argument_position-online 2

    14 argument_value-online 'test');

    15 DBMS_SCHEDULER. SET_JOB_ANYDATA_VALUE

    16 ("test_job", 3, sys.anydata.convertCollection (table_type ("Oracle", "database")));

    17 DBMS_SCHEDULER. SELECT ("test_job");

    18 END;

    19.

    PL/SQL procedure successfully completed.

    Scott@orcl12c > DBMS_LOCK EXEC. SLEEP (5)

    PL/SQL procedure successfully completed.

    Scott@orcl12c > SELECT * FROM test_tab

    2.

    COL1 COL2 COL3

    ---------- ------------------------------ ------------------------------

    10 test Oracle

    test 10 database

    2 selected lines.

  • Pass data from C++ to QML on the run time

    Hello

    does anyone know how to pass the CPP to QML data on the time of execution, I'm not able at the end of an appropriately

    Initially I tried to do it by setting up of property

    Here is example code.

    class MyClass: {public QObject
    Q_OBJECT

    Q_PROPERTY (bool navValue READ navValue WRITE setNavValue NOTIFY navValueChanged)

    Q_SIGNALS:

    bool navValueChanged();

    private:

    void setNavValue (const bool & navValue);
    bool navValue() const;

    bool m_navValue;

    bool MyClass::setNavValue (const bool & navValue) {}

    If (m_navValue is navValue)
    return;

    m_navValue = navValue;

    issue of navValueChanged();
    }

    bool MyClass {}::navValue()
    Return m_navValue;
    }

    the 'm_navValue' goes to 'true' and 'false', according to the logic of the social, and on what the user selects.

    Now I want this value to go to QML and update my back and next button if this value is true I'll not see otherwise.

    If anyone can help in pointing me in the right direction?

    Thank you

    Hello! QML simply do something like this:

    Button {
      visible: _myClass.navValue
    }
    

    where _myClass is the name of the exported QML class instance. The field is updated automatically when the signal is emitted.

    BTW, it is preferable to pass primitive types by value, it is less effective to pass by reference / pointer:

    void setNavValue (Boolean navValue);

  • How to pass the Record of entry to the dynamic SQL Code

    Hi all

    I am trying to run under Oracle applications API on the remote database using DB Link. I try to run using dynamic SQL. Part of the code is given below.

    DECLARE

    l_batch_info_rec wsh_picking_batches_pub.batch_info_rec;

    l_rule_id NUMBER;

    l_rule_name VARCHAR2 (240);

    l_batch_prefix VARCHAR2 (240);

    BEGIN

    l_batch_info_rec.document_set_id: = v_document_set_id;

    l_batch_info_rec.order_type_id: = v_order_type_id;

    l_batch_info_rec. Default_Stage_Subinventory: = v_default_stage_subinventory;

    l_batch_info_rec.pick_grouping_rule_id: = v_pick_grouping_rule_id;

    l_batch_info_rec.pick_sequence_rule_id: = v_pick_sequence_rule_id;

    l_batch_info_rec.autopack_level: = v_autopack_level;

    l_batch_info_rec.autopack_flag: = v_autopack_flag;

    l_batch_info_rec.ac_delivery_criteria: = v_ac_delivery_criteria;

    l_batch_info_rec.backorders_only_flag: = v_backorders_only_flag;

    l_batch_info_rec.existing_rsvs_only_flag: = v_existing_rsvs_only_flag;

    l_batch_info_rec.customer_id: = v_customer_id;

    l_batch_info_rec.order_header_id: = v_header_id;

    l_batch_info_rec.from_scheduled_ship_date: = NULL;

    l_batch_info_rec.organization_id: = v_organization_id;

    l_batch_info_rec.include_planned_lines: = v_include_planned_lines;

    l_batch_info_rec.autocreate_delivery_flag: = v_autocreate_deliveries_flag;

    l_batch_info_rec.autodetail_pr_flag: = v_autodetail_pr_flag;

    l_batch_info_rec.allocation_method: = 'I ';

    l_batch_info_rec.pick_from_locator_id: = NULL;

    l_batch_info_rec.auto_pick_confirm_flag: = 'n';         -The value manually to run Transact order

    l_batch_info_rec.autopack_flag: = 'n';         -Manually configure to perform the manual packaging

    l_rule_id: = NULL;

    l_rule_name: = NULL;

    l_batch_prefix: = NULL;

    v_sqlstmt1: = ' START

    wsh_picking_batches_pub.create_batch' | g_db_link | "(1.0,

    fnd_api.g_true,

    fnd_api.g_true,

    : l_return_status,.

    : l_msg_count,.

    : l_msg_data,.

    : l_rule_id,.

    : l_rule_name,.

    : l_batch_info_rec,.

    : l_batch_prefix,.

    : p_new_batch_id

    );

    END;';

    --

    EXECUTE IMMEDIATE V_sqlstmt1

    With the HELP OF THE l_return_status,.

    ON l_msg_count,.

    ON l_msg_data,.

    BY l_rule_id,

    BY l_rule_name,

    BY l_batch_info_rec,

    BY l_batch_prefix,

    OUT p_new_batch_id;

    --

    END;

    After you run this script, I get below error "PLS-00457: expressions must be SQL types ' for variable l_batch_info_rec which is of type record. can someone please guide me how can I pass variable type dynamic SQL record.

    Thank you

    Priyanka

    Food for thought:

    On remote db:

    SQL > create or replace
    package 2 pkg
    3 is
    4 type r_type is (record
    Number 5,
    6 name varchar2 (10)
    7                            );
    (p) 8 procedure
    9 p_rec in r_type,
    10 p_out out varchar2
    11                  );
    12 end;
    13.

    Package created.

    SQL > create or replace
    package 2 body pkg
    3 is
    4 procedure p)
    5 p_rec in r_type,
    6 p_out out varchar2
    7                  )
    8 is
    9 start
    10 p_out: = "ID = ' |" p_rec.ID | 'Name =' | p_rec. Name;
    11 end;
    12 end;
    13.

    Package body created.

    SQL >

    On local db:

    SQL > set serveroutput on
    SQL > declare
    v_rec 2 pkg.r_type@pdb1sol12;
    3 v_out varchar2 (50);
    4 start
    v_rec.ID 5: = 1;
    6 v_rec.name: = 'XXX ';
    7 immediate execution"
    8                        begin
    9 pkg.p@pdb1sol12 (: 1,: 2);
    10                        end;'
    11 using v_rec,
    12 v_out;
    13 dbms_output.put_line (v_out);
    14 end;
    15.
    using v_rec;
    *
    ERROR on line 11:
    ORA-06550: line 11, column 20:
    PLS-00457: expressions must be SQL types
    ORA-06550: line 7, column 5:
    PL/SQL: Statement ignored

    SQL > declare
    2 number of v_id: = 1;
    3 v_name varchar2 (10): = 'XXX ';
    4 v_out varchar2 (50);
    5. start
    6 immediate execution"
    7 report
    8 v_rec pkg.r_type@pdb1sol12.
    9                        begin
    10                            v_rec.id  := :1;
    11 v_rec.name: =: 2;
    12 pkg.p@pdb1sol12 (v_rec,: 3);
    13                        end;'
    14 using v_id,
    15 in v_name,
    16 v_out;
    17 dbms_output.put_line (v_out);
    18 end;
    19.
    ID = 1 name = XXX

    PL/SQL procedure successfully completed.

    SQL >

    SY.

  • The input parameter to pass between 2 maybe bounded task flows a whole list of table or table?

    Hello experts, Im a beginner to ADF dev, currently using Jdev / ADF 12 c.

    I need to move from a table or list of tables of the values of A bounded task flows to delimited the workflow B. How to do in this case, the use of an input parameter?

    I mentioned the following links which have had in the string values as an input parameter, and replaced related fields accordingly with the data type of table list, but it did not work:

    http://docs.Oracle.com/CD/E21764_01/Web.1111/b31974/taskflows_parameters.htm#ADFFD1689

    https://technology.AMIS.nl/2014/01/21/taskflow-InputParameters-explained/

    Oracle JDeveloper 12 c (12.1.2) tutorials - working with stubborn workflows, regions and routers

    The requirement of the business is such that I need 2 different workflow, where the workflow B must be in a popup with train component.

    I thought of using just a stream unique task bounded with pop-up windows on the pop-up windows... which is less elegant... y at - it smoother workaround?


    Thank you very much.

    Even though I know this isn't answering your question, let me stress the design element: in the ADF, view objects are intended to replace beans support / managed in ADF in detention is. It is one of the worst confusion with ADF + ADF BC, where people still use accompanying beans on the scope of the session/view/task flow to maintain user state. Instead of this, you must use display objects, the objects in view transition in case the data does not come directly form DB.

    To finally answer your question: you can pass any type of objects for workflow settings, just make your parameter of type java.lang.Object. Then you can convert it in turn, in the second task flow.

  • Passing a value to the URL of a CFC

    Hello.

    I'm not very familiar with coldfusion CFCS but I could follow a few examples that allow me to perform selects related using cfc code.

    Recently, I came across a problem and do not find the answer using Google, so I thought I would ask here.

    I have a form and the URL of this form contains a variable that I need to go to the SWC but I don't know how.

    Here's the URL... myform.cfm? type = normal

    So on this page myform.cfm I a call to a cfc like this < cfselect multiple = "" name = 'test' bind = "SWC:test.test_func()" bindonload = "true" / > "

    In the CFC, I need to be able to modify the query in the test_func based on the variable named 'type' in the form page URL string.

    How can I pass this type = normal in the cfc with the link to the cfselect?

    Thank you

    OK, got it.  "In shape, I've added a hidden field named field_val with value =" ' #URL.type # ', then past this value form like this bind = "cfc:test.test_func({field_val}).

    Then in the cfc, I put an argument for find field_val and it works.

    Probably not the most elegant, but its working for now.

  • Can I make a class as a function parameter type?

    Thus, AS2, I had a function that would create a different movieclips based on variables, that I went in (because attachMovie() took the name of the movieclip as a string - for example attachMovie("man",...) or attachMovie ('car'...)).

    In AS3, it did more correctly now, with a new var = Man() mc or new Car().

    Is there a way for me to pass the type of class (man or car) as a function parameter to a function:

    for example

    public void MakeMovieClip(classType:<something>):MovieClip {}
    return new classType();
    }

    or do I have to do basically a block giant switch/case that switches from channels (which is what I currently do)?


    Thank you

    --
    Ken

    If you have a library item with the name of the man class, use the following code to add a movieclip Man to the scene.

    Learn more about this here.

  • The upgrade

    I have a pc hp laptop envy m6-1125dx, with a 2.5 ghz processor and 8 GB of ram. I want to upgrade my processor at 3 ghz, but dunno if I can pass this type of computer.  And if I can, please include a link to a good 3 ghz processor. Thank you!

    No processor at 3 ghz is compatible. The closest is 2.9 ghz here:

    Intel Quad Core i7 - 3520 M 2.90 GHz processor (SC turbo up to 3,60 GHz, FSB 1600 MHz, memory cache L3 4, 0 MB, 35 W)

    Ask your friend if he has done this before many portable attempt upgraded the processor go bad, I think. And it's not cheap:

    http://www.eBay.com/ITM/Qty-1x-Intel-es-CPU-I7-3520M-Dual-cores-2-9GHz-PGA988-for-laptop-socket-G2-QC4L-/131323561977?PT=LH_DefaultDomain_0 & Hash = item1e937e87f9

    If it's 'the Answer' please click on 'Accept as Solution' to help others find it.

  • Animation

    Hello

    How I did this in labview

    I want to move an object from one end to the other end and disappear "as VAN move from one to the other end.

    Or by moving the fan etc.

    How this type of animation are created in labview and how it will be monitored

    can any body guide me with example please relpy as soon as possible

    his urgentplease v

    I have a duty in which I have to pass this type of object withinn a specific time intervals

    but I do not work with animations in labview so far...

    again I ask you please answer quickly

    Thanks in advance

    Oh thank God

    I've had

    It was so simple using adoption Pict-Ring

    kind thanks to you all

  • Generate the analog waveform based on the data file

    I want to create an analog voltage output that follows I have a data file (excel, csv, text (which is easy)).  The data file creates a waveform with equal time between steps (dT =.0034 sec).  After the output through all the data points, I want it repeat indefinitely.

    What is the best way to create the waveform of a data file?

    To create a type of waveform data, calculate the dt by subtracting two values in column 1 and get the array of Y from column 2. If you save the file as a comma separated or tab text file, you can then use the spreadsheet file read. After obtaining a 2D array, you would use the index table and the subset of table functions.

    Assuming you use a capture card data OR for the output signal, you can pass a type of waveform data to a writing DAQmx and set for the generation of types.

  • Static VI reference

    I dynamically call a VI so I used the call by reference and dragged the inside VI, the question is if I use the reference open VI or not because I fell twice, handmade VI using the reference open VI the call by reference and the path of the VI of wiring and make reference to the second time I forgot the open VI and I just used the call by reference and this has worked exactly like the first time.

    The other question is what happens if I close the VI reference once I open the front panel and run the VI with a property node

    Good questions. The way you have it now, in the excerpts you provided, Admin is responsible at the same time that principal is responsible. Aren't you load dynamically. You call it dynamically in the sense that you use Server VI to do as opposed to a Subvi. In other words, Admin comes in memory once hand comes in memory. Admin does not start running when the hand starts to run if.

    The only difference between the way you did and with the help of a Subvi, it is that with a Subvi, Admin would be booked right hand began to run. The way you, Admin is not reserved or running until it is called, but it is loaded into memory.

    The reason open VI reference is not do anything for you right now, is that the reference is already open. The reason why you'd call the Open VI reference is to get a reference that doesn't already, based on a file path. But since you have a static reference of VI, you already have the open reference, so open VI reference is not give you what you have not already.

    If you want to use the reference node call, you must have a wired type at the entrance of laughing type specifier reference open VI. A type specifier is a special type of reference VI which is only concerned with connector part information, but not of particular witih VI. All VI with the same connector pane could be open in this way. For example, you can use Open VI refers to get a reference pointing to a particular VI, VI, given by the path of the file.

    If I want to use the call by reference that is useful thread reference strictly typed to open VI reference but it is not necessary, is it? because I wire the strictly-typed reference to the call by reference and it worked fine.

    There are two ways to call a VI dynamically. The first is how you did it-using the Run of VI. This does not require a strictly typed VI reference. The second main way is by using the call launched by the reference node. The appeal made by the reference node is different because it uses the information in the connector pane to pass arguments in and out of the VI. To do this, you must have a strictly typed VI reference. It should not be a static reference if - the output of the reference open VI is strictly typed If you pass a type as an input specifier.

    You might think a reference VI containing any or all of the following information: the VI, part of connector info. Therefore,.

    Weakly-Typed reference VI - path of the VI

    Type specifier - connector component Info

    Strictly typed reference VI - path and connector Info pane

    I hope this helps!

  • Download the photo with overlays and regions

    Hello

    I have a problem.

    I work with the Vision Development Module and c#.

    I want to save my picture as a .bmp with my overlays and regions.

    I tried what examples I found here on the forums, but they do not work.

    in my table are a few overlays an intern program and parts hand-drawn.

    I use this method:

    Viewier.Image.Overlays.Item (1). Merge (Viewer.palette);

    but I'm here this error:

    "Attempt read or write protected memory. It is often an indication that other memory has been corrupted. »

    hope sb can help me,

    Kumi

    Kumi-

    If you omit an optional parameter, you can pass System.Type.Missing to it.

    Greg Stoll

    Vision R & D

    National Instruments

Maybe you are looking for

  • Host on the network is busy

    I have a whole new Photosmart D110. Wireless seems to install properly, printer is visible on the network, install from the disk of the factory driver. I'm on a MacBook OSX 10.5.8 I can see the printer through the web, and utlity HP pages toner level

  • analyzes a document to my PC in read/write format

    How to scan a document from my printer to my PC in read/write format?

  • Cannot save the T61p XP/SP3 - Power Manager problems, programs, limited systems available

    Hi all - when I got this - Rockin '-mobile initially I could put my own power plans without problem.  Now it won't save my new powerschemes.  I try to create one, to complete the last step, and then the power mode is not in the drop-down list.  I rea

  • External drive is not accessible

    Hello I have an external hard drive that I have it plugged into the PS3 and it was not legible for her so I plugged the PC and its happened. Please tell me the solution if you know. File system: FAT32 Thanks for your help.

  • KeyPress pada blackberry

    Hai all, Please help me... first I want an aplication to develop for blackberry... but I don't know how I have to first of all for the throw, saya juga kesulitan dalam menggunakan program pada blackberry that have... saya ingin menanyakan bagaimana s