Personalization - run a request from menu

Hi.
I'm trying to run a concurrent request (report) from an ebs form with personalization and pass some parameters to it (that's the tricky part).
Found a way, but I'm still curious if there is a better way to do it...
The calling part is quite easy:
1) Create a menu (SpecialX)
2) Create a Builtin 'Launch SRS Form' property with wanted request name, or Builtin 'Launch a function' FND_FNDRSRUN with request short name as a parameter for that SpecialX event
The easiest way to pass parameter to the request is to make a global parameter (:GLOBAL.XX_PARAM) on the form passing the parameter from and initialize it with the wanted value (usually item on the form).
That global parameter is then used as the default value (select :GLOBAL.XX_PARAM from dual) in the request definition, and when called from the form the parameter is copied to the request parameters.
There is also a way with passing parameters to the FND_FNDRSRUN function, and personalising the FND_FNDRSRUN form so that the parameters are forwarded to the request, but i dont like it very much.
Is there a better, cleaner way to pass the parameters to the request using personalization?
Thanks,
Regards,
Kris
Edited by: kristjan on Sep 1, 2011 2:39 PM

Hi,
Thanks, that's better way indeed.
If necessary you can call the request form afterwards to display the running/completed requests...
and the pl/sql source for running request:
FND_GLOBAL.APPS_INITIALIZE(user_id, resp_id, resp_app);
l_sub_request := false;
l_request_id := fnd_request.submit_request(
application
+, program+
+, description+
+, start_time+
+, l_sub_request+
+, argument1+
+, argument2+
+, argument3+
+, argument4+
+, argument5+
+, argument6+
+, argument7+
+, argument8+
+, argument9+
+, argument10+
+, argument11+
+, argument12+
+, argument13+
+, argument14+
+, argument15+
+);+
commit;
l_call_status := fnd_concurrent.wait_for_request (l_request_id,10,0,l_phase,l_status,l_dev_phase,l_dev_status,l_message);
Regards,
Kris
Edited by: kristjan on Mar 1, 2012 2:27 PM

