TMS problem - queue is empty

Hello,
Our systems are ECC5.0 on windows/oracle. We have installed production system. Now we have a problem in our test system. The TMS queue is empty in test system, the queues of the development and production systems are ok. We have a central transport directory.
There are transport requests in data and cofile at OS level.
DIR_TRANS is pointing ok, cofile and data file are in the right
locations. I can't transport requests manually by clicking on
Extras -> Other requests -> Add, because after I choose the request,nothing appears in the queue .
When I check from TMS (systems -> check : Connection test, Transport directory, Transport tool) there are no errors.
DIR_TRANS is the same with TRANSDIR.
Settings for DIR_TRANS are correct in AL11.
Do you have any ideea what could be the cause of this?
It is very important to us, because we have GO-LIVE on 01st of January.
Thank you

Hi,
1) Queue --> Check --> Consistency  -
  OK
2) I can't add a request to the queue
3) I don't have any end mark. In queue -> move end mark it is in grey ... maybe because the queue is empty.
The alert from TMS alert viewer:
Command  TMS_MGR_TRANSMIT_TR_QUEUE   
Service  Transport Service           
Start    Online                      
Function TMS_TP_COMMIT_BUFFER        
Message  TP_REPORTED_ERROR           
Transport control program tp ended with error code 0211
Errors: no info about transport request found
ERROR: tpsettainfo: Cofile F:\usr\sap\trans\cofiles\KMARK.STO does not  exist
ERROR: EXIT(16) -> process ID is: 5296                                 
tp returncode summary:                                                 
TOOLS: Highest return code of single steps was: 16                     
ERRORS: Highest tp internal error was: 0211                            
Output from tools called by tp:      
   Thank you

