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...

Similar Messages

  • 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.

  • Stock on posting date -storage location and batch wise

    Dear All
    I need to developa report exactly same as MB5B but with storage location and batch wise.
    We need  storage location wise opening stock, total receipts, total issues and closing stock, and values for given time period.
    I have gone through some history tables like MCHBH and MBEWH.
    But all the history tables are having fileds for period wise but not date wise.
    Any focus on this?

    You have to read the coding of MB5B to see how SAP is doing it.
    The stock per date is calculated, starting from a month end, adding or reducing quantities based on movements until the date in question is reached.

  • Back Date Storage location Stock / Subcontractor Stock

    Dear SAP Guru (s)
    Please confirm can we get back date stock at storage location with value and quantity. Also tell me how can we take one subcontractor stock at any particular date.
    We are using MB5B, but it is giving only quantity at storage location level and value at plant level.
    Full points if problem solved.
    Regards
    Ishu

    Execute MB5B with special stock and O for special stock indicator, and then double click the material number, you can get all the material document NO.

  • Matl master Vs storage location

    Dear All,
    I have created a plant(3000) and assigned two storage location 200 and 201 in SPRO.
    I have created a  material master for MATRL1 with storage location 200 only and not with 201.
    But when i create PO or Contract for MATL1 and storage location 201(for which matl not extended), systems accepts PO or contract.
    Whether this is SAP std behaviour?
    Regards

    >
    Venkateshwaran Balaji Kannan wrote:
    > Dear All,
    >
    > I have created a plant(3000) and assigned two storage location 200 and 201 in SPRO.
    >
    > I have created a  material master for MATRL1 with storage location 200 only and not with 201.
    >
    > But when i create PO or Contract for MATL1 and storage location 201(for which matl not extended), systems accepts PO or contract.
    >
    > Whether this is SAP std behaviour?
    >
    > Regards
    In po system checks the storage location assignment with plant through company code-plant assignment...you will face the error while doing MIGO
    Regards,
    Indranil

  • Service master require storage location field

    Hi gurus!!!
    In operation I use PM03 to enter service master.  I require to enter the Storage location but I don't see the field.  Is there any way to enter?
    Regards
    Bern

    Hi Bern
    Can you brief your issue...
    For service master, why u need storage location....????
    For components you need storage location....
    wats your requirement?
    - Pithan

  • Reg : client level data,plant level data,storage location level data

    hi
    when we enter the data mm01 we select views.these views are based on cleint level,plant level,storage location level .i want the difference between all the three levels.how do we differentiate.

    As per our business process there are one company and in which many plants and storage location are available. In which many materials are available in different plant in different storage location.
    As per SAP Standard structure: -
    Company >> Company code1 & Company code2... >> Plant 1 & Plant 2 & Plant 3 .... >> Storage location 1 & 2 & 3........
    And in all plant and storage location have different data.
    Suppose in one plant we do quality testing for material and it may be possible in other plant we not perform quality testing for material. So in this case for same material quality data is different for different plants.
    Client Level: - Means data is same for all plant level like Basic data
    Plant Level: - Means data is based on plant level like Purchasing, Plant data, Quality data, Accounting view.
    Storage location level: - Means data is based on storage location level, for different storage location data will be different like Storage location stock data ..
    Due to this you can maintain different data on plant level & storage location level.
    Regards,
    Mahesh Wagh

  • Alarming and Event Data Storage Locations

    I'm having a problem where the Alarms and Events files are filling up the system disk and causing Lookout to crash.  Is there any way I can set things up so that those files are stored on another disk?  I already have the Historical files being archived on a separate disk, but the alarms and events seem to have stayed on the System disk.  The system disk doesn't have that much free space all the time, which is why I put the historical files somewhere else.
    Also, I have the Historical Data system set to only archive data for 90 days (it was changed a while back from storing perpetually), but I still have files in the database going back years.  Is there a way to purge the old data out?
    David Dudley

    David,
    It's important to note the alarms and events are actually in a separate database from Citadel. 
    This KnowledgeBase article discusses removing/archiving alarms from the database:
    http://digital.ni.com/public.nsf/websearch/B23BDD585BAEB25086256C00005C2851?OpenDocument
    Moving the alarms database is a bit more tricky.  It uses the MSDE 2000 SQL engine, which defaults to using a database on the drive it gets installed to.  I think short of installing Lookout to another drive, there's no "easy" way to move it over.
    Message Edited by Paul M. on 04-08-2006 12:16 AM
    --Paul Mandeltort
    Automotive and Industrial Communications Product Marketing

  • 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

  • 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.

  • Profit centre at storage location level

    Hi Experts,
    Can we define a profit centre @ storage location level?
    My scenario :
    The document splitting of FI is activated for the document type of FI and also the profit centre is mandatory entry for any accounting document that will be created so when I am trying to post a MIGO I encounter the error
    "Balancing field "Profit Center" in line item 001 not filled"
    We have a option of maintaining a profit centre in plant data/storage location but i will be updated in the profit centre field of Costing1 view . But we does not want to upadate in costing view of material master data.
    Basically We want the system to determine profit centre based on storage location  in Goods reciept transaction .
    Helpful Sugestions on this would be helpful & rewarded max .
    points.
    Regards,
    Patil
    t

    Hi Raju ,
    Thanx for the reply.I am Basavarajs Collougues.
    Our Enterprise Structure of our Client is as follows
    One company code is assigned to one plant and we have treated all the branches across India as Storage locations.Each  Branch (Storage Location- MM) is configured as Profit centres in FICO.The goods are procured for a storage location.
    By using the functionality of document splitting, the profit center field is made mandatory for all the accounting documents generated in the system. Now we are trying to post a goods receipt against a Purchase Order, the system is giving error "Balancing field "Profit Center" in line item 001 not filled"
    The option is there to maintain a profit center at the plant level.But we have several storage locations under the plant and each storage location has to be linked with the particular profit center. So that, while doing goods receipt the system should determine profit centre based on the storage location in purchase orders.
    Please suggest on this.
    Regards,
    SVU123

  • Sub storage location for Finished Goods Material

    Hi MM Gurus,
    In our organization, FG materials are physically stored under different sub areas, even though the same lies under single storage location in SAP. Currently the users are downloading the stock information into excel and allocating the mentioned physical storage areas
    Since the option of creating further storage locations at the same level or going for warehouse management is not feasible for us, can we resolve this issue by going for any sub storage location (sub dividing the existing storage location into physically storage sub areas)?
    Requst your valuable suggestions in this regard.
    Thanks & Regards,
    Vinod

    Yes your requirement is possible and I have seen it working in one of our client. They named the sub storage location, as STORAGE BIN, and this storage bin data is stored in material master under storage location view. This input field is created with help of abap.
    This way your storage location is distributed under sub storage locations namely storage bin, this way you can create areas of your storage location without turning on warehouse management and then assign materials to the storage location and then to storage bin, thus meeting your requirement.

  • Activate Change Document - Product Master Data

    Hi Experts,
    I am looking for comments on the following things. I hope the experts could share experience related to real time projects that you have worked / are working.
    I am considering the option to activate Change Documents for Product Master data, Product Location Master data and Transportation Lanes.
    Question I have (Please answer on any or all of the questions, if you can):
    1. Have you activated change documents on Product Master data? If so, how many products you have in total (number of entries in /SAPAPO/MATKEY)?
    Have you turned it off later due to performance reasons? Or Storage/hardware constraints?
    2. Do you have the change documents active on Location product master data? How many location products do you have in total (no. of entries in /SAPAPO/MATLOC)?
    3. Transportation lanes - Change documents activated? Does it also say if the external procurement relationship is activated or deactivated and the user who did this and date? How many transportation lanes do you have in total? Is there a possibility to activate the change documents on transportation lanes only for those which are procured from external vendors (not for Stock transfers... only for those arrives in from Suppliers)?
    Thanks,
    Suresh

    Hi Satish,
    Thanks for your reply
    2 more question:
    1. Are you logging the changes to all fields of product/product-location master data? Or you are logging only some of the data like: Product UoM changes / Product Header / etc?
    2. Also, regarding transportation lanes, does it also say who activated or deactivated the external procurement relationship and when?
    Thanks,
    Suresh

  • Storage location wise project stock valuation

    Hi all,
       I am tying to generate a report for storage locationwise project stock valuation. MBBS is giving the data valuation type as well as WBS element wise valuation.That is fine. I want to show the data storage location wise. So, I have taken MSPR table where I am getting data storage location wise. For this stock, i am picking up unit price from QBEW table. My user says there will be cases that the material comes in with different prices in a same financial period.Here I am facing issue when there are two prices for the same material with same Val.area and same WBS element .Pls tell me how can I pick up the correct price.

    Hi,
    If stock with different price under 1 plant and 1 WBS Element put into different storage location based on the material price then in table MSPR we can have LGORT (storage location) as indicator there. Otherwise, since valuation type is not implemented, there is no other way you can differentiate stock based on price as you mentioned before.

  • Po list   for perticuler storage location

    dear sirs,
    is it possible to see the po list for perticuler storage location of perticuler plant ?
    Regards
    kailas ugale

    HI,
    Yes, it is  possible to see the Purchase Order list for particular Storage Location of particular Plant as follows.
    Using T-code ME2N - Purchasing Documents per Document Number, the input data to be given as follows.
    Plant : _______
    Scope of List : ALV
    Document Date : __________ to __________ (report require period)
    If the report input data Storage Location require, you have to select Dynamic Selection button(Red,Green,Blue color button) and shown 2 options are as follows.
    1) Purchasing Document Header
    2) Purchasing Document Item
    The above option, you have to click Purchasing Document Item shown Storage Location field double click and give input data  Storage Location  ______ (list of PO require Storage Location)  and execute the report. The particular Plant and the particular Storage Location  list of purchase orders displayed.
    Hope, it is useful for you.
    Regards,
    K.Rajendran

Maybe you are looking for

  • Please Help me...For loose line fixer

    Hi, I just want to try a script for fixing loose lines automatically. My concept is, 1) Finding the wrod space width. 2) Depending on the width value, fix desired width value. I know it may vary for each character and fonts. 3) If finding any over wi

  • What is the activation key for Windows 8.1 pro with media center build 9600

    Send me through mail.

  • SHIFT - fieldsymbol

    Hello,      In my program I have to use SHIFT inorder to shift the contents of the field symbol deleting the leading spaces.   Field symbol will be assigned of any type(c,n,d,P,). Problem :-   When field symbol is assigned with a decimal value, The c

  • I am not able to download new version of 7.7  why?

    I am trying to get the new version of itunes. In itunes I go to help then check for updates. A box pops up telling me there is a new version. I click on download and the box disappears and nothing happens. I checked and I still have the old version.

  • Reading Tiff image files

    Can anybody help me to find out any freeware tools or api to read an image file in tiff format. The content of tiff file is all text and I have to convert all tiff files into .txt file. Any help would be appreciated. -R