Display Archived Workitens

Hi Experts,
I make an archiving test using transaction SARA and the object WORKITEM.
After the archive is concluded, and if I used the report RSWWARCR to see the workitens archived, the information displayed itu2019s only the Work item ID.
I used the transaction SWI1 to try to see more information about this archived workitens, but this transaction is not prepare to search on archive...
There's any way to see more information?
Thereu2019s any standard transaction that I can use to see the archived workitens?
Thanks,
LF

HI PR,
I have already saw the transaction SWW_ARCHIV, but I donu2019t know the information to put on the fields  Object Key and Object Type, because  I donu2019t want to search a specific Workitem. What I want to know is if there is any standard transaction (like SWI1) that I can put some parameters to search the Workitems. If the research returns with no values, I want the transaction to ask me if I want to search on archiveu2026
Is there any standard transaction that does it?
Can you help me?
Regards,
LF

Similar Messages

  • Can't display archive change documents for agreement (COND_B)

    Hello,
    I want to display archive change document for object class : COND_B (agreement) via transaction MEB3:
    The archive works fine, and I can found the archive change documents form SARA.
    (Archive Objetc = CHANGEDOCU
    Archive info structure = SAP_CHANGEDOCU2 (is active))
    But the display from the application transaction : MEB3 doesn't work.
    In the DEBUG:
    the Function module is called automatiquely: COND_B_DISPLAY_DOCUMENT
    THEN SUBMIT RSSCD100
    THEN The function module is called with the no parameter READ_CHANGEDOCU (ie with space value)
    THEN the program reads only from DB
    Question : HOW I oblige the program to read from the archive  (READ_CHANGEDOCU = 'X') ?
    I checked these SAP notes 1050935,1299903, 1308024, 1128954, 1050335
    but no results.
    May be I forgot some customizing ( SARA,, AOBJ )?
    Thanks for your help.

    Hi,
    As I understand, the change documents archived using the CHANGEDOCU archiving object are no longer available using the application object.
    Refer to Notes 1257133 and 140255 where they mention the above point.
    If you want to read change documents along with the application, then you must first archive the change documents along with the application.
    In your case, for agreements, you should use object SD_AGREEM so that the change documents also gets archived along with the agreements. Refer to note 761281 to check whether the archiving class CHANGEDOCU is already defined along with object SD_AGREEM in your system.
    Hope this helps,
    Naveen

  • Is there any t code in SAP to display archived shipping

    Hi All
    we have a issue with unarchiving shipping doc , our basis team has unzipped the file from the path it was archived and provided display access , when i cross checks in Tcode SARI theya are un zipped and in sap this document is still in status archived i am not able to view vith vt03n
    for archived billing documents once thay are unzipped , document will not open in vf03 but we can display in vf07
    Please let us know how to view this shipping data in sap ?
    Is there any t code in SAP to display archived shipping data (like for archived billing dicuments vf07)
    Your kind help would be highly appreciated.
    Thank you
    Rajendra Prasad

    Hi Rajendra,
    Whats your SAP version? VT03n supports display of archived data from 4.7onwards. If you are in a lower version then i think you should use infostructures.
    Thanks,
    Naveen

  • Is there any t code in SAP to display archived shipping data

    Hi All
    we have a issue with unarchiving shipping doc , our basis team has unzipped the file from the path it was archived and provided display access , when i cross checks in Tcode SARI  theya are un zipped and in sap this document is still in status archived i am not able to view vith vt03n
    for archived billing documents once thay are unzipped , document will not  open in vf03 but we can display in vf07
    Please let us know how to view this shipping data in sap ?
    Is there any t code in SAP to display archived shipping data (like for archived billing dicuments  vf07)
    Your kind help would be highly appreciated.
    Thank you
    Rajendra Prasad

    Hello,
    Once shipment document is archived then you can't display by VT03N transaction. As you have pointed out SARI or SARE transaction will help in displaying the archived shipment documents from archive server. (you have to select Archiving object = SD_VTTK and Archive Infosturcture = Select from display option).
    VF07 - Display archived billing document. We call this transaction VF07 as archived enable transaction.
    I have gone through the OSS note 590656 mentioned by Eduardo Hinojosa, with this enanchment of VT03N (respective program) you should be able to display archived shipment document. This Oss note should help you.
    let me know if required further clarification on this.
    -Thanks,
    Ajay
    Edited by: Ajay Kumar on Aug 25, 2009 6:16 AM

  • Display archive doc as pdf from web dynpro?

    Hi All,
    We have a situation where we want to display archived pdf's from a web dynpro.  I have put an interactive form ui element on my view and bound this to an attribute of type xstring on the context.
    When I run it, i get an error message saying that file does not begin with '%PDF-'.  I've tried putting this on the front of the string but i didn't work either.
    So can anyone tell me the process for displaying archived pdf's from a web dynpro.
    Many thanks in advance,
    Liz.

    This is the code necessary to get it to work:
    get optical archive id of pdf to display
        select single * from toahr into ls_toahr
          where sap_object = 'PREL'
            and OBJECT_ID  = lv_obj_id
            and ar_object  = ls_zhr_paylsip-zhr_doc_type.
        lv_archiv_id  = 'H1'.
        lv_document_type = ls_toahr-ar_object.
        lv_archiv_doc_id = ls_toahr-arc_doc_id.
        lv_signature = 'X'.
        lv_compid = 'data'.
        free lt_binarchivobject.
        call function 'ARCHIVOBJECT_GET_TABLE'
          exporting
            archiv_id                      = lv_archiv_id
            document_type                  = lv_document_type
            archiv_doc_id                  = lv_archiv_doc_id
      ALL_COMPONENTS                 =
           signature                      = lv_signature
           compid                         = lv_compid
         importing
           length                         = lv_length
           binlength                      = lv_binlength
         tables
           archivobject                   = lt_archivobject
           binarchivobject                = lt_binarchivobject
         exceptions
           error_archiv                   = 1
           error_communicationtable       = 2
           error_kernel                   = 3
           others                         = 4.
        if lt_archivobject[] is not initial.
          describe table lt_archivobject lines lv_rowcount.
          lv_rowcount = lv_rowcount * 1024.
          call function 'SCMS_BINARY_TO_XSTRING'
            exporting
              input_length = lv_rowcount
              first_line   = 1
              last_line    = lv_rowcount
            importing
              buffer       = lv_xstring
          tables
            binary_tab   = lt_binarchivobject
          exceptions
            failed       = 1.
        endif.
    Where yo bind lv_xstring to the the pdfSource via the context

  • How to display archive link picture in pdf

    Hi, Experts
      I create a pdf form using tcode SFP, and create a graphics element in the form,
    but i don't want to use the MIME object to disaplay,because our pictures are archive link.
    How to display archive link picture in pdf form?
    Thanks you very much!
    Ken.li
    Edited by: Ken.Li on Nov 17, 2009 3:50 AM
    Edited by: Ken.Li on Nov 17, 2009 4:30 AM

    Hello,
    I can recommend you go through the tutorial called How Tou2026 Integrate ADOBE form on WebdynPro for ABAP and Deploy it on portal by Bhawanidutt Dabral. Ignore the fact it uses WD, I have tried the proposed solution how to load in the picture on a simple offline/ print form. Look around for this tutorial.
    It propose to use the FM as follows:
    CALL METHOD cl_ssf_xsf_utilities=>get_bds_graphic_as_bmp
        EXPORTING
          p_object       = c_graphics
          p_name         = lv_pernr1
          p_id           = c_bmap
          p_btype        = c_bcol
        RECEIVING
          p_bmp          = ls_z_if_test_cv-im_photo
        EXCEPTIONS
          not_found      = 1
          internal_error = 2
          OTHERS         = 3.
    It passes the picture as XSTRING into the form and there you bind this data stream to a Image Field (not an Image!!! check this twice). Don´t forget to check the checbox to include picture data into the form file.
    Hope this helps, Otto

  • Display Archived Document in Abap Webdynpro without opening new window.

    I would like to create a wd4a application that receives the parameters of Archive ID and Doc ID and displays the archived document.  The document is stored as a pdf on SAP's content server.  Currently the webdynpro will open a separte blank Window.  I have not defined any view elements to the embedded view because I do know which view element I should to display the archived documente.  I have a url to the document and it will get displayed by creating an new window by executing  the code below to launch the file in a separate window.   The Adobe Viewer creates a new window to view the document.  Does  anyone know what view Uielement I should use to view the document in the main window and main view?
    Thank you
    Tom
    data ld_url type dms_url.
    data ls_message type bapiret2.
      call function 'SCMS_AO_URL_READ'
        exporting
          MANDT               = SY-MANDT
          arc_id              = id_archive_id
          doc_id              = id_arc_doc_id
          COMP_ID             =
          DOCUMENT_TYPE       = ' '
          PDF_MODE            = 'A'
          HTTP_URL_ONLY       = ' '
          DP_URL_ONLY         = ' '
           loc_info            = 'F'
          LIFETIME            = 'T'
          NO_CACHE            = ' '
       importing
         url                 = ld_url
       exceptions
           error               = 1
           others              = 2
    assert sy-subrc = 0.
    added by YINS Mar.05 2007
      if sy-subrc <> 0.
        ls_message-type = 'E'.
        ls_message-id = sy-msgid.
        ls_message-number = sy-msgno.
        ls_message-message_v1 = sy-msgv1.
        ls_message-message_v2 = sy-msgv2.
        ls_message-message_v3 = sy-msgv3.
        ls_message-message_v4 = sy-msgv4.
        append ls_message to wd_this->mt_messages.
       wd_this->flush_messages( ).
        return.
      endif.
      data:
        lr_api_comp_controller  type ref to if_wd_component,
        lr_window_manager       type ref to if_wd_window_manager,
        lr_window               type ref to if_wd_window,
        ld_url_str              type string.
      lr_api_comp_controller = wd_this->wd_get_api( ).
      lr_window_manager = lr_api_comp_controller->get_window_manager( ).
      ld_url_str = ld_url.
      lr_window = lr_window_manager->create_external_window(
          url   = ld_url_str
      lr_window->open( ).

    I found a solution after much troubleshooting including uninstalling/reinstalling Office 2010 which didn't solve the issue. 
    Here it is:
    When Outlook or some other Office program is minimized in the taskbar and won't open, right click the taskbar to bring up task manager. 
    Right click the program in the task manager list that is giving trouble and click Maximize.  You should now see a full screen.
    This worked for me and solved the "open and stays minimized" delima.  Hope this helps you too.  Cheers :)
    Thanks a bunch this saved me a potential headache!

  • Archiving Object MM_EKKO-MM_EBAN-MM-MATBEL- Display archived/deleted doc

    Hello all,
    I need your help to understand if in Release 4,6C following archived and deleted documents should be displayed through Standard Transaction. Currently my system doesn't allow me to do that.
    Purchase Order, Contract, RFQ, --> ME23N
    Purchase Requisition --> ME53N
    Material Document --> MB03
    With reference to this document which report should take care of archived documents? (f.i. ME2M; ME2L - show only PO still in the system)
    Thank you very much for your collaboration.
    Regards,
    Fuffo

    If people need to look/work with archived data, then you need the infostructures, except you use the archive add-ons from PBS  ( http://www.pbs-software.com/PBS-Startseite.1.0.html?&L=1 ) which allow you do see archive data by using the well-known SAP transactions, without the need of space-consuming SAP infostructures.
    I try my best to avoid infostructures, means I archive data that is no needed for business, not needed to be looked up often.  (developing infostructure or even programs to analyse data that was archived early is more expensiv than the costs of the disk space, at least in our branch)
    But if an infostructure is given by SAP, then you can activate (fill it) or deactivate (delete content) within a few seconds with tiny effort. So I do it in rare cases if somebody needs to see archived data.

  • Display archived purchase orders in Lists (e.g. ME2L)

    Hi everybody,
    Last week we upgraded our system to SP13 (ECC 6.0). Since then we have problems with our archived purchase orders.
    Usually all purchase orders (independent from where they are saved (archive or database)) are displayed in standard reports like the ME2L. Since the upgrade we cannot access the archived POs when we start the ME2L.
    When I use SARA (e.g.: RM06ER30) to read the archive it works. When I start the ME24N and pic a archived purchase order it works fine too.
    I have two questions now:
    1.) I'm not 100% sure if the old behavior was standard or if some modification has been carried out in our system some time ago. Can anybody tell me if archived POs are displayed in MM-lists like the ME2L in SAP-standard?
    2.) Does anybody has a solution how I can fix that?
    Thanks upfront and kind regards
    Alex

    Hi,
    I was over looked! Please check below tables
    Please check the arciving procedure from SAP help
    SAP Library - Materials Management (MM)
    VARCHIVEKEY find  in table ADMI_FILES ( *MM_EKKO)
    Below FM's
    MM_EKKO_AS_SHOW
    MM_EKKO_02_DISPLAY_DATA

  • Display archived IDOCs in transaction WE10 - click on IDOC number

    Hi experts,
    If you run transaction WE10 and display IDOCs not archived (from the database), from the list of IDOCs you can click on the IDOC number and then go to the screen that displays the IDOC information (Control, Data and Status records).
    However, if you run WE10 with archived IDOCs (Data Source is archive), you get to see the list of IDOCs but when you click on the IDOC number it doesn't go to another screen showing you the IDOC information but it stays on the same screen.
    Is this expected behaviour? I have had a looked at the OSS and Internet Search and there is no reference to this behaviour.
    Many thanks for your help in advanced.

    Hi Jurgen,
    Thanks for moving my post to the correct space.
    Our Auth team is very confident that this is not a user auth issue. This could possibly be true because the idoc data resides on the following tables when in the database (before archive) - EDIDC, EDID4 & EDIDS. The idoc could then be viewed via transaction WE02 or the Data Browser (SE16). There is no EDIDD table in our ERP system so obviously no authorization object to assign to.
    Once the idoc is archived, the data is removed from the ERP tables and moved to our archive database/server for storage. So when trying to view the archived record, the system does not access the ERP tables but rather the archive directory (that it's mapped to in settings). I assume the SARA transaction merely displays the data in the same segments/grouping with these table names (mentioned above in my first post) but instead of EDID4 it displays EDIDD.
    According to the error longtext, "The check performed when data is read from the archive is the same as that of the Data Browser (transaction SE16)". So I was not involved with setting up our archiving procedure but could it be that table EDID4 was incorrectly mapped to table EDIDD in archives?
    Regards,
    Fawaaz

  • Best way to display archived news stories?

    I'm using the content editor web part to display a news story and then at the bottom of the story I have a link to archived stories. That takes you to a custom list with the remaining stories, but the view is the title on the left and the body on the right.
    I'd like to have that list display the title on the top  with a few lines of the story below it and have the remaining stories below that with the newest first.
    Is a custom list the best way to do this? If so, how can I change the view so the title is on top of the story with just a couple of lines of the story displaying and remaining stories below that?

    Oops, sorry. I am doing a copy/paste into the Content Editor web part. Then when I have a new story I'll copy that content into the custom list for the archive.
    If I do content query for the archives. I'm just going to query the custom list?
    Is there some way to have the "live" story write to the custom list automatically so I don't have to copy/paste it when a new story needs to be posted?

  • How to display archived datas in INSODISP?

    Hi,
    We are planning to archive the pay plan items for all the older accounts. Here the client requirement was to display the archived pay plan items in INDODISP-CURR DISTRUBUTION and other screens values too.
    Archival Objects Used: -VVKK_SCHED
    Can any one advise on this?

    Hi John,
    the sine looks like it should look with your VI!
    You convert the DDT to a scalar DBL. That conversion will only use the first sample of the generated sine waveform - usually this is always the same (offset) value when you generate full periods… Or to put it in a mathematical expression: sin(0°)+4 = 4!
    When you want to display waveform you should work with waveforms!
    Actually, I have used Dynamic data type in order to simulate an signal.
    Well, I also simulated a signal in my example VI. I didn't use any ExpressVI to do so…
    In a few weeks, I will receive a sensor. I will use in LabView 'DAQ Assistant' whose the ouput is a Dynamic Data.
    Nobody forces you to use the DAQAssistent ExpressVI. There are nice DAQmx functions available and LabVIEW comes with a lot of ready-to-use example VIs…
    That's why, I used in first place, the 'Simulate signal'. So I think I should keep Dynamic Data Type
    I do think you don't need to use the DDT. I think it's better to understand what is going on in your VI. And I think the DDT will be no help for you…
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Display archived citadel data mixed with "live" Lookout machine data using Hypertrend object?

    Maybe a new feature request item?
    It would be really nice if you could use a Hypertrend object in Lookout to plot historical data from an archived Citadel database.  So this would be a feature where you could connect an additional (or many) additional databases as machine processes in (read only mode of course).  This would allow mixing display objects (trends) of running processes along with display objects (trends) of archived "processes" in the same Hypertrend display when using Hypertrend in the historical mode.
    The Lookout Hypertrend object is awesome and it is about time you folks gave Lookout some attention again to exploit its power and coolness.
    Thanks and Happy New Year!!

    The hypertrend use Citadel service to transfer the data between computer, while the live data is different, so your problem is probably in networking setting or firewall.
    If you have firewall on either computer, follow these KBs.
    http://digital.ni.com/public.nsf/allkb/0D7B86F4B4D19A5E86256F9A006EECB1?OpenDocument
    http://digital.ni.com/public.nsf/websearch/8AE45BBFA1D7025E862570F200642FD8?OpenDocument
    Lookout client software doesn't install MAX.exe, but if you have MAX.exe on the client computer, you can use MAX to check the connection. In MAX, try to view the remote trace.
    You can also use the NI Hypertrend ActiveX object to check the connection. Create a client process with just a NI Hypertrend ActiveX object. Move it to client computer. Edit its properties and add a trace, then try to view the remote trace. See the attached screenshot. If the Citadel communication has problem, you will not see the database or the trace.
    The ActiveX object doesn't fix the problem, but can tell you whether the remote connection is good or not.
    Message Edited by Ryan.S on 11-14-2008 03:49 AM
    Ryan Shi
    National Instruments
    Attachments:
    1.JPG ‏71 KB

  • Cannot display archived idoc data records in SARA

    Hello,
    In our ERP system, we regularly archive idocs older than 6 months. To view these archived idocs I use transaction SARA (with archive object IDOC and infostructure SAP_IDOC_001) to search for the relevant idoc that has been archived. Once the idoc is displayed, I drill down further by clicking the magnify glass button which then displays the idoc levels:
    EDIDC               Control record (IDoc)
    EDIDD               Data record (IDoc)
    EDIDS               Status Record (IDoc)
    SRL_ARLNK      SREL: Archive Structure for Links
    When I try to view the Data Records, I get a message saying "You are not authorized to display table EDIDD". According to our Authorizations department, this is not an Auth issue but rather config setup or program issue.
    Why can't I view the archived idoc data records? Is there another way to view archived idoc data?
    Regards,
    Fawaaz

    Hi Jurgen,
    Thanks for moving my post to the correct space.
    Our Auth team is very confident that this is not a user auth issue. This could possibly be true because the idoc data resides on the following tables when in the database (before archive) - EDIDC, EDID4 & EDIDS. The idoc could then be viewed via transaction WE02 or the Data Browser (SE16). There is no EDIDD table in our ERP system so obviously no authorization object to assign to.
    Once the idoc is archived, the data is removed from the ERP tables and moved to our archive database/server for storage. So when trying to view the archived record, the system does not access the ERP tables but rather the archive directory (that it's mapped to in settings). I assume the SARA transaction merely displays the data in the same segments/grouping with these table names (mentioned above in my first post) but instead of EDID4 it displays EDIDD.
    According to the error longtext, "The check performed when data is read from the archive is the same as that of the Data Browser (transaction SE16)". So I was not involved with setting up our archiving procedure but could it be that table EDID4 was incorrectly mapped to table EDIDD in archives?
    Regards,
    Fawaaz

  • SAP IS Insurance -Display archived Insurance Object in INSODISP transaction

    Hi,
    I had archived the Insurance Object, And I want to display the archived IO in INSODISP transaction.
    How to display the archived IO in the INSODISP transaction.
    Thanks
    Ram

    Hello Barbara,
    Please look into transaction code  FPDE_AEXP.
    Hope it works for you.
    Rgds

Maybe you are looking for

  • Ical bug/spurious error

    iCal gives me an error about having been invited to a meeting using an email address that is not in my address book entry (not true!) when I attempt to import (by clicking on the .ics file attachment in Mail.app) them to my calendar. Specifically teh

  • No Design/Split View?

    Ok... sorry to sound like a rookie here, but one of the few times I really want to use Design View I cant seem to get it to work. Let me explain... I am a long-time hand coder, and still hand-code most of my pages. I have a page that I have hand-code

  • Can TS work with sql server compact or express?

    I'm don't have much experience with the underpinning of database systems.  I know conceptually how they work and can hack my way through sql queries.  Is there something fundamentally different about a Sql Server Compact itnstall versus Sql Server ve

  • What does adobe create pdf do for me at $79.00

    I bought this adobe create a pdf months ago and have not used it. Help what did I buy and why is it not user friendly?

  • Slider Trouble

    What's up with my code? It keeps saying there's a syntax error in line #4. // JavaScript Document<script type="text/javascript"> $('.slider').each(function(index, element) {     var $this = $(this),    var $group = $this.find('.slide-group'), //Line