By the way the record as a parameter type to function

Hi all

I tried the below the example query for the record type as IN parameter works and I confused when calling the function.

Please find the code below

create or replace package pkg_rec is

type t_rec record is (ename, sal emp.sal%type emp.ename%type);

end;

create or replace function get_emp_sal (emprec pkg_rec.t_rec)

number is back

v_empno emp.empno%type;

Start

Select empno in v_empno

WCP

where ename = emprec.ename and sal = emprec.sal;

Return v_empno;

end;

-Block to call the function

declare

v_rec pkg_rec.t_rec;

v_empno emp.empno%type;

Start

v_rec. Ename: = 'SCOTT ';

v_rec. SAL: = 3000;

v_empno: = get_emp_det (v_rec); -Get the error "Expression is of the wrong type."

DBMS_OUTPUT. Put_line (' values ' | v_empno);

end;

You can please me to pass the parameter to function; referring

Thank you very much.

Is it typo?

Your function is called get_emp_sal, but you call get_emp_det.

Concerning

Marcus

Tags: Database

Similar Questions

  • I want to save my documents like .pdf or .doc, but I am only able to save in jpeg or tiff. What can I do to change the record as a parameter?

    I have a Lenovo laptop and a printer HP Office Jet Pro 8600.

    You analyze these documents in the HP Jet Pro? Read their manual or ask their support staff. You do not save documents scanned as a .doc, btw.

  • I can't find a way to sort the records themselves in alphabetical order by name. I speak not in a display mode, but in how they appear when I click on the tab my favorites. Can someone explain to me how to do this.

    I have a lot of issues of brand book with websites contained in each folder. I'm able to sort sites within each folder alphabetically by name, but I can't find a way to sort the records themselves in alphabetical order by name. I speak not in a display mode, but in how they appear when I click on the tab my favorites. Can someone explain to me how to do other than manually by dragging because it is extremely difficult for me, due to the fact that I am with limited movement tetraplegic hand dexterity

    Folders of bookmarks you created are in the folder Menu bookmarks. "Sort" this folder.

    http://KB.mozillazine.org/Sorting_bookmarks_alphabetically

  • What is the best way to record movies on PC and change the names of video files?

    Names of files dvr - ms MCE?

    I use Win XP, SP3, MCE 2005 and I want to change the file name of some of the videos saved on my computer.  Currently I use MCE to record movies at home on my computer and then burn them to DVD.  I plugged the VCR/camcorder for video on computer TV card and MCE set to record 1 channel at say 20:00 and turn my VCR/camcorder to play at this time.  MCE records the film as if it were a recorded TV show.  A few questions:

    Is there a better way to do it?  The home movies are on different formats - Betamax, VHS, camcorder Sony 8 and mini DVD.

    The file is saved with descriptive as - news channel 1, channel information (Direct TV channel label), 20:00, 2 h,-where is this kind of things saved info and I can change it?  If I can change it, what format should I use?

    The video file is saved in C:\Documents and Settings\All Users\Shared Documents\Shared Video\... and the name of the file to this location seems to match the name of the actual file displayed in MCE - but if I want to change to say "Christmas" birthday 2005, can I do without corrupting the file?  What format constraints are there for the name of the file?

    Is there a better way to change the description and the name than just using windows and right-click on the file and selecting rename?

    And just to repeat the first question - is there a better way to record movies on the computer?

    Thank you

    Scott

    Hi Scott,.

    According to the research, the method you follow is the best way to record movies on computer.

    You will need to look for a program that helps you edit metadata.

    Note: Microsoft cannot guarantee that problems resulting from the use of third-party software can be resolved. Software using third party is at your own risk.

  • Tape recorder in XP was FAR superior to Vista. Is there a way to download the recorder XP?

    As I said in the title, I have just moved from XP to Vista and was shocked when I opened the tape... one of the MAIN features I use when organizing the music, or the creation of such... I would hum into the microphone, rearrange edit cut paste segments bit (slow, double speed, reverse, two tracks of layer to get a tone of duality...) until I have something that resembled what I wanted, then transpose into a song Editor...  Why did I use so much? He WAS free.

    Is it possible to download the OLD version of the tape recorder that was on XP?

    Hello Baereon,

    Thank you for posting.  I searched and found that the XP version of the recorder is not available for download at this time.  With regard to the way in which you can get a free version of the software that would have the same characteristics and ability, I would say that you use Bing.com or your search engine preferred to find XP sound recorder.  This should give your various feasible options.

    Please let me know if this helps you. Zack
    Engineer Microsoft Support answers visit our Microsoft answers feedback Forum and let us know what you think.

  • What woulld be the easiest way to record and save everything that is stored on the computer.

    I am a newbie and the computer is an hp with vista windoows. My question, what woulld be the easiest way to record and save everything that is stored on the computer. Thanks in advance

    I am a newbie and the computer is an hp with vista windoows. My question, what woulld be the easiest way to record and save everything that is stored on the computer. Thanks in advance

    You can read this article on the backup that I wrote: 'Return to top your computer regularly and reliable' to http://www.computorcompanion.com/LPMArticle.asp?ID=314

  • Best/Recommended way to record information in the Release version

    Hello

    I've searched around, but don't see any results on the issue yet. Then I would ask what is the best/recommended way to record Release version information?

    I use Momentics IDE 10.2. When I choose run or Debug, qDebug() & qWarning display information very well in the console of the IDE, but with "run" they don't show anything in the console. Tested on both Q10 & Simulator.

    Thank you

    Install your own messages QDebug Manager, do write to a file, for example newspapers newspaper. Then open a terminal on the device, navigate to the file and the type of your application:

    # tail -f logs/log
    

    to view the log file.

    Change your main.cpp along these lines:

    #include 
    
    static FILE * logFile;
    
    void logger(QtMsgType type, const char * msg)
    {
        Q_UNUSED(type);
        std::fprintf(logFile, "%s\n", msg);
        std::fflush(logFile);
    }
    
    Q_DECL_EXPORT int main(int argc, char **argv)
    {
        logFile = fopen("logs/log", "a");
        qInstallMsgHandler(logger);
        Application app(argc, argv);
    
        // Create the Application UI object, this is where the main.qml file
        // is loaded and the application scene is set.
        new ApplicationUI(&app);
    
        // Enter the application main event loop.
        return Application::exec();
    }
    

    Note: the file will be closed by the operating system, more messages are seen if you don't shut it down at the bottom of the hand. Why? because c is destorying local variables (app) at the end of the main, and who calls the string whole qt of parent-child destructor for your class of application as well.

  • Best way to record videos of the app to use in the AppStore

    I was wondering if anyone had any suggestions for the best way to record the promo video - what download you from the AppStore. Any suggestion is appreciated.

    You can run the application as a test movie inside Flash Pro and then use any screen recorder to record the action. Or, play the app on any device and reflector allows to record:

    Reflector 2 | Mirroring wireless & streaming for Android, iOS & Chromebooks

  • How to use the record type as a parameter IN PL/SQL procedure or package

    Hi people,

    I need help on the record as the OUT parameter type. I am able to get out a single line as a parameter, but not getting do not idea how to get a multi ranks as output parameter.

    I have the code that works very well for a single line. Please see CODE1.

    But when I try to get several lines, I'm failing to do. Please see the CODE2. I get the error of compilation as


    Error report:

    ORA-06550: line 11, column 35:

    PLS-00487: Invalid reference to the variable "P_NAME.

    ORA-06550: line 11, column 1:

    PL/SQL: Statement ignored

    06550 00000 - "line %s, column % s:\n%s".

    * Cause: Usually a PL/SQL compilation error.

    Any help or a sample execution of script would be really useful.

    Thanks in advance.

    YZ

    --------------------------CODE1------------------------------------------

    -------------------------Package Spec-------------------------------

    CREATE OR REPLACE

    PACKAGE xx_sample_pkg as

    --

    Xx_sample_table_rectype RECORD TYPE IS

    (p_name varchar2 (40))

    number of p_emp_id

    );

    PROCEDURE xx_sample_prc (xx_sample_rec1, OUT xx_sample_table_rectype);

    END xx_sample_pkg;

    ------------------------------Package Body------------------------

    create or replace

    PACKAGE xx_sample_pkg AS BODY

    --

    PROCEDURE xx_sample_prc (xx_sample_rec1 OUT xx_sample_table_rectype) IS

    BEGIN

    SELECT ename, empno

    IN xx_sample_rec1

    FROM scott.emp

    WHERE ename = 'SMITH ';.

    END xx_sample_prc;

    END xx_sample_pkg;

    -------------------------------------------Execute----------------------

    DECLARE

    l_rec_type xx_sample_pkg.xx_sample_table_rectype;

    BEGIN

    dbms_output.put_line ('xx_sample_prc appeal');

    xx_sample_pkg.xx_sample_prc (l_rec_type);

    dbms_output.put_line ('YZ' | l_rec_type.p_name |') '|| l_rec_type.p_emp_id);

    END;

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

    -------------------------CODE2-------------------------------------------

    -------------------------Package Spec-------------------------------

    CREATE OR REPLACE

    PACKAGE xx_sample_pkg as

    --

    Xx_sample_table_rectype RECORD TYPE IS

    (p_name varchar2 (40))

    number of p_emp_id

    );

    PROCEDURE xx_sample_prc (xx_sample_rec1, OUT xx_sample_table_rectype);

    END xx_sample_pkg;

    ------------------------------Package Body------------------------

    create or replace

    PACKAGE xx_sample_pkg AS BODY

    --

    PROCEDURE xx_sample_prc (xx_sample_rec1 OUT xx_sample_table_rectype) IS

    BEGIN

    SELECT ename, empno

    IN xx_sample_rec1

    FROM scott.emp;

    END xx_sample_prc;

    END xx_sample_pkg;

    -------------------------------------------Execute----------------------

    DECLARE

    l_rec_type xx_sample_pkg.xx_sample_table_rectype;

    BEGIN

    dbms_output.put_line ('xx_sample_prc appeal');

    xx_sample_pkg.xx_sample_prc (l_rec_type);

    for l_rec in 1.l_rec_type.p_name.count

    loop

    dbms_output.put_line ('YZ' | l_rec_type.p_name (l_rec) |) » '|| l_rec_type.p_emp_id (l_rec));

    end loop;

    end;

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

    bb8c573a-6ca3-4d7c-90ed-e55c2df67201 wrote:

    But now, my question would be why the record type could not be used? My understanding is missing some concept between use of type type array collection record vs. Please specify.

    Do not confuse the folder with the collection.

    SY.

  • What is the best way to filter the records displayed in a DataGrid?

    Hi all

    I have a DataGrid that I use to show the records to a user.  I want to give them a few boxes to filter the different criteria.  For example, "hide/show has fallen members', ' see life only members", etc..

    My first thought was to attach an event listener that fires each time that a checkbox is checked/unchecked.  In addition, there an ArrayCollection 'original' collection that contains all of the records.  Each time a checkbox is checked or unchecked, loop then on the 'original' ArrayCollection collection, creating a new collection ArrayCollection that has only the records you want, and then you bind the DataGrid to whom.

    What is the right way to go on this subject?

    -Josh

    Instead of creating a new collection of arraycollection, use the FilterFunction function on the original arraycollection collection.

    I have a simple component on the exchange of Flex that allows to filter out people based on text matching

    http://www.Adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&EXTID=1414018

    You should be able to copy the logic and apply it to the boxes.

    Thank you

    Vackar

  • Issue by the way CHIEF: ChefHost Chief Workflow parameter in vRealize Orchestrator API

    I have an environment with vRealize Orchestrator with CHIEF plugin installed. I want to call the API to initiate a workflow LEADER in vRealize Orchestrator.

    I want to call the workflow MANAGER Add New Role . The input parameters for this workflow are

    <input-parameters> 
         <parameter description="Chef Server" type="CHEF:ChefHost" name="host"/> 
         <parameter description="Name of new role" type="string" name="role"/> 
         <parameter description="(Optional) Description of new role" type="string" name="description"/> 
    </input-parameters>
    

    The format for sending the parameters of the form type="string" is

    In JSON

             

    {
         "value":{"string":{"value": "role name"}},
         "type": "string",
         "name": "role"
    }
    

    In XML

    <execution-context xmlns="http://www.vmware.com/vco">
      <parameters>
           <parameter name="role" type="string">
                <string>Role Name</string>
           </parameter>
      </parameters>
    </execution-context>

             

    The problem, I do face is with the parameter type="CHEF:ChefHost" . I can't get the correct syntax for the shipment of type = "CHIEF: ChefHost '. During the test with the factor, I always get a 400 error with descriptionThe request sent by the client was syntactically incorrect.

    Is there a document that shows how to create a CHEF:ChefHost type?

    PS: I asked this question in http://stackoverflow.com/questions/37405901/issue-in-passing-chefchefhost-parameter-for-chef-workflow-in-vrealize-orches...

    Because I don't have an answer of SO, I ask you here.

    Chief Guest, as any other plugin object are passed as objects sdk-object are identified uniquely by their type and the id attributes. Here's how the body of the request should look like:

    in XML:

    
        
            
                
            
        
    
    

    in JSON:

    {
      "parameters" : [
        {"value":{"sdk-object":{"type":"Chef:Host","id":"b0c408c4-1d85-4a97-9314-727552fd5a39"}},"type":"Chef:Host","name":"host"}
      ]
    }
    

    You need to replace the id attribute in applications above with the current host id. To find the real ID of your host, you can query vRO catalog REST API - /GET https://{vro-host-or-ip}:8281/vco/api/catalog/Chef/Host

    In the returned response, find your host data, get the value of the dunesId attribute (must be a GUID string) and use it as a value for the id attribute in applications above.

  • By the way a column as a parameter name

    Good afternoon

    I was wondering if any of you ever come across the following situation and found a way to work around...

    I recently created a PivotTable using SQL query (body of function from PL/SQL returning SQL query).

    The table was composed of the following information:
    -Date range, Type of object, and count.

    The final table looks like this (forgive the lack of fancy markup, if all goes well he will get the message):
    Date        Object A    Object B    Object D    Object G
    01-apr-09   10           16         50          43
    02-apr-09   1            15         77          35
    03-apr-09   19           0          14          17
    04-apr-09   15           7          70          20
    05-apr-09   7            6          65          50
    And he keeps going.
    I had to create the code dynamically because I don't know what objects I will get course in the same range of dates (for example: I could have something to object C and nothing for object D in March). I had a loop of the cursor in the types of objects before creating the SQL query that creates the table above.

    The table now works fine. What I'm trying to do now is to do a little data mining.

    Since everything is built dynamically, I can't give the real column names in my report. Is it possible that, when I click on, for example, the '10', on April 1 in one who opposed the column heading 'Object A' is passed? #COL02 # pass only the value '10', which is not what I want, and I have tried other variations such as: COL02 and & COL02. without much luck.

    If you can shed some light on this problem, that would be greatly appreciated!

    Thank you for your time.

    Ivan

    Hello

    You can also use the substitution #COLUMN_HEADER # (ie. not #COL2 #, but in fact #COLUMN_HEADER #)

    See you soon

    Ben

  • Insert pictures using the registers as a parameter

    Hello

    I need to insert data into the table that my procedure will be called via JAVA.

    No Java so wonder if it is possible to take a JAVA object (which is the records outside PLSQL) as input and then insert it into the tables.

    Here's the DDL for tables

    create table gnv_sol_attributes)

    so_id varchar2 (20).

    se_integration_id varchar2 (20).

    ParameterName varchar2 (100),

    action_code varchar2 (20).

    parameter_value VARCHAR2 (255)

    );

    create table

    () gnv_sol_serviceelement

    customer_ref varchar2 (20).

    billing_account_code varchar2 (20).

    so_id varchar2 (20).

    so_type varchar2 (5).

    se_integration_id varchar2 (20).

    se_root_integration_id varchar2 (20).

    se_parent_integration_id varchar2 (20).

    offer_id varchar2 (75).

    offer_id_old varchar2 (75).

    pricing_id varchar2 (75).

    promo_id varchar2 (20).

    action_code varchar2 (20).

    REASON_ID varchar2 (100),

    product_code varchar2 (40),

    date of product_subsc_date,

    date of product_start_date,

    date of product_modify_date,

    date of product_end_date,

    event_source varchar2 (40),

    sales_force_code varchar2 (20).

    line_number varchar2 (20).

    product_status varchar2 (2)

    );

    So there in the table of gnv_sol_attributes for different simple so_id and se_integration_id parameter_name.

    Here they explain as in a record we can and then insert it another folder (look like multidimensional collection).

    Sample data for the table of gnv_sol_serviceelemen

    CUSTOMER_REF,BILLING_ACCOUNT_CODE,SO_ID,SO_TYPE,SE_INTEGRATION_ID,SE_ROOT_INTEGRATION_ID,SE_PARENT_INTEGRATION_ID,OFFER_ID,OFFER_ID_OLD,PRICING_ID,PROMO_ID,ACTION_CODE,REASON_ID,PRODUCT_CODE,PRODUCT_SUBSC_DATE,PRODUCT_START_DATE,PRODUCT_MODIFY_DATE,PRODUCT_END_DATE,EVENT_SOURCE,SALES_FORCE_CODE,LINE_NUMBER,PRODUCT_STATUS

    C_1, BA_1, SO_1, OT_1, SE_1, SE_1, SE_1, STDE_A8, STDE_A8_FEE_AE, add, STDE_A8, 7/13/2015,7/13/2015, 1.

    C_1, BA_1, SO_1, OT_1, SE_2, SE_1, SE_1, STDE_A8, STDE_MA, add, STDE_MA, 7/14/2015,7/14/2015, 2,

    C_1, BA_1, SO_1, OT_1, SE_3, SE_1, SE_1, STDE_A8, STDE_WIFI, add, STDE_WIFI, 7/15/2015,7/15/2015, 3,.

    C_1, BA_1, SO_1, OT_1, SE_4, SE_1, SE_1, STDE_A8, STDE_BCK_M_FEE_AE, add, STDE_BCK_M, 7/16/2015,7/16/2015, 4,.

    C_1, BA_1, SO_1, OT_1, SE_5, SE_1, SE_1, STDE_A8, SBRI_1_FEE_AE, add, SBRI_1, 7/17/2015,7/17/2015, 5.

    C_1, BA_1, SO_1, OT_1, SE_6, SE_1, SE_1, STDE_A8, SBRI_6_FEE_AE, add, SBRI_4, 7/18/2015,7/18/2015, 6,.

    C_1, BA_1, SO_1, OT_1, SE_7, SE_1, SE_1, STDE_A8, SPUN_6_FEE_AE, add, SPUN_6, 7/19/2015,7/19/2015, 7,.

    C_1, BA_1, SO_1, OT_1, SE_8, SE_1, SE_7, STDE_A8, SPUN_AV_6, add, SPUN_AV_6, 7/20/2015,7/20/2015, 8.

    C_1, BA_1, SO_1, OT_1, SE_9, SE_1, SE_7, STDE_A8, SPUN_AF_6, add, SPUN_AF_6, 7/21/2015,7/21/2015, 9,.

    C_1, BA_1, SO_1, OT_1, SE_10, SE_1, SE_7, STDE_A8, SPUN_ARS_6, add, SPUN_ARS_6, 7/22/2015,7/22/2015, 10.

    C_1, BA_1, SO_1, OT_1, SE_11, SE_1, SE_1, STDE_A8, SCOE_VOIP_CEIP_3_FEE_AE, add, SCOE_VOIP_CEIP_3, 7/23/2015,7/23/2015, 11.

    sample data for gnv_sol_attributes

    PARAMETER_VALUE, PARAMETER_NAME, SO_ID, ACTION_CODE, SE_INTEGRATION_ID

    1, SO_1 SE_1, PCT? (Without), adding,?

    2, SO_1 SE_1, the PCT FEE, add, 110.

    3, SO_1 SE_1, AE PCT, add, 212.

    4, SO_1 SE_1, AE + TAX PCT, add, 218.

    5, SO_1 SE_1, STRONGHOLD of BOO, add, YES,

    6, SO_1 SE_1, AE BOO, add, YES,

    7, SO_1 SE_1, AE + TAX BOO, add, YES,

    8, SO_1 SE_1, hierarchy ID, Add,

    9, SO_1 SE_1, hierarchy Add subscription ID,

    10, SO_1, SE_1, ID Add parent hierarchy,

    11, SO_1, SE_1, date of the subscription, add-on, 31/07/2015,

    12, SO_1, SE_1, filling start date, Add, 31/07/2015.

    13, SO_1, SE_1, beginning of billing to update, add, 31/07/2015.

    14, SO_1, SE_1, (address), add,

    15, SO_1, SE_1, download Bandwidth, add, 20480.

    16, SO_1, SE_1, download bandwidth, add-on, 1024,

    I created this procedure and it's successfully insert one line in the table of bith.

    create or replace procedure ins_svc (p_svc IN SVC_REC, p_svc_att IN SVC_ATTR_REC)

    is

    Start

    insert into gnv_sol_serviceelement (p_svc.customer_ref, p_svc.billing_account_code, p_svc.so_id, p_svc.so_type values

    p_svc.se_integration_id, p_svc.se_root_integration_id, p_svc.se_parent_integration_id

    p_svc.offer_id, p_svc.offer_id_old, p_svc.pricing_id, p_svc.promo_id, p_svc.action_code

    p_svc.reason_id, p_svc.product_code, p_svc.product_subsc_date, p_svc.product_start_date

    p_svc.product_modify_date, p_svc.product_end_date, p_svc.event_source

    p_svc.sales_force_code, p_svc.line_number, p_svc.product_status);

    insert into GNV_SOL_ATTRIBUTES (p_svc_att.so_id, p_svc_att.se_integration_id, p_svc_att.parameter_name values

    (p_svc_att.action_code, p_svc_att.parameter_value);

    exception

    while others then

    dbms_output.put_line (' error code ' |') '|| SQLCODE. » '||' The error '. SQLERRM);

    end;

    Now that JAVA person asking me if there is a way in which I insert one line in the gnv_sol_serviceelemen table

    and several lines in the gnv_sol_attributes because there is in the table of attributes different parameter value for the same so_id and SE_INTEGRATION_ID.

    This is where I got stuck.

    If anyone has a wayout.

    DATABASE VERSION: -.

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    You can create an API like this

    SQL> create or replace package gnv_sol_api
      2  as
      3    type gnv_sol_attributes_tbl is table of gnv_sol_attributes%rowtype index by pls_integer;
      4
      5    procedure gnv_sol_insert(par1 gnv_sol_serviceelement%rowtype, par2 gnv_sol_attributes_tbl);
      6  end;
      7  /
    
    Package created.
    
    SQL> create or replace package body gnv_sol_api
      2  as
      3    procedure gnv_sol_insert(par1 gnv_sol_serviceelement%rowtype, par2 gnv_sol_attributes_tbl)
      4    is
      5    begin
      6      insert into gnv_sol_serviceelement values par1;
      7      forall i in 1..par2.count
      8          insert into gnv_sol_attributes values par2(i);
      9    end;
     10  end;
     11  /
    
    Package body created.
    

    I used the anonymous PL/SQL block as a customer to call this API. For you, it would be Java.

    SQL> declare
      2    var1 gnv_sol_serviceelement%rowtype;
      3    var2 gnv_sol_api.gnv_sol_attributes_tbl;
      4  begin
      5    var1.customer_ref              := 'C_1';
      6    var1.billing_account_code      := 'BA_1';
      7    var1.so_id                     := 'SO_1';
      8    var1.so_type                   := 'OT_1';
      9    var1.se_integration_id         := 'SE_1';
     10    var1.se_root_integration_id    := 'SE_1';
     11    var1.se_parent_integration_id  := 'SE_1';
     12    var1.offer_id                  := 'STDE_A8';
     13    var1.offer_id_old              := null;
     14    var1.pricing_id                := 'STDE_A8_FEE_AE';
     15    var1.promo_id                  := null;
     16    var1.action_code               := 'Add';
     17    var1.reason_id                 := null;
     18    var1.product_code              := 'STDE_A8';
     19    var1.product_subsc_date        := to_date('7/13/2015','mm/dd/yyyy');
     20    var1.product_start_date        := to_date('7/13/2015', 'mm/dd/yyyy');
     21    var1.product_modify_date       := null;
     22    var1.product_end_date          := null;
     23    var1.event_source              := null;
     24    var1.sales_force_code          := '1';
     25    var1.line_number               := null;
     26
     27    var2(1).so_id                  := 1;
     28    var2(1).se_integration_id      := 'SO_1';
     29    var2(1).parameter_name         := 'SE_1';
     30    var2(1).action_code            := 'PCT? (Without)';
     31    var2(1).parameter_value        := 'Add';
     32
     33    var2(2).so_id                  := 2;
     34    var2(2).se_integration_id      := 'SO_1';
     35    var2(2).parameter_name         := 'SE_1';
     36    var2(2).action_code            := 'FEE PCT';
     37    var2(2).parameter_value        := 'Add';
     38
     39    var2(3).so_id                  := 3;
     40    var2(3).se_integration_id      := 'SO_1';
     41    var2(3).parameter_name         := 'SE_1';
     42    var2(3).action_code            := 'AE PCT';
     43    var2(3).parameter_value        := 'Add';
     44
     45    var2(4).so_id                  := 4;
     46    var2(4).se_integration_id      := 'SO_1';
     47    var2(4).parameter_name         := 'SE_1';
     48    var2(4).action_code            := 'AE+FEE PCT';
     49    var2(4).parameter_value        := 'Add';
     50
     51    gnv_sol_api.gnv_sol_insert(var1, var2);
     52  end;
     53  /
    
    PL/SQL procedure successfully completed.
    

    output

    SQL> select * from gnv_sol_serviceelement;
    
    CUSTOMER_REF    BILLING_ACCOUNT SO_ID           SO_TYPE         SE_INTEGRATION_ SE_ROOT_INTEGRA SE_PARENT_INTEG OFFER_ID        OFFER_ID_OLD    PRICING_ID      PROMO_ID        ACTION_CODE     REASON_ID       PRODUCT_CODE    PRODUCT_SUBSC_D PRODUCT_START_D PRODUCT_MODIFY_ PRODUCT_END_DAT EVENT_SOURCE    SALES_FORCE_COD LINE_NUMBER     PRODUCT_STATUS
    --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- --------------- ---------------
    C_1             BA_1            SO_1            OT_1            SE_1            SE_1            SE_1            STDE_A8                         STDE_A8_FEE_AE                  Add                             STDE_A8         13-JUL-15       13-JUL-15                                                       1                               
    
    SQL> select * from gnv_sol_attributes;
    
    SO_ID           SE_INTEGRATION_ PARAMETER_NAME       ACTION_CODE     PARAMETER_VALUE
    --------------- --------------- -------------------- --------------- --------------------
    1               SO_1            SE_1                 PCT? (Without)  Add
    2               SO_1            SE_1                 FEE PCT         Add
    3               SO_1            SE_1                 AE PCT          Add
    4               SO_1            SE_1                 AE+FEE PCT      Add
    
  • See primary e-mail profile (account) is not at the top of the records, only local folders pane, unable to auto receive.

    TB V - 24.4.0, Win XP32, fired from OE to the CT today on the friends system is about to run Win 7 64. Original e-mail account is lequipetv.fr and it was able to import all the mail and setting of address book correctly in TB. However, at the top of the pane of the records of the CT, his main account is not listed, only local files. When I sent a test email to his account, he has not received so I tried to click on the "Get Mail" button above the pane folder without success. Next to the right of the "Get Mail" button is a drop down and when I open, I see 'download all new messages at the top and his main account (complete address) below. Now when I click on his email in this button, his hand began to populate fine. Looks like the main profile (account) is not the default value and after 3 hours of reading tips, support, help files, etc... at my wits end trying to get it setup correctly if I can back it up with Mozbackup and restoration on the new system. I would like to include a screen shot, but could not find an option to do so at the moment, another question? Thanks in advance.

    Thanks Matt, you provided now settings TB download new default email opening of TB. One last question, I don't like having the pane complete message for security reasons, but when I go into this display/page/Message pane and uncheck it on every screen, every time that I reopen it TB, it gives the message pane on. Any way to save it permanently? Thanks again for your help!

  • HOW WELL IS THE XA 20 FOR THE RECORD OF THE EVENTS OF NIGHT SKY IN MODE IR OR IT'S JUST FOR THE FACES CLOSER?

    I WANT TO KNOW IF THE XA 20 CAMCORDER HAS ENOUGH POWER TO STAR RECORD, SATELLITES, UFOS POSSIBLE IR LIGHTING.   IT WILL BE A GRAINY MESS OR WILL IT BE ANYTHING IDENTIFIABLE OF THE RESOLUTION?

    Hello SB7,.

    The recording of IR on the XA20 mode could be used for this, is the infrared reading after all, but we do not believe that there would be enough light gathering power account for it properly.  So although it with the potential as being used in this way, it would be difficult to recommend especially for this purpose.

Maybe you are looking for

  • IOS keep asking my Outlook password

    Hello I have a huge problem with my iPhone 6 s. I configured my Outlook account, and he keeps asking my password continuously. I never stops. I have enter my password, then press 'Ok', then the window closes and 2 seconds later, it opens again. I get

  • Why some Emoji to pass and others are question marks.

    Sone emoji are receive OK, others are points of question marks (?), why & how to fix it.

  • VI requested is not loaded in memory on the server computer

    Hi all I'm working on GPS for example myRIO.the vi is downloadable from OR. Everything is OK when I run the vi on desktop. But when I try to create a control panel, the problem occurred. I have already activated the remote control for myRIO and build

  • How can I get money back from a COMPUTER scam?

    I have just been scammed by a COMPUTER company "ammyy" professing to be approved how Microsoft can I get paid sums bty cretit card in the last two days and cancel all transactions with this company of thugs (i.e. remove it from my PC and prevent neve

  • Complete dataModel with CustomObjects and show in a ListView

    Hey all,. I created a class with properties. Now, I want to add this class objects to a DataModel and view the properties of a ListView. A simple example: class CustomClass { QString name; QString age; QString something; } I create the ListView in Qm