Trigger scenario when receive a flag 'X' through Unix script

Hi All,
I want to schedule my scenarios through a third party software which does scheduling of all jobs across landscape.
My requirement is as follows:
1) receive a flag having value 'X' through Unix shell script and then i want to trigger my PI scenario.
2) when my scenario is successful then i want to send a success flag to third party schedular so that it can proceed with rest of the job scheduling.
-> This second part i can perhaps do by using OS level commands after message processing.
However how can i trigger my scenario after receiving flag?
Thanks ,
Atul.

Hi VJ,
Thanks for ur reply.
Can u plz suggest any blogs for this...
I have understood it like below:
I will create a file through Unix script.
This file will trigger my scenario.
then if my real scenario is File to JDBC How should i pick up new file?
How to achieve this order like:
Receive first file
Receive second file
Send to JDBC.
I am confused with Receiving first file and then again calling second channel to receive another file..
Can u suggest how to configure it in ID? Like how many sender agreements, Receiver agreements etc
Thanks,
Atul

Similar Messages

  • HOW TO RUN BODS JOB THROUGH UNIX SCRIPT

    Dear Experts
    Please provide me the way how to call a job by a script .
    I have used Export Execution Command as recommended by below links
    http://scn.sap.com/docs/DOC-34648
    http://scn.sap.com/community/data-services/blog/2012/08/22/sap-bods--running-scheduling-bods-jobs-from-linux-command-line-using-third-party-scheduler
    But I am not able to locate .sh  file in unix server .
    This is required to call a job after completion of parent job.
    Thanks
    Anupam

    You can check the status in "SAP Business Objects Data Services management Console", Below are the steps
    Login in SAP Business Objects Data Services management Console
    Click on Batch Job
    Select the local repository
    Then check your Job Execution status from there
    For your second query there are two ways one is do the same activity what you have done in DEV.
    below are the steps
    Login in SAP Business Objects Data Services management Console and export the Jobs using export execution command from batch job
    SHELL Scripts will be exported in Job Server Log
    Move that SHELL script as per your location
    Update the User environment variable same as DEV only difference is SID is changed
    Thanks,
    Daya

  • Unable to pass parameter in oracle procedure through unix shell script

    Hi Experts,
    I have oracle procedure where in I have to pass the value of procedure parameter through unix script.
    Follwoing is the sample procedure which i tried to exceute from the unix.
    Procedure:
    create or replace procedure OWNER.PRC_TESTING_OWNER(OWNER IN VARCHAR2) AS
    sql_stmt varchar2(1000) := NULL;
    v_count number := 0;
    v_owner varchar2(100) := owner;
    begin
    sql_stmt:='select count(1) from '||v_owner||'.EMP@infodb where rownum<=10';
    execute immediate sql_stmt into v_count;
    DBMS_OUTPUT.PUT_LINE(sql_stmt);
    DBMS_OUTPUT.PUT_LINE(v_count);
    END;The script which I used is:
    Unix
    #!/bin/ksh
    parm=$1
    echo start
    sqlplus -s scott@DEV/tiger <<EOF >>result_1.txt
    set serveroutput on;
    select '$parm' from dual;
    exec owner.PRC_TESTING_OWNER('$parm');
    EOFThe script is working fine that is i am able to pass to parameter value through unix shell script. :)
    But if I want to pass the value of the owner in cursor , I am unable to pass this value through unix.
    Following the procedure which i am trying to implement.
    create or replace procedure OWNER.PRC_TESTING_OWNER(OWNER IN VARCHAR2) IS
    v_owner varchar2(100) := owner;
    CURSOR main_cur IS 
      select
      i.ROWID  rid ,
      emp_name,
      deptid
      from v_owner.employee;
    CURSOR subset_cur(c_deptid NUMBER ) IS
        SELECT *
          FROM v_owner.DEPT d
          where  d.dept_id=c_deptid;
    --##main loop     
    FOR i IN main_cur LOOP
          FOR j IN subset_cur(i.deptid) LOOP     
    BEGIN
    insert into v_owner.RESULT_TABLE
    END;
    END LOOP;
    END LOOP;How can i pass parameter value of the stored procedure through unix script(that is "owner" in this case), when these parameter value is
    used in cursor? :(
    Can anybody help me regarding the same?
    Thanks in Advance !! :D

    It's not the parameter in the cursor that is the problem, it's that you are trying to use static SQL for something that won't be known until run time (the owner of the table).
    You would need to use something like ...
    declare
       l_owner        varchar2(30) := 'SCOTT';
       l_ref_cursor   sys_refcursor;  
       type l_ename_tab is table of scott.emp.ename%type;
       l_ename_array  l_ename_tab;
    begin
       open l_ref_cursor for
          'select ename
          from ' || l_owner || '.emp';
       loop
          fetch l_ref_cursor bulk collect into l_ename_array limit 10;
          exit when l_ename_array.COUNT = 0;
          for x in 1 .. l_ename_array.count
          loop
             dbms_output.put_line(l_ename_array(x));
          end loop;
       end loop;
       close l_ref_cursor;
    end;
    SMITH
    ALLEN
    WARD
    JONES
    MARTIN
    BLAKE
    CLARK
    SCOTT
    KING
    TURNER
    ADAMS
    JAMES
    FORD
    MILLER
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.01

  • Trigger fails when variable used in WHERE statement

    I have a trigger that works when the following statment is in it:
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = 152345;
    But the trigger fails when I attempt to use a variable in the where statement as follows.
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = :new.servno ;
    Even though I have verified that the value of :new.servno is set to 152345 by outputting the value . That is the only difference between the working version and the non-working version. By not working I mean that the email which is to be sent by the trigger is not received.
    Can anyone give me any ideas of how I could troubleshoot this or what might me happening? I'm pretty new to this and
    feel that I'm missing something very simple. My apologies in advance if this has been posted elsewhere. I did spend a lot of time searching the forum before posting.
    This is Oracle 9i.
    Thanks!
    Full code probably not necessary but posted below just in case:
    create or replace
    TRIGGER EMAILNOTIFY_NEW_SR
    AFTER INSERT ON CUSTPROB
    FOR EACH ROW
    DECLARE
    --SMTP Variables
    vreply utl_smtp.reply;
    vreplies utl_smtp.replies;
    mailCONN utl_smtp.connection;
    mailHOST VARCHAR2(64) ;
    --MESSAGE Variables
    mailText VARCHAR2(64);
    mailFROM VARCHAR2(64);
    mailTO VARCHAR2(64);
    mailDATE VARCHAR2(20);
    v_servno number ;
    v_callrkey number ;
    --PROGRAM Variables
    i number;
    BEGIN
    --get some values from the database  
    --set values for variables...
    mailHOST:= '10.35.173.15'; --this will always stay the same 
    mailFROM := 'Facilities_Customer_Service_Center'; --this will always stay the same
    mailTO := '[email protected]';
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = :new.servno  ;
    SELECT TO_CHAR(SYSDATE,'MM/DD/YYYY HH24:MI:SS') INTO mailDATE FROM dual;
    dbms_output.put_line('open_connection');
    dbms_output.put_line('---------------');
    vreply := utl_smtp.open_connection(mailHOST, 25, mailCONN);
    dbms_output.put_line('helo');
    dbms_output.put_line('----');
    vreply := utl_smtp.helo(mailCONN, mailHOST);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('mail');
    dbms_output.put_line('----');
    vreply := utl_smtp.mail(mailCONN, mailFROM);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('rcpt to');
    dbms_output.put_line('----');
    vreply := utl_smtp.rcpt(mailCONN, mailTO);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('open_data');
    dbms_output.put_line('---------');
    vreply := utl_smtp.open_data(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    --SMTP ENVELOPE STUFF (In case it is needed later).  
    --utl_smtp.write_data(mailCONN, 'From:'  ||mailFROM     || chr(13));
    -- utl_smtp.write_data(mailCONN, 'To: '||mailTo || chr(13));
    --utl_smtp.write_data(mailCONN, 'CC:      '||mailFROM     || chr(13));
    --utl_smtp.write_data(mailCONN, 'Date:    '||mailDATE     || chr(13));
    --utl_smtp.write_data(mailCONN, 'BCC:     '||mailFROM     || chr(13));
    --THE MESSAGE
    utl_smtp.write_data(mailCONN, 'Subject: '||'Your Facilities Service Request ' ||'(SR '||v_servno||')'|| chr(13));
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, 'Dear Customer ' || chr(13));
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, 'This is to inform you of something.' || ' ' ||mailTO|| chr(13) );
    utl_smtp.write_data(mailCONN, 'Please call us with any questions or concerns. ' || '' || chr(13));
    --DEBUG
    utl_smtp.write_data(mailCONN, 'DEBUG: ' || ''|| chr(13));
    utl_smtp.write_data(mailCONN, 'v_Servno ' || v_servno || chr(13));
    utl_smtp.write_data(mailCONN, 'v_callrkey ' || v_callrkey || chr(13));
    --END THE MESSAGE
    dbms_output.put_line('close_data');
    dbms_output.put_line('----------');
    vreply := utl_smtp.close_data(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('quit');
    dbms_output.put_line('----');
    vreply := utl_smtp.quit(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    END;

    Justin,
    Thanks for the reply. I'm away for a couple of days but when I get back to this I'm going to follow up on your suggestion about servno. I'm starting to think that the issue isn't with servno but rather that the select query doesn't return anything because the value I'm trying to get is in another table and is not being inserted in time for me to get them. This will be easiy enough to test. To be honest, I don't know very much about how things are being inserted.
    I appreciate your and Tubby's (and Tom's) concerns. Maybe I'll go back to the drawing board next week. But note that I'm not inserting anything with this trigger--only sending an email based on the insert that is happening through an application. So unless I'm really missing it, my email is dependent on the insert but not vice versa. Since my email is absolutely critical but rather jus a courtesy thing, I was taking a pretty laid back attitude about it but it would be good for me to learn a better way.
    Thanks again to all! I'll report back what I find/decide.

  • I can no longer receive e-mail messages through my @mac/@me account. I can still send e-mail messages, though. I believe there may have been recent attempts to hack into my account. I have changed my password, but wonder how to start receiving mail again?

    I can no longer receive e-mail messages through my @mac/@me account, though I still seem to be able to send messages. I believe there may have been recent attempts to hack into my Mail account (my LinkedIn and Facebook accounts were both hacked three days ago and a scam/phishing message sent to my contacts, and I know there was at least an attempt made to hack into one of my e-mail accounts). I have already changed my Apple password, but how do I start receiving mail again?
    (And I should also say that I'm a little surprised there was no alert from Apple of suspicious activity on my account, if such was the case. Instead, when I logged into my account via Mobile Me three days ago I noticed that all messages in my inbox were gone as well as all of my contacts. I assume this was related to the current problem.)
    Thanks for all responses.

    The problem has been solved with the help of a MobileMe online counsellor. My MobileMe account had in fact been hacked into and the fraudster had been redirecting my e-mail messages to a phony account that he controlled. We took the forward off and reset all my passwords and security questions, which solved the immediate problem.
    Thx.

  • PI 7.3 receiver AAE idoc scenario-No receiver comm channel found in ICO

    Hi,
    I am working in PI 7.3 receiver AAE idoc scenario.When I try to configure Integrated Configuration(ICO),I am not able to see the receiver comm channel in receiver agreement.
    What is the reason for this??I have configured the communication channel,but still its not shown in reciver agreement dropdown.
    Please help.
    Regards,
    Sriparna

    Hi Sriparna,
    In PI 7.3 there is are two separate IDoc adapters: "standard" IDoc adapter and one that is dedicated for AAE (ICO). Make sure that you have used the right one - most probably not, which is why you cannot see the channel in the dropdown list.
    Hope this helps,
    Grzegorz

  • Why are my edited pictures from bridge not saving when I automate batch files through PS?

    When I edit my photos through adobe bridge (open camera raw, make adjustments to 1 picture), then automate (batch) my file folder in PS, the edits I have made don't save. Example, I crop an image & lighten it, I can view the adjusted image in bridge & camera raw, but when I batch my photos the editing I have done is gone.

    Raw files need to be opened and saved before the adjustments are applied.  I have no clue what your "batch save" does.
    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Brand new 5s- sometimes phone numbers display when receiving calls and texts instead of contact name.

    Brand new 5s- sometimes phone numbers display when receiving calls and texts instead of contact name. Hard to know who is calling/texting! A few times I've tapped on the text message icon and I can actually watch as the conversations turn from showing just numbers to the contact names. Same thing when looking at call history and voice mail- sometimes it shows numbers and then I'll go back and the contacts will be back. So frustrating!

    boomer1630 wrote:
    - i have a Samsung S3)
    -I have tried using *228 to update.
    You don't dial *228 to update the Preferred Roaming List on 4G phones; I"m surprised the call went through.  The PRL updates are handled by the SIM card. 
    Try this and see if it helps:  turn off the phone, remove the SIM card, and wait a few minutes.  Then re-insert the SIM card, turn the phone back on, and give the phone a few minutes to re-establish a network connection.

  • Trigger email when employee responsible is changed

    Hi Experts,
    Kindly advise how to trigger email when the employee responsible is change to another employee, is there any standard workflow to achieve the task or this needs some enhancement,,, I mean development. I assume this can be achieved out of box.
    Regards
    AM

    I would investigate if you can achieve your requirement trough workflow, as I'm not a workflow expert I can't guide you further.
    as other members already recommended You can use actions with a custom complex schedule condition, which can be done through BADI. I would have two actions
    1- will be triggered only one time, which will notificate the opportunity creation
    2- Only will trigger if emp responsible is changed, via custom schedule condition (BADI) and will be triggered N times, of course if the condition is met.
    I had written a blog which can give you sone hint, at least had very usefull links.
    Cheers!
    Luis

  • SOAP:1.023 SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_SSL_ERROR")

    Hello all,
    can you pls suggest me smth for this:
    I am running solman_setup and at phase 5.1 (Configure Web dispatcher) and I have errors:
    SOAP:1.023 SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_SSL_ERROR")
    L3 - Failed to reach test WS through System Settings (ICM/HTTPURLLOC)
    L2 - Failed to reach test WS through ICM
    I choosed: No SAP Web Dispatcher used
    What I did:
    1. re-created users SM_EXTERN_WS and SM_INTERN_WS
    2. added table HTTPURLLOC with the full hostname and the port
    3. created SSL server standard certificate in STRUST and its green
    4. instance profile>>add login/accept_sso2_ticket=1 and login/create_sso2_ticket=2
    Thx for any suggestion
    Chris

    Hello,
    I read note 1094342 - ICM trace contains verification of the server's certificate
    and I installed in the IE browser the PSE saved from /strust
    Thx for any idea
    [Thr 140736729089792] *** ERROR during SecudeSSL_SessionStart() from SSL_connect()==SSL_ERROR_SSL[Thr 140736729089792]    session uses PSE file "/usr/sap/SID/DVEBMGS00/sec/SAPSSLA.pse"[Thr 140736729089792] SecudeSSL_SessionStart: SSL_connect() failed[Thr 140736729089792]   secude_error 536872221 (0x2000051d) = "SSLAPI error"[Thr 140736731203328] NiIBlockMode: set blockmode for hdl 92 FALSE[Thr 140736729089792] >> Begin of Secude-SSL Errorstack >>[Thr 140736729089792] 0x2000051dSAPCRYPTOLIB SSL_connect[Thr 140736729089792] SSL API error[Thr 140736729089792] Failed to verify peer certificate. Peer not trusted.
    ][Thr 140736729089792] << End of Secude-SSL Errorstack[Thr 140736731203328] NiIBlockMode: set blockmode for hdl 92 TRUE[Thr 140736729089792]   SSL_get_state() returned 0x00002131 "SSLv3 read server certificate B"[Thr 140736731203328]   SSL_get_state() returned 0x00001180 "SSLv3 read client certificate A"[Thr 140736731203328] *** ERROR during SecudeSSL_SessionStart() from SSL_accept()==SSL_ERROR_SSL[Thr 140736731203328]    session uses PSE file "/usr/sap/SID/DVEBMGS00/sec/SAPSSLS.pse"[Thr 140736731203328] SecudeSSL_SessionStart: SSL_accept() failed[Thr 140736731203328]   secude_error 536875078 (0x20001046) = "SSL API error"[Thr 140736729089792] No certificate request received from Server[Thr 140736731203328] >> Begin of Secude-SSL Errorstack >>[Thr 140736731203328] 0x20001046SAPCRYPTOLIB SSL_accept[Thr 140736731203328] SSL API error[Thr 140736731203328] received a fatal SSLv3 certificate unknown alert message from the peer[Thr 140736731203328] 0xa0600263 SSL ssl23_accept[Thr 140736731203328] received a fatal SSLv3 certificate unknown alert message from the peer[Thr 140736731203328] 0xa0600263 SSL ssl3_read_bytes[Thr 140736731203328] received a fatal SSLv3 certificate unknown alert message from the peer[Thr 140736731203328] << End of Secude-SSL Errorstack[Thr 140736731203328] <<- ERROR: SapSSLSessionStart(sssl_hdl=1315bf0)==SSSLERR_SSL_ACCEPT[Thr 140736731203328] <<- SapSSLErrorName()==SSSLERR_SSL_ACCEPT[Thr 140736729089792] <<- ERROR: SapSSLSessionStart(sssl_hdl=7fffcc023860)==SSSLERR_PEER_CERT_UNTRUSTED[Thr 140736729089792] <<- SapSSLErrorName()==SSSLERR_PEER_CERT_UNTRUSTED[Thr 140736731203328] *** ERROR => IcmConnInitServerSSL: SapSSLSessionStart returned (-56): SSSLERR_SSL_ACCEPT [icxxconn_mt. 1713][Thr 140736729089792] *** ERROR => IcmConnInitClientSSL: SapSSLSessionStart failed (-102): SSSLERR_PEER_CERT_UNTRUSTED {000f3a6b} [icxxconn_mt.c 1989][Thr 140736731203328] <<- SapSSLSessionDone()==SAP_O_K[Thr 140736731203328]      in: sssl_hdl   = 1315bf0[Thr 140736731203328]          ... ni_hdl = 92[Thr 140736731203328] NiICloseHandle: shutdown and close hdl 92/sock 41[Thr 140736729089792] <<- SapSSLSessionDone()==SAP_O_K[Thr 140736729089792]      in: sssl_hdl   = 7fffcc023860[Thr 140736729089792]          ... ni_hdl = 223[Thr 140736729089792] IcmConnConnect(id=15/14955): free MPI request blocks[Thr 140736729089792] MPI<5909c>85#7 GetInbuf -1 21d220 1757 (1) -> MPI_EOS: End Of Stream

  • "ICF Error when receiving the response: ICM_HTTP_CONNECTION_FAILED"

    Hi all,
    In SMICM all the services are showing active, when I tried to run the webservices the following is the error that I am getting, have looked at different solutions on sdn.
    Also please find below the dev_icm file.
    <?xml version="1.0" encoding="utf-8" ?>
    - <asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
    - <asx:values>
      <SYSTEMFAULT href="#o112" />
      </asx:values>
    - <asx:heap xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:abap="http://www.sap.com/abapxml/types/built-in" xmlns:cls="http://www.sap.com/abapxml/classes/global" xmlns:dic="http://www.sap.com/abapxml/types/dictionary">
    - <cls:CX_AI_SYSTEM_FAULT id="o112">
    - <CX_ROOT>
      <TEXTID>F63AFF63DBE4BB4786A7F52CC4167145</TEXTID>
      <PREVIOUS />
      <KERNEL_ERRID />
    - <INTERNAL_SOURCE_POS>
      <PROGID>185</PROGID>
      <CONTID>978</CONTID>
      </INTERNAL_SOURCE_POS>
      </CX_ROOT>
      <CX_STATIC_CHECK />
    - <CX_AI_SYSTEM_FAULT>
      <CODECONTEXT>http://www.sap.com/xml_errorcodes</CODECONTEXT>
      <CODE>SOAP:1.023</CODE>
      <ERRORTEXT>SRT: Processing error in Internet Communication Framework: ("ICF Error when receiving the response: ICM_HTTP_CONNECTION_FAILED")</ERRORTEXT>
      <LANGUAGE />
      </CX_AI_SYSTEM_FAULT>
      </cls:CX_AI_SYSTEM_FAULT>
      </asx:heap>
      </asx:abap>
    dev_icm:
    trc file: "dev_icm", trc level: 1, release: "640"
    sysno      00
    sid        CC5
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    139
    intno      20020600
    make:      multithreaded, Unicode
    pid        5848
    [Thr 5852] Thu Jan 15 23:09:17 2009
    [Thr 5852] ICM running on: dlwsdv11
    [Thr 5852] MtxInit: -2 0 0
    [Thr 5852] IcmInit: listening to admin port: 65000
    [Thr 5852] DpSysAdmExtCreate: ABAP is active
    [Thr 5852] DpShMCreate: sizeof(wp_adm)##10528#(1316)
    [Thr 5852] DpShMCreate: sizeof(tm_adm)##2969176#(14772)
    [Thr 5852] DpShMCreate: sizeof(wp_ca_adm)##24000#(80)
    [Thr 5852] DpShMCreate: sizeof(appc_ca_adm)#8000#(80)
    [Thr 5852] DpShMCreate: sizeof(comm_adm)##290000#(580)
    [Thr 5852] DpShMCreate: sizeof(vmc_adm)##0#(424)
    [Thr 5852] DpShMCreate: sizeof(wall_adm)##(38456/34360/64/184)
    [Thr 5852] DpShMCreate: SHM_DP_ADM_KEY##(addr: 032C0040, size: 3381680)
    [Thr 5852] DpShMCreate: allocated sys_adm at 032C0040
    [Thr 5852] DpShMCreate: allocated wp_adm at 032C1B88
    [Thr 5852] DpShMCreate: allocated tm_adm_list at 032C44A8
    [Thr 5852] DpShMCreate: allocated tm_adm at 032C44D0
    [Thr 5852] DpShMCreate: allocated wp_ca_adm at 03599328
    [Thr 5852] DpShMCreate: allocated appc_ca_adm at 0359F0E8
    [Thr 5852] DpShMCreate: allocated comm_adm_list at 035A1028
    [Thr 5852] DpShMCreate: allocated comm_adm at 035A1040
    [Thr 5852] DpShMCreate: allocated vmc_adm_list at 035E7D10
    [Thr 5852] DpShMCreate: system runs without vmc_adm
    [Thr 5852] DpShMCreate: allocated ca_info at 035E7D38
    [Thr 5852] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 0
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 1
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 2
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 3
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 4
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 5
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 6
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 7
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 8
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 9
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 10
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 11
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 12
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 13
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 14
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 15
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 16
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 17
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 18
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 19
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 20
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 21
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 22
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 23
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 24
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 25
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 26
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 27
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 28
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 29
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 30
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 31
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 32
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 33
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 34
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 35
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 36
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 37
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 38
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 39
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 40
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 41
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 42
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 43
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 44
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 45
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 46
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 47
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 48
    [Thr 5852] IcmCreateWorkerThreads: created worker thread 49
    [Thr 4204] IcmWatchDogThread: watchdog started
    [Thr 4248] ISC: created 400 MB disk cache.
    [Thr 4248] ISC: created 50 MB memory cache.
    [Thr 4248] HttpSubHandlerAdd: Added handler HttpCacheHandler(slot=0, flags=12293) for /:0
    [Thr 4248] HttpSubHandlerAdd: Added handler HttpSAPR3Handler(slot=1, flags=4101) for /:0
    [Thr 4248] HttpSubHandlerAdd: Added handler HttpJ2EEHandler(slot=2, flags=1077253) for /:0
    [Thr 4248] Started service 1080 for protocol HTTP on host "dlwsdv11"(on all adapters) (processing timeout=60, keep_alive_timeout
    [Thr 4248] =================================================
    [Thr 4248] = SSL Initialization  on  PC with Windows NT
    [Thr 4248] =   (640_REL,Jul 16 2006,mt,ascii,SAP_UC/size_t/void* = 16/32/32)
    [Thr 4248]   SapISSLComposeFilename(): profile param "ssl/ssl_lib" = "D:\usr\sap\CC5\SYS\exe\run\sapcrypto.dll"
               resulting Filename = "D:\usr\sap\CC5\SYS\exe\run\sapcrypto.dll"
    [Thr 4248] =   found SAPCRYPTOLIB  5.5.5C pl24  (Jun 11 2008) MT-safe
    [Thr 4248] =   current UserID: I2\SAPServiceCC5
    [Thr 4248] =   found SECUDIR environment variable
    [Thr 4248] =   using SECUDIR=D:\usr\sap\CC5\DVEBMGS00\sec
    [Thr 4248] = Success    SapCryptoLib SSL ready!
    [Thr 4248] =================================================
    [Thr 4248] Started service 8443 for protocol HTTPS on host "dlwsdv11"(on all adapters) (processing timeout=60, keep_alive_timeou
    [Thr 4248] Started service 1025 for protocol SMTP on host "dlwsdv11"(on all adapters) (processing timeout=60, keep_alive_timeout
    [Thr 2464] MPI<4>1#3 Peak buffer usage: 1 (@ 64 KB)
    [Thr 2112] MPI<5>2#3 Peak buffer usage: 2 (@ 64 KB)
    [Thr 4248] Thu Jan 15 23:09:26 2009
    [Thr 4248] *** WARNING => IcmNetCheck: NiAddrToHost(10.0.0.1) took 9 seconds [icxxtool.c   1065]
    [Thr 4248] *** WARNING => IcmNetCheck: 1 possible network problems detected - please check the network/DNS settings [icxxtool.c
    [Thr 200] Thu Jan 15 23:09:36 2009
    [Thr 200] MPI<7>4#3 Peak buffer usage: 3 (@ 64 KB)
    [Thr 4092] MPI<9>6#3 Peak buffer usage: 4 (@ 64 KB)
    [Thr 1660] Thu Jan 15 23:09:40 2009
    [Thr 1660] MPI<b>8#3 Peak buffer usage: 6 (@ 64 KB)
    [Thr 3168] Fri Jan 16 00:02:52 2009
    [Thr 3168] *** WARNING => Connection request from (8/24/1) to host: 10.20.232.89, service: 4444 failed (NIECONN_PENDING)
    RM-T8, U24, 600 AVISHNU, GX280I576YB1S, 00:02:47, M1, W1, SEU_, 3/2 [icxxconn.c 2121]
    [Thr 3684] Fri Jan 16 00:04:40 2009
    [Thr 3684] Deactivated service 1080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 3804] Fri Jan 16 00:04:56 2009
    [Thr 3804] Deactivated service 8443 for protocol HTTPS on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 2664] Fri Jan 16 00:09:26 2009
    [Thr 2664] *** ERROR => IcmConnConnect: No service for protocol HTTP started [icxxconn.c   2007]
    [Thr 3516] Fri Jan 16 00:23:53 2009
    [Thr 3516] *** ERROR => IcmConnConnect: No service for protocol HTTP started [icxxconn.c   2007]
    [Thr 4116] Fri Jan 16 00:26:53 2009
    [Thr 4116] *** ERROR => IcmConnConnect: No service for protocol HTTP started [icxxconn.c   2007]
    [Thr 4112] Fri Jan 16 00:27:07 2009
    [Thr 4112] *** ERROR => IcmConnConnect: No service for protocol HTTP started [icxxconn.c   2007]
    [Thr 1684] Fri Jan 16 00:34:23 2009
    [Thr 1684] *** ERROR => IcmConnConnect: No service for protocol HTTP started [icxxconn.c   2007]
    [Thr 3516] Fri Jan 16 00:46:52 2009
    [Thr 3516] Reactivated service 1080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 3516] Reactivated service 8443 for protocol HTTPS on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 3468] Fri Jan 16 01:29:23 2009
    [Thr 3468] *** WARNING => Connection request from (9/25/0) to host: 10.20.232.89, service: 4444 failed (NIECONN_PENDING)
    RM-T9, U25, 600 SRAJEEV, GX_XP2BASE:0, 01:29:18, M0, W0, SEU_, 2/2 [icxxconn.c 2121]
    [Thr 1660] Fri Jan 16 02:00:47 2009
    [Thr 1660] Deactivated service 1080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 196] Fri Jan 16 02:00:57 2009
    [Thr 196] Reactivated service 1080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 2292] Fri Jan 16 02:13:41 2009
    [Thr 2292] Deactivated service 1080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 4108] Fri Jan 16 02:14:05 2009
    [Thr 4108] IcmChangeService: change service 1080 for HTTP to 8080
    [Thr 4108] Reactivated service 8080 for protocol HTTP on host: "dlwsdv11"(on all adapters) (timeout=30)
    [Thr 4208] Fri Jan 16 02:15:24 2009
    [Thr 4208] *** WARNING => Connection request from (8/24/3) to host: 10.20.232.89, service: 4444 failed (NIECONN_PENDING)
    Regards,
    vishnu
    Edited by: vishnuarigela on Jan 16, 2009 10:05 AM
    Edited by: vishnuarigela on Jan 16, 2009 10:20 AM

    Hi Olivier,
    I know its been more than an year since the last time I have posted on this thread.
    The problem still persists, I have made the necessary changes as you have suggested,
    made the necessary changes to the logical port number.
    The error has changed to no extended error message (SOAP_ESERVER).
    In sm21:
    SOAP Runtime: SOAP Runtime exception: 112 occurred in method XP_READ_TAG of class CL_SOAP_XP at position 1
    SOAP Runtime: Exception message: no extended error message (SOAP_ESERVER)
    dev_rfc:
    ERROR 01:01:48: SOAP Application CL_SOAP_APPLICATION_CLIENT     
    IF_SOAP_APPLICATION_CS~EXECUTE_PROCESSING() A SOAP Runtime Core 
    Exception occurred in method XP_READ_TAG of class CL_SOAP_XP at 
    position id 1 with internal error id 112 and error text no      
    extended error message (SOAP_ESERVER) (fault location is 1 ). 
    Any suggestions would be greatly appreciated. I have looked up on sdn, however was
    unable to find a solution.
    I have opened another thread under Netweaver Administrator with the subject SOAP Exception,
    I apologize if it was a mistake.
    Regards,
    Vishnu.
    Edited by: vishnuarigela on Feb 11, 2010 9:36 AM
    Edited by: vishnuarigela on Feb 11, 2010 9:37 AM
    Edited by: vishnuarigela on Feb 11, 2010 9:38 AM
    Edited by: vishnuarigela on Feb 11, 2010 11:46 AM

  • Start scenario when source data change

    Hi,
    is it possible to start a scenario when a data on one table changes on the source DB ?
    For example, an application change a timestamp on a table in the source db, this change triggers the start of the ODI scenario.
    Many thanks,
    Olivier

    Olivier,
    Can you create a database trigger on that table and populate a row in another table indicating that the timestamp on the table has changed.
    Then, you can use OdiWaitForData tool from toolbox in the package as a Starting step and connect its OK with odiStartScen tool which further invokes the scenario that you want to execute.

  • Strange results when receiving mail sent form mail.app

    Hi all,
    I've searched these forums for an answer to this problem but I didn't find anything that seemed to fit the bill.
    I'm using the latest version of mail.app 2 with updates applied running in 10.4.3.
    I'm using Gmail as my mail server but have the same problem with other email servers I have tried.
    When I send mail to my work account (based on an exchange server) I'm getting some strange results. I'm using Windows 2000 and Outlook 2003 at work.
    When I send an (new) email with an attachment then all text that I write below the attachment in the email, when received through exchange at work, becomes an attachment its self. If this is a plain text email then the attachment is a text file, if it's a rich text email then the attachment becomes a webdocument (HTM). This is not the desired result!
    Similarly, if I reply to or forward an email, any text below new text I type into those emails becomes an attachment rather than an actual reply (with that attachment either a text file or a webdocument as stated above).
    My question therefore is how can this be corrected. It's rather annoying to have half my message cut off if I put an attachment half way through the email I am composing (I guess i could attach it to the end below all text and signature). Equally frustrating is having replied or forwarded text appear in an attachment.
    Thanks in anticipation.
    Adam
    Powerbook 12"   Mac OS X (10.4.3)  

    Hi all,
    Picture of what I describe above, thought it might help clarify what the issue is:
    Many thanks
    Adam
    Powerbook 12"   Mac OS X (10.4.3)  
    Message was edited by: adamsquire

  • Music pauses on my iPhone 5C when switching between apps or when receiving alerts/notifications sometimes (not always) and I have to manually restart the song. I'm running the latest 7.0.1 software. It's a bit annoying.

    Music pauses on my iPhone 5C when switching between apps or when receiving alerts/notifications sometimes (not always) and I have to manually restart the song. I'm running the latest 7.0.1 software. It's a bit annoying.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Creation of delivery when sales order is saved through VA01

    Hi All
    We got the requirement in such a way that
    we are creating sales order of type (ZOR -standard order ) . Configrration is donde in such a way that when the order is saved one dilvery will be created for that order of deilvery type ZLF .as this is assginned as default delivery type in VOV8 .
    Hre we have two delivery types ZLF and  ZF and we have diffrent different item categories for that sales order like ZZTC , ZPU ,
    and ZTDP .
    our requirement is  as follows
    case1:
    when we create sales order through va01 (order type - ZOR standard order ) having onlu one item category ZPU  then delivery should be created of type ZLF it is happing correctly .
    case 2:
    when we create a sales order through va01 having  non ZPU item categroies like ZZTC and ZTDP dlivey should not be created  for that sales oder on saving that order .one success message is thwoing as salers order has been created but delivry cannot be created for this order .this is  is also happeing correctly . for this we have copied a rottine no 102 from VOFM  and we have added some logic
    but the problem is
    when we create a sales order having diffrene item categories ( one condiotn here one item should be ZPU) and other item is  ZZTC while saving the sales order delivery is getting created partially for one item only not for two items i mean delivery is getting created only for item categroy zpu the item with type ZZTC is not gettting added to that delivey .
    for exmaple
    sales order 1234
    item category ZPU
    item category ZZTC
    delivery created with only one item ZPU
    May i know any requirments (routines ) are thre to solve this in VOFM .
    let me know how to hanlde this issue .
    Moderator Message: Spec-dumping is not allowed
    Edited by: kishan P on Oct 14, 2010 4:31 PM

    Hi Mohanty,
    I think the Immediate Delivery under Shipping for that order type may have value A or X, Clear that value.
    1) Goto VOV8 tansaction.
    2) Select the Sales order type (For eg: OR for standard order) and double click on that
    3) Under Shipping tab, Set Immediate Delivery with Blank value
    Plz reward points if it is helpful
    Thanks,
    Vinay

