Location Master Data - Delete Location

HI!
I need to delete a Location with a false setup in order to transfer and create it new (via CFM).
I tried /SAPAPO/LOC3, set the delete flag and startet Job via Extras -> Delete Location -> immediately but no success.
I tried report /SAPAPO/DELETE_LOCATIONS via SE38 but no success as well.
Any idea what might be wrong and what I need to do differently?
Regards
Karsten

Hi Karsten
Run transaction WUF in APO (Where Used List) and choose "Object Type" Location, then in the Attribute field also select "Location" and enter your Location number in The Value field and press Execute.
You should now see the result of your analysis and the location in the left hand pane, click on the location itself and in the righthand side it should show all dependant objects, eg Model, Location-Product, Resources etc that use this location.
These will need to be deleted first, before the location itself can be deleted.
Regards
Ian

Similar Messages

  • Creation of Location Master Data

    What's the transaction code for creating Location master data or program SAPL0A02? Has anyone tried to do LSMW or SCAT for uploading hundreds of items?

    Hi,
    If I am correct we can create locations through SPRO transcation.
    Enterprise Structure>Definition->Logistics General--> Define location.
    Here we can create number of locations on plant wise.
    The key in this field indicates a location within a plant.
    You can use the location to set up a plant according to space and local area. You can assign an address to a location.
    The following master data objects can be referenced to a location:
    Asset master records of asset management
    Equipment
    Functional location
    Work center
    Production resource/tool
    Regards
    Srinivas

  • SAP APO Master Data Creation - Location , User Exit code samples

    Hi,
    I have a requirement of sending same location data from different logical ERP System to the SAP SCM System using CIF(Core Interfaces).
    I need to add suffix in the master data for Location to the inbound processing of Location data in the SAP SCM system to differentiate between the two systems.
    I have got an information to use EXIT_/SAPAPO/SAPLCIF_LOC_001 BADI enhancement point for the same.
    Can anyone please help me out with the code snippets.
    Any help documentation link is appreciated.
    Best Regards
    Sid

    Hi,
    U can use the below code which we have used somewhere.....
    *& Report  ZSCREP_LOC_CREATE
    REPORT  ZSCREP_LOC_CREATE.
    tables : /sapapo/loc.
    data : begin of it_loc occurs 0,
           LOCNO(20),
           end of it_loc.
    data : FLAG, temp_loc(20).
    data : LOCATION_HEAD        like  BAPI10002LOC2      occurs 0 with header line,
           LOCATION_HEAD_X      like  BAPI10002LOC2X     occurs 0 with header line,
           LOCATION_VERSION     like  BAPI10002LOCVERS2  occurs 0 with header line,
           LOCATION_VERSION_X   like  BAPI10002LOCVERS2X occurs 0 with header line,
           LOCATION_TEXT        like  BAPI10002LOCTEXT2  occurs 0 with header line,
           LOCATION_TEXT_X      like  BAPI10002LOCTEXT2X occurs 0 with header line,
           LOCATION_ADDRESS     like  BAPI10002LOCADDR2  occurs 0 with header line,
           LOCATION_ADDRESS_X   like  BAPI10002LOCADDR2X occurs 0 with header line,
           LOCATION_MODEL       like  BAPI10002LOCMODEL2 occurs 0 with header line,
           SAVE_OPTIONS         like  BAPI10002SAVEOPTIONS,
            RETURN              like  BAPIRET2 occurs 0 with header line,
           RETURN1              like  BAPIRET2 occurs 0 with header line,
           BAPI_RETN_INFO  LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    start-of-selection.
      select locno into table it_loc
      from /sapapo/loc
      where attlo05 <> 'X'
      AND LOCTYPE = '1011'
      AND LOCNO = 'T0001'.
      if sy-subrc = 0.
        loop at it_loc.
    For Material Type goto ECC thru RFC
          CALL FUNCTION  'ZRFC_SCM_VENDOR' DESTINATION  'LOGSYS250'  "CF_LOGSYS " Dynamic Logical System selection
            EXPORTING
              LIFNR =  it_loc-LOCNO
            IMPORTING
              FLAG = FLAG.
          IF FLAG =  'X'.
       Fill Header Data*************
            concatenate  'SUBCON_7001_' it_loc-LOCNO into  temp_loc.
           temp_loc = 'LAV12345'.
           it_loc-LOCNO = 'SHAH'.
            LOCATION_HEAD-LOCATION   =  temp_loc.
            LOCATION_HEAD-LOCTYPE    = '1050'.
            LOCATION_HEAD-TIME_ZONE  = 'INDIA'.
           LOCATION_HEAD-LOCATION_INT = it_loc-LOCNO.
           LOCATION_HEAD-SUBCONTRACTOR_PLANT     = '7001'.
            LOCATION_HEAD-SUBCONTRACTOR_PLANT_BSG = '7001'.
           LOCATION_HEAD-SUBCONTRACTOR_SUPPLIER = it_loc-LOCNO.
            LOCATION_HEAD-SUBCONTRACTOR_SUPPLIER_BSG =  it_loc-LOCNO.
           LOCATION_HEAD-DELIVERY_PRIORITY = '00'.
    append LOCATION_HEAD.
            LOCATION_HEAD_X-LOCATION = temp_loc.
            LOCATION_HEAD_X-LOCTYPE = '1050'.
            LOCATION_HEAD_X-LOCATION_INT = it_loc-LOCNO.
           LOCATION_HEAD_X-GLOBAL_LOCATION_NUMBER = 'X'.
           LOCATION_HEAD_X-LOCATION_DUNS = 'X'.
           LOCATION_HEAD_X-LONGITUDE = 'X'.
            LOCATION_HEAD_X-TIME_ZONE = 'X'.
            LOCATION_HEAD_X-SUBCONTRACTOR_PLANT = 'X'.
            LOCATION_HEAD_X-SUBCONTRACTOR_PLANT_BSG = 'X'.
            LOCATION_HEAD_X-SUBCONTRACTOR_SUPPLIER = 'X'.
            LOCATION_HEAD_X-SUBCONTRACTOR_SUPPLIER_BSG = 'X'.
    append  LOCATION_HEAD_X.
            LOCATION_VERSION-LOCATION = temp_loc.
            LOCATION_VERSION-LOCTYPE = '1050'.
            LOCATION_VERSION-PLANNING_VERSION = '000'.
    append  LOCATION_VERSION.
            LOCATION_VERSION_X-LOCATION = temp_loc.
            LOCATION_VERSION_X-LOCTYPE = '1050'.
            LOCATION_VERSION_X-PLANNING_VERSION = '000'.
    append  LOCATION_VERSION_X.
            LOCATION_TEXT-LOCATION = temp_loc.
            LOCATION_TEXT-LOCTYPE = '1050'.
            LOCATION_TEXT-LANGU = 'EN'.
            LOCATION_TEXT-LOC_DESCR = 'CreatE'.
    append  LOCATION_TEXT.
            LOCATION_TEXT_X-LOCATION = temp_loc.
            LOCATION_TEXT_X-LOCTYPE = '1050'.
            LOCATION_TEXT_X-LANGU = 'EN'.
      append  LOCATION_TEXT_X.
            LOCATION_ADDRESS-LOCATION = temp_loc.
            LOCATION_ADDRESS-LOCTYPE = '1050'.
           LOCATION_ADDRESS-TITLE =  'Mr.'.
           LOCATION_ADDRESS-NAME =   'TATA MOTORS'.
           LOCATION_ADDRESS-NAME_2 = 'PIMPRI'.
           LOCATION_ADDRESS-NAME_3 = 'SINGUR'.
           LOCATION_ADDRESS-CITY = 'PUNE'.
           LOCATION_ADDRESS-DISTRICT = 'PUNE'.
           LOCATION_ADDRESS-CHCKSTATUS = 'X'.
           LOCATION_ADDRESS-POSTL_COD1 = '411001'.
            LOCATION_ADDRESS-COUNTRY  =   'IN'.
            LOCATION_ADDRESS-LANGU    =   'EN'.
           LOCATION_ADDRESS-REGION  =   '25'.
            LOCATION_ADDRESS-TIME_ZONE  =   'INDIA'.
      append  LOCATION_ADDRESS.
            LOCATION_ADDRESS_X-LOCATION = temp_loc.
            LOCATION_ADDRESS_X-LOCTYPE = '1050'.
           LOCATION_ADDRESS_X-TITLE =  'X'.
           LOCATION_ADDRESS_X-NAME =   'X'.
           LOCATION_ADDRESS_X-NAME_2 = 'X'.
           LOCATION_ADDRESS_X-NAME_3 = 'X'.
           LOCATION_ADDRESS_X-CITY =   'X'.
           LOCATION_ADDRESS_X-DISTRICT = 'X'.
           LOCATION_ADDRESS_X-CHCKSTATUS = 'X'.
           LOCATION_ADDRESS_X-POSTL_COD1 = 'X'.
            LOCATION_ADDRESS_X-COUNTRY  =   'X'.
           LOCATION_ADDRESS_X-LANGU    =   'X'.
           LOCATION_ADDRESS_X-REGION  =   'X'.
            LOCATION_ADDRESS_X-TIME_ZONE  =   'X'.
    append  LOCATION_ADDRESS_X.
            LOCATION_MODEL-LOCATION = temp_loc.
            LOCATION_MODEL-LOCTYPE = '1050'.
            LOCATION_MODEL-MODEL = '000'.
      append  LOCATION_MODEL.
    SAVE_OPTIONS-NO_GEOCODING_FLAG      =  '0'.
            CALL FUNCTION 'BAPI_LOCSRVAPS_SAVEMULTI2'
              EXPORTING
                LOGICAL_SYSTEM               = 'DCMCLNT250'
                SAVE_OPTIONS                 = SAVE_OPTIONS
               COMMIT_CONTROL               = 'X'
               BUSINESS_SYSTEM_GROUP        =     'BSG1'
    TABLES
       LOCATION_HEAD                =   LOCATION_HEAD
       LOCATION_HEAD_X              =   LOCATION_HEAD_X
      LOCATION_MAPPING             =
      LOCATION_MAPPING_X           =
      LOCATION_SUBLOCATION         =
      LOCATION_SUBLOCATION_X       =
       LOCATION_VERSION             =   LOCATION_VERSION
       LOCATION_VERSION_X           =   LOCATION_VERSION_X
       LOCATION_TEXT                =   LOCATION_TEXT
       LOCATION_TEXT_X              =   LOCATION_TEXT_X
       LOCATION_ADDRESS             =   LOCATION_ADDRESS
       LOCATION_ADDRESS_X           =   LOCATION_ADDRESS_X
      LOCATION_SMTP                =
      LOCATION_SMTP_X              =
      LOCATION_TEL                 =
      LOCATION_TEL_X               =
      LOCATION_FAX                 =
      LOCATION_FAX_X               =
      LOCATION_URI                 =
      LOCATION_URI_X               =
       LOCATION_MODEL               =   LOCATION_MODEL.
        RETURN                       = RETURN
      EXTENSION_IN                 =
      LOCATION_SPP                 =
      LOCATION_SPP_X               =
            if sy-subrc = 0.
            LOOP AT RETURN.
            IF NOT RETURN IS INITIAL.
              CLEAR BAPI_RETN_INFO.
              MOVE-CORRESPONDING RETURN TO BAPI_RETN_INFO.      "#EC ENHOK
              IF RETURN-TYPE = 'A' OR RETURN-TYPE = 'E'.
               ERROR_FLAG = 'X'.
              ENDIF.
              APPEND BAPI_RETN_INFO.
            ENDIF.
          ENDLOOP.
              CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                EXPORTING
                  WAIT = 'X'
    IMPORTING
       RETURN        =  RETURN1
             IF SY-SUBRC = 0.
             WRITE : 'KK'.
             ENDIF.
             if sy-subrc = 0.
               update /sapapo/loc
               set attlo05 = 'X'
               where  LOCNO = it_loc-LOCNO.
             endif.
            endif.
          endif.
        endloop.
      endif.

  • Profiles in location master data

    Hi guys,
             There are certain profiles in location master data FR view , could you tell me how to create all this profiles?
    Thanks and regards
    Thamizhchelvan G

    Forecast and Replenishment (FR) relate profiles
    Time Series Profile :   A time series profile contains a set of time series definitions. A time series definition describes the operational meaning and technical behavior of a time series instance.
    For creation this profile goto SPRO --> Forecasting and Replenishment --> Time Series --> Maintain Time Series Profile
    Program Name is /FRE/SAPLUI_TSPR
    Similarly you can create other profiles :
    Goto Transaction SPRO
    Forecasting and Replenishment --> F&R Processor --> Maintain Base Profiles
    Maintain Exception Base Profiles
    Maintain Exception Base Profiles
    Maintain Requirement Calculation Profiles
    Maintain Service Level Profiles
    Maintain Exception Profiles
    Maintain Process Control Profiles
    Maintain Forecast Frequency Profiles
    Maintain Forecast Frequency Profiles
    Maintain FRP Start Profiles
    Base Profile for F&R : The base profile contains all basic FRP settings for a single location, including selling class limits and forecast horizons.
    The forecast horizons are only taken into account if no operational forecast horizon is defined on the location product level.
    Profile for Requirement Quantity Optimization: The requirement quantity optimization profile contains settings for optimizing order proposals.
    Exception Base Profile : Alert Profile
    Responsibility Profile for RWBS
    Consumption Profile:
    Temporary Replenishment Blocking:
    Start Date for Temporary Replenishment Blocking
    End Date for Temporary Replenishment Blocking
    Hope above information will help you

  • Location Master Data Screen @ O401 for TSW

    Hi IS OIL Expertise,
    While creating Location Master Data@ O401 for TSW; I need to assign Transport System, Partner Role and material to Location, however I can’t see Location Hierarchy, Transport System, Partner Roles, and Material Tabs on Location Master Screen @O401.Could anyone  please suggest me on this.
    Please find the below snap
    Thanks
    Chandra

    Dear Chandra,
    Could you please check the Business Location Type screen customization from SPRO.
    Industry Solution Oil & Gas ( Downstream)  >> TSW >> Master data >> Business Location type.
    Hope this resolves your issue.
    Cheers,
    Naresh.

  • Issue with master data deletion

    Hi,
    In one of our report, there is a filter option on country.The help values on this filters shows some country codes along with country Text values.These codes were once used before the codes with text were maintained.We dont want these codes to appear in the selection options.
    Filter looks like this :
    AE
    AZ
    Austria
    Australia
    B
    Belgium
    Now, once the texts were maintained, we deleted the data from cube and reloaded it however, the filter option still shows those codes.
    I checked in the cube entries and these codes are no where used.
    These codes are however, still lying in the dimension table.
    how can we get rid of these country codes in the selection option.
    Query already have option of having only posted values in Infoprovider as selection input.
    I hav tried RSRV elementary test "Entries not used in dimension table" n this didnt work.
    Any clue ?
    Regards,
    Tapish

    Dbl click 0COUNTRY infoobject, under 'Business Explorer' tab, select Only Values in InfoProvider' for 'Query Def Filter Value selection' & 'Query Execution Filter Value selection'. See whether this works.
    ELSE
    Delecion of the master data
    Deleting Master data

  • Master Data Deletion

    Hello Experts,
    I know this is not a new topic to be posted in forum as we can find lots of threads on the same. But i tried different ways and could not succeed and so there is no other way except to post what i did and get suggestions from you all. Any help will be greatly appreciated and rewarded.
    Now coming to the scenario where i am in: There are two invalid master data values in SID table (no attributes for this, => SID and value). I tried deleting the two values
    1. using functional module RSDDCVER_USAGE_MDATA_BY_SID. But this resulted in short dumps with messsage INVALID TAB NAME
    2. using program RSDMD_DEL_MASTER_DATA: Though i could delete values in development in few seconds, this program took more than 3hrs and did not complete. When i checked the process in SM66, it was deleting unused dimension Ids in other dimension of infocube in which this object is being used.
    3. i could not try "maintain master data" of infoobject from RSA1 since i dont have authorization to do it.
    i think the only way is to delete using a custom program. Any thoughts, any experiences please share and do let me know in case of any details.
    thanks,
    Madhav

    Hi Madhav,
    I don't have a specific answer for you, but I had a similar problem with master data deletion.  It was with 0Vendor and I just wanted to delete all the unused entries, but running the RSDMD_DEL_MASTER_DATA program would always give a short dump.  Same think if I tried to delete using the Delete Master Data button on InfoObject.
    Applying the latest SPs worked for me.  We are on BW 3.5 (NW2004), SP 18.
    Good Luck.
    Dave

  • Master Data Deletion using ABAP

    Does anybody have an idea of which function is called when master data is deleted?
    I would like to automate master data deletion
    Any suggestion is welcome!
    Thanks
    Ioan

    Hi Ioan !
    Try to look at the FM 'RSDMD_DEL_MASTER_DATA'(in the pgm LRSDMDU12)...but pay attention to the other elements that the system certainly checks in order to complete this type of process !
    Bye,
    Roberto

  • "master data deletion for requisition" before master data loading

    Hello Gurus,
             in our bw syetem , for   process chains for loading  master infoobjects, all include "u201C master data deletion for requisition" ABAP
    process  except for one process chain. my question is:
           why that process chain for master data loading is different from others as for lacking "master data deletion for requisition" in it?
    so it does not matter if you include " master data deletion for requisition" ABAP  process in process chain for master data loading ?
    Many thank.

    Hi,
    ABAP Process means some ABAP program is being executed in this particular step.
    It's possible that for all of your process chains except for that one requirement was to do some ABAP program processing.
    You can check which program is executed by following below process:
    Open your process chain in planning view -> Double click on that particular ABAP process -> Here you can see program name as well as program variant.
    Hope this helps!
    Regards,
    Nilima

  • ERROR WHILE UPLOADING FUNCTIONAL LOCATION MASTER DATA THROUGH LSMW?????

    Dear Experts,
    I am uploading the master data of functional location through LSMW .I had completed all the steps except "Run Batch Input Session".
    In that step it is showing as functional location already exists, after this error the remaining functional locations are updated in sap or it will stop total transaction by  this error???
    how can u upload the remaining in to sap by skipping already existed one????
    here I am uploading the error screen shot.
    Thanks & Regards,
    Sunil Boya

    Hi Jogeswara Rao Kavala,
    When I am pressing back or NO option  it is showing error like this
    What is this OK- Code means?
    how can I resume this process, even it was not going to back screen also and only one option is available for exit from this is by going into MENU-SYSTEM-SERVICES-BATCH INPUT-CANCEL.
    Sunil Boya

  • Master data storage location

    Hai everybody,
                   In SAP BW, the cubes and ODS contain the data loaded. They have only dimension tables and fact tables but not any Master data(the texts, attributes & hierarchies). My question is where is the Master data loaded stored? Does SAP has a special location for it or does it need to have another database support to store this data?
    Thank you.

    Hi Visu,
    The master data is stored in master data tables: Like, /BI0/SMATERIAL for Material Values and thier SIDs, /BI0/PMATERIAL for material time independant master data, /BI0/QMATERIAL for material time dependant master data, /BI0/TMATERIAL for Texts and /BI0/HMATERIAL, /BI0/IMATERIAL and /BI0/KMATERIAL for hierarchies.
    You can look up the tables in InfoObject maintenances (RSD1) or in SE16 with InfoObject.
    Hope this helps...

  • MAster data deletion throws a dump

    hi,
    I am trying to delete the records for a Master info object but when i click on the thrash button , the records are not seen but when i try to move on -it asks me to save and then i tried with Sid and with out but whatever i do , it throws out the following dump .
    I am eagerly looking forward for a solution to this.
    Thanks a lot in advance,
    DUMP ERROR When trying to DELETE MASTER DATA
    Runtime Errors         UNCAUGHT_EXCEPTION
    Exceptn                CX_RSRV_METADATA_ERROR
    ShrtText
         An exception that could not be caught occurred.
    What happened?
         The exception 'CX_RSRV_METADATA_ERROR' was raised but was not caught at any
          stage in the
         call hierarchy.
         Since exceptions represent error situations, and since the system could
         not react adequately to this error, the current program, 'SAPLRSDDCVER4', had
          to
         be terminated.
    Error analysis
         An exception occurred. This exception is dealt with in more detail below
         . The exception, which is assigned to the class 'CX_RSRV_METADATA_ERROR', was
          neither
         caught nor passed along using a RAISING clause, in the procedure
          "GET_ODS_METADATA" "(FORM)"
         Since the caller of the procedure could not have expected this exception
          to occur, the running program was terminated.
         The reason for the exception is:
         An exception occurred
    Missing RAISING Clause in Interface
        Program                                 SAPLRSDDCVER4
        Include                                 LRSDDCVER4F04
        Row                                     473
        Module type                             (FORM)
        Module Name                             GET_ODS_METADATA
    Trigger Location of Exception
        Program                                 SAPLRSDDCVER4
        Include                                 LRSDDCVER4F04
        Row                                     498
        Module type                             (FORM)
        Module Name                             GET_ODS_METADATA
    Source Code Extract
    Line  SourceCde
      468 ----
      469 *      -->I_ODSOBJECT  ODS object
      470 *      <--C_ODS_SID    SID of Infoprov ODS object
      471 *      <--c_atab_name name of active data table
      472 ----
      473 FORM get_ods_metadata
      474   USING    i_odsobject TYPE rsdodsobject
      475   CHANGING c_bexfl     TYPE rs_bool
      476            c_ods_sid   TYPE rsd_sid
      477            c_atab_name TYPE tabname
      478   RAISING cx_rsrv_sid_creation_error.
    479
    480   DATA:
    481     l_s_odso TYPE rsd_s_odso.
    482 *    l_ods_sid TYPE rsd_sid,
    483 *    l_atabname TYPE tabname,
    484 *    l_o_odso TYPE REF TO cl_rsd_odso.
    485
    486   CALL METHOD cl_rsd_odso=>get_info_static
    487     EXPORTING
    488       i_odsobject    = i_odsobject
    489       i_objvers      = 'A'
    490     IMPORTING
    491       e_s_odso       = l_s_odso
    492     EXCEPTIONS
    493       odso_not_found = 1
    494       iobj_not_found = 2
    495       internal_error = 3
    496       OTHERS         = 4.
    497   IF sy-subrc <> 0.
    >>>>     RAISE EXCEPTION TYPE cx_rsrv_metadata_error
    499       EXPORTING
    500         msgty  = sy-msgty
    501         msgid  = sy-msgid
    502         msgno  = sy-msgno
    503         msgv1  = sy-msgv1
    504         msgv2  = sy-msgv2
    505         msgv3  = sy-msgv3
    506         msgv4  = sy-msgv4.
    507 *    RAISE metadata_error.
    508   ENDIF.
      509
      510   c_bexfl = l_s_odso-bexfl.
      511
      512   IF c_bexfl = rs_c_true.
      513
      514 *for ODS objects no SID is evaluated
      515 *get sid of ODS object
      516     CALL FUNCTION 'RRSI_VAL_SID_SINGLE_CONVERT'
      517       EXPORTING
    Thanks,
    SS

    Hi,
    Make Sure that the Master data ur deleting must not be used by any transaction data
    there is function module can be used RSDMD_DEL_MASTER_DATA, we have create a program for this,
    check thread
    Master data Where-used
    search 'delete master data' and 'sdn forum', you may see some discussion about this topic
    Cleanup of Master Data
    How to see where all the master data is being used
    Deleting Master Data at Single Record Level
    http://help.sap.com/saphelp_nw04/helpdata/en/3b/f817385bf3be74e10000009b38f842/content.htm
    Deleting Master Data and Texts for a Characteristic
    http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6365e07211d2acb80000e829fbfe/content.htm
    -Shreya
    -Shreya

  • Master Data Deletion in SAP BW

    Hi,
    We are having HR Master Data in BW - 0EMPLOYEE. User has deleted some of the personel numbers in the source system (SAP HR system) as the contract of the employee was ended.
    My problem here is that the Personnel numbers are still existing in SAP BW - 0EMPLOYEE master data. Eventhough when i am trying to delete these un wanted personel numbers in maintain masterdata screen, that are not allowing me to delete as they have used some other placess in Transaction data.
    Can you please suggest me, how to delete this specific Master Data in SAP-BW?
    Best regards,
    Venkata Challapalli.

    Hi,
    Why do you want to delete ?
    No need to delete any Master Data
    If you want to really delete ,you can do one thing
    Right click on Master data Info Object 0EMPLOYEE
    select Delete master data
    And reload Master data for employee with full load
    if delta Initilize delta with data transfer
    Regards
    Hari

  • Master Data Deletion - Data used in query

    Hi all,
    I work with BI 7. I noticed a strange thing. I wanted to delete data from a master data object, but the operation is not allowed. If I see the logs for "where used list", I see a query. I deleted data from DSO objects and infocubes, and I thought it was enough.
    Any idea?
    Thanks a lot.

    Hello Gianluca,
    To be able to delete master data, no transaction data must exist for this master data, the master data must no longer be used as attribute value, hierarchies to this master data must not exist, and it must not be used in a query.
    If you look at a record in the SID table, you can check the usage flag DATAFL. If the value is X, it is used or has been used by another BW oject.
    But to answer your question, do delete the master data, it must no longer be used in a query.
    Best Regards,
    Vincent

  • Master data deleted dispite it is used in other Cubes

    Hello everybody,
    I deleted master data by the classic way: right-click on the characteristic --> delete master data --> with sid.
    (not with other ways!!!)
    Thinking that the system will not delete the master data that is used in Cubes.
    I reloaded new master data.
    After a complaint from a power user that he cannot make a drill down with this characteristic in one report, i begin to investigate.
    Firstly, i tested all the reports where this characteristic is used and all the reports did the same error.
    After i went is to display data of one of the infocube where this characteristic is used and when i select this characteristic for the output, nothing returns as result.
    After that i checked the values of the characteristic sid's in the cubes and i see that the range of the char sid's in the cube do not correspond to the range of the sid's in the sid table of the characteristic.
    In fact, none of the characteristic sid of the cube where present in the sid table of the characteristic.
    Why? probably because when i deleted the master data, the system deleted all the records, but why also those that are present in the cube?
    When i go to SLG1 and select the correct Object,  as message for this deletion: "All entered data was deleted"
    Any suggestion, advise is welcome.
    Thanks
    Regards,

    Hi,
    The way you have used, I would expect that it will not delete the used master data in other cube. If possible reload your master data but I think this will not resolve your issue as new SID values will get created. Just give a try.
    Regards,
    Durgesh.

