Report on deleted workstations

Is it possible to run a report on deleted workstations in ZCM 10.2. This could be done in ZAM7.5 and was a standard report.
Should we be retiring devices now as opposed to deleting obsolete inventory?
ie run a report where device=deleted
I don't seem to be able to find this in ZCM10.

ahennessy,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Report for deleted line-items in Transfer Orders

    Dear All,
    Please help me in writing the code for "Report for deleted line-items in Transfer Orders".
    regards,
    nishu

    Thanks. Repor completed.

  • Report to delet production orders

    Hi guys,
    help needed!
    Does anybody of you know a report to delete production orders completely?
    Such on as the RMMMDE00, which deletes all material of the current client.
    Hoping for an answer,
    Barbara

    Hi,
      I guess the below link will help you to some extent....
    http://www.sap-img.com/production/how-to-delete-old-production-orders.htm

  • Report for deleting Leave Entitlement in Infotype 5

    Hi all
    I would like to know if there is a Standard Report to delete leave entitlement in Infotype 5: I made a mistake in generating the leave entitlement for 2007, so I would like to delete all the records inserted.
    I'm working in SAP 46C, and I used HR_RPILVA00 to create leave entitlement.
    TIA
    Paolo

    Hello,
    I would advise you to use at customizing level which is achievable on your case.
    The best way to proceed on your case would be to use IT0041 and on T559L for the relevant rule, you would use the Accrual Period Rel. to date type in which the period is defined in relation to a date type from the Date Specifications infotype (0041). You determine the accrual period using the length fields (for example, the date the employee joined the company, with the period you require, for example one year).
    Then, you can accrue via RPTIME00 or RPTQTA00.
    This would be much more scalable than doing customizing at code level.
    Regards,
    Bentow.

  • Report to delete OM objects

    hello seniors
    can anyone help me with report to delete OM objects?

    *& Report  Z_HRP1000_DELETE
    REPORT  Z_HRP1000_DELETE.
    type-pools truxs.
    DATA : it_raw   TYPE truxs_t_text_data, "VARIABLES DECLARATION
           c_space(1)   TYPE  c VALUE ' '.
    data : begin of it_1000 occurs 0,
           objid like hrp1000-objid,
           end of it_1000,
           wa_1000 like line of it_1000.
    data : it_fail like it_1000 occurs 0 with header line.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: p_file LIKE rlgrap-filename OBLIGATORY.
    parameters : p_otype like hrp1000-otype.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      PERFORM get_file USING p_file.  "CALLING F4 HELP FOR D=FILES
      START-OF-SELECTION.
       PERFORM get_data.       "UPLAODING DATA FROM EXCEL
    if it_1000[] is not initial.
      loop at it_1000 into wa_1000.
        delete from hrp1000 where otype = p_otype
                              and objid = wa_1000-objid.
        if sy-subrc <> 0.
          it_fail-objid = wa_1000-objid.
          append it_fail.
          clear it_fail.
        endif.
        clear wa_1000.
      endloop.
    endif.
    if it_fail[] is not initial.
      loop at it_fail.
       write : it_fail-objid.
       clear it_fail.
      endloop.
    endif.
    *&      Form  GET_FILE
          text
         -->P_P_FILE  text
    form GET_FILE  using    p_p_file.
    CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        CHANGING
            file_name = p_p_file
        EXCEPTIONS
            mask_too_long = 1
        OTHERS = 2.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    endform.                    " GET_FILE
    *&      Form  GET_DATA
          text
    -->  p1        text
    <--  p2        text
    form GET_DATA .
    *If no file upload  path is mentioned
      IF p_file = c_space.
       MESSAGE
        LEAVE LIST-PROCESSING.
      ENDIF.
    *Function module for uploading the file
        CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
        EXPORTING
        I_FIELD_SEPERATOR          =
          i_line_header              =  'X'
          i_tab_raw_data             =  it_raw
          i_filename                 =  p_file
        TABLES
          i_tab_converted_data       = it_1000
       EXCEPTIONS
         conversion_failed          = 1
         OTHERS                     = 2
      IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
             WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        LEAVE LIST-PROCESSING.
      ENDIF.
    endform.                    " GET_DATA

  • Need to develope report for Deleting user profiles

    Hi All,
    I need to develop a report to delete inactive user profiles from SAP system. We have  a found out a list of valid users but need to delete all the users which are not contained in this list.
    If anybody is having any inputs, they are welcome.
    Thanks & Regards
    Abhii

    REPORT  ztest5.
    PERFORM delete_user USING 'TEST' .
    *&      Form  DELETE_USER
    *       text
    *      -->USERNAME   text
    FORM delete_user USING username TYPE bapibname-bapibname .
      DATA : li_mess TYPE TABLE OF bapiret2 ,
             ls_mess TYPE          bapiret2 ,
             lv_mess TYPE          string   .
      CALL FUNCTION 'BAPI_USER_DELETE'
        EXPORTING
          username = username
        TABLES
          return   = li_mess.
      LOOP AT li_mess INTO ls_mess .
        CLEAR lv_mess .
        MESSAGE ID     ls_mess-id
                TYPE   ls_mess-type
                NUMBER ls_mess-number
                INTO   lv_mess
                WITH  ls_mess-message_v1
                      ls_mess-message_v2
                      ls_mess-message_v3
                      ls_mess-message_v4.
        WRITE : / ls_mess-type , lv_mess .
      ENDLOOP .
    ENDFORM .                    "DELETE_USER

  • Tcode or report  to delete conf,invoices and po?

    hi friends
    Tcode or report  to delete conf,invoices and po.
    Regards
    Vinny

    Hi Vinny,
    Please go to Confirm goods/services tab then selct the GR which you want to delete then click on delete button ..so system will post the revere GR with movement type 101...
    Please go to "enter invoces and credit memos tab then select the invocie which you want cancel and then clcik on cancel button so ssytem will post the credit memo ..
    We can not delete PO in SRM where in classic scenario....
    Thanks
    Ravi

  • Deleted Workstations from DB

    Hi there,
    we are running ZCM 10 under Linux. in 2009 we had a change of all client computers.
    Now when im running the LMS-Tool it shows me up more than twice of zcm devices
    than we have currently managed. Is it possible to delete the old workstation objects ?
    They dont appear in any report, but they are listed in the detailed report of the LMS-Tool.
    And i dont know how Novell handles it with the licences. Any Ideas ? We need to report
    our licenses in january, and of course i dont want to pay for licences we do not need.
    An in this case we talk about 1000 additional licenses :-( hooray
    Thanks for your help
    Peter

    tfreitag,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Bug report: Fn+Delete and Fn+Up/Dn keys don't work in SR MacBook Boot Camp

    Fn + Delete does NOT do a forward delete in Boot Camp as its supposed to do on my Windows XP Home SP2 running installed on a new Santa Rosa 2.2GHz MacBook. Neither does Fn + Up/Down do PgUp/Dn, but Fn + Return DOES do Insert, so this isn't a bad Fn key.
    This bug appears to be related to the new SR MacBook release. Two other SR MB owners besides me have reported this problem at:
    http://forums.macrumors.com/showthread.php?p=4508558
    Has anyone else had positive or negative experiences using Fn + Delete on Santa Rosa MacBooks in Boot Camp?

    Actually I didn't trash Boot Camp, it never populated in the tray after the install. Moreover, the thing i destroyed was the MacHDD from the desktop and from the Go Finder listing and want to get that puppy back
    Boot Camp is running just that the F keys other than F3 are not functional nor is the Eject key . . PLUS . . as I say there is no tap to click, not two finger scrolling, and no 3 or 4 finger functions operational features.
    Please help!

  • Report painter:Deletion of multiple report groups

    Hi Gurus,
    I have a requirement of deleting multiple report groups and reports created through report painter since these are no more used
    I checked in options/functions available in SAP, but couldn't find any option for mass deletion of reports groups available
    I understand we can use an LSMW to do this for multiple report groups however apart from this is there any function provided by SAP for deleting multiple report groups
    Thanks,
    Gaurav

    Hi Ajay,
    Thanks for the suggestion
    I also couldn't find anything handy. In my case the time in manually deleting would have taken less than creating an LSMW for such one-off situation so just delete the obsolete report groups manually
    Thank you,
    Gaurav

  • How to get report for deleted line items from sales orders

    Dear FRIENDS,
    please infirm the t.code or report for viewing the deleted line items from sales ordrers.
    Kindly do the neeedful.
    regards,
    N.M.PAWAR

    Hi,
    With transaction SE16 you can view table CDHDR for header changes and
    CDPOS for item changes. This includes deletion.
    OR
    GO to VA03 - Display Sales order -> Put order no : don't press enterbutton. -> Go to Enviornment -> changes -> You will get details
    Date ItmNo. SLNo Action
    Hope this help please close the thread if answers

  • Report on Deleted Parked AR Documents with 'Z' status

    Hello Experts,
    Any suggestion to obtain the list of deleted parked AR documents which did not get posted in the past.  We created AR documents and were not sure about VAT treatment and were parked but later managed to invoice the customer separately.  Subsequent to this, we have deleted the parked AR document and I know when these parked document gets deleted, document numbers are marked by a letter 'Z' and you can get a report BY DOCUMENT NUMBER.  Is there any standard SAP report that can be run BY CUSTOMER to see all deleted parked documents for that customer only.
    Appreciate valuable suggestions to achieve the above.
    Rgds
    CONMJI

    Hi,
    use S_ALR_87012293 - Display of Changed Documents  to check the deleted parked docuements or any status regarding parked document.
    Here if you select park doc radio button and give input document type and posting key, then you will get the customer/vendor/GL related docuements . Take that dump and put in the table and give input of your customer code.it will shows those documents if any.
    Thanks
    ANJI

  • Report RPUFIXDS deleting employee data

    Dear Experts,
    I have a scenario wherein the report RPUFIXDS is deleting data for employees linked to the same CP.
    As per the standard documentation,
    Personnel numbers 1 and 2 have Molga 10 (USA) and belong to the same person (CP). Therefore, certain infotypes (0002, 0006, 0009) are grouped for these personnel numbers. If data exists in these infotypes for pernr 1 but not for pernr 2, there is an inconsistency. This inconsistency is repaired by report RPUFIXDS as follows:
    1. If the personnel numbers are repaired in the sequence 1, 2, the data from the grouped infotypes of pernr 1 is copied to the grouped infotypes of pernr 2.
    2. If the personnel numbers are repaired in the sequence 2, 1, the grouped infotypes of pernr 1 are deleted.
    My scenario involves a personnel being converted from a contractor to an employee wherein the contractor and employee assignments are separate, within the same country and are linked to each other via the same CP. When I try to process employee pernr which has IT0002, IT0006 and IT0009 data maintained, through the report, it should, as per the above logic, update the contractor pernr with the relevant data for the grouped infotypes. However, the report deletes the data in IT0002, IT0006 and IT0009 for the employee pernr instead of updating the contractor pernr details. I've observed many such cases wherein data is being deleted when it should actually be updated as per report logic.
    I have checked the standard documentation thoroughly and notes 783499, 1822293 and 1447867 and was unable to find any information pertaining to my case.
    I would be very greatful if you could shed some light on this scenario and the behaviour of the report herein.
    Thank you,
    Mayank

    The note given by stuart will explain this in detail to add further, Please read the reports documentation in Se38, as it does list why it deletes the data and its no way knowing in report output to prevent BADI needs to be implemented mentioned again in reports doc check here http://scn.sap.com/thread/3326684 -  recommend solution is to implement a customer-own BADI implementation of BADI HRPA_SHARING_REPOR in order to determine the correct repair sequence (i.e. determine the leading PERNR with consistent data) and to avoid that a PERNR without data is chosen as leading PERNR You can use the BADI HRPA_SHARING_REPOR to change the sequence of personnel numbers that should be repaired by the report, ie give the preference to the contractors, we had a similar issue and did it by ordering them correctly. Hope it helps/

  • Report for Deleted Materials,vendos

    Hi Friends,
    How can I see the list of deleted materials, deleted vendors and rejected PRs for approval.???????
    Please advice...
    Thanks & Regards
    Satya

    Hi,
    The user wants to see the repor. User does not have access to SE11 to see the databaase report. Is there any standard report to see how many Materials and vendor are flagged for deletion??????
    Thanks & Regards
    Satya

  • SQL report with delete capability

    I want to create a SQL report with the capability of delete rows (show checkboxes next to each row). Is this possible?

    You can create a page type of Tabular Form, remove all buttons but delete, change all the edit boxes to display as text (saves state) and use that.

Maybe you are looking for

  • App Installation, MSI, ALLUSERS parameter

    As we all know Adobe AIR runtime prepares msi file and then runs Microsoft Installer to install/update AIR applications. There are number of parameters to configure Microsoft Installer but one of them is quite important for "non-admin" users - ALLUSE

  • BPM: condition (XPATH) works not correct

    Hi everybody, we got conditions (XPATH) in several BPMs. In one BPM the condition does not work, although it is the same as used in other BPMs. Any idea? Regards Mario Mario Müller

  • Home Hub Username and password

    Hi, I was trying to access the basic configuration of my home hub in the Hub Manager and I was asked to enter my username and password. I have no idea what my user name is and have tried using the SN on the back of my hub but alas it does not work. C

  • PC Card Adapter?

    I use a VerizonWireless broadband PC Card in my PowerBook for internet access when travelling. The card obviously is not compatible with my wife's new MacBook Pro. Is there an adapter that will allow a PC Card like this to interface with the MacBook,

  • Reversal  of Cenvat Duty

    Hi Expert, Please suggest while doing GRN manual excise invoice is captured but by mistake user changed the material type from Raw material to consumables and then after done part 2 and MIRO on January 2014  which result  into system has captured 50%