Maybe you are looking for

  • Trying to Live Webcast on YouTube using AME and external mic on apple computer

    Hi. Im an ADOBE forum newbie Ive tried to flick through the forums to find a solution to this but cant. Basically i am trying to webcast on YouTube via my mac but using an external mic. I have a macbook AIR. And i recently bought a behringer 302USB m

  • Brand New Macbook Pro i7 - beach balling constantly

    Hi everyone. I bought a new Macbook Pro, 15" i7, 4 gig ram, 750gig stock HD from apple in July to replace my 2007 black 2.4ghz macbook. Ever since I took it out of the box it has been slower than expected, about on-par with my old machine. I thought

  • Reg: Error G/L account cannot be used !

    Hi ,   I have an issue with one of the Purchase orders which though got generated from the EB system did not get transferred to the backend system due to some errors. The backend application error for the PO is : G/L account X1 cannot be used G/L acc

  • Photoshop Elements 13 for Mac

    I have an old version of Photoshop Elements (8) for Mac. I have installed this version 8 on a iMac and a Macbook. Can I install version 13 (the 1 license version) also on my iMac and Macbook and use it alternate?

  • Ipod constantly pauses itself: earphones problem?

    it is really annoying when my ipod keeps on pausing itself when playing songs, when i only slightly move my headphones. i've dealt with this before, and usually, when the plug is gold, my ipod never paused. however, i have two headphones that are bot