Execute CR from Oracle in Background Process

Post Author: dansken
CA Forum: Deployment
Hi, I'm new to CR and we have recently purchase Business Objects Enterprise XI.  I would like to execute/open a created report that is saved as a .rpt from an Oracle procedure passing an in parameter that is used in the database query in on the report.  I also would like the report to automatically be printed on a printer.  Is there a way to do this? I hope I haven't been too confusing.Thanks in advance,Magnus

Hi,
I am not sure about the express version. Never used it yet.
Have a look at the scheduler jobs and their runs.
Statistics collection is by default made every night between 10 pm and 6 am.
And every weekend between SAT 12:00 and MON 12:00.
You can of course influence this behaviour be changing the time window settings for this job (the job is called gather_stats_job).
The AWR is the automatic workload repository which is new thing Oracle 10g.
Here is an excerpt from the doku:
Automatic Workload Repository (AWR) is a built-in repository in every Oracle Database. At regular intervals, the database makes a snapshot of all its vital statistics and workload information and stores them in AWR. By default, the snapshots are made every 60 minutes, but you can change this frequency. The snapshots are stored in the AWR for a period of time (seven days by default) after which they are automatically purged.
it is me again:
you can use the package dbms_workload _repository to influence the frequency of snapshotsw taken as well as the retention periode for which they shall be storede inside the SYSAUX tablespace.
Maybe you should read some chapters in the concepts volume of the doku:
here is a link to the AWR in the doku, hope it works:
http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14231
If you do not want all these automatic things going on then you can set the init-parameter STATISTICS_LEVEL to BASIC.
This will stop a lot of these statistics gatherings and also other nice things. Pls read the reference for this. There all initialization parameters are documented.
Regards,
Lutz

