How to call sequence created in database into an interface

Hi everyone,
I have a requirement where i need to load the target with merge option. I have a column that needs a sequence to populate . I read that we need to select the load in append mode if we have a sequence. can somebody give me a solution or a suggestion.
Regards
Babu

i got the clue from the link How do I call database sequence in ODI thanks suthrith.

Similar Messages

  • How to Use Sequence created in Oracle Database in SQL Ldr Control file

    Hi,
    I created a sequence in oracle database. How will use the sequence in SQL loader Control file.
    Thanks in advance

    Hi,
    You might get a good response to your post in the forum dedicated to data movement , including SQL*Loader . You can find it here Export/Import/SQL Loader & External Tables
    Regards,

  • UCCX 10.5 - How many calls can the CUIC database hold?

    I have a 10.5.x 100 user deployment of UCCX (30 user licenses) and was wondering if there is a way to tell how many calls (roughly) it will be able to store before it starts purging old data.  I've found the purge settings (90 months / 80%) but I don't know how to tell how many calls it takes to get to 80% of database capacity.  Has anyone found any documentation on this?  
    Also, is there a way to tell how large the CUIC database has grown (and what the max size is)?  If I can find these two things out I can make my own calculations.  

    Hi Kyle
    I hadn't seen it, but knew there must be...
    from CLI:
    show uccx dbserver disk
    This appears to show the various informix databases and their files. I'm no Informix expert, but if I apply what I know about database servers generally then I'd interpret it like so:
    - Total Size = The allocated size of the files on disk. i.e. what it can grow to.
    - Free Size = Portion of that file that is unused
    - Filename = You'll be interested in the db_hist.dbs line - the historical DB.
    - Data size = will be total size-free size.
    The data will grow into the file, and when it reaches the percent (of total size) set on the purge schedule (or the data in the DB reaches the months threshold) it will get purged out.
    Regards
    Aaron

  • How to call web dynpro ABAp application into workflow

    Hello All,
    How to call webdynpro application into workflow .Is it possible ?
    Scenario is : A web dynpro application should flow into 3 levels of approvals .
    Please share your knowledge .
    Thanks
    Sonal

    >
    Saurav Mago wrote:
    > hi,
    > I dont think from workflow , you can call WD application. 
    >
    > Thanx.
    Actually you can configure a workitem to launch WDA via UWL ( http://help.sap.com/saphelp_nw70ehp1/helpdata/en/59/d516690e854c7090ae15bf492a869f/frameset.htm ) or in the NetWeaver Business Client using the Business Workflow Workplace (WDA Application SWF_WORKPLACE).
    There is also a chapter in the upcomming SAP Press 2nd edtion workflow book on different aspects of Web Dynpro ABAP integration into Workflow:
    http://www.sappress.com/product.cfm?account=&product=H3057

  • How to call sequence in LabVIEW by providing sequence file path.

    Hi,
        Please provide me a solution to call sequence file from LabVIEW ActiveX API's by inputting sequence path to LabVIEW user interface.
    Thank you
    Yuvaraj
    Solved!
    Go to Solution.

    Here is a link that I gave some pointers on how to run an Open Sequence file via Single Pass.
    http://forums.ni.com/t5/NI-TestStand/Direct-execut​ion-of-the-sequence-when-UI-launches/m-p/2000819#M​...
    How are you launching this sequence, is the user selecting the sequence on disk?    Is it already open in a SequenceViewMgr control?
    Would an operator interface be more applicable to your situation?
    Thanks,
    PH

  • How to make two standalone oracle databases into master/slave relationship

    i'm not talking about RAC...
    is there any way to make two oracle databases into master/slave relationship? one is hot one is cold, when the hot one is down, the cold one automatically picks up? and of course two databases are in sync all the time.
    any experience?

    DataGuard is an enterprise edition feature.
    You could roll your own standby database by cloning the production system to a backup server and writing scripts that copy the archived log files from the primary to the standby and that apply the archived logs on the standby. Of course, the transactions that had been applied to the primary that were still in the primary's redo logs would be lost if the primary were to fail. DataGuard provides options to keep the standby more closely in sync with the standby to reduce or eliminate that risk, which is one of the reasons that it's an enterprise edition feature.
    If you're on Windows, Oracle FailSafe may also be something to look at.
    Justin

  • How to call sequence in Oracle Forms

    Hi,
    I am using Oracle Developer Suite 10g. I want to call a sequence that I have created in SQL Plus. When I try to call the sequence in a trigger for a command button (WHEN-BUTTON-PRESSED) the compiler tells me that the sequence cannot be used in this context. I am passing the sequence to a procedure as a parameter. Let me show you some code:
    My table is:
    Location(loc_id, loc_name);
    primary key is loc_id
    My sequence is:
    CREATE SEQUENCE loc_seq
    MINVALUE 1
    MAXVALUE 999999
    START WITH 1
    INCREMENT BY 1
    CACHE 20;
    My procedure is:
    CREATE OR REPLACE PROCEDURE loc_change (v_loc_id IN Location.loc_id%TYPE, v_loc_name IN Location.loc_name%TYPE) AS
    BEGIN
    INSERT INTO Location(Location.loc_id, Location.loc_name)
    VALUES (v_loc_id, v_loc_name);
    COMMIT;
    END loc_change;
    My WHEN-BUTTON-PRESSED trigger is
    BEGIN
    loc_change(loc_seq.nextval, :DATA_BLOCK.VARIABLE);
    END;
    All that I need to do is generate a random number for the parameter passed that is the primary key for Location, from within my trigger. Any thoughts?

    This
    DECLARE
      nSeq number;
    BEGIN
      select loc_seq.nextval
      into nSeq
      from dual;
      loc_change(nSeq, :DATA_BLOCK.VARIABLE);
    END;should do the job...
    you can also put the fetching of the sequence into the database procedure. if you have DB Version 11g, you can reference the sequence simply by this:
    nSeq := loc_seq.nextval;in prior 11g you have to fetch it using select into from dual.
    regards

  • How to call particular ecc transaction directly into IC Webclient

    Dear all,
    We have called ECC Transaction into IC Webclient, but instead of showing the particular transaction like VA05N, system showing the ECC system Easy access screen.
    I want call directly the required transaction, and dont want to access though the sap main menu.
    Please help to solve this problem, your suggestions will be highly appreciated.
    Best wishes,
    Raghu ram

    Hi Raghu,
    Are you calling the execute method ?. I think you have to give the method name as execute ( in the wizard of TL )
    for confirming the same please go to SWO1 transaction, and give the BOR object name that you have created, now click execute / test button.
    it will ask for the T-code to be executed,, give the ECC t-code
    now ,, run the method execute ( one among the three methods TSTC have ).
    you should able to see the ECC transaction opened for you..
    if this happens I am sure that some all you need to do is some minor changes in TL wizard!.
    Tip: I think u missed the method name while configuring the TL.
    Hope it Helps..
    Regards, Sudeep..

  • How to import SPD created list forms into VS WSP projects

    Dear reader,
    I'm working on a SharePoint 2013 project. At the beginning, I use SPD 2013 to create custom list and created customized New/Edit/Display forms on the list, by utilize jQuery to make more interactive web page.
    Now I'm using a VS2013 project to build a WSP package to deploy the site, starting from an empty project. I have created the list in the project, but now I have to build the custom form from zero and modify the Elemnts.xml.
    Is there any methods to export the forms I made in SPD and add them into my prject to avoid redundant work?
    Alex Du

    Hi John,
    Thank you for you advise. I did this before, VS imports all 6 list forms, 3 original ones, 3 custom ones made by me. The name of the list is Vouchers.
    And the problem is, VS combines all 6 forms into one Elements.xml file under a foler called 'ListVouhcers_Pages', which is in side 'Vouchers' list. Like this:
    And the code in one form is a DataFormWebPart declaration like the editable region of a form in SPD standard mode. The code is to generate content which will be inject into a place holder on master page called 'Main'.
    According to other post on web, if I need to add a custom list form, I have to add a new ASPX file onto a list, change its Deployment Type to ElementFile, and code the page.
    So is it mean I could copy the web part code in Elements.xml directly into a ASPX file to generate new custom form? Or can I just copy the whole 'ListVouchers_pages' and the Elements.xml to my own VS project to reproduce the forms?
    Alex Du

  • How to fetch records from the database into a combo box?

    Hi:
    I´m really new with ABLBPM and I´m trying to fetch records from the database to display them into a combo box as valid values for a presentation but I´m using a dynamic method with this code:
    <em>for each row in SELECT campo1, campo2 from TABLE</em>
    <em>do</em>
    <em>solicitudes[] = [row.campo1, row.campo2]</em>
    <em>end</em>
    <em>return solicitudes
    </em>And the debugger says that SQL instructions can be used only in fuctions and procedures that are executed on the server.
    Do you know another way to do it?
    P.D. Sorry for my terrible english
    Greetings

    Hi Steve,
    Thank you, your idea is perfect, but when I try to run the screenflow where the combo should be filled I get this error:
    fuego.lang.ComponentExecutionException: No se ha podido ejecutar correctamente la tarea.
    Motivo: 'java.lang.NullPointerException'.
         at fuego.web.execution.InteractiveExecution.setExecutionError(InteractiveExecution.java:307)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:166)
         at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
         at fuego.webdebugger.servlet.DebuggerServlet.redirect(DebuggerServlet.java:136)
         at fuego.webdebugger.servlet.DebuggerServlet.doPost(DebuggerServlet.java:85)
         at fuego.webdebugger.servlet.DebuggerServlet.doGet(DebuggerServlet.java:66)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
         at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
         at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
         at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
         at fuego.web.execution.servlet.ServletExternalContext.forwardInternal(ServletExternalContext.java:197)
         at fuego.web.execution.servlet.ServletExternalContext.processAction(ServletExternalContext.java:110)
         at fuego.webdebugger.servlet.DebuggerExecution.dispatchComponentExecution(DebuggerExecution.java:64)
         at fuego.web.execution.InteractiveExecution.invokePrepare(InteractiveExecution.java:351)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:192)
         at fuego.web.execution.impl.WebInteractiveExecution.process(WebInteractiveExecution.java:54)
         at fuego.web.execution.InteractiveExecution.process(InteractiveExecution.java:223)
         at fuego.webdebugger.servlet.DebuggerServlet.doDebug(DebuggerServlet.java:148)
         at fuego.webdebugger.servlet.DebuggerServlet.doPost(DebuggerServlet.java:82)
         at fuego.webdebugger.servlet.DebuggerServlet.doGet(DebuggerServlet.java:66)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    Any ideas??
    Thanks and greetings

  • Help! How to pull data from a database into form

    I have information store in a database and I need to import(place) it onto a form.  The form already has a connection to the database, I just don't know how to update the information on the form with the information that is stored in the database.  Can anyone help?

    Yes there is ....now you need to do a query agianst the DB looking for that specific record. I did a webinar on this topic some time ago but i believe the link is still active. Have a go at this:
    http://adobechats.adobe.acrobat.com/p69655795/
    Paul

  • How to call info from a database?

    Hi,
    I’m trying to call a line of text and a url from a
    MYSQL database.
    The url will be applied to the text in a news ticker such as:
    http://www.mosaicmortgageclub.com/html/iframe.htm.
    I’m doing this so that other people can update the database
    which will in turn update the news on a website.
    Your help would be much appreciated.
    Sean

    There are some links in this which may help
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=189&threadid =1351582&enterthread=y

  • How to call a procedure from database executing commandButton...

    Hello.
    I´m using Jdev 10.1.3.2, I´d like to know how can I execute a procedure from database when I click a command button..??
    is that possible?
    thanks again.

    Yes, it's possible.
    Since you don't say anything about technologies you are using, I will assume ADF Business Components and JSF.
    You can write a service method in your application module - see Section 25.5 of the ADF Developer's Guide for Forms/4GL Developers
    Then, you can drag-and-drop the service method from the data control palette on to your JSF page and select ADF Command Button when you drop.
    You will, in all likelyhood, find numerous examples when you search the forum as well.
    John

  • How to Call Methods of one component into another Component

    Hi Experts,
    I have one requirement...
    I have 2 components A and B, i used A comp in B, i need to call Comp A methods in Component B, can anybody give me the syntax?? please...
    Thanks and Regards,
    Kissna.

    Hi Manas Thanks for your fast reply,
    My question is, for example we have wd_comp_controller or wd_this objects to call methods of view from view and comp controller right.. like this we have any methods to call used component methods? if yes can u please give me the objects syntax?...
    Thanks and regards,
    Kissna.

  • How to call function created in another schema...

    I am trying as follows...
    user1 has one function named 'function1'
    Now I am granting execute privilege to user2 as ...
    GRANT EXECUTE ON function1 TO USER2 ;
    But when I run the function from user2 I am getting following error...
    declare
    aa varchar2(100);
    begin
    aa := user1.function1(123);
    dbms_output.put_line(aa);
    end;
    ERROR at line 4:
    ORA-06550: line 4, column 16:
    PLS-00302: component 'FUNCTION1' must be declared
    ORA-06550: line 4, column 1:
    PL/SQL: Statement ignored
    What is the problem with this ?
    Kiran.

    You have one of three choices, I think:
    1. As you suggest, re-create user2.user1 as user2.<someothername> (implications?)
    2. Re-create schema user1 as <someothername> (implications?)
    3. Create a public synonym for function1 so that you don't have to prefix if with schema name

