Status ARCHIVE_CONTENT in program SAPLOCS_UI is missing

Hi, SAP expert,
     I just install minisap 4.6D recently. I try to play around to upgrade the support package via transaction code SPAM.
     When I upload the support package (e.g.: SAPKA46D01.CAR) from the frontend (local PC), it shown a dialog screen for this package info. But at bottom (main screen) it prompt a message 'Status ARCHIVE_CONTENT in program SAPLOCS_UI is missing'.
     May I know, is it a miniSAP bug or there is any patch to fix it ?
     Kindly advise. 
Thanks and Best Regards
Wong Hock Lin

HI Sunny,
you are correct. Basically my issue was with the Tablespace PSAPSR3701, it was 100% full. So support package stuck. After adding space to the tablespace,  I follow the below process. 
================================
If your problem is not solved still, then you can do the following, however please verify with SAP support first:
1. Take a full offline backup of you solution manager server. So that you can revert back to the same point in case. Then start SAP system, and ensure you have tp and R3trans latest.
2.Pls make sure that you have NOT made any changes to import
buffer, use the command to verify
tp showbuffer <SID> tag=spam pf=<...transport profile>
3. check at OS level to see if there are any tp or R3trans still
running; if yes stop them.
4. The TRBAT and TRJOB tables should be empty, if there are any
entries take a backup of the table, and delete the entry, manually if
neccesary at database level
4. Pls issue the following tp command to manually import SP
tp R3I SAPKB70012 <SID> pf=/usr/sap/trans/bin/<Your TP_DOMAIN_SID.PFL>
-Dclientcascade=yes -Dstoponerror=8 -Drepeatonerror=8
-Dsourcesystems= tag=SPAM
The return code for this tp call must be 0 or 4.
it will ask for modification adjusment then GOTO --> STATUS --> QUEUE --> Confirm Queue to get out  from the error (spam_confirm_patch wrong_status:R)
It might ask for SPAU_RUN. continue if you have done before.
then click confirm under the support package tab.
===========================================================

