Issue in CIF - Execute LUW again

Hi ,
   I created an integration model for stock transfer and when i try to activate it , it gives error. In SMQ1 (outbound queue from ECC to SCM) an entry is shown with status "RETRY" and it says "Command to tRFC/qRFC Execute LUW again" . In the queue manager in SCM (cq) it shows the same error ie., "Execute LUW again".
     I tried looking at the application log but it says "no application log available" .
     When i try to execute the LUW from SMQ1 it keeps giving me the same error again and again. I tried deleting the LUW from SCM using "queue manager /n/sapapo/cq". But it is not allowing me to delete the LUW.
      Since the queue is blocked it does not allow me to execute any other integration model. Kindly suggest a solution.

Hi
Should you not try deleting the blocked queue from TA SMQ1 itself and try to activate the integration model again if you are not able to debug the problem. I do not know the effects of doing this in your scenario but usually we delete the blocked queues from smq1. This method works for us most of the times.
To do this select the queue ( identified by a part of your document no. ) line and press delete button in std application tool bar.
What error are you getting when trying to delete the queue from /sapapo/cq?
regards
Mohan Chunchu
Edited by: Mohan V R Chunchu on Jan 29, 2008 10:58 PM

Similar Messages

  • Error while executing LUW in SM58 - Mess.No.SY359

    hi,
    error while executing LUW in SM58
    Error. Mess.No.SY359
    "Function module does not exist or EXCEPTION raised-sy359"
    trfc has been configured and try to push the Idoc through SM58 need help on this.
    Regards
    Leo

    Hi,
    This error is related to RFC settings and also the logon group in RZ12
    Kindly generate the appropriated logon groups and confirm if the idocs are flowing
    Thanks

  • I purchased a one year subscription to Rolling Stone magazine . I got two issues and now it will not allow me to view the current issue, I have to pay again. Can someone help me, how do I get my purchase. I have the automatic download turned on.

    I purchased a one year subscription to Rolling Stone magazine . I got two issues and now it will not allow me to view the current issue, I have to pay again. Can someone help me, how do I get my purchase ? I have the automatic download turned on.

    Try contacting apple

  • How can i fix keychain issue, it's popping up again and again

    how can i fix keychain issue, it's popping up again and again

    Hi,
    Have you looked through these http://support.apple.com/kb/HT5813 ?
    9:51 pm      Sunday; November 24, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • 5.1.0 sp11 Connection pool refresh issue, revisited....again...!!!

    "Hello,
    From reading of these newsgroups I've seen many different manifestations
    of what seems to be the same root cause with connection pools and
    connections which are refreshed/replaced when found broken. In our
    case weblogic server hangs.
    Kit: 2xWeblogic 5.1.0 sp11 (not clusterd), Solaris 8,
    java 1.3.1_01, 1xoracle 8.1.6, latest JDBC 2.0 drivers from oracle. Each weblogic instance and oracle have their own machines.
    We do indeed have a firewall employed to run our subnets, and hence
    our weblogic servers and oracle databses are in different DMZ's, but are
    allowed to communicate to each other via rules set up on the firewall and
    inspection of the logs show no such connections being dropped.
    As far as the db is concerned, lookups (no writes) never take more than a few
    hundred milliseconds and are then closed and given back to the connection pool
    immediately from within the 'finally' block of code, hence hard to see when,if ever, the db is
    is closing them due to excessive idle time.
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=30,\
    maxCapacity=50,\
    capacityIncrement=1,\

    Alkesh wrote:
    Hi Joe,
    The fix you suggested has been implemented and has been running fine
    now for the past 3 days. I'm delighted with the result,Great. Glad to help.
    but am concerned as to why this problem wasnt highlighted during our
    load-testing phases...It's a possibility that your load-testing didn't present the same sort
    of load that your actual runtime does.
    Thanks for your time on this.Well sure. We want you successful.
    Joe
    Alkesh
    At 01:52 PM 2/22/2002 +0000, you wrote:
    Hi Joe,
    Thanks for your reply
    Please find attached a copy of the jvm thread dump we got from thelast time
    that weblogic blocked upon trying to refresh a broken connection.
    We have turned off JIT with the environment settingJAVA_COMPILER=NONE.
    FYI hotspot is enabled with '-hotspot', these settings can be foundin the
    attached 'startWeblogic.sh'.Hi. I found a serious problem by reading the thread dump:
    "ExecuteThread-11" daemon prio=5 tid=0x179d40 nid=0x19 waiting for
    monitor entry
    [0xeee80000..0xeee819e0]
    at java.sql.DriverManager.getConnection(DriverManager.java:144)
    - waiting to lock <f8e77ad0> (a java.lang.Class)
    at com.akqa.sainsburys.jv_recipe.ejb.session.RecipeBean.getConnection(Re
    cipeBean.java:759)
    It is important to never call DriverManager methods in a multithreaded
    application
    such as Weblogic, because these JVM methods are alloverly synchronized
    at
    the class level. One such method, DriverManager.println(), is called
    continuously
    by all JDBC drivers as well as the SQLException constructor. If one
    server thread
    makes a long-lasting or hanging call to DriverManager.getConnection(),
    it can halt
    all JDBC in the whole JVM including work on other open driver
    connections.
    Please show me the code for RecipeBean.java, and I will send you an
    altered version
    that should solve this problem. In fact, I can infer from the thread
    dump what is needed.
    Change the one method getConnection() to this:
    // Make once and re-use a driver instance directly, avoiding
    DriverManager
    Driver d = (Driver)class.forName("weblogic.jdbc.jts.Driver").newInstance();
    public Connection getConnection()
    return d.connect("jdbc:weblogic:jts:yourPoolNameHere", null );
    Also, change your pool definition. I assume you have
    testConnsOnReserve set to true.
    (You should). Also, you should change your refresh minutes to
    something huge, like
    9999999. The refresh is interfering with your online performance and
    is unnecessary
    if you have testConnsOnReserve set. I recommend:
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=50,\ <------ note that this should be the
    same as max, so all cons are made at startup
    maxCapacity=50,\
    testTable=dual,\
    testConnsOnReserve=true,\
    refreshTestMinutes=9999999,\
    etc.
    Joe
    I've also attached some firewall logs around the time of weblogicblocking
    (12.09). I could only get screen dumps for you, this may or maynot be
    useful.
    For the firewall logs use the following legend :-
    195.110.64.205 - DNS
    172.16.160.195 - host webserver 1 (i.e. what our licenses are boundto)
    172.16.160.196 - host webserver 2
    172.16.160.220 - website 1
    172.16.160.230 - website 2
    Thanks
    Alkesh
    -----Original Message-----
    From: Joe [mailto:[email protected]]
    Sent: 20 February 2002 22:09
    To: [email protected]
    Subject: Re: 5.1.0 sp11 Connection pool refresh issue,
    revisited....again...!!!
    At 02:47 PM 2/20/2002 +0000, you wrote:
    Hi Joe,
    Please find attached a copy of our thread dumps for the most recentoccasion
    that weblogic server has stopped.
    Apologies for any misunderstandings with my previous post, it appears to
    have been cropped. Full posting below (yes we do have testConnOnReserve and
    testTable properties set).
    Thanks for your time.sure, but first let's get you running OK. These dumps seem to be
    very cryptic, as if you're running a highly optimized JVM that
    loses almost all of the Java class references I'd normally see.
    Can you run again with a more basic JVM? I am beginning to suspect
    the JIT JVM...
    Joe
    Alkesh
    Joseph Weinstein wrote:
    Hello,
    From reading of these newsgroups I've seen many
    different manifestations of what seems to be the sameroot cause with connection pools and connections
    which are refreshed/replaced when found broken. In our
    case weblogic server hangs.
    Kit: Weblogic 5.1.0 sp11 (not clusterd),
    Solaris 8, java 1.3.1_01, oracle 8.1.6,
    latest JDBC 2.0 drivers from oracle.
    We do indeed have a firewall employed to run our subnets,
    and hence our weblogic servers and oracle databses are
    in different DMZ's, but are allowed to communicate to each
    other via rules set up on the firewall and inspection of
    the logs show no such connections being dropped.
    As far as the db is concerned, lookups (no writes) never
    take more than a few hundred milliseconds and are then
    closed and given back to the connection pool immediately
    from within the 'finally' block of code, hence hard to
    see when,if ever, the db is is closing them due to excessive idle time.
    weblogic.jdbc.connectionPool.RecipeDBPool=\
    url=jdbc:oracle:thin:@foo:1521:BAA,\
    driver=oracle.jdbc.driver.OracleDriver,\
    loginDelaySecs=1,\
    initialCapacity=30,\
    maxCapacity=50,\
    capacityIncrement=1,\
    allowShrinking=false,\
    testTable=dual,\
    testConnsOnReserve=true,\
    shrinkPeriodMins=1,\
    refreshTestMinutes=10,\ // has been 1 and 5 but 10 'more' stable.
    Fequently however, connections are found to be broken
    (either by periodical refresh - refreshTestMinutes or
    testing connection before granting it to the
    application - testConnsOnReserve=true), this has been
    confirmed by viewing JDBC.log .
    When this is so, weblogic attempts to replace these
    broken connections with new ones and then proceeds
    to grant it to the application. Once in a while however
    (and by no means 'x' refreshes later), weblogic will not
    come back.
    One of 2 errors occur in our deployment which cuase weblogic
    to refresh a connection.
    <JDBC Pool RecipeDBPool> java.sql.SQLException: No more data to read fromsocket
    and
    <JDBC Pool RecipeDBPool> java.sql.SQLException: Io exception: Broken pipe
    I believe these settings to all be correct, JDBC drivers
    in the correct point BEFORE weblogic.aux in classpath, yet
    still have the issue of broken connections.
    Any ideas ? I've been reading a lot into this probelm
    on various postings now, and i'm completely stumped.
    Thanks for your time.
    Alkesh

  • Should eventListeners always be removed before executing it again?

    Hi there,
    Should you always remove eventListeners before you want to
    execute it again?
    The reason why i ask this, is because in AS 2, i remembered
    that when you used
    a listener to a key and you go to another frame ..and go back
    to the frame where the listener is
    instantiated it listens twice! So when you press the key
    once, it will listen two times.
    And when using an addEventListener within a function like
    this:
    function startListening() {
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, completeHandler);
    can you use outside this function another function to remove
    this listener like this?
    function removeListening() {
    loader.removeEventListener(Event.COMPLETE, completeHandler);
    Or do you have to scope the line: var loader:URLLoader = new
    URLLoader(); outside the function
    to remove this eventListener?
    I am trying to understand what is the best way and why.
    Does anyone have some tips what the best way is?
    Please keep in mind that i switch from different frames. So
    when i go back to the first frame all code
    is executed again.
    And is there a way to remove an EventListener without being
    sure if it exists?
    Something like:
    if(loader.addEventListener!=null) {
    loader.removeEventListener(Event.COMPLETE, completeHandler);

    If you instantiate a variable inside a function, then the
    scope of that variable is only inside this one function. So, trying
    to remove the eventListener from outside the function will result
    in an error. If you declare the loader variable outside the
    function, then you can assign the eventListener in a function.
    Likewise, you can remove the eventListener from another function.
    If you place all of your functions in the first frame of your
    movie's timeline, you won't need to worry about duplicating
    function calls.
    As an example, paste the following code into a new empty
    movie's frame script space. Extend the timeline to about 20 frames.
    Play the movie. You'll see that the ouput window shows the number 1
    each time the movie loops. The number does not increment. Each time
    the movie loops through the first frame, the variable is reset to 0
    and then incremented to 1.

  • I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, re

    I updated Itunes today to the latest version. Windows 7 64bit. None of my drivers work and get an error when itunes starts, about registry setting for reading and writing dvds and cds missing. Anyone else have the same issue. I downloaded itunes again, reinstalled still have same issue.

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

  • HFR Issues - "5200: Error executing query: Invalid Item ID"

    Hi All,
    We are using Hyperion HFM application 11.1.1.3. Recently we have upgraded the Oralce Database to 11.2.0.2 and reconfigured the HFM application with this new database version. When I tried to run the Financial reporting through the HFR studio, I am getting error message - "5200: Error executing query: Invalid Item ID". Please could you help me to resolve this issue.
    Thanks,
    Aravindh K

    This was due to an invalid default Point of View for the user that was incompatible with the particular report.
    Change the Preferences to User Point of View Preview and run the report again.
    File > Preference > Financial Reporting > Select Preview "ON" under USer Point of View box.
    Re-run the report and select the desired POV.
    This will prompt the user to change their POV every time he or she opens a report. They can select the correct POV and the report runs correctly.
    You can turn off later. Let me know if it fixed this issue.

  • Issue with file.execute()

    Hi, i recently started learning photoshop scripts, i have a .bat file that needs to run at the end of java script, while looking for help online, the only hel was
    var bat = new File("path\fileName.bat");
    bat.execute();
    but nothing happens when i run this script, or even if i try to wtire into a .bat file, nothing happens, it looks like, the file operations are not working and i might be missing something. Can some one please help me solve this issue?
    im using photoshop CS6, windows7 and working on Java script.
    Thank you in advance

    Looks like your Oracle can't access the directory you are using. If you don't specify a directory data pump will use DATA_PUMP_DIR:
    C:\Documents and Settings\User>sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Sat May 8 18:44:52 2010
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Release 10.2.0.1.0 - Production
    SQL> select * from all_directories where directory_name = 'DATA_PUMP_DIR';
    OWNER                          DIRECTORY_NAME
    DIRECTORY_PATH
    SYS                            DATA_PUMP_DIR
    C:\Oracle\admin\pts\dpdump\
    SQL> exit
    Disconnected from Oracle Database 10g Release 10.2.0.1.0 - Production
    C:\Documents and Settings\User>move C:\Oracle\admin\pts\dpdump C:\Oracle\admin\pts\dpdump_oops
            1 file(s) moved.
    C:\Documents and Settings\User>expdp andy/andy
    Export: Release 10.2.0.1.0 - Production on Saturday, 08 May, 2010 18:44:30
    Copyright (c) 2003, 2005, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Release 10.2.0.1.0 - Production
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE", line 475
    ORA-29283: invalid file operationFor data pump you need priveleges to a directory on the Oracle server that Oracle has access to.
    UTL_FILE you can either use a directory or utl_file_dir.
    Edited by: Andy Klock on May 8, 2010 3:54 PM

  • Issue in CIF data between ECC to APO

    Hi Experts,
    We have ECC and APO system in our landscape. we have configured CIF and transferred data between ECC and APO however after ECC system refresh CIF configuration is not working. we verified and reconfigured the CIF configuration but still no luck.
    strange thing is, while sending the data for e.g vendor from ECC to APO, there is no error reported. It displays successful in both qRFC trace files but the transferred data is nt reflecting in APO system.
    There is no system run time error, no errors in system log (SM21), no logs in SLG1 application log, no erros in qRFC trace files.
    we have enabled RFC user trace but can't conclude the issue. could you please anyone let me know where we can check the error log or how to resolve this?
    Outbund Queue logs from ECC:
    QTYPE :OUTBOUND/S                                     
    DATE       TIME     CLIENT     USER            QDATE      QTIME    BJOB       QEVENT        
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:44:56 300             20.03.2015 17:44:56 N          N             
            0A1A01720F70550C0F4019E7                                       SENDING
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                          QTYPE :OUTBOUND/S                                     
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:44:57 00:00:01 300          20.03.2015 17:44:56 N       N          
            0A1A01720F70550C0F4019E7                                       CONFIRMD
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                          QTYPE :OUTBOUND/S                                     
    DATE       TIME     CLIENT     USER            QDATE      QTIME    BJOB       QEVENT        
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:44:57 300             20.03.2015 17:44:56 N          N             
            0A1A01720F70550C0F4019E8                                       SENDING
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                          QTYPE :OUTBOUND/S                                     
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:44:57 00:00:00 300          20.03.2015 17:44:56 N       N          
            0A1A01720F70550C0F4019E8                                       CONFIRMD
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Inbound Queue trace log from APO:
    QTYPE :INBOUND                                       
    DATE       TIME     CLIENT     USER            QDATE      QTIME    BJOB       QEVENT        
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 300                20.03.2015 17:44:56 N          N             
            0A1A01720F70550C0F4019E7                                       SENDED 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 17:39:48 300             20.03.2015 17:44:56 N       N          
            0A1A01720F70550C0F4019E7                                       FINISH 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                                           QTYPE :INBOUND                                       
    DATE       TIME     CLIENT     USER            QDATE      QTIME    BJOB       QEVENT        
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 300                20.03.2015 17:44:56 N          N             
            0A1A01720F70550C0F4019E8                                       SENDED 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 17:39:48 300             20.03.2015 17:44:56 N       N          
            0A1A01720F70550C0F4019E8                                       FINISH 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C2559         0A1A01720F70550C0F4019E7      RUNNING
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C2559         0A1A01720F70550C0F4019E7      FINISH 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C2559         0A1A01720F70550C0F4019E7      CONFIRMD
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_LOC_INBOUND       
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C255A         0A1A01720F70550C0F4019E8      RUNNING
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C255A         0A1A01720F70550C0F4019E8      FINISH 
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
                                           QTYPE :INBOUND                                       
    DATE       TIME     EXETIME  CLIENT  USER            QDATE      QTIME    BJOB    QEVENT     
            TID                              ORGTID                        QSTATE               
        DEST                                    ERRMESS                                         
    20.03.2015 17:39:48 00:00:00 300             20.03.2015 17:44:56 N       N          
            0A1A019D23F8550C0E0C255A         0A1A01720F70550C0F4019E8      CONFIRMD
        <SID>CLNT300                                                                              
    LUWCNT   QNAME                    FNAM                          
    00000001 CFLDSHQCLNT300_0014      /SAPAPO/CIF_GEN_EVENT         
    Thanks and regards,
    Pradeep

    Hello Pardeep,
    Please check the setting of SMQS and SMQR for CF and client registration
    these entries, the field 'TYPE' is set to 'R'.
    QIN scheduler may be available for every client if you are working in this client with registered inbound queues.
    Choose Edit->Activate scheduler from the menu (available in both SMQR and SMQS)
    During processing in dialog work processes, the system uses a parallel RFC to restart the registered inbound queues. For this, you can use transaction RZ12 to specify a group of application servers and dialog work processes that are allowed to use a QIN scheduler. You must use transaction SMQR to assign the group name to the relevant QIN scheduler.
    Different parameters in SMQR are explained in note 1579728. The explanation for SMQS is similar
    Also try the report RSQIWKEX
    Best Regards,
    R.Brahmankar

  • Several issues only with executable, not in VI

    Hello, I'm developing a program to control a network analyzer from GPIB, store data, read that data into some matlab (math script) routines to determine pass/fail and plot a pattern, then save a screen-grab of that pass/fail/pattern. Everything works as I expect it to in the development environment, but when I build it into an executable and run it on the same development machine, weird things start to happen that I don't understand. I know from past that executables run faster than vi's so I have added time delays here and there where it seems to make sense for that particular bit of code, but even that has not helped.
    There are 3 main issues:
    1.) I populate a listbox from a folder with filenames that match a pattern. This works great. There is an event structure that waits for one of the files to be selected which then sends that file into a subvi that runs through the mathscript routines. Problem is in the executable, after this mathscript subvi executes, all the contents of the listbox disapear and I can't select another file to run through the mathscript code. stopping and starting the main app re-reads this in but it should be read in continuously because its in the main programs for-loop.
    2.) The mathscript routines were developed by someone else, they are in several nodes. The first two nodes work perfectly to generate 2 patterns, find beam peak, position, and beamwidth, but the next two, which are identical, don't seem to work in the executable. They should produce sidelobe levels, but don't.
    3.) The screen-grab bit doesn't work in the executable either, I found a vi from Alex T. (https://decibel.ni.com/content/docs/DOC-19720) that automates a print screen event and then reads the clipboard to output image data which I then save as a jpg or png. This I had to add delays in to get the vi to work, but it still doesn't work in the executable.
    Any help or ideas would be greatly appreciated. Even if its just the basics- I'm pretty much self-taught  and don't profess to know the best way or even the right way
    Jamie
    Attachments:
    Phase Scanner_S Folder.zip ‏4123 KB
    main code.jpg ‏753 KB
    mathscript subvi.jpg ‏753 KB

    Error code -90093:  LabVIEW:  The LabVIEW Run-Time Engine does not support this function.
    Looks like you are using something that is not available in the RTE.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Reader version listed in GUI does not match that of executable file (again)

    I posted regarding this issue before (http://forums.adobe.com/message/4817948), but was never able to find an answer.
    Presently I am deploying Adobe Reader 10.1.5 via the MSI installer and group policy. The issue is that a user shut down her Windows 7 computer midway though the MSI installation interrupting (i.e. screwing up) the installation process. I had to delete a few registry entries and reboot the user's PC in order to re-initiate the Reader installation (something I've done in the past).
    To verify that Reader was installed sucessfully, I browse to the Reader executable (AcroRd32.exe) in Program Files, double click the executable, select About Adobe from the Help menu, check the version number in the information box and see that the version number is 10.1.4 (i.e. the old version that I am upgrading from). However, when I browse to the Reader executable (AcroRd32.exe) in Program Files and and open the file properties, I see that the version is 10.1.5 (i.e. the new version that I am upgrading to).
    So the Reader version listed in GUI does not match that shown in the executable property box.
    This is the second time that this has happened with a Windows 7 PC. I've never experienced this sort of thing with a Windows XP PC.
    Why is the version number different in the GUI? Where is the version number read in from for the GUI? The registry? Can anybody shed some light on this situation?

    Let me clarify that the tool posted on http://labs.adobe.com/downloads/acrobatcleaner.html is not the uninstaller for Reader. Instead it is a cleaner tool used for any botched up installation as mentioned above. This utility should only be used in rare circumstances. Instead reader has its own uninstaller which can be used through ARP (Add Remove Programs) in Windows or you can also use the command line "msiexec /x AcroRead.msi" to uninstall Reader.
    Thanks,
    Vinod

  • CRM_APPT_MAINTAIN_MULTI_OW in date rule executes rule again

    Hi, I´m facing a problem changing the dates of a document with a date rule FM, inside this FM I´m using CRM_APPT_MAINTAIN_MULTI_OW  for changing the dates, but it makes the date rule FM executes again, I have some validation for the second execution of the rule in order to save the order in place changing the dates again, but I don´t think this is the best approach to solve this.
    The dates changes ok, but when the user saves the document manually (Inside the FM I save the order and make a commit) the dates appears duplicate.  Any help will be appreciated, thanks !

    In customazing of your date profile (spro>crm>basic functions>date management>define date profile) set for the date type to which you assigned date rule the option "Determine Date Only Once" to active. Then date rule will be executed only once.
    Regards.

  • Workflow issue - When i execute the workitem it just disappears

    Hi
    i am learning workflow. i am just following some instructions on one of the tutorials and i developed a simple workflow for editing material number when a material is created. i create the material in mm01 and the event gets triggered and i get the work item in my inbox. When i execute the workitem it just disappears and comes into my outbox. I am not able to go to the edit screen of the material( mm02) what am i missing? if i only use task then it works fine without any issues, if i include the same task in a workflow and trigger it does not open mm02. plz help
    ~Suresh

    Have you checked the workflow log ?
    If not in your business work place, got to Outbox --> Work Items executed by me
    The click on the workflow log button. Analyze the log.
    There are various reasons why this can happen, so cant really say much about why this issue is occurring without more details.
    Also you will probably get better answers if post this in the Workflow forum than in the ABAP forum.
    Regards,
    Srihari

  • Issuing a simple EXECUTE command using ODP

    I want to issue a command using ODP in C# to refresh a materialized view.
    The command I want to execute is simple: EXECUTE DBMS_MVIEW.REFRESH('USER.MV_TEST','C');
    I have tried with and without the anonymous block BEGIN..END. I have tried issuing it as cmd.ExecuteNonQuery() and cmd.ExecuteReader(), but I always get an error.
    Here is the basic C# source code:
    con.ConnectionString = "User Id=user;Password=123;Data Source=oracle;";
    string cmdQuery = "BEGIN EXECUTE DBMS_MVIEW.REFRESH('USER.MV_TEST','C'); END;";
    OracleCommand cmd = new OracleCommand(cmdQuery);
    con.Open();
    cmd.Connection = con;
    cmd.CommandType = CommandType.Text;
    cmd.ExecuteNonQuery();
    Anyone know what the problem is?
    Thanks

    Hi,
    Execute is a sqlplus command.
    Try
    string cmdQuery = "BEGIN DBMS_MVIEW.REFRESH('USER.MV_TEST','C'); END;";
    Cheers,
    Greg

Maybe you are looking for

  • Service entry sheet IN ML81N

    Hello Boys, I want to know what is the relation between tables ESKL, ESKN. I want to obtain the Account assignment for a line of service entry sheet. How does SAP to save the data of Account assignment for in a service entry sheet? What are the keys

  • IOS 5 bug: Cannot zoom some web pages

    After the upgrade to iOS5, I cannot pinch zoom web pages designed for mobile devices any more.  Normal HTML pages still work. This bug was present in iOS 3.1.2, but was gone by iOS 4.  Now it is back. Please fix this, as it is an accessibility issue.

  • Layout changes removes the data

    HI, We copied a standard program RIAUFK20, the program shows the ALV output . We changed only the fieldcatalog. The problem is when the program shows the output first time it shows the correct data what we added to the standard one. When user changes

  • Not able to connect to database: ORA-28001: the password has expired

    I started getting the 'password has expired' error in my SOA server log today (six months after installing my SOA Suite 11.1.1.4 development environment). I found a tip in an old forum thread: Failed to connect to database instance: ORA-28001: the pa

  • Email sign in issues

    The other day my BT Yahoo account had had some unusual activity and i had to change my password, now i cannot get signed it at all with that password. How do i get signed in please??