Similar Messages

  • After all event queue be empty

    Hello everyone,
    I know events are added to event queue from application thread or background thread (using Platfrom.runlater() ) . but I find out when some events add to event queue , UI dosent upadate until the event queue be empty (all events be handled ). My question is what object update UI after all event handled and more information about it .
    thanks

    Hi,
    QUEUE_NOT_EMPTY--> There are incompletely processed OCS requests in the tp buffer.
    Use the following tp command to display these requests-->
    tp SHOWBUFFER <SID> -D SOURCESYSTEMS= TAG=SPAM
    You can continue processing the queue as soon as these requests have been processed completely, or deleted from the tp buffer.
    http://help.sap.com/saphelp_nw04/helpdata/en/7e/c6c2ad98a711d2b429006094b9ea64/content.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCUPGOCSSPAM/BCUPGOCSSPAM.pdf
    you probably forgot to confirm last SPAM or SAINT application.
    go into SPAM and choose CONFIRM
    go into SAINT, and choose FINISH
    OR
    It appears that already some support pack update is in process. So check tcode SPAM or SAINT and see whether anything is running.If it is running wait for it or see whether it is asking for confirmation.. then u need to confirm the queue.
    Also you can go to tcode SPAM and see display/define tab and see whether anything is available over there..if you are sure u dont want to import the ones in the queue,then just delete the queue using trash icon over there..
    Regards,
    Srini Nookala

  • TMS Problem

    we currently have this problem with one of our systems.
    The TMS queue in SAP is empty, yet there are transport requests in the buffer at OS level. what could be the cause of this?

    Hi Trevor,
    Check for the transport logs for all these transports you are find in buffer as OS level.
    Suppose you checking the buffer of a system "X". Then in the transport logs you will most probably find that all these transports have been deleted from the buffer of system "X". In such a case it means that while update has been done at OS level the same has not got reflected at OS level.
    It can happen sometimes. You need to clean up the buffer in this case.
    Regards.
    Ruchit.

  • Import queue is empty

    HI all,
    I've a problem like this:
    I have two system: X and Y. which have different transport domain controller (for some reason). Now, I want to transport the T.Orders form X to Y (the  transport route has been configured.).
    When I check transport directory in Y (transaction AL11), these requests are available. But when I access import queue of Y, I can't see any T.O (import queue empty).
    Do you know this problem.

    Hi Sylvecast,
    You need to add your system Y to the same trasnport domain as the system X... first configure the transport domain in system X client 000, then configure Y to be added to the same transport domain as X this is also done in client 000.
    For detail steps read here,
    Configure the transport domain controller,
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/b4a0b47acc11d1899e0000e829fbbd/frameset.htm
    include a system in a transport domain,
    http://help.sap.com/saphelp_nw04s/helpdata/en/44/b4a0c17acc11d1899e0000e829fbbd/frameset.htm
    Regards
    Juan
    Please reward with points if helpful

  • Problem: textbox leave empty string("") instead of null

    Hello, I have a problem with textboxes. By default, they always are initialized to null, but when I start entering and removing data from textboxes, many times they leave an empty string "" instead of null.
    And, of course, it's not the same a null value as an empty string and thus, I haven't got the expected result in queries to database.
    Thus, I always have to compare textbox values with "" and null. It's very tedious and not elegant solution. I would like to know if there is another way to get the values as null instead of empty strings.

    Yes. Once you entered and remove the text it will evaluated as you told .
    For ur case u can Try the condition as
    if ( instance !=null && instance.length !=0)
    be sure instance != null check b4 other wise u can get NullPointerException

  • Dataflow problem, queuing in subvi dequeuing in main vi

    ive stuck on a very simple data flow problem here, I'd like to pass data being enqueue in the subvi and dequeue in the main vi consumer loop. Ive attached the vi, since im already stuck on this problem, i was hoping i could learn a few things, specially implementing action engine in this situation  
    thanks.
    Solved!
    Go to Solution.
    Attachments:
    Counter Main.vi ‏16 KB
    counter subvi.vi ‏11 KB

    Your subVI doesn't make any sense since your loop will always exit after the first iteration and you always initialize your counter to 0 every time you execute it. That is one issue.
    Your code also suffers from multiple places that are dequeueing data from the queue. You will get undeterministic behavior since you don't know which dequeue will get the data first. Generally for a producer/consumer architecture using queues one or more loops loops should be enqueueing data to the queue. One and only one loop should be dequeueing data. These loops shuold run in parallel to each other. In your code you will only run your subVI whenever you press the start button and as stated you will always post a value of 1 to the queue. What you would need to do is have your subVI run independently once it is started. Use the "Start Asychronous CAll" to start your subVI when the Start button is presed and then let it simply run. Have it post the counter to the queue. Your lower loop in the main VI should dequeue the values and display them. You do not need the Wait in that lower loop since that is the purpose of the dequeue. That loop will be idle if there is no data present and will only run when data is in the queue.
    In the upper loop of your main VI remove the dequeue and enqueue. You don't need them since the subVI is all that is needed to post the data to the queue.
    Try this:
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot

  • Contract - problem with attachements (empty field in LOIO_OBJID)

    Hi Guys,
    We are using extended classic scenario of SRM 4.0 (SRM Server 500) and our latest support package is SAPKIBKS12. We have the following problem with contracts.
    Sometimes when an attachment is added to a contract the system does not fill the following fields in tabel BBP_PDATT.
    LOIO_CLASS: Normally filled with BBP_L_DOC
    LOIO_OBJID: Normaly filled with a GUID size datastring
    Whenever this happens and later on the contract is changed and released the system will raise an abort. We tried the following notes but no good result.
    891293,919467,932602,964065. Some other notes that might be possible are 1042826/1085700/1083063 but we also don't have good experience with these ones.
    Can anyone give us advice about two things.
    1) Is there a way to fill the empty fields in BBP_PDATT so that existing contract will work properly again?
    2) Does anyone know why this problem occurs and how to fix it for new contracts?
    Hope to hear from you,
    Arie

    Thankyou for the reply. I have made following changes but still not working. I am creating the inquiry and customer material is not getting populated. Please guide in resolving the issue.
    DATA : W_ENQUIRY_ITEM_INX LIKE BAPISDITMX OCCURS 0 WITH HEADER LINE.
    W_ENQUIRY_ITEM_INX-ITM_NUMBER  = THEAD-ITEMNO.
          W_ENQUIRY_ITEM_INX-UPDATEFLAG  = 'X'.
          W_ENQUIRY_ITEM_INX-CUST_MAT22 = 'X'.
    APPEND W_ENQUIRY_ITEM_INX.
    CALL FUNCTION 'BAPI_INQUIRY_CREATEFROMDATA2'
       EXPORTING
       SALESDOCUMENTIN               =
         INQUIRY_HEADER_IN             =  W_ENQUIRY_THEAD
      IMPORTING
        SALESDOCUMENT                 = W_NUMBER
       TABLES
        RETURN                        = W_RETURN
        INQUIRY_ITEMS_IN              =  W_ENQUIRY_ITEM
        INQUIRY_ITEMS_INX             =  W_ENQUIRY_ITEM_INX
         INQUIRY_PARTNERS              = T_INQUIRY_PARTNERS

  • Problem with a empty context

    Hello All,
    Please refer to following link where I provided the messaging Queues.
    http://farm4.static.flickr.com/3486/3882733944_1c74be83f7_o.jpg
    Basically the problem is when the value is sent to target it comes like...
    After remove Contexts:
    SUPPRESS
    1234
    SUPPRESS
    After SplitByValue
    null
    1234
    SUPPRESS
    So the node is not creating the field at all in the target as there is null in the begining.
    I tried by
    1. Changing contexts with different combinations.
    2. wrote a UDF to get rid of null in the begining. It dint work
    help.
    Venkat.

    Thanks Luis.
    I tried with mapWithDefaults earlier but it was changing the null to SUPPRESS but no change in the target field output  ( i.e it is still not coming )
    Can someone please tell me how to do I get rid of null in the output?
    null
    12345.23
    SUPPRESS
    Output:
    12345.23
    It should also work for following....
    null
    123455.24
    434567.23
    345654.23
    SUPPRESS
    Output :
    first structure : 123455.24
    Second structure: 434567.23
    Third structure: 345654.23
    Venkat.

  • TMS problem with ECC 6.0

    Dear Global Support,
    After hardware resizing we have successfully installed ECC 6.0 and
    successfully performed DB restoration.
    Now the problem lies with TMS as after installation performing necessary post installtion activity
    we have configured TMS. As per all TMS check STMS configuration is fine. Even tp and domain
    profile are generated.
    But issues lies while releasing change request as after realease no data or cofile are populated in
    trans/data or trans/cofile.
    Even slog is not been generated. Kindly look into this and advice the needful.
    Regards,
    Partha

    Hi Partha,
    Is there only one system in the transport landscape at present?
    If the transport has been built up in STMS properly, there should be no problem to export.
    But you can create a virtual system and create the "transport route" accordingly. 
    Then when you release a transport, the data and cofiles should be generated.
    Is the transport a local transport?
    Do you get a message "LOCAL REQUEST .......... released(objects no longer locked)   "
    Local request can not be transported so releasing a local request does     
    not export file to operating level.                                                                               
    If you want to transport this released local change request, you           
    can create a new reqeust of tranport type "Transport of Copies" from       
    SE01 and include the objects in <local transport number>.                                                                               
    Then you can transport the content of <local transport> by this newly created      
    request.                                                                   
    Hope this helps,
    Paul

  • Jms problem - queue not found

    Hi
    I have a simple bpel process that's supposed to read a message from a queue and put a message back on the same queue using the JmsAdapter. When I deploy the process, the log says that java:comp/resource/ojmstest/Queues/demoQueue can not be found:
    <2006-05-28 18:36:56,751> <INFO> <default.collaxa.cube.activation> <JMSAdapter::Inbound> Created new managed connection for JMS user jmsuser
    <2006-05-28 18:36:57,011> <WARN> <default.collaxa.cube.activation> <JMSAdapter::Inbound> JMSMessageConsumer_init: Retrying connection; attempt #1
    <2006-05-28 18:38:57,785> <WARN> <default.collaxa.cube.activation> <JMSAdapter::Inbound>
    ORABPEL-12135
    ERRJMS_ERR_CR_QUEUE_CONS.
    Error while creating Queue consumer:.
    Please examine the log file to determine the problem.
         at oracle.tip.adapter.jms.JMS.JMSConnection.createConsumer(JMSConnection.java:346)
         at oracle.tip.adapter.jms.JMS.JMSMessageConsumer.createConsumer(JMSMessageConsumer.java:214)
         at oracle.tip.adapter.jms.JMS.JMSMessageConsumer.init(JMSMessageConsumer.java:158)
         at oracle.tip.adapter.jms.inbound.JmsConsumer.init(JmsConsumer.java:115)
         at oracle.tip.adapter.jms.JmsEndpoint.run(JmsEndpoint.java:113)
         at oracle.tip.adapter.fw.jca.work.WorkerJob.go(WorkerJob.java:51)
         at oracle.tip.adapter.fw.common.ThreadPool.run(ThreadPool.java:267)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.jms.AQjmsException: JMS-190: Queue java:comp/resource/ojmstest/Queues/demoQueue not found
         at oracle.jms.AQjmsError.throwEx(AQjmsError.java:346)
         at oracle.jms.AQjmsSession.createQueue(AQjmsSession.java:1296)
         at oracle.tip.adapter.jms.JMS.JMSDestination.getQueue(JMSDestination.java:83)
         at oracle.tip.adapter.jms.JMS.JMSConnection.createConsumer(JMSConnection.java:330)
         ... 7 more
    In my global application.xml, I have:
    <resource-provider class="oracle.jms.OjmsContext" name="ojmstest">
    <description>OJMS/AQ</description>
    <property name="url" value="jdbc:oracle:thin:@eros.goldi.no:1521:orcl"/>
    <property name="username" value="jmsuser"/>
    <property name="password" value="jmsuser"/>          
    </resource-provider>
    In oc4j-ra.xml, I have:
    <connector-factory location="eis/aqjms/Queue" connector-name="Jms Adapter">
    <config-property name="connectionFactoryLocation" value="java:comp/resource/ojmstest/QueueConnectionFactories/myQCF"/>
    <config-property name="factoryProperties" value=""/>
    <config-property name="acknowledgeMode" value="AUTO_ACKNOWLEDGE"/>
    <config-property name="isTopic" value="false"/>
    <config-property name="isTransacted" value="true"/>
    <config-property name="username" value="jmsuser"/>
    <config-property name="password" value="jmsuser"/>
    </connector-factory>
    I have checked that demoQueue exists in the database.
    Any ideas?
    André

    Hi
    I managed to get it to work now on a different database.
    I probably didn't grant all the necessary rights to my jmsuser.
    Thanks,
    André

  • Problem while securely emptying trash

    When I first got this laptop I would securely delete things and it would work fine. But for a long time now, when I securely delete things a question pops up that says "the operation cannot be completed because the item 'recovered files' is in use." Then it asks if i want to "stop" or "continue." I always hit continue and it works fine. I don't know if this is really a problem with my laptop but i know for a fact that it didn't always do this. So is there something i can do so that it will just smoothly delete the files without a popup question??
    thanks for your help.
    -chris.

    i found this freeware which looks pretty promising, if you don't care to have to quit your apps or empty recovered files at all. http://www.versiontracker.com/dyn/moreinfo/macosx/29227 i would give that a try. good luck Sherry

  • Queue not empty to upload support pkg

    dear all,
    i import the support pkg SAPKH60007 - SAP_APPL
    IT throw error  that it have conflict . So i download conflict resolution package.
    now i want to  put that CRT pkg in queue. but the queue is occupied by SAPKH60007.  how to make the queue empty.
    LEE

    Hi david,
       First thanks for your very fast response.
    I did as you said. The queue also reset. But the queue is not empty.
    the support pkg SAPKH6007 Is in queue. i am not able to put the CRT in the queue.

  • Problem Details have empty reports

    Under Control Panel\System and Security\Action Center\Check For Solutions I find a number of reports source Antimalware Service Executable, Summary, Mp Telementry
    Problem signature
    <dir>
    </dir><dir></dir><dir></dir><dir>
    Problem Event Name: MpTelemetry
    Probleemhandtekening 01: 2152759308
    Probleemhandtekening 02: unspecified
    Probleemhandtekening 03: ScanFile
    Probleemhandtekening 04: 4.5.218.0
    Probleemhandtekening 05: Windows Defender (77BDAF73-B396-481F-9042-AD358843EC24)
    Probleemhandtekening 06: unspecified
    Probleemhandtekening 07: unspecified
    Versie van besturingssysteem: 6.3.9600.2.0.0.256.48
    Landinstelling-id: 1043
    </dir>
    The reports seem empty. If I click on View a temporary copy of these files is see a client_mantifexttxt file with the following content:
    <ClientData></ClientData>
    Is the error reporting software not working well?

    Hi,
    You just need to use your antivirus to scan the whole computer to see if there is any virus.
    If it has, deal with the antivirus.
    If no, ignore this report.
    Karen Hu
    TechNet Community Support

  • How do I correct a page setup problem when an empty black box is all that appears when I click on that menu drop-down button?

    I may have set page margins too narrowly or to widely by mistake; I have encountered this problem once before. My printer is operating properly.

    Check this article for hints
    [[Fix printing problems in Firefox]]

  • Problem with an empty collection

    When a procedure executes
    FOR i IN g_tabla_situacion.FIRST..g_tabla_situacion.LAST
    LOOP
    END LOOP;
    and g_tabla_situacion has no elements, ORACLE returns a
    "*-6502:ORA-06502: PL/SQL: numeric or value error*"
    How can I avoid this problem?
    Now I am doing...
    IF ( g_tabla_situacion.COUNT > 0 ) THEN
    FOR i IN g_tabla_situacion.FIRST..g_tabla_situacion.LAST
    LOOP
    END LOOP;
    END IF;
    but it doesn't seem the best solution...
    Thanks.
    Edited by: pacoKAS on 19-feb-2010 0:34

    pacoKAS wrote:
    I was thinking in a solution that forces g_tabla_situacion.LAST to be lower than g_tabla_situacion.FIRST when I load g_tabla_situacion with no registers....Not sure what you mean, but if your collection is not dense (as in only these indexes are present: 1 - 2- 5) you will get an exception. The method that I showed you will always work correctly, regardless if the collection is Sparse (containing gaps) or if the collection doesn't contain any entries.

