Emptying archive infostructure: report AS_AINDDEL_DATE

Dear all,
In order to delete the infostructures from object  MM_MATBEL, I use the report AS_AINDDEL_DATE.
The program is run in background.
However the program run for 100 hours for one year and for 10 hours for one archiving run (one date).
Archiving started on 2002 and this is the first time we are trying to delete infostructures.
Did you already have performance problems while emptying infostructures ?
Best regards,

I am not sure why you want to empty the info structures, but if i want to empty the info structures then i would use tcode SARI-->Status-->status per info structure-->delete info structures. This would be much faster to empty the info structures.
AS_AINDDEL_DATE this report is slow because it has to get the specific date and get to delete the archived information from the structures. You can use this report only if you have a requirement to delete the info structures for a particular date.

Similar Messages

  • Information Broadcasting & Archiving: Query reports need to be Archived

    Hi All,
    The requirement is that , we need to broadcast query reports in Bex 7.0 to be archived as a pdf.
    Please note that this is not Data archiving. We need to archive only query reports.
    We need to make sure that pdf gets generated in Background and report selections variant can be used in Background.How can we achieve this?
    Alternatively ,Please suggest useful articles, that will be of help in this.
    Thanks in Advance ,

    archiving data is plausible -
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/asug-biti-03/sap%20bw%20archiving%20and%20data%20aging%20strategies
    Not sure why you want to archive the reports in PDF, also at what point?? is it on the application sever ???
    Hope it Helps
    Chetan
    @CP..

  • How to eliminate empty cells in reports

    how to eliminate empty cells in reports
    Thanks & Regards
    Kishore P

    hi saichand,
    my report contains empty cells. i.e it is simply empty . no value will be there like NULL ,n\a .
    IFNULL will only work when the value of the cell is NULL.
    so i need to make those empty cells to 0
    Thanks & Regards
    Kishore P

  • Check for empty cell in report

    I have a report that displays true or false in the rows for a number of automobile models that are the columns.
    I have the case statement below setup in the column formula section of one of my columns.  It does kind of work, but if "FT_AUTOS"."productionEnded" is nothing(i.e. returns nothing, not even NULL), then it will just show a blank cell.  Is there a way to include "empty" so that it also shows up as incomplete?
    case
        when SUM(case when "FT_AUTOS"."productionEnded" IS NOT NULL then 1  else 0 end) > 0 
        then '<div title= "True"  style="background:#00ff00;text-align:center">'||'True'||'</div>' 
        else  '<div title= "False"  style="background:#ff0000;text-align:center">'||'False'||'</div>' 
    end
    Thanks

    length("FT_AUTOS"."productionEnded")
    might tell you about NULL or '' or ' ' etc
    forget about your report for a while and just pull this column with above expression and then run it, sort it asc
    then look values and then sort to desc

  • Hiding empty columns in report builder

    Hi,
    This is my first adventure with report builder and I have
    managed to produce some custom labels which work almost perfectly.
    I say almost because there is one thing I can't seem to do.
    I have a label for addresses. The address data consists of
    data from a query including, name,
    address1,address2,address3,town,county,postcode.
    Some of these are quite often empty but the label still
    displays a line break and the ',' at the end so I might end up
    with:
    Dave Phipps
    27 Acacia Road,
    MyTown,
    MT1 4JP
    In the above address the fields address2, address3 and county
    are empty.
    How do I set this up in Report Builder to hide the missing
    lines so that I would end up with:
    Dave Phipps
    27 Acacia Road,
    MyTown,
    MT1 4JP
    Any ideas?
    Cheers,
    Dave

    Hi,
    If i understood your question correctly,
    The you can try this
    TYPE-POOLS:slis,abap.
    TYPES:BEGIN OF ty,
          f1 TYPE c,
          f2 TYPE c,
          f3 TYPE c,
          f4 TYPE c,
          END OF ty.
    DATA:it TYPE TABLE OF ty,
         wa TYPE ty,
         wa_field TYPE slis_fieldcat_alv,
         i_fieldcat TYPE TABLE OF slis_fieldcat_alv,
         i_details TYPE abap_compdescr_tab,
         wa_comp TYPE abap_compdescr,
         ref_descr TYPE REF TO cl_abap_structdescr,
         lv_field TYPE abap_compname.
    FIELD-SYMBOLS:<fs>,
                  <fs1>.
    ref_descr ?= cl_abap_typedescr=>describe_by_data( wa ).
    i_details[] = ref_descr->components[].
    wa-f1 = 'A'.
    wa-f3 = 'C'.
    APPEND wa TO it.
    wa-f1 = 'X'.
    wa-f3 = 'Y'.
    APPEND wa TO it.
    if it[] is not initial.
    LOOP AT i_details INTO wa_comp.
      ASSIGN wa_comp-name TO <fs>.
      SORT it BY (<fs>) DESCENDING.
      CONCATENATE 'WA' '-' <fs> INTO lv_field .
      ASSIGN (lv_field) TO <fs1>.
        READ TABLE it INTO wa INDEX 1 transporting (<fs>).
      IF sy-subrc = 0 AND <fs1> IS NOT INITIAL.
        wa_field-fieldname = wa_comp-name.
        wa_field-seltext_m = wa_comp-name.
        APPEND wa_field TO i_fieldcat.
      ENDIF.
    ENDLOOP.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = sy-repid
        it_fieldcat        = i_fieldcat[]
      TABLES
        t_outtab           = it[].
    endif.

  • Selection String Empty when Refresh Report

    I'm using CR2008 in VS 2008 (WinForms not Web). This seems like a fairly easy thing to do (was in VB6/CR8.5).
    My program provides a list of reports via the FileDialog, grabs the report name, loads the report document with the report, then the viewer displays the report. Everything works great to that point, but then the user refreshes the report and the selection string is changed to "" (empty) and all records from the table are displayed. Is there something that I'm missing here?
    I have tried both 8.5 and CR2008 reports with the same results. The login seems to be working fine.
    Any help would be appreciated,
    Thanks
    RA Smith
    Puzzled
    Code:
    Private Sub OpenCrystalReportDirectoryToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenCrystalReportDirectoryToolStripMenuItem.Click
    If FileIO.FileSystem.DirectoryExists(dirPath) = False Then
    MsgBox("Crystal Reports Directory not valid. " & _
    "Check that drive is mapped to S: drive.", MsgBoxStyle.Exclamation)
    Else
    Me.OpenFileDialog1.InitialDirectory = dirPath
    If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
    Try
    rptName = OpenFileDialog1.FileName
    If FileIO.FileSystem.DirectoryExists(rptName) = True Then
    MsgBox("File not found", MsgBoxStyle.Exclamation)
    Else
    Me.reportDocument1.Load(rptName, OpenReportMethod.OpenReportByTempCopy)
    Me.CrystalReportViewer1.ReportSource = Me.reportDocument1
    End If
    Catch Ex As Exception
    MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
    End Try
    End If
    End If
    End Sub

    Ludek,
    This application does nothing but allow the user to select a report from a shared folder on our company server and display.  The report comes in with the correct selection string but with "old" data.  When the refresh button is pressed from the CR Viewer the selection changes to an empty string, therefore, displaying all records in the database table. 
    The report that I'm currently trying to display has no parameter fields. The selection string in the report is:
           {table.amt} > 0.00 and {table.paid} <> "y"
    So do I need to save this selection string and set it each time the user presses REFRESH?  What happens when I move to a report that has parameters?
    I'm still reading microsoft help for VS2008/CR2008 but haven't found anything yet.  Not to say that I didn't miss a step here or there.  The only other thing that I noticed was a setting on the reportDocument called ReportAppServer which was set to <EMBEDDED_REPORT_ENGINE>.  I have been trying to locate information on this setting but there are no other options on the properties screen.  Could this be part of my problem?  I pulled the reportDocument from the toolbox onto the windows form.
    I did not have a problem with this in the old VB6/CR8.5 viewer that I'll be replacing over the next few months as I move from VB6/CR8.5 to VS2008/CR2008.
    Thanks,
    RA Smith

  • FTP Sender Adapter, Empty Archive Files

    Hi,
    When I retrieve files using a FTP sender Communication Channel and I checked the Archive check box (including an existing directory), the file is archived but it does not have any content. It is completely empty.
    The original file contains data and is processed correctly. The original file is a csv and I use FCC to convert it to XML.
    Anybody any suggestions?
    Ron

    Hi,
    The scenario is FTP --> IDOC scenario.
    The config is as follows: (not mentioned = not used)
    Source:
    Source Directory:  /Out
    Filename    File*.csv
    FTP Connection:
    Server: a.b.nl
    Port: 21
    Dataconnection: Passive
    Connection Security: None
    Username: user
    Password: pass
    Connect mode: Per File Transfer
    Transfer mode: Binary
    Processing:
    Quality of Service: Exactly once
    Poll Interval: 60 secs
    Processing Mode: Archive
    Add Timestamp: checked
    Archive directory : /usr/sap/Interfaces/
    File Type: Text
    FCC:
    Documentname: File
    Recordset Name: Lines
    Recordset Structure: Line,*
    Recordset Sequence: Ascending
    Key field type: String (Case sensitive)
    Line.fieldSeparator     ;
    Line.endSeparator     nl
    Line.fieldNames         VBELN, POSNR, RREL
    Best regards
    Ron

  • How to get two empty columns in reporting?

    Hi Experts,
    How to get Two empty columns in  a report, i have taken a formula and i have given '=0' in the formula box after executing the query that two columns containing zero's, but i don't want zero's, i want to display empty columns.
    pl help to do this,
    thanks & regards
    venakt

    Hi
    In the Query designer go to Properties and Select Active n Zero Supression
    also select Supress Zeros from the drop down.
    Regards
    M.A

  • Empty line in report output

    Hi All,
    we have pipe delimited report when we saving the output in excel sheet we are getting a
    empty line.
    Please advice me
    Thanks,
    Anu-

    Hi Rangarao,
    Make sure your page breaks are within the group statement or wrap page break in "if" statement so it doesn't print.
    Make sure your form fields are on their own line without space either side.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Filter steps with empty results from report

    Hi,
    At the moment, my result filtering expression is Result.Status != "Done" && Result.Status != "Skipped", so it removes all steps which are only "Done" or "Skipped". With my current filtering expression, any step with the "Done" status will not be displayed in the report even if there are "Additional Results". I would like to improve this by filtering only if there is not result.
    This means that I would like to log in the report any step which returns a value including values added in "Additional Results".
    Is there any way to achieve this ? I've been looking in the RunState but I was not able to find there the additional results are stored.
    Thanks !
    Alex

    You can also check if AdditionalResults is empty or not:
    GetNumElements(Result.AdditionalResults) > 0
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • LMS3.2/Campus5.2.1/UT: device selector empty when generate reports

    Hi,
    Customer has LMS 3.2 on windows. He has an issue on UT when he wants to generete a report, device selector is empty.
    User Tracking -> Reports -> Report Generator:
          * Application : Switch Port Report
          * Report : Reclaim Unused Down
    He has the same issue (device selector empty) with :
    - Campus Manager >> Configuration >> VLAN Configuration
    - Campus Manager >> Reports >> Report Generator >> Switch Port Report + Switch Port Summary
    - Campus Manager >> Visualization >> RMON Configuration
    I didn't find bug in BugID Lookup Tool.
    Which logs could give me information for this issue ?
    Many thanks

    This sounds like a problem with Object Grouping Services where Campus OGS is not able to communicate with CMF OGS.
    The shortest solution might be to just restart LMS, wait 15 minutes and then check again.
    If that does not help,
    1) Enable OGS debugging for both Campus and CMF
    NMSROOT = C:\progra~1\CSCOpx or /opt/CSCOpx (unix)
    NMSROOT/MDC/tomcat/webapps/cwhp/WEB-INF/classes/log4j-ogs.properties
    NMSROOT/MDC/tomcat/webapps/campus/WEB-INF/classes/log4j-ogs.properties
    Change ALL instances of FATAL, ERROR, WARN, and INFO to DEBUG.
    (might want to back these files up first, you will want to change them back when finished)
    2) Restart LMS (wait 5 mins betweens stop/start)
    windows
    > net stop crmdmgtd
    > net start crmdmgtd
    unix
    # /etc/init.d/dmgtd stop
    # /etc/init.d/dmgtd start
    3) Reproduce the problem
    4) Collect Log files in
    C:\progra~1\CSCOpx\log or /var/adm/CSCOpx/log (unix)
    CampusOGSClient.log
    CampusOGSServer.log
    CMFOGSClient.log
    CMFOGSServer.log  
    5) Open a case with TAC
    Good luck
    Tom

  • L01 Key is empty in WebI report

    Hello,
    I want to create a WebI 3.1 report based on a BEx 7.01 query. The query contains the infoobject 0ORGUNIT for which several  hierarchies exist but the query neither contains a hierarchy nor a hierarchy node variable for 0ORGUNIT.
    When I use 'L01 Organizational Unit Key' in the WebI report, I can only see empty cells. Using 'L01 Organizational Unit' instead shows all values of my infoobject. For all other infoobjects it is possible to display the keys from 'L01 ... Key'.
    In the BEx report key and text are displayed and value display in the query is set to "key and text" for 0ORGUNIT.
    Thanks for advice.
    Kind regards
    Edited by: DeGe on Jul 8, 2011 10:15 AM

    Bram,
    This formula you used above is corrcet but is returning you a character '0' and when a descending sort is applied character values will be at the top.
    So , apply the formula 'ToNumber' on the value returned form the above formula :-
    ToNumber(above formula)
    And then it will change 0 to number and give you the exact sort order.
    Thanks,
    Rohini Haksar

  • CR 2008 & VS 2008 - Record Selection Gets Empty String on Report Refresh

    I'm using CR2008 in VS 2008 (WinForms not Web).   This seems like a fairly easy thing to do (was in VB6/CR8.5).
    My program provides a list of reports via the FileDialog, grabs the report name, loads the report document with the report, then the viewer displays the report.  Everything works great to that point, but then the user refreshes the report and the selection string is changed to "" (empty) and all records from the table are displayed.  Is there something that I'm missing here?
    I have tried both 8.5 and CR2008 reports with the same results.  The login seems to be working fine.
    Any help would be appreciated,
    Thanks
    RA Smith
    Puzzled
    Code:
        Private Sub OpenCrystalReportDirectoryToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenCrystalReportDirectoryToolStripMenuItem.Click
            If FileIO.FileSystem.DirectoryExists(dirPath) = False Then
                MsgBox("Crystal Reports Directory not valid. " & _
                       "Check that drive is mapped to S: drive.", MsgBoxStyle.Exclamation)
            Else
                Me.OpenFileDialog1.InitialDirectory = dirPath
                If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                    Try
                        rptName = OpenFileDialog1.FileName
                        If FileIO.FileSystem.DirectoryExists(rptName) = True Then
                            MsgBox("File not found", MsgBoxStyle.Exclamation)
                        Else
                            Me.reportDocument1.Load(rptName, OpenReportMethod.OpenReportByTempCopy)
                            Me.CrystalReportViewer1.ReportSource = Me.reportDocument1
                        End If
                    Catch Ex As Exception
                        MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
                    End Try
                End If
            End If
        End Sub

    Hi,
    Post your question in SDK forum.
    [NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio;
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all SDK queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Shweta

  • Firefox says archived crash report could not be located. How do I get help?

    I have had Firefox crash 3 times today. However, when I try to get details based on the crash ID's, Firefox says "Oh Noes! The archived report could not be located." Can someone help me based on below crash ID's?

    The first crash report is a problem with the Flash plugin. The other two aren't loading and were probably not submitted.
    That crash report shows a Flash 10.1 r85 plugin (NPSWF32.dll 10.1.85.3), but your More system details list shows the latest Flash 10.1 r102 plugin.<br />
    Did you update recently or are you using another computer to post this??
    See:
    *http://kb.mozillazine.org/Flash
    *http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    See also:
    * http://kb.mozillazine.org/Firefox_crashes
    * [[Firefox crashes]]

  • How archive infostructures are filled when the delete program runs(sd_cond)

    I could not find a suitable forum for this, hence posting it here. I need to know how the ZARIX tables get filled in SAP Archiving. As far as I know, they are filled automaticlaly when the delete job runs, but I could not find any code in SD_COND_ARCH_DELETE program.
    My issue is that my delete program did not fill one of the infostructures which was active and this infostructure corresponds to the zarix table. On the other hand, this infostructure got filled manually(verified in zarix also).
    Wondering how this could have happened. Can this be because multiple delete jobs are running creating various sessions. This is mainly with reference to the SD_COND archive object.

    Hi,
    There is a separate program to fill infostructures as when you fill them manually (Transaction SARJ, Environment -> Fill Structure) a new job is triggered. Have a look at the job that ran when you filled your infostructure manually and analyse the program that ran.
    There should not be any problem in filling the infostructures due to several archiving sessions running at the same time. If you face the same issue again, see if any of the archiving jobs (write, store, delete) failed for any reason. If all the jobs finished successfully but an infostructure didn't get filled then have a look for any OSS note related to this issue. If you can't find anything, raise an SAP message as the infostructures have to get filled automatically as otherwise there will be no access to the archived data.
    Hope this helps.

Maybe you are looking for

  • 5800 XM Not Being Recognised by Nokia Software Upd...

    Hi everyone I hope you can help. I am trying to update my 5800 firmware from the 10 version to the 11 version. However, whenever I connect it to software updater it says the phone is not supported, yet i installed the software that came on the cd wit

  • Purchases continue to go missing...five years and counting.

    Does anyone know why the purchases that were once in my cloud don't show up with the little cloud now?  I have had the same Apple ID for more than 5 years.  I have had at least 4 computers and other devices over those 5 years that I have synced to th

  • Using CRQ to close ASN for SA Release

    We do create ASNs in SNC. However we do not use inbound deliveries to post GR in ECC. GR is posted with reference to the SA number. So the POD message is not sent to SNC to close the ASNs. When transferring the new release to SNC we would like to use

  • Tables for tracing  objects using date option.

    Hi,     We need to develop a program in which newly developed objects on a particular date has to be traced.what tables can i use for this requirement.

  • Outof memory exception

    Hi, is any body help me? I m facing a problem in my servlet file. Actually i m creating a image with combination of two image. If i use small size image(inside 1MB) it is created perfectly but more than 1MB it is throwing outofmemory exception. Norma