Similar Messages

  • Executing commands from Oracle

    Hi,
    I want to execute commands from Oracle where files are stored in Server. For eg. (sample.dat) contains some insert scripts which is stored in UNIX Server, that scripts should be executed from oracle using some methods!! Hope everyone got it. If not, pls let me know i'll elaborate it later.
    Thanks
    Rajaram

    If you are using oracle 10g then you can use dbms_scheduler to execute o/s commands, scripts.
    BEGIN
    -- Job defined entirely by the CREATE JOB procedure.
    DBMS_SCHEDULER.create_job (
    job_name => 'test_full_job_definition',
    job_type => 'EXECUTABLE',
    job_action => '/scripts/myscript.sh',
    start_date => SYSTIMESTAMP,
    repeat_interval => 'freq=hourly; byminute=0',
    end_date => NULL,
    enabled => TRUE,
    comments => 'Job defined entirely by the CREATE JOB procedure.');
    END;
    For earlier versions than 10g
    http://www.dba-oracle.com/t_execute_operating_system_os_command_oracle.htm

  • Executing BW Workbooks from EP as background process

    Hi all!
    I need to execute BEX workbooks from Enterprise Portal with automatically predefined values of variables. Iu2019d like to do this in two ways: normal (ordinary way) and as background process (result: xls. file). Can you help me?

    Hi Alzatula,
    You can do this in information broadcasting.
    You can configur broadcast settings for workbooks.
    The prerequisite is you need a precalculation server.
    Check on sdn, how to register a precalculation server.
    You can execute it in foreground or you can schedule it in background.
    Check this link, it may help you to set up the broadcast setting.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00172934-f3c1-2b10-728a-c42a0fc28c61
    Check this how to as well
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d09dea78-b61a-2b10-c7ad-acd94d64079a
    Information broacasting can be called through BEx broadcaster in EP.
    Hope it helps,
    Regards,
    Sunmit.

  • Oracle 9i background process

    Hi,
    Currently I am doing ORACLE 9i Data Guard on HP-UX, I find there are some strange background process, such as "nsv1", "lns0" and "rsm0". I am familiar with smon, pmon, etc, but those new processes are new to me. I researched Oracle doc and Metalink, there is no place talking about those processes.
    Do you know any place I can get explanation of all the Oracle background process?
    Thanks

    Here is a quick description directly from the database:
    TEST> select name, description from v$bgprocess where name in ('NSV1','LNS0','RSM0');
    NAME  DESCRIPTION
    LNS0  Network Server 0
    RSM0  Data Guard Broker Resource Guard Process 0
    NSV1  Data Guard Broker NetSlave Process 1Yoann.

  • Error Trying execute shell from oracle

    Using 11g
    Shell script
    #!/bin/bash
    clear
    echo "testing123"
    named transfer2.sh (This is just a testing shell script. the real one will scp a file to a remote server, but I cannot even get this one to work first).
    I can execute in linux no issues
    > sh transfer2.sh
    testing123
    I want to be able to schedule this to run from oracle.
    my testing so far :
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB (
          job_name          => 'TEST_SHELL',
          JOB_TYPE          => 'EXECUTABLE',
          job_action        => '/myfiles/transfer2.sh',
          start_date        => SYSDATE,
          REPEAT_INTERVAL   => 'FREQ=HOURLY;', 
          enabled           => FALSE,
          comments          => 'shell script from Oracle'
    end;
    now to run the job
    BEGIN
      dbms_scheduler.run_job('TEST_SHELL',TRUE);
    end;
    Error starting at line 43 in command:
    BEGIN
      dbms_scheduler.run_job('TEST_SHELL',TRUE);
    end;
    Error report:
    ORA-27369: job of type EXECUTABLE failed with exit code: 255
    ORA-06512: at "SYS.DBMS_ISCHED", line 185
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 486
    ORA-06512: at line 2
    27369. 00000 -  "job of type EXECUTABLE failed with exit code: %s"
    *Cause:    A problem was encountered while running a job of type EXECUTABLE.
               The cause of the actual problem is identified by the exit code.
    *Action:   Correct the cause of the exit code and reschedule the job.
    I have set the myfiles directory to 0777
    I have set all files in the myfiles directory to 0777
    so everyone should have access to execute scripts here.
    I have also set the extjob file to 0777
    any help appreciated.
    Thank you.

    708631 wrote:
    Using 11g
    Shell script
    #!/bin/bash
    clear
    echo "testing123"
    named transfer2.sh (This is just a testing shell script. the real one will scp a file to a remote server, but I cannot even get this one to work first).
    I can execute in linux no issues
    > sh transfer2.sh
    testing123
    I want to be able to schedule this to run from oracle.
    my testing so far :
    BEGIN
       DBMS_SCHEDULER.CREATE_JOB (
          job_name          => 'TEST_SHELL',
          JOB_TYPE          => 'EXECUTABLE',
          job_action        => '/myfiles/transfer2.sh',
          start_date        => SYSDATE,
          REPEAT_INTERVAL   => 'FREQ=HOURLY;',
          enabled           => FALSE,
          comments          => 'shell script from Oracle'
    end;
    now to run the job
    BEGIN
      dbms_scheduler.run_job('TEST_SHELL',TRUE);
    end;
    Error starting at line 43 in command:
    BEGIN
      dbms_scheduler.run_job('TEST_SHELL',TRUE);
    end;
    Error report:
    ORA-27369: job of type EXECUTABLE failed with exit code: 255
    ORA-06512: at "SYS.DBMS_ISCHED", line 185
    ORA-06512: at "SYS.DBMS_SCHEDULER", line 486
    ORA-06512: at line 2
    27369. 00000 -  "job of type EXECUTABLE failed with exit code: %s"
    *Cause:    A problem was encountered while running a job of type EXECUTABLE.
               The cause of the actual problem is identified by the exit code.
    *Action:   Correct the cause of the exit code and reschedule the job.
    I have set the myfiles directory to 0777
    I have set all files in the myfiles directory to 0777
    so everyone should have access to execute scripts here.
    I have also set the extjob file to 0777
    any help appreciated.
    Thank you.
    Hi,
    Please check oracle support External Job fails with ORA-27369: job of type EXECUTABLE failed with exit code: 255 (Doc ID 1494843.1)
    Thank you

  • Error on converting EXECUTE IMMEDIATE from oracle to SQL

    Hi,
    I am converting db from oracle to SQL using SSMA.
    I get following error while converting schema-
    This is the statement on source side (oracle) which is giving below error -EXECUTE IMMEDIATE sqlStat INTO objects_count; 
             *   SSMA error messages:
             *   O2SS0013: EXECUTE IMMEDIATE statement was converted into EXEC(...) statement, but dynamic string was not converted. It must be converted manually.
             EXECUTE (@sqlStat)
    Another issue is that I get below warning when converting this - temHEX NUMBER;
    from oracle to sql.
             *   SSMA warning messages:
             *   O2SS0356: Conversion from NUMBER datatype can cause data loss.
    It is converting to this in SQL - @temHEX float(53), 
    Please suggest.
    Thanks.

    Hi,
    I faced same error again-
    Below is the EXECUTE IMMEDIATE statement. Please help.
                               *   SSMA error messages:
                               *   O2SS0013: EXECUTE IMMEDIATE statement was converted into EXEC(...) statement, but dynamic string was not converted. It must be converted manually.
                               EXECUTE (
                                  'insert into Table1 (C_REPORTNAME,C_REPORTCODE,C_DATE,C_WEEK,C_MONTH,C_YEAR,'
                                   + 
                                  ISNULL(@sColumnNames, '')
                                   + 
                                  ') values ('''
                                   + 
                                  ISNULL(@sReportName, '')
                                   + 
                                   + 
                                  ISNULL(@sReportCode, '')
                                   + 
                                   + 
                                  ISNULL(CAST(@dInputDate AS nvarchar(max)), '')
                                   + 
                                   + 
                                  ISNULL(@sWeekNumber, '')
                                   + 
                                   + 
                                  ISNULL(@sMonth, '')
                                   + 
                                   + 
                                  ISNULL(@sYear, '')
                                   + 
                                   + 
                                  ISNULL(@sName, '')
                                   + 
                                   + 
                                  ISNULL(@sDescription, '')
                                   + 
                                   + 
                                  ISNULL(CAST(@nFail_Count AS nvarchar(max)), '')
                                   + 
                                   + 
                                  ISNULL(CAST(@nPass_Count AS nvarchar(max)), '')
                                   + 
                                   + 
                                  ISNULL(CAST(@nPassing_Fraction AS nvarchar(max)), '')
                                   + 
                                   + 
                                  ISNULL(@sEnabled, '')
                                   + 

  • Call an executable file from oracle forms 6i

    Hello ,
    i want to call a local .exe file from oracle forms 6i passing along a couple of parameters in the command line .
    Can anyone help me out here ?
    thanks
    C.
    Edited by: user539712 on Jan 21, 2011 11:55 AM
    Edited by: user539712 on Jan 21, 2011 11:55 AM

    that worked...now i am facing a different issue now which i didnt have without the start command . i am calling iexplorer.exe but i am passing a long a url in the command line . the 2nd parameter in the url is not working so when i do :
    "start c:\progra~1\intern~1\iexplore.exe" http://localhost/hello.jsp&a=ddd&b=333
    the &b=333 is not passed (some issue with the & character i am guessing). Would you know a workaround ?
    thanks

  • PLS-00306,problem while executing procedure from oracle e_comerce

    Hi
    I have writen a procedure in oracle.Tere i have a parameter with type varchar2.
    While i registered it in e_comerce i choosed the value set as 15characters.
    When i am runing the program from my ecomerce application it gives an error as below:
    ORACLE error 6550 in FDPSTP
    Cause: FDPSTP failed due to ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'PO_OUTPUT'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    there is no error when i am executing my procedure in toad/sql+ but this error comes only in e_comerce application.
    PLease tell what is the reason and what can be the solution?

    Hi,
    <p>
    The function has the following parameters:<br>
    function insertj(jnum j.j#%type, jname j.jname%type, city j.city%type)<br>
    where j# is varchar2(5), jname is varchar2(35) and city is varchar2(35)<br>.
    I was trying to insert the following values:<br>
    j#:='J11', jname:='JobName' and city:='Paris'.<br>
    </p>
    <p>
    The procedure just calls this function with the same parameters. It is very strange because it is hard to see what the problem is. The line 10 is return 0 in the function where I believe the error comes from. It starts in the procedure and then goes in the function body, if I am interpreting this right.
    </p>
    <p>
    Any idea?
    </p>
    Thanks!

  • Query in sql server  from Oracle  9.2

    Hi
    How can I to connect and execute query from Oracle without to use others products ( DG4MSQL ....etc) ?
    using 9.2.08

    mkirtley wrote:
    Hi,
    I say it is 'free' because Dg4ODBC is included in your RDBMS license and you just need to supply a third party ODBC driver.
    See this note -
    Gateway and Generic Connectivity Licensing Considerations (Doc ID 232482.1)
    You need to install and configure it in an ORACLE_HOME on a machine somewhere then you can use database links from to connect to it and select from non-Oracle databases.
    Have a look at these notes depending on the platfrom you plan to use -
    How to Setup DG4ODBC on Linux x86 32bit (Doc ID 466228.1)
    How to Configure DG4ODBC on 64bit Unix OS (Linux, Solaris, AIX, HP-UX Itanium) to Connect to Non-Oracle Databases Post Install (Doc ID 561033.1)
    How to Setup DG4ODBC (Oracle Database Gateway for ODBC) on Windows 32bit (Doc ID 466225.1)
    How to Setup DG4ODBC (Oracle Database Gateway for ODBC) on 64bit Windows Operating Systems (Doc ID 1266572.1)
    As I said in my earlier update if SQL*Server is your non-Oracle database then an standalone install on Windows is the best option to be able to use the Microsoft ODBC driver, although there is now a MS ODBC available on Linux x86-64 bit.
    Please read through the notes I have referred to because they should have the information you need.
    Regards,
    MikeThank you for informations, I search, because My client is 9.2.08, but I am a DBA and do not have access to UNIX server where is Database

  • Issue with Engineer Multidimensional Model from Oracle Model

    Here is the scenario:
    1. Created logical star schema model including a dimension with nested subtypes (SuperTypeEntity1 -> Subtype 1 -> Nested Subtype 2)
    2. Forward engineer to Relational model using Single Table implementation
    3. Create Oracle 11g physical model definitions for the star
    4. Define dimension, levels, and hierarchy in physiclal model
    5. Create new multidimensional model, right click menu and execute "Engineer from Oracle Model"
    Result:
    Model and diagram built with correct dimension, levels, level attributes, hierarchy
    Problem: The entity that the dimension levels are related to is the subtype entity that appears first alphabetically! What it should do is be related to the SuperTypeEntity since I used the Single Table implementation (IMO). I can manually change the property to pick the SuperType but then it loses the assignments for the Level Key and the Descriptive Attributes (which were defined in the physcial miodel) so I have to manually repopulate those properties.
    Associated problem: Since I tend to do things incrementally (define a few dimensions at a time), everytime I re-run the engineering utility, it resets the dimension back to the wrong subtype everytime. (I like the fact that I can rebuild the multidimensional model iteratively to incorporate changes, but in this case it would be nice to "lock in" my manual changes).
    My only work around at this point is to either only run the engineering utility once (which is pretty impractical) or temporarily prefix my super type entity with an "A" so it always comes up first in the list until I am done with all my iterations.

    Hi Kent,
    dimensional model is not well suited to use entity hierarchies.
    I can manually change the property to pick the SuperType but then it loses the assignments for the Level Key and the Descriptive Attributes (which were defined in the physcial miodel) so I have to manually repopulate those properties.It seems all your key and descriptive attributes are in SuperTypeEntity1 (the root of hierarchy). How to proceed if some attributes (key +descriptive) are in subtypes, should SuperType be set as level entity again?
    Philip

  • Error: ORA-03113 while executing complex java code from Oracle PL/SQL

    Hi,
    I am trying to execute a complex java code from Oracle PL/SQL. The classes were resolved successfully. But in the middle of execution, I am getting the following error:
    ERROR:
    ORA-03114: not connected to ORACLE
    begin
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    Process ID: 13685
    Session ID: 21 Serial number: 20
    Is there a way to debug the Java classes loaded into oracle? Or is there any utility to find out why the connection was lost?
    Regards,
    Saravana

    Hi Saravana:
    You could use simply System.out.println(..) at your Java code and see the output at the .trc files generated for your Oracle session.
    Or better than this adding Java Util Logging messages at your code, to see how to use JUL API at the OJVM please see this blog post [Using JUL API inside the OJVM|http://marceloochoa.blogspot.com/2007/11/getting-logging-entering-exiting-and.html].
    Best regards, Marcelo.
    PD: ora-0600 generally are associated with RDBMS bugs, but these bugs can be bypassed by replacing the code which throws the exception by other with a workaround.

  • Issue in moving files from data fodler to processed folder in background

    Hi All,
    I am facing one issue in moving files from data fodler to processed folder in case of background execution.
    When i am executing the file in the foreground, i can move the file from Data folder to processed folder. I am using SXPG_COMMAND_EXECUTE FM to move the file from data folder to processed folder.  I can see the file in processed folder once the program is executed.
    But in case of executing the same program in background, it is giving me the error "Failed to move the file to processed folder" in the spool of SM37 and i can see the file still laying in data folder.
    I tried to check other programs which acesses the same folder as the above program, whether they are able to move. They are able to move the file to processed fodler successfully both in foreground and background mode.
    Please help me in resolving this issue.
    Thanks,
    Deepa

    Hi Sanu,
                    Please use teh following code to move the file from source to target folder.
    This is a code showing how to create and use COPY command of UNIX in ABAP
    PARAMETERS:
    Input file path
    p_input TYPE localfile,
    Processed file path
    p_proc TYPE localfile.
    Declare the Types to file data
    TYPES: BEGIN OF L_X_OUTPUT,
    sys(200), " Please note, there are asterisk before and after sys (i.e.sys)
    END OF L_X_OUTPUT.
    * Internal table to store file data
    DATA l_i_output TYPE STANDARD TABLE OF l_x_output WITH HEADER LINE.
    * Variable for the UNIX command
    DATA: l_v_unix_comm(255) TYPE c.
    Copy command of UNIX
    CONCATENATE 'mv' p_input p_proc
    INTO l_v_unix_comm SEPARATED BY space.
    For example the Copy command is stored as below
    cp u2018/data/interfaces/input/input_fileu2019 u2018/data/interfaces/processed/processed_fileu2019
    Examples of UNIX Command *u2022 mv filename1 filename2 --- moves a file (i.e. gives it a different name, or moves it into a *different directory (see below) *u2022 cp filename1 filename2 --- copies a file
    Execute the UNIX Copy command.
    This command will copy the file from input file path to the processed file path
    CALL 'SYSTEM' ID 'COMMAND' FIELD l_v_unix_comm
    ID 'TAB'
    FIELD l_i_output-sys.
    IF sy-subrc eq 0.
    write: 'File is copied successfully using UNIX command in ABAP'.
    ENDIF.

  • How to examine Oracle background process (SMON, PMON, DBW0, ...) on WIN OS

    Dear All :
    In Linux/Unix OS , we can check Oracle background process with command
    ps -ef | grep ora
    ,but how to check on Windows OS ? Can anyone show me how to do that...
    thanks alot ~
    with regards

    set line 400
    select
    A.SID,
    A.SERIAL#,
    A.PROGRAM,
    P.PID,
    P.SPID,
    A.OSUSER, /* Who Started INSTANCE */
    A.TERMINAL,
    A.MACHINE,
    A.LOGON_TIME,
    B.NAME,
    B.Description
    ,P.PGA_USED_MEM
    ,P.PGA_FREEABLE_MEM
    ,P.PGA_MAX_MEM
    from
    v$session A,
    v$process P,
    v$bgprocess B
    where
    A.PADDR=B.PADDR
    AND A.PADDR=P.ADDR
    --and   A.type='BACKGROUND'
    --Alternative (you can use BACKGROUND column from v$process )
    AND P.BACKGROUND=1
    HTH
    Girish Sharma

  • How to call a BPEL process from Oracle Apps Java Concurrent program

    Hello,
    I need to trigger a BPEL process from Oracle Apps. Can anybody tell me how to do that? I have two triggering option--
    1. On button click from a Form 6i screen
    2. Using Java Concurrent program.
    Thanks in advance.
    Debkanta

    I am not sure how concurrent program works, but may be one of the way might work out, let me know if Java Concurrent Program works a bit different way
    - [if async] Through concurrent program, you can insert message token to db or aq, and BPEL can be instantiated from there
    or
    - If it supports pure java call, then you can look at multiple documents (e.g. http://www.oracle.com/technology/products/ias/bpel/pdf/orabpel-Tutorial7-InvokingBPELProcesses.pdf) to invoke your process
    - You can also use oracle db utility to invoke soap operation and get the result back
    HTH,
    Chintan

  • Issue in invoking the BPEL process from Oracle using a SOAP Request

    Hi,
    We are facing an issue while invoking a deployed Bpel Process from Oracle Applications 11.5.10..
    Using a concurrent program( Unix / Host program ) we are passing the input variables required for the Bpel process in the ProcessRequest tags and forming this as a SOAP message payload.
    Then trying to invoke the deployed bpel process using the end point location using HTTP POST..but nothing is happening..
    The bpel process is not getting invoked when i look at the Console and also checked for the Manual Recovery queue..it's not stuck there as well..
    Have set the Transfer Time Out to 25 minutes using UTL_HTTP.SET_TRANSFER_TIMEOUT(1500);
    Could someone please help us as soon as possible with this ..as this is critical and we are stuck at the moment.
    The logic is mentioned below :
    UTL_HTTP.SET_TRANSFER_TIMEOUT(1500);
    UTL_HTTP.SET_DETAILED_EXCP_SUPPORT(ENABLE=>TRUE);     
    soap_request:='<?xml version="1.0" encoding="UTF-8"?>'||
    '<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'||
    '<soap:Header/>'||
    '<soap:Body xmlns:ns1="http://xmlns.oracle.com/bpelprocessname">'||
    '<ns1:bpelprocessnameProcessRequest>'||
    '<ns1:CSONum>'||order_number||'</ns1:CSONum>'||
    '<ns1:CreationDate>'||c_chr_cso_last_run_dte||'</ns1:CreationDate>'||
    '</ns1:bpelprocessnameProcessRequest>'||
    '</soap:Body>'||
    '</soap:Envelope>';          
    http_req:= utl_http.begin_request
    ('http://bpel_server ip:port/orabpel/domain_name/bpelprocessname/1.0' , 'POST', 'HTTP/1.1'
    utl_http.set_header(http_req, 'Content-Type', 'text/xml') ;
    utl_http.set_header(http_req, 'Content-Length', length(soap_request)) ;
    utl_http.set_header(http_req, 'SOAPAction', 'process');
    utl_http.write_text(http_req, soap_request) ;
    http_resp:= utl_http.get_response(http_req) ;
    utl_http.read_text(http_resp, soap_respond) ;
    utl_http.end_response(http_resp) ;
    dbms_output.put_line(soap_respond);
    Thanks

    check if your soap envelope is correct,check my below procedure which is working fine for me
    procedure xxxxx_BPEL_SCHEDULER
    IS
    soap_request varchar2(30000);
    soap_respond varchar2(30000);
    http_req utl_http.req;
    http_resp utl_http.resp;
    launch_url varchar2(240) ;
    begin
    soap_request:='<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:add="http://schemas.xmlsoap.org/ws/2003/03/addressing" xmlns:star="http://xmlns.oracle.com/xxxxx_BPEL_SCHEDULER">
    <soapenv:Header>
    <add:MessageID>?</add:MessageID>
    <add:ReplyTo>
    <add:Address>?</add:Address>
    <!--Optional:-->
    <add:ReferenceProperties>
    <!--You may enter ANY elements at this point-->
    </add:ReferenceProperties>
    <!--Optional:-->
    <add:PortType>?</add:PortType>
    <!--Optional:-->
    <add:ServiceName PortName="?">?</add:ServiceName>
    <!--You may enter ANY elements at this point-->
    </add:ReplyTo>
    </soapenv:Header>
    <soapenv:Body>
    <star:STARS_BPEL_SCHEDULERProcessRequest>
    <star:SCHEDULER_PARAM1>?</star:SCHEDULER_PARAM1>
    <star:SCHEDULER_PARAM2>?</star:SCHEDULER_PARAM2>
    <star:SCHEDULER_PARAM3>?</star:SCHEDULER_PARAM3>
    <star:SCHEDULER_PARAM4>?</star:SCHEDULER_PARAM4>
    <star:SCHEDULER_PARAM5>?</star:SCHEDULER_PARAM5>
    </star:STARS_BPEL_SCHEDULERProcessRequest>
    </soapenv:Body>
    </soapenv:Envelope>';
    http_req:= utl_http.begin_request('http://xxxxxx.com:16000/orabpel/default/xxxx_BPEL_SCHEDULER/1.0 '
    ,'POST',
    'HTTP/1.1'
    utl_http.set_header(http_req, 'Content-Type', 'text/xml') ;
    utl_http.set_header(http_req, 'Content-Length', length(soap_request)) ;
    utl_http.set_header(http_req, 'SOAPAction', 'initiate');
    utl_http.write_text(http_req, soap_request) ;
    http_resp:= utl_http.get_response(http_req) ;
    utl_http.read_text(http_resp, soap_respond) ;
    utl_http.end_response(http_resp) ;
    dbms_output.put_line(soap_respond);
    END;

Maybe you are looking for

  • Upgrading OS to Mountain Lion

    I have Mac OS X version 10.5.8 and would like to upgrade to lion and then to mountain lion in July.  How do I inow if I have the system requirements and what is the difference between upgrade and migration

  • Abt Customer Infocube

    Hi Experts, I m new to BW, i hav some doubts regarding Business Content Infocubes, So can any ine can explain. About Customer Infocube - 0SD_C01 Why SAP maintaind this cube, and if i create a query on this wht information i can analyse from this cube

  • IE 10 Will not update photo captions.

    Hi I have updated to IE 10 BUT when I view photos from a web site the photos change but the captions do not. It worked with IE 9 and works with Firefox and Torch but not IE 10 this is a bit annoying when I am trying to vote for my favourite photo. Al

  • Can't get rid of the brush tool

    I've been using photoshop cs5 for a while now, but recently a bizarre bug has surfaced ... I often can't activate any tool but the paintbrush. When i start up the application, the brush tool will be selected. I can click other tools in the tool palet

  • Scrolling window slide freezes

    Captivate v5.5 I have created a project in which I have some slides that I created using the automatic recording option in order to view the full length of one of our pages on our website. When I preview the side (F10) it runs just fine, but when I r