Maybe you are looking for

  • Document splitting in ECC 6.0

    Dear Gurus. We have activated document splitting for our company codes at Business area level. When I post document say vendor invoice, in the expert mode splitting is happening as per the settings. But in document display FB03 or in the vendor line

  • Load infoprovider in 2 steps (2 transformation files) - BPC 10.0

    Hi Masters, For your better understanding, the background of this issue is that I currently have the planning solution configured and in use in BPC 7.50, in another server, and on it I have the same ACTUAL uploading process from our legacy system (SI

  • Burning a themed imovie in idvd, do i have to use a theme there too?

    HI, I have created a movie in imovie using the Photo Album theme and have sent it to media browser.  I want to burn it to a DVD.  When I go to iDvd it seems I have to use a new theme there with drop zones.  Can I just burn the movie I created without

  • Cannot charge ipod touch (3G) with wall charger, only using MAC.

    I've had my Ipod Touch for over a year. Suddenly yesterday the device will not charge with either a wall (a/c) charger or a car charger. I have two wall chargers and neither one works. It will only charge when plugged into a usb port on my MAC comput

  • How to add .mkv videos to iTunes?

    Hi everybody, I want to add my movies to iTunes movie library but it doesn't let me to add .mkv files:( Anyone can help? Thanks in advance..