Maybe you are looking for

  • Why doesn't the "more like this" section offer suggestions anymore in the netflix app?

    In the netflix app there is an area labeled "More like this" and it usually show suggestions of other movies.  After the last ATV update, it just shows "More like this..." but it doesn't show any movie suggestions.  When I spoke with netflix, they sa

  • Using DMZ to connect to internet

    I am having problems accessing the internet when changing route from using outside to DMZ to access the internet. Reason for this change is because I have a FTP-server in DMZ that also needs access to the internet through DMZ. The main server has two

  • What iPhone 4 cases do you use?

    Hey guys, Just wanted to ask your personal preference on cases on your iPhone 4. Do u guys use them? If so please let me know what you use on your phone I have tried so many cases and just haven't found the right one for me.... Thx for your time, DAV

  • Problem with activation of Master Data 0UCINSTALLA

    Hello Everybody, I'm working on a BW 3.5. I have a problem with the activation of master data of one Infoobject. When I try to activate the data SAP gives me the message that all the data is active. But when I try to change something on the infoobjec

  • Computer freezes but can still move mouse.

    I have a dual 2.7 g5 with 2.5 gigs of ram. I have also installed a second internal 400 gig hard drive and all has worked for quite some time. I had noticed that since installing it I would get frequent spinning color wheel icons and simple tasks woul