Similar Messages

  • Hpqdirec.exe has stopped working; "This program requires a missing Windows component"

    Anytime I try to access the HP solution center I get a message pop-up. It is from Windows & says:  "This program requires a missing Windows component. "  "This  program requires  flash.ocx, which is no longer included in this version of Windows." How do i fix this????

    Dear Customer,
    Welcome and Thank you for posting your query on HP Support Forum
    It looks like you are facing issues with regards to one of the Windows component which is missing
    We will surely assist you with this issue
    Please click on the below shown link to find the steps involved in resolving the issue
    http://tinyurl.com/khb65xv
    You can Check your warranty Here to verify the status if required 
    Hope this helps, for any further queries reply to the post and feel free to join us again
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

  • The TADIR entry for Program name is missing in ABAP report

    Hi,
    I created an  User group , Infoset  & ABAP query, generated a report with the help of ABAP Query.
    However when I did the extended syntax check for the same i got the fatal error.
    "The TADIR entry for <Program name> is missing
    (Message cannot be hidden using comment)"
    Could you please let me know why the above error is being given & how we can remove the same.
    Thanks
    Vinay Pasalkar

    Moved to ABAP General, thanks for pointing this out. In the future you can use the yellow triangle on the top right of each message to report such cases, they will be taken care of.
    Thomas

  • How do I restore my Admin status for a program in Applications using 10.6.8

    How do I restore my Admin status for a program in Applications using 10.6.8?

    Is this the file that does not have the desired priveleges? I think that's correct. If so, then open Terminal in the Utilitie folder. At the prompt enter:
    sudo chown -Rf root:admin [dragged file goes here]
    Leave a space after "root:admin" and drag the file you need to change into the Terminal window. Press RETURN. You will be asked to enter your admin password. It will not be echoed to the screen so type carefully. Press RETURN again.
    This will change the priveleges of the file to the default for the Applications folder.

  • What is the use of GUI status in Dialog programming

    what is the use of GUI status in Dialog programming,, how can it be used there,, as screen are alredy defined..

    Hi,
    The use of GUI Status is that when we have to change some thing in Menu Bar, Toolbar and Function Keys. Say For Example we have to create any Custom Button in the application toolbar etc.
    It can be used in Dialog Programming via defining the Status in the PBO module of the screen.
    eq. created a screen 9000
              on clicking it->
                                   PROCESS BEFORE OUTPUT.
                                             MODULE status_9000.
    On double clicking on this "Module status_9000" - you can write "SET PF-STATUS 'STATUS_9000'".
    Now u can create GUI staus with name "'STATUS_9000'".
    Let me know in case you have any further doubts.
    Thanks

  • Adapter status determination by program

    Dear all,
    Is there any possibility to determine an adapter status by a program?
    I mean, if there is any API, or BAPI, or RFC, or tables, whatever, to read into an ABAP program the adapter status - specifically the informations which are displayed on the corresponding Runtime Workbench page (active/inactive/stopped, perhaps the status of last processed messages).
    The ABAP cache holds all the adapters (definitions), but no dynamic status, so it's useless. The message table does not contain any information about the adapter, so it's useless too.
    The ideal would be to retrieve such data into an ABAP program, but any other help would also be useful.

    Hi
    These table contains XI information, might help u
    Interesting ABAP tables in XI – Part I

  • GUI status of std. program

    Hi,
       Can somebody tell me how to get the GUI statuses i.e. All the Function Codes used mentoined in a GUI status of standard program.
    I have checked the program SAPMSEUK & Function Module RS_CUA_INTERNAL_FETCH. But its not giving the GUI_STATUS till the bottom Function Codes level.
    Please suggest some solution...
    Regards,
    Rushikesh

    Hi,
    if you don't want them programatically, call the transaction in question and click on system->status. Double click on the field gui status. This will lead you to the definition of all function codes (ok codes) of the screen.
    If you want programatically, try using the function module.....
    data: irsmpe_funl type table of rsmpe_funl with header line.
    call function 'RS_CUA_GET_FUNCTIONS'
      exporting
      LANGUAGE                = ' '
        program                 = <program_name>
    IMPORTING
      MASTER_LANGUAGE         =
      tables
        function_list           = irsmpe_funl
    EXCEPTIONS
      MENU_NOT_FOUND          = 1
      PROGRAM_NOT_FOUND       = 2
      OTHERS                  = 3
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    regrads
    navjot
    reward if helpfull

  • How to copy pf-status from one program to another program

    Hi Gurus,
    Can any one tell me the procedure how to  copy pf-status of one program to another program .if i want to copy pf-status which is in production server to development server how can i do this.pls help me out.
    Regards.

    Hi,
    GO TO  SE41,
    Select Status,
    In from u can give  ur old pgm and staus name
    In To u can ur new one .
    Save and activate.
    Regards,
    S.nehru.

  • Hw to find out the status of the program...? like active / inactive?

    Hi kindly let me know how to find out the status for the programs (like active / inactive).
    I have 100’s of zprograms; I want to know at a time which are all active and which are all inactive.
    I heard some table is there, but don’t know exactly, let me know if you have any idea…
    Akshitha.

    Hi akshitha,
    1. Active and Inactive status is stored in table REPOSRC.
    2.  Just goto that table in SE11/SE16,
         and enter (copy/paste) the list of your 100 programs.
    3. <b>In that there is a field R3STATE
       Where A= Active
                 I = Inactive</b>
    From there u can filter as per ur requirement.
    regards,
    amit m.

  • SDBINST does not check error status of external programs (sdbconfig)

    Hello,
    I was trying to install maxdb 7.6.03.07 on SLES10 JeOS with SDBINST. The problem is, that after a sucessfull instalaltion (i.e. no error message) some of the programs like x_server was missing. First I suspected a missing archive or something from the Share, but then I found the reason for the problem in the logfile of the installer:
    sdbinst was trying to execute sdbconfig, which failed. Obviously sdbinst is not checking the return code of this execution.
    ACTION: make directory "/usr/spool/sql/ini" mode "777"
    SYS: /opt/sdb/programs/bin/sdbconfig IndepData=/var/opt/sdb/data:
       /opt/sdb/programs/bin/sdbconfig: error while loading shared libraries:
       libstdc++.so.5: cannot open shared object file: No such file or directory
    MSG: writing 1 packages
    MSG: net install registry size = 948 bytes
    MSG: wrote install registry (1573 bytes)
    MSG: install registry successfully unlocked
    Can I somehow add this to PTS?
    BTW: there are various reasons why this program call could fail. Not only missing instalaltion dependencies (which I am going to fix and retry). So I think even when you check the library dependencies before, you still must monitor the exit status of those execs.
    Gruss
    Bernd

    > I was trying to install maxdb 7.6.03.07 on SLES10 JeOS with SDBINST.
    SLES 10 and JeOS are two different systems.
    JeOS is an Ubuntu clone - which is not (officially) supported and thus you get those errors.
    Markus

  • Error while compiling Web Dynpro program due to missing JAR files

    Hi Experts,
    I am getting error message while compiling Web Dynpro program. The erring lines are as below:
              Message message = new MimeMessage(session);
              try {
                   message.setFrom(new InternetAddress(fromMailId));
                   message.addRecipient(
                        Message.RecipientType.TO,
                        new InternetAddress(toMailId));
                   message.setSubject(mailSubject);
                   message.setText(mailBody);
                   message.setHeader("X-Mailer", "E-Mail");
                   message.setSentDate(new Date());
                   Transport.send(message);
    The error messages are:
    Message.ReceipientType can not be resolved
    The method send(Message) is undefined for the type Transport
    The method setFrom(InternetAddress) is undefined for the type Message
    The method setHeader(String, String) is undefined for the type MessageThe method setSentDate(Date) is undefined for the type Message
    The method setSubject(String) is undefined for the type Message
    The method setText(String) is undefined for the type Message
    Type mismatch: cannot convert from MimeMessage to Message
    Can you please help me in resolving the issue. It seems that some API is missing. I believe if some one can tell me the name of JAR file / API then I will be able to sort out the issue. I will add these JAR file in my program.
    Thanks,
    S

    HI Stuart,
    you are missing the jar files required for sending mail in java
    Installing JavaMail
    You will need the latest version of JavaMail (Version 1.2) available here:
    http://java.sun.com/products/javamail/
    Download and unzip the file, in the newly created top level JavaMail directory you will find a number of jar files,
    these need adding to your classpath.
    To do this in Eclipse, right click on your project in the tree view, select properties, select the libraries tab.
    Now click the 'Add external jars' button, navigate to your JavaMail directory and click on the jars.
    The tutorial also makes use of the Java Activation Framework, which is available here:
    http://java.sun.com/products/javabeans/glasgow/jaf.html
    Instalation of JAF is identical to JavaMail
    activation.jar / mail.jar are 2 distinct names i remember rest you will get above
    P.S: close the question to assist other users narrow the search and find solutions
    Message was edited by:
            Armin Reichert

  • S.M.A.R.T. status depends on program?

    Hi,
    The last couple of days I've had problems with my Macbook Pro (OS X 10.6), which seems to be a harddisk (Toshiba MK3255GSXF Media) related problem.
    When I run Disk Utility (Programs -> Utilities -> Disk Utility) it says that there is a hardware issue and that "S.M.A.R.T.-status: failing" - I've read numerous topics online, and I have now tried both Drive Genius and Disk Warrior.
    Now Drive Genius says: "S.M.A.R.T verified" which I thought was a good thing - but Disk Utility still says that there is a problem with the S.M.A.R.T status.
    So now I'm kind of confused - which program is lying and what can I do about it?
    *Edit* After checking again, Disk Warrior now says:
    "This hard drive's built-in S.M.A.R.T. diagnostics indicate a failure of pending failure that could result in loss of data" - However, I'm not aware of if it's just relying on information from Disk Utility or some information it get itself - it's still confusing having different programs saying different thing on the same topic!

    EDS513 wrote:
    Any suggestions?
    (1) I have trouble following you. Try to explain your problem in a more orderly fashion.
    (2) Are you sure your problem is the same as the OP's, in a 2-months-old thread?
    (3) If you're talking about the SMART status of an external drive, you need to be aware that that feature is not supported by Mac OS X.

  • How to copy GUI status to new program

    Hi all,
    In report A, i have GUI status with lot of menu bar activities. i need to create one more report B, with the same GUI status. Is there any option to copy/download from Report A to paste/upload to the new report B.
    Note: Both the Reports are in different SAP Systems.
    Please suggest.
    Thanks.
    Regards,
    Venkat
    Edited by: VENKATA PRASAD BATHINAPATLA on Sep 19, 2011 8:39 AM

    Hi,
    You can do this:
    go to Transaction se90. Drill down to Program library -> program sub objects -> Double click on GUI Status.
    In the program name enter Your PROGRAM NAME and press execute. now select check box beside <Your GUI STATUS which you want to copy>. and in the menu click on GUI Status -> Copy.
    Now copy it to ur B report pf status.
    or
    goto se80 select Program enter your program name then under GUI Status  right click on your gui ststus which you want to copy and press copy and enter your B Report name.,
    hope this helps u.,
    Thanks & Regards,
    Kiran

  • Status of Abap program in process chain

    Hi,
    Is there a way to create process chain of type abap program that determine what the status of the process? In other words, to decide what the status color of the process (red/ green) according to some conditions in the code?
    Thanks,
    Mohamad

    Hi,
    look at this how to
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/509f3ae6-e36e-2910-48a8-ab43dc167dd9
    also:
    1.create a custom defined abap process type which ends correct or invalid
    2. create an abap whith 'E' message command (ends incorrect/red) or 'I' message tpye (ends correct/green)
    /manfred

  • Idoc in 53 status but not processed completely. Missing authorisation error

    Hi ,
    Some of the ORDER Idocs are in 53 status, but the orders are not processed successfully and no PO created for these Idocs.
    They got below warning message when I checked in WPER transaction code.
    " Missing authorization: Purchase Order Create Purchasing Grou 110 " - "Workitems (tasks) were created for this IDoc"
    This is happening once in a while for some of the idocs. Remaining all idocs are posting successfully.
    These IDOCu2019s are processed via user background. Not sure why we have authorisation issues as this user has SAPALL. Any ideas?
    Thanks
    Deepthi.

    done.

Maybe you are looking for

  • Good hard drive for macbook

    Hey guys, so I have a macbook that I have had since 2007 and I am running out of space, big time. I need to get an external hard drive because they dont make more internal space for my macbook. I need one that is small but has a lot of space and if p

  • Using Expression in commandButton "Icon" property

    I have 2 images and i have 2 conditions. i want to show one image at a time under a condition. I am using the following expression to determine the image to be displayed on CommandButton in adf: #{row.bindings.PolicyExceptionApprovedFlag.inputValue==

  • Adjustment Layer with drop shadow not working

    Hi, I have a problem when trying to use an adjustment layer to apply a drop shadow to multiple images. Here's what I'm trying to do. I am creating a floating gallery in After Effects CC (latest updates are installed). There are 75 photos and each pho

  • Changing camera profiles in LR 2 and ACR 4.6

    How does one change the camera choices in the Camera Profile panel in LR 2 and ACR 4.6? The only camera specific model that shows up for me is the Nikon D2X, and I shoot a Nikon D200.

  • SX 280 - The Life and Times of the Lowly Battery

    I know there is another thread about the battery issues on this camera.  I have even posted there, but that thread is long and Canon seems to have forgetten about its issues with the battery.  So, here is a new thread that will hopefully get Canon's