Invoking Procedure from BODS with OUT (output) parameters

Hi Experts,
Need your help to invoke Oracle DB Procedure having output parameters from BODS Script
--Thanks

Hi Balakrishna,
IF you want to execute the stored procedure from script first import the SP into your data store first and you can try the below scripts, i am not sure that it will works kindly try and let me know.
Datastore Name.Owner.Procedure_Name( $Var_1 , $Var_2 );
or
SQL('Datastore_name',exec sp_xxx);
Thanks and regards,
subbu CH.

Similar Messages

  • Is there any app to quit from application with out pressing home button every time

    is there any app to quit from application with out pressing home button every time?

    Months ago my home button was screwed up, and I was worried. I'd have to wait atleast for a week to get it repaired as I was busy with my exams. So I found a solution. Goto Settings->General->Accessibility.
    Scroll down, and under "Physics & Motor", select "Assistive Touch". Toggle it on, and you get lots of options. You don't need to click the home button all the time. It is a very simple widget like stuff, that stays no matter what app you're using and you can do various functions with it. Initially, it's irritating as you see it everywhere. But it fades itself out and appears when needed. After you get used to it, it's really helpful.

  • How to call a (catalog) stored procedure directly in a xsodata file with in/output parameters

    I am new to XS but i managed to enable a table through xsodata:
    service namespace "sap.hana.democontent.epm" { 
      "AA465342"."TMP_HENK" as "TMP_HENK"; 
    But now i am looking for code that can call a stored procedure that has 2 input- and 3 output parameters.... who can help me out with this?

    Hi Vivek, thanks for the quick response!
    I already found that blog, but it does not completely answer my question. i am struggling to get my content procedure working. call the R (catalog) stored procedure:
    the code
    /********* Begin Procedure Script ************/
    BEGIN
        call "AA465342"."MO_PP_SENTIMENT"(SP_IN,SP_OUT) with overview;
    END;
    /********* End Procedure Script ************/
    where it goes wrong:
    : Only table variable is allowed in input parameter in a nested call
    I have defined SP_IN and SP_OUT....
    Can someone give me a clue what i have to change?

  • How can i get all values from jtable with out selecting?

    i have one input table and two output tables (name it as output1, output2). Selected rows from input table are displayed in output1 table. The data in output1 table is temporary(means the dat wont store in database just for display purpose).
    Actually what i want is how can i get all values from output1 table to output2 table with out selecting the data in output1 table?
    thanks in advance.
    raja

    You could set the table's data model to be the same:
    output2.setModel( output1.getModel() );

  • Invoking procedure from menu module

    How can I invoke procedure that is part of Form module from menu module which is attached to it.
    When I reference it with:
    procedure_name;
    I receive:
    Error 201
    Identifier procedure_name must be declared.
    null

    It can be done by calling user-named trigger from menu:
    Execute_Trigger('my_user_named_trigger');
    and in Forms my_user_named_trigger is:
    BEGIN
    procedure_name;
    END;
    I hope this will help you
    Helena

  • Problem accessing Sql server Procedure from Crystal with JDBC driver

    I have some Crystal reports using SQL Server procedures, most of them are working very well; however, I have 2 that have problems accessing sql server procedures. These reports are working using OLE DB connection without problem, but when I try to relocate the connection to JDBC Crystal generates an error like that the procedure not return records.
    The procedure is working with other products including OLE DB connections from crystal.
    What can I do?
    Thanks in Advance,
    JaimeC

    I am using:
    Crystal report 11 - 11.0.0.1282 and Crystal 2008 = 12.0.0.683
    SQL Server 2005 -  Microsoft SQL Server Management Studio Express     9.00.4035.00
    Windows XP
    I have discovered that the procedures create and work  temporary tables. In other cases when is working ok, the procedures have not working temporary tables.
    Thanks,
    Jaime Carrillo

  • Distinguishing MPEG from ACC with out "Get Info"

    When I convert newly downloaded music to MP3 format I go to "Recently Added" to find the MP3 copy. I then have to go to "Get Info" to figure out which one is the MP3 version. Is there an easier way of doing this? I tried "Display Duplicates" but, both files are displayed with out the MP3 file being distinguished from the original download. I just want to burn the MP3 version to a disk.
    Thanks for your help.

    In the column headers, right click and select Kind (or go to menu View > View options).
    MP3 is shown as MPEG audio file.

  • Opening IE from application with give url parameters

    Hello,
    I have an application which needs to open IE and send it to a particular URL with cergain URL parameters. I use the exec() method of Runtime, IE opens up, BUT the url is truncated. Everything after and including the first '&' is cut off, thus causing errors in the jsp page it is trying to get.
    Here is the code:
    String parameter = " http://192.168.10.202/reports/reportgenman.jsp?S=" +
    Integer.toString(TradeIDGenerator.getClientID()) +
              "&cn=snoopy&cp=1252&lan=eng&acctount=" + account +
              "&from=" + getStartTime() +
              "&till=" + getEndTime();
    Runtime newsRuntime = Runtime.getRuntime();
    try{
    String osName = System.getProperty("os.name");
    Process ieProcess = null;
    if( osName.equalsIgnoreCase("WINDOWS 2000") || osName.equalsIgnoreCase("WINDOWS NT") )
    ieProcess = newsRuntime.exec("cmd /c start " + parameter);
    else if( osName.equalsIgnoreCase("WINDOWS 95") || osName.equalsIgnoreCase("WINDOWS 98") || osName.equalsIgnoreCase("WINDOWS ME") )
    ieProcess = newsRuntime.exec("start " + parameter);
    }catch(IOException ie){e.printStackTrace()}
    This code opens the Explorer with the following URL
    http://192.168.10.202/reports/reportgenman.jsp?S=6598745
    Where did the rest go?
    Please help.
    Thank you,
    Elana

    HI
    Place the parameter between quotes as shown below
    ieProcess = newsRuntime.exec("cmd /c start iexplore.exe " +
    "\"" + parameter + "\"");
    If you do not place double quotes, the URL will be truncated because of the presence of ampersand. Try the same command in command prompt it will not work.
    This will work.
    Regards
    Balasubramaniyan Krithivasan
    Hello,
    I have an application which needs to open IE and
    d send it to a particular URL with cergain URL
    parameters. I use the exec() method of Runtime, IE
    opens up, BUT the url is truncated. Everything after
    and including the first '&' is cut off, thus causing
    errors in the jsp page it is trying to get.
    Here is the code:
    String parameter = "
    http://192.168.10.202/reports/reportgenman.jsp?S=" +
    Integer.toString(TradeIDGenerator.getClientID())
    D()) +
              "&cn=snoopy&cp=1252&lan=eng&acctount=" + account +
              "&from=" + getStartTime() +
              "&till=" + getEndTime();
    Runtime newsRuntime = Runtime.getRuntime();
    try{
    String osName =
    ring osName = System.getProperty("os.name");
    Process ieProcess = null;
    if( osName.equalsIgnoreCase("WINDOWS
    Case("WINDOWS 2000") ||
    osName.equalsIgnoreCase("WINDOWS NT") )
    ieProcess = newsRuntime.exec("cmd /c> time.exec("cmd /c start " + parameter);
    else if(
    else if( osName.equalsIgnoreCase("WINDOWS 95") ||
    ) || osName.equalsIgnoreCase("WINDOWS 98") ||
    osName.equalsIgnoreCase("WINDOWS ME") )
    ieProcess = newsRuntime.exec("start> ntime.exec("start " + parameter);
    }catch(IOException ie){e.printStackTrace()}
    This code opens the Explorer with the following URL
    http://192.168.10.202/reports/reportgenman.jsp?S=65987
    5
    Where did the rest go?
    Please help.
    Thank you,
    Elana

  • Can I print to AirPort Express from IPod with out extra Apps?

    Hi,
    I would like to know if I can print from my iPod via AirPrint to an AirPort Express with out an extra App?
    I would like to connect the printer to the USB connection of AirPort Express.

    No, Airprint does not support that configuration.
    See here for information: http://support.apple.com/kb/HT4356

  • How to caputure response from Receiver with out Synchronous

    Hi,
      My scenario deals with IDoc to JDBC/Webservice. Once I posted the data to end business sytem I need to caputre return code from them based on that I need to trigger a mail. Is this scenario is possible with out BPM (Asynch-synch bridge). Appreciate for your response.
    Thanks,
    Rao.Mallikarjuna

    Hi
    1. Receive the Idoc using a receive step
    2. Send the message to Webservice/JDBC using synchronous send step.
    3. Capture the response and send a mail using a async send step.
    no need of syn-asyn bridge.
    Syn asyn bridge is required only when you do communicate from a synchronous system to an async system.
    Regards
    Sunil

  • How to execute a procedure from BODI?

    Hi Pals ,
    I have procedure in my database say EMP_PROC. I want to execute this procedure from the BODI environment.Please do let me know.
    Thanks in advance.
    Regards,
    Diras

    you have to import the stored procedure in the datastore
    and after importing you can call the stored procedure in the mapping
    use import by name option in datastore, and select function in type and enter the name of stored proc that you want to use in DI
    check technical manual for more details on importing functions and stored procedure

  • We were wondering how you stop some apps from running with out deleting them something like a task manager and in my settings im missing the application button in it how do i get it back and stop some apps its making it run really slow

    how do you stop apps with out deleting them i have looked for something like a task manager and nothing and researched about it and it says to go into your settings and then click applications but i dont have one can someone please help[ me thank you

    Double click the Home button. The bottom row shows the recently used apps. Touch and hold the app until they all start to wiggle then tap the circled minus sign by apps you want to remove. Press the Home button to return to normal.
    However, that is recently used apps not apps doing something. Some apps will do things all the time/periodically like checking for Notification, new mail. Yu can turn those off in the apps themselves.
    Just what are you trying to accomplish?

  • Calling Write Stored procedure from xsodata with table/list as input

    I have a stored procedure which takes table type as input and insert data in a table
    PROCEDURE "C"."abcd.procedures::InsertResData" ( IN  resourcelist "abcd.procedures.ResourceT",out error "abcd.data:abcd.procedures.tt_error"  )
      LANGUAGE SQLSCRIPT
      SQL SECURITY INVOKER abc
      --DEFAULT SCHEMA <default_schema_name>
      AS
    BEGIN
    ---some insert logic-
    END
    Now I have exposed the SP using XSODATA so that UI can consume it.
    service namespace "abcd.hana.service"{
    "abcd.views/Resourceview.attributeview" as "resourceitem"
    key("RESOURCE_ID")
    create using "abcd.procedures::InsertResData";
    Question: How can I pass array of input records to XSODATA. from UI? Is it supported?
    I could test with single record (JSON input) but could not test with multiple records
    Please help me on this if you have some expert opinion
    Regards,
    Apoorv

    I have a stored procedure which takes table type as input and insert data in a table
    PROCEDURE "C"."abcd.procedures::InsertResData" ( IN  resourcelist "abcd.procedures.ResourceT",out error "abcd.data:abcd.procedures.tt_error"  )
      LANGUAGE SQLSCRIPT
      SQL SECURITY INVOKER abc
      --DEFAULT SCHEMA <default_schema_name>
      AS
    BEGIN
    ---some insert logic-
    END
    Now I have exposed the SP using XSODATA so that UI can consume it.
    service namespace "abcd.hana.service"{
    "abcd.views/Resourceview.attributeview" as "resourceitem"
    key("RESOURCE_ID")
    create using "abcd.procedures::InsertResData";
    Question: How can I pass array of input records to XSODATA. from UI? Is it supported?
    I could test with single record (JSON input) but could not test with multiple records
    Please help me on this if you have some expert opinion
    Regards,
    Apoorv

  • Tabular form from query with outer join destroys the universe!

    Well, maybe just my app...
    At any rate, what I have is a query that pulls RISKS for a project and does a reasonable outer join which joins the latest value from a RISK_HISTORY table. Values for RISK are updated and the value for RISK_HISTORY is changed and a new entry added to the RISK_HISTORY table.
    At least that's how it's supposed to be.
    I was able to do this with a report-with-a-form region by adding an extra update process to do a new insert into RISK_HISTORY but it seems that the tabular form is a bit more work.
    Here's the query I'm using:
    select * from(
    select
    r.RISK_SEQ RISK_SEQ_DISPLAY,
    r.RISK_PRIORITY,
    r.RISK_INFO,
    r.RISK_MITIGATION,
    r.ONGOING_FLAG,
    r.RISK_DATE,
    r.WEEK_GROUP_SEQ,
    r.CREATED_ON,
    r.CREATED_BY,
    r.LAST_MODIFIED_ON,
    r.LAST_MODIFIED_BY,
    rh.STATUS,
    row_number() over (partition by rh.risk_seq order by rh.last_modified_on desc) rn
    from RISK r, WEEK_GROUP w, RISK_HISTORY rh
    where w.PROJECT_SEQ=43
    and r.week_group_seq= w.week_group_seq
    and w.week_index=0
    and rh.RISK_SEQ = r.RISK_SEQ
    ) where rn = 1
    Clicking "Add Row" gets me this:
    Error in mru internal routine: ORA-20001: no data found in tabular form
    Running debug doesn't seem to expose much for me either. Is there a better tact for me to take here?
    Thanks,
    Jon

    Hi Prazy,
    using nvl also didn't solve my problem.Actually my problem is I am having a table a in which I have a column called satus, status has the values like A or I .I have one lookup called MTH_BUYSINESS_FUNCTION in which for lookup_code A I have menaing as Active and for lookup_code I meaning is Inactive.Now in table a for sttaus I have two values one A and one null Now I want to write sql which displayes the meaning for column staus.Result should be Active and null .If I am uisng 1 query which I gave u I am not able to get the 2nd row in my output.If I use 2nd query then I get duplicate rows.
    Thanks ,
    Amrit

  • Invoking Composite from BPMN with file read operation

    hello,
    I have a composite which does a simple file read and dumps data to database using mediator.
    right now composite gets kicked off by presence of a file in a directory.
    I would like to invoke this composite from a BPMN process, unfortunately because of nature of file adapter created through composite, jdeveloper doesn't expose the FileAdapter read operation as WSDL so I cannot create a service task out of it.
    How can I invoke composite directly without having to create a file adapter at the BPMN level and take care of transforming the records to DB adapter?
    thanks.

    As you guess, it is stored in the PSD, but only with the Maximise Compatibility switch. Without that switch, a dummy image is stored which has the text "This layered Photoshop file was not saved with a composite image.", in English, German, Japanese and French.
    My program
    psdparse extracts each layer in an 8-bit file as a PNG, and the merged image for both 8- and 16-bit files. That link is to a Subversion repository containing source code.

Maybe you are looking for

  • Afraid to let go of my iPhoto Library after backing up to hard drive

    iMacG5   Mac OS X (10.4.7)   </span I have a LaCie hard drive that I am trying to put my iPhoto Library on. I have managed to copy the library to the drive but I am afraid to delete the original library from iPhoto. Before deleting it I went to iPhot

  • MIRO reversal problem

    Hi Friends, One of client has wrongly done a MIRO.  When they are doing customs duty MIRO, they wrongly choosen currency as USD instead of INR.  Neverthless the entry has been posted in USD as follows:  Customs clearing account Dr.  xxxxxx USD to Com

  • Can I call a C program in trigger, and pass updated data to this program?

    Can I call a C program in Oracle trigger, and pass updated data to this program? Thank you

  • Help regarding SAML Assertion

    Can any one tell me what SAML assertion is all about?? and I just want to try out sample steps pertaining to SAML assertion in my policy editor. So Can any one of you kindly tell me a simple use case that you have tried out with SAML assertion. In th

  • Audio out of sync h.264 file. Premiere CS5.5

    After building a new machine with Premiere CS5.5, using NVIDIA Q4000 card, I'm having troubles wioth my audio being out of sync. I am exporting DSLR footage which the same sequence was previously fine on export on my old computer. Now, when I export,