Similar Messages

  • How to run Conc program from Menu.Pls Help.

    Hi,
    In PO Screen i want to enable the user to run a concurrent request by clicking on a top menu. Say I have a prompt called "Purchase Order", clicking on it should run a Custom concurrent program passing some parameters from PO Screen.Output should be in PDF.
    How do I achieve this?

    Hi,
    You may achieve that using form personalizations.
    Step 1
    Condition: WHEN-NEW-FORM-INSTANCE
    Action: Menu
    Menu: MENUxx or SPECIALxx
    Step 2
    Condition: MENUxx or SPECIALxx
    Action: Builtin
    Builtin Type: Launch SRS Form
    Hope it helps.

  • Unable to run Concurrent Request from Trigger

    Hi All
    Lots of Forums out there on this but I can't resolve it.
    Trigger as below does not run concurrent program.
    CREATE OR REPLACE TRIGGER APPS.XXGL_PNL_CONTROL_snapshot
    AFTER INSERT OR UPDATE
    ON XXOBI.XXGL_PNL_CONTROL
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    WHEN (
    NEW.STATUS ='APPROVED'
    declare
    l_errbuf varchar2(4000);
    l_retcode varchar2(4000);
    L_REQUEST_ID NUMBER;
    l_phase VARCHAR2 (240);
    l_status VARCHAR2 (240);
    l_dev_phase VARCHAR2 (240);
    l_dev_status VARCHAR2 (240);
    l_message VARCHAR2 (2000);
    l_call_status BOOLEAN;
    L_set_mode boolean;
    PRAGMA AUTONOMOUS_TRANSACTION;
    begin
    L_Set_mode := FND_Request.Set_Mode(TRUE);
    fnd_global.APPS_INITIALIZE (fnd_global.user_id,fnd_global.resp_id,fnd_global.resp_appl_id);
    l_request_id := fnd_request.submit_request(application => 'RMB GL',
    program => 'XXGLBSSNAP',
    argument1 => :NEW.CALENDAR_DATE,
    argument2 => :NEW.PNL_ROLLUP
    commit;
    end;
    If I remove the commit I get the following error
    active autonomous transaction detected and rolled back
    Cause: Before returning from an autonomous PL/SQL block, all autonomous transactions started within the block must be completed (either committed or rolled back). If not, the active autonomous transaction is implicitly rolled back and this error is raised.
    Action: Ensure that before returning from an autonomous PL/SQL block, any active autonomous transactions are explicitly committed or rolled back. ----------------------------------------------------------------------- 06520 through 06529 reserved for Foreign function errors
    Any help would be hugely appreciated
    Nicki

    after fnd_request.submit_request you must use - commit
    try change you code
    CREATE OR REPLACE TRIGGER APPS.XXGL_PNL_CONTROL_snapshot
    AFTER INSERT OR UPDATE
    begin
       cp_run(
                :NEW.CALENDAR_DATE...
    end;
    CREATE OR REPLACE PROCEDURE  cp_run (
           ... p_date indate ...
        IS
           PRAGMA AUTONOMOUS_TRANSACTION;
    l_request_id := fnd_request.submit_request(application => 'RMB GL',
    program => 'XXGLBSSNAP',
    argument1 => p_date
    commit;
    ...for example http://www.java2s.com/Tutorial/Oracle/0560__Trigger/MarktriggerwithPRAGMAAUTONOMOUSTRANSACTION.htm

  • Stopping a "run-away" request

    What is the best way to stop a "run-away" request from a JSP? Say the User has a page from which he can issue a request. For example, say that the request performs a database query and returns a list of objects. If the system performance is slow, and the User is tired of waiting for a response, how may the applicaiton be designed to terminate a request to permit the User to issue a new request that is more granular and refined in its scope, and which will presumably run more quickly? Can one place a stop button on the form? Are there any threading issues in terms of the functionality with the stop button to be able to terminate the previous request that is "in-flight" with respect to the middle tier or the host?
    Does killing the browser session (which causes the client to lose connectivity to the middle-tier) automatically stop the request?
    Does pressing the stop button in the browser have the same effect?

    We are running the JSP in an IFrame within the browser, and I have noticed that pressing the browser's stop button has no effect on the JSP.
    Even if we could get this to work, I am not sure if it will cause the process on the middle-tier to stop consuming resources.
    Thanks for your feedback. I guess I am interested in learning about any/all implementation alternitives, with a view to understanding the complexity/cost/and limitations of each implementation alternative.

  • How to tell if the AE programm is called from (1) SYSTEM PROCESS REQUEST or (2) page run control request

    We just wrote an AE program and is called through the vanilla SYSTEM PROCESS REQUEST.
    It's running on a daily basis ie. with RECURRENCE.
    Now we need to call the same program through the regular page run control request.
    But we are not how to recognize from inside the AE program if whether it's been called from SYSTEM PROCESS REQUEST or RUN CONTROL REQUEST.
    Any of you might have suggestion ?
    Any technique or workaround is also appreciated.
    THANKS in Advance .

    This AE pgm is currently automatically called from SYSTEM PROCESS REQUEST on a daily basis to load data from an input file deposited on the server ready for pickup.
    We would like to use the same AE pgm ( thus using the same validation and loading logic ) to load the same file format but defined by the user ( via attachment load ) as needed any time during the day.
    The user will initiate this AE pgm online ( ie. from a page with his parameters ).
    Currently, the pgm now already runs automatically daily and we wish to make it also available to be run by user anytime in the day
    To achieve that, we would need to know:
    Is the AE pgm ran by (a) the user or by the (b) SYSTEM PROCESS REQUEST so that the program can decide of where to take input file.
    (a) Take from an attachment defined by user or (b) from the input file already deposited on the server for pickup
    That is the reason why we try to detect who called the AE pgm in order decide where to pickup the input file.
    Your help is much appreciated as I do researches but so far haven't gotten a concluded decision.
    Thank you.
    Message was edited by: Kel_123

  • Run a Report from a Forms Menu

    I have a brain teaser,
    I am trying to run a report from a forms menu item. Here
    is my menu item code:
    RUN_PRODUCT(REPORTS,
    'C:\Documents and Settings\Bradley\My Documents\A_THESIS\Reports\AUCTION_EVENT_REPORT',SYNCHRONOUS,RUNTIME,FILESYSTEM,'',NULL);
    When I call on the menu item it works for a while and then a Reports Background Engine error message says:
    REP-0110: Unable to open file 'C:\Documents and Settings\Bradley\My Documents\A_THESIS\Reports\AUCTION_EVENT_REPORT'.
    REP-1070: Error while opening or saving a document.
    REP-0110: Unable to open file
    Any ideas?
    Any help appreciated,
    Bradley

    Frank,
    I tried it at C:\AUCTION_EVENT_RPT with the same result.
    Do you ever run Reports from a form? If so how do you do it?
    Bradley

  • I have a request from a customer to run a script to create multiple Usernames and Passwords on ACS5.3 appliance.

    I have a request from a cutomer to run a script to create multiple username and password on ACS5.3 Appliance. Does anyone has any suggestion on how to go about this?

    Have you tried using the import option on the ACS? You can put all your accounts in a csv file and upload it into the ASA.
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_system/5.3/user/guide/users_id_stores.html#wp1132152
    If that doesnt work you can use the REST Web Services in ACS also:
    http://www.cisco.com/en/US/docs/net_mgmt/cisco_secure_access_control_system/5.3/sdk/rest.html
    Thanks,
    Tarik Admani
    *Please rate helpful posts*

  • [SOLVED] Running wine prog from Openbox menu

    Hello everyone. I was wondering if there's a way to run a program installed through wine from the openbox menu? The problem I'm having is that you have to be in the directory with the .exe in order to run it properly. I can run it fine from the terminal but not openbox.
    I've tried the suggestions here: http://crunchbang.org/forums/viewtopic.php?id=24893
    Any ideas?
    Last edited by Somnus (2013-12-28 01:37:39)

    Probably the best formal way to do this is by creating a .desktop file for your Wine application and putting it in the ~/.local/share/applications directory.
    In this file you would specify a Path key to change to the .exe directory, and then the Exec key to run: wine /path/name.exe etc
    In the Openbox menu you'd then make an entry which runs a command - like xdg-open - which can launch the .desktop file.
    (My own launcher fyr can do this, for example, but there are others.)
    Using .desktop files is the "modern" way to launch applications!

  • When I run my script from a shortcut ExtendScript is invoked, but it is not when I run it the menu

    I am using Photshop CS2 on Win XP
    I have configured a keyboard shortcut (Crtl+Alt+P) to run a .jsx file from the ...\Presets\Scripts\ folder.
    When I activate the script via the Keyboard Shortcut ExtendScript is invoked, and breaks execution on the main() statement (see below).
    When I activate the script via the File/Scripts menu ExtendScript is not invoked and the script runs to completion.
    The .jsx file is a wrapper for a .vbs script which does the 'real' work.
    The .jsx is:-
    function main()
        var VBSscript=File("C:/Program Files/Adobe/Adobe Photoshop CS2/Presets/Scripts/GGN_PS_Code_v1_2.vbs");
        if(VBSscript.exists) VBSscript.execute();
    main();
    Does anyone have any ideas as to how to disable the invokation of ExtendScript when I run the script from the skortcut?

    Thanks Paul.
    I am out of the office at the moment, but your answer rings true. Certainly the .jsx extension is associated with ExtendScript. I'll delete the association and try again when I am back in the office.
    Many thanks

  • Error while running leave request Workitem from UWL

    HI,
    While running the workitem from UWL in MSS we are getting the following error
    URL http://sapdev.rediffsap.net:8000/webdynpro/dispatcher/sap.com/ess~lea/LeaveRequestApprover call was terminated because the corresponding service is not available
    i.e its is not launching the Web Dynpro application.
    As result I have checked the following :-
    1) Maintained entries as per SAP note 779075.
    2) Alias for the portal system has been set to SAP_WebDynpro_XSS and UWL has been registered with this alias.
    3) check entried for Task - TS31000007  APPLICATION - CatManagerApprove and PACKAGE - sap.com/msscatapproval which are set in T-code SWFVISU.
    Plus I have also tried the following changes.
    1) All the services in SICF are activated.
    2) I have tried setting the WEBASPATH to blank and set it to /webdynpro/dispatcher and /webdynpr/dispatcher/sap.com but it does not test the WAS connection as correct, but running the Workitem still results in the same error.
    I am running out of ideas now to correct this. Please help.
    Regards
    Shakti

    >
    Shakti Parwanda wrote:
    > Problem has been resolved and I have added alias as SAP_ECC_HumanResources in system alias in UWL and Webdynpro Launch system as SAP_WebDynpro_XSS.
    >
    > And, it solved my problem
    Hi Mr. Shakti
    i too have the same problem ,how did u resolved it.
    i applied the note 779075 still same error is comming
    created three system SAP_R3,sap_its_xss, andsap_webdynpro_xss
    through which system i have to register the system
    Regards
    K Naveen Kishore.

  • Request to run updater.exe from an unknown publisher starting firefox

    every time Firefox is started from initial turn on of computer (not from the computer being hibernated or in sleep mode), I receive a message to run Updater.exe from an Unknown Publisher. There is nothing to show that this is a Firefox application but, I am not receiving any threat messages either. Is there any way to find out where this Updater is coming from and if it is to be trusted?

    Do you use a Norton security suite? If so, I suggest checking with Norton's support on whether that prompt is legitimate.
    You will find numerous unofficial distributors advertising on Google for Firefox downloads. These generally are bundles of crap along with Firefox. You should check to make sure you don't have such a thing installed.
    Open the Windows '''Control Panel''', Uninstall a Program. After the list loads, click the "Installed on" column heading to group the infections, I mean, additions, by date. This can help surface undisclosed bundle items that snuck in with some software you agreed to install. Take out as much trash as possible here.
    You can supplement your regular security software with the '''scanning/cleaning tools''' listed in our support article: [[Troubleshoot Firefox issues caused by malware]]. These on-demand scanners are free and take considerable time to run. If they finish quickly and especially if they require payment, you may have a serious infection. I suggest the specialized forums listed in the article in that case.
    Does that help?

  • Run Report From Menu

    I am trying to run the reprt through menu but no out put
    I run the report thru the browser
    http://it-test:8889/reports/rwservlet?server=repsrv&report=c:\test\t1.rep&userid=scott/[email protected]&desformat=pdf&destype=cache&paramform=yes
    It works fine and i am getting the output
    But when i try to run the same report through menu no out put
    Code is like this:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    REP_PROPERTY VARCHAR2(100);
    v_show_document     VARCHAR2 (2000) :=
    'http://it-test:8889/reports/rwservlet?';
    v_connect     VARCHAR2 (200) := 'userid=scott/[email protected]';
    v_report_server     VARCHAR2 (30) := 'repsrv';
    v_report_name     VARCHAR2(100) := 'c:\test\t1.REP';
    v_format     VARCHAR2(12) := 'PDF';     
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid :=Create_parameter_List('tmp');
    repid := FIND_REPORT_OBJECT('t1');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_FILENAME, 'c:\test\t1.REP');
    if id_null(repid) then
         pause;
         message('repid is null');
         ELSE
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repsrv');
    v_rep := RUN_REPORT_OBJECT(repid,'repsrv');
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    v_show_document := v_show_document
    || v_connect
    -- Report server
    || '&server='
    || v_report_server
    -- Report name
    || '&report='||v_report_name
    -- Reports parameters
    || '&destype=CACHE'
    || '&desformat='||v_format
    || '&paramform=yes' ;
    END IF;
    if
    rep_status = 'FINISHED'then
    pause;
    message('Finished');
    web.show_document(v_show_document,'_blank');
    else
    message ( 'error while running reports-object ' || error_text );
    message ( ' ' );
    clear_message;
    end if;
    END;
    The out put is nothing
    the message displays as finished
    The same i tried with
    web.show_document('http://www.google.com','_blank');
    no out put
    can u tell me what could be the problem??
    I am using Internet Explorer 7
    Thanks
    Elsy

    Hi All,
    In the Internet explorer pop up was blocked
    I unblocked it and its working fine
    Thanks to all

  • How do I launch report from menu using RUN_REPORT_OBJECT?

    Hi all,
    Re: How do I launch report from menu (and have it print to the screen) using RUN_REPORT_OBJECT?
    I am using Oracle 9iAS on Windows 2000 and I have a similar problem with launching reports from the menu. The application should call the report via the RUN_REPORT_OBJECT builtin feature from Forms. The report is never displayed.
    The report is in the same folder as the menu form calling it. Do the reports have to be in a specific format? How do I get the report_id?
    The name of the report is seconds_calls. No user-specified parameters are passed. Also, the report object in the object navigator in Forms is Report4 (is this relevant?)
    When I try to run report via the form using this code:
    DECLARE
         report_id REPORT_OBJECT;
         rep_status VARCHAR2(200);
         v_rep VARCHAR2(100);          
         report_job_id VARCHAR2(200);
    --     job_number NUMBER;
    --     server_name VARCHAR2(200) := 'repserver';
    BEGIN
         report_id:= FIND_REPORT_OBJECT('seconds_calls');
         rep_status:=REPORT_OBJECT_STATUS(report_job_id);
         v_rep := RUN_REPORT_OBJECT(report_id);
    END;
    I get this error message:
    FRM-41219 Cannot find report:Invalid ID
    And this message
    FRM-40738 Argument 1 to builtin RUN_REPORT_OBJECT cannot be null
    When I tried to use the same code (above), substituting the object name for the form name,
    I got these messages:
    FRM-41219 Cannot find report:Invalid ID
    FRM-40738 Argument 1 to builtin RUN_REPORT_OBJECT cannot be null
    And FRM-10259 Invalid null argument to packaged procedure or function (???)
    Any ideas?
    Cheers,
    Pippa

    Philippy,
    substr(v_rep,instr(v_rep,'_',-1)+1)
    This code extracts the Reports job id from the Reports Server name. The run_report_object() built-in
    retrieves e.g. RepServ_9 as a job id, but in Reports9i you only need the '9' as a value to retrieve the
    output.
    Use the following sample a template. It is a procedure that expects the reports object name, teh reports server name and the
    output format as an argument. The call to Web.show_document expects the ReportsSrevices to be accessible from teh same server
    (relative addressing is used)
    PROCEDURE RUN_REPORT_OBJECT_PROC (vc_reportobj Varchar2, vc_reportserver varchar2, vc_runformat varchar2) IS
    v_report_id           Report_Object;
    vc_ReportServerJob      VARCHAR2(100); /* unique id for each Report request */
    vc_rep_status      VARCHAR2(100); /* status of the Report job */
    vjob_id               VARCHAR2(100); /* job_id as number only string*
    BEGIN
    /* Get a handle to the Report Object itself. */
    v_report_id:= FIND_REPORT_OBJECT(vc_reportobj);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
    /* Define the Report output format and the name of the Reports Server as well as a user-defined parameter, passing the department number from Forms to the Report. We don't need a parameter form to be displayed, and therefore paramform is set to "no". */
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT, vc_runformat);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER, vc_reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER,      'p_deptno='||:dept.deptno||'paramform=no');
    vc_ReportServerJob:=RUN_REPORT_OBJECT(report_id);
    /* remove the Reports Server name from teh job id */
    vjob_id := substr(vc_ReportServerJob,length(reportserver)+2,length(vc_ReportServerJob));
    /* Check the report status if finished. */
    vc_rep_status := REPORT_OBJECT_STATUS(vc_ReportServerJob);
    IF vc_rep_status='FINISHED' THEN
    /* Call the Report output to be displayed in a separate browser window.
    The URL for relative addressing is only valid when the Reports Server
    is on the same host as the Forms Server. For accessing a Remote Reports
    Server on a different machine, you must use the prefix http://hostname:port/ */
    WEB.SHOW_DOCUMENT ('/reports/rwservlet/getjobid '||vjob_id ||'?server='vc_reportserver,'_blank');
    ELSE
    message ('Report failed with error message '||vc_rep_status);
    END IF;
    END;
    Frank

  • How to submit a concurrent request from Discoverer report.

    I would like to know If any one has tried submitting a concurrent request from Discoverer Report?_
    This is no stupid question, but our team here finally decided with a solution to our long pending issues with few of the discoverer report. To Proceed further, we would like to know, how to submit a concurrent request from Discoverer report?
    We are looking for calling a package from the Disco admin by passing the parameters from the disco to the 6i report.
    All help us in this regards are much appreciated.
    Kindly help us in the same!
    Thanks
    Arun

    Thanks Rod for confirming the same.
    I will be trying the same today and will let you know if I succeed in doing it.
    If I can share the actual requirement with you, it goes like this.
    "I will be triggering the Oracle 6i standard AP Trail balance report through the Disco report. The standard report will be inserting the required data to one of my custom table. Once the concurrent program completes normal, my custom table will be having the required data to create the workbook specific to the current run of the concurrent program.
    The one problem which I think could happen is, How can I make my disco report to wait till the standard program to complete in normal so that my disco report can be generated with the data from custom table.
    Will the above requirement is possible If I follow the way you mention in the PDF or Could you suggest a better way for achieving the same.
    In short, my requirement is: The custom table(say XX_TABLE) will be populated with data when the standard 6i report is run and the disco admin will be making of the custom table (XX_TABLE) to generate the report.
    Please advice.
    Thanks
    Arun

  • Error while sending a soap request from XML SPY to a webservice in XI

    Hi ,
    I published a webservice om the XI end and testing it with consuming the WSDL file in XML SPY and sending a soap request from there.
    I am getting the following error .
    <b>com.sap.aii.af.mp.module.ModuleException: either no channelID specified or no channel found for the specified party, service, and channel name</b>, MessageServlet(Version $Id: //tc/xi/645_VAL_REL/src/_adapters/_soap/java/com/sap/aii/af/mp/soap/web/MessageServlet.java#4 $)
         at com.sap.aii.af.mp.soap.web.MessageServlet.doPost(MessageServlet.java:380)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Is this error due to the user authentication or due to some other issue .
    Please do let me know soon .
    Thanks a lot
    Nikhil

    Hi Ricardo ,
    I have the correct port now.
    the url looks like
    http://<host>:50000/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST
    when I am testing it in the XML spy. and send a soap server request. I am getting the popup for user authentication . once i put my user id it gives me a error saying
    <b>HTTP operation 'POST' could not be performed on URL
    '/XISOAPAdapter/MessageServlet?channel=:SIEBEL_DEV:SOAP_CUST&amp;version=3.0&amp;Sender.Service=SIEBEL_DEV&amp;Interface=http%3A%2F%2FOFCOM%2FUNIFY%2FCustomerMaster%5EMI_CUST'  due to an error :
    The connection to the server was terminated abnormally</b>
    Any Idea as to why is such a error is coming
    Thanks for the help
    Nikhil

Maybe you are looking for

  • Mini displayport HDMI adaptor doesn't work

    I bought a mini display port to HDMI adaptor for my Macbook Pro. But every time i plug it into my tv it only shows the default purple sky background and none of my actually stuff. I don't know why it's doing this. can anyone help?

  • PO no History update

    Hi, I have created a purchase order for text material (without material no). And posted inbound delivery without error/warning messages using VL06IG tcode. This inbound del. is creating a confirmation of service, and not a goods receipt. Normally a G

  • How do i send user to a certain page after INSERT in a form

    Hello, i created an insertion form for a table. Everytime i submit an entry, portal returns to the form. But i want to send the user to a report that shows his/her new entry. How can i accomplish that? thank you for your help, Ralf Schmitt

  • Date Picker: Only select Month and Year

    Hallo, I try to configure the Date Picker. For the users it should only be possible to select Month and Year. The column should be automaticly completed with the first day of the select month and a static time (00:00:00). How can I do this? Sincerly

  • What is the best way to write a math book?

    should i use graphic tablets such as wacom,smartpen etc. or should i type it using a program like math type. thanks for replies.