Maybe you are looking for

  • My new iMac iTunes won't recognize my old apple id like my pc and iPad do

    Trying to setup iTunes on my new refurb iMac.  I have an apple id that is so old it isn't even an email both my pc and iPad are setup with a new apple Id the sales rep setup and it recognized my old Id in iTunes with all my purchases and money but, m

  • Not able to print multiple copies

    Hi All, We are not able to print multiple copies on network printer having device type HP LaserJet2430 even though we are giving no. of copies as 3 or 4 while creating spool request. Please help me to solve this issue. OS - windows. SAP 4.7 EE Thanks

  • Horrible Noise from PB17 with external units drawing power from FW.

    With external boxes that draw power from the firewire bus (Audio interfaces/SSL Duende etc.), my powerbook makes a terrible sort of digital whine. (actually it sounds a bit like cassette based program loading on old 8-bit computers (e.g. ZX Spectrum)

  • Serial number not registering

    I purchased a unopened sealed copy Full Retail version of CS3 Extended from a online friend. I installed it using the serial number and I am able to use it fine. I however cannot register it. Adobe told me it is an invalid serial number when I called

  • Is it possible to insert a text field over an image?

    I am creating a web form, and I would like to insert a text field over an image - basically, the person completely the form will be able to see how the text she write will look on the image.  Is this possible in FormsCentral?  Or is there a work arou