GOS storage relationship structure

Hi
1) How GOS attachment files are stored in SAP DB(What are the tables and how its linked, any doc available for reference)
2) I would like to know the relationship between the tables stored or the GOS saving structures.
can you pls suggest me
regards
ckumar
*MOderator Message: Did you read the SAP Documentation for the same?
Edited by: kishan P on Nov 13, 2010 3:21 PM

the first 5 digits (0101A) do not change , so they get CCCCC in the template and spaces in the structure.
the last 5 digits (e.g. 00101) are numbers that will change, so they get NNNNN in the template.
only digit 6; 8 and 10 are changing, digit 7 and 9 are contant with a 0 value, hence set a A at 6 and a B at 7 and 8 and a C at 9 and  10 place in the structure, so it looks _____ABBCC
as only the  6 , 8 and 10 digit is changing by 1, you have have increment like this 10101

Similar Messages

  • Can we express batch relationship structure in XML in the database table

    Hi
    please help me ..
    i have a batch XML batch structure ...can we express batch relationship structure in XML in tha database table?
    yes..then how?
    Thanks
    Amu
    Edited by: amu_2007 on Mar 25, 2010 6:57 PM
    Edited by: amu_2007 on Mar 25, 2010 7:03 PM

    But what is the problem with the initial solution given that split the XML into the data?
    I mean you could do something like this?
    SQL> create table batch (customer    VARCHAR2(10)
      2                     ,cust_name   VARCHAR2(10)
      3                     ,cust_type   VARCHAR2(10)
      4                     )
      5  /
    Table created.
    SQL>
    SQL> create table section (customer    VARCHAR2(10)
      2                       ,sect_name   VARCHAR2(10)
      3                       ,sect_depend VARCHAR2(10)
      4                       )
      5  /
    Table created.
    SQL> create table job_sections (customer        VARCHAR2(10)
      2                            ,sect_name       VARCHAR2(10)
      3                            ,job_sect_name   VARCHAR2(10)
      4                            ,job_sect_depend VARCHAR2(10)
      5                            )
      6  /
    Table created.
    SQL> create table job (customer        VARCHAR2(10)
      2                   ,sect_name       VARCHAR2(10)
      3                   ,job_sect_name   VARCHAR2(10)
      4                   ,job_type        VARCHAR2(10)
      5                   ,job_sub_type    VARCHAR2(10)
      6                   ,job_depend      VARCHAR2(10)
      7                   )
      8  /
    Table created.
    SQL>
    SQL>
    SQL> insert all
      2    when batch_rn = 1 then
      3      into batch (customer, cust_name, cust_type) values (customer, cust_name, cust_type)
      4    when section_rn = 1 then
      5      into section (customer, sect_name, sect_depend) values (customer, sect_name, sect_dependency)
      6    when job_sections_rn = 1 then
      7      into job_sections (customer, sect_name, job_sect_name, job_sect_depend) values (customer, sect_name, job_sect_name, job_sect_dependency)
      8    when 1=1 then
      9      into job (customer, sect_name, job_sect_name, job_type, job_sub_type, job_depend) values (customer, sect_name, job_sect_name, job_type, jo
    10  --
    11  WITH t as (select XMLTYPE('
    12  <BATCH customer="ABC" name="ABC1" type="ABC_TYPE">
    13    <BATCH_SECTIONS>
    14      <SECTION name="X" dependency="NULL">
    15        <JOB_SECTIONS name="JOB1" dependency="NULL" >
    16          <JOBS>
    17            <JOB type="X" sub_type="xx" dependency="NULL" />
    18            <JOB type="X" sub_type="yy" dependency="NULL" />
    19            <JOB type="X" sub_type="zz" dependency="NULL" />
    20          </JOBS>
    21        </JOB_SECTIONS>
    22      </SECTION>
    23      <SECTION name="Y" dependency="X">
    24        <JOB_SECTIONS name="JOB2" dependency="X" >
    25          <JOBS>
    26            <JOB type="Y" sub_type="xx" dependency="X" />
    27            <JOB type="Y" sub_type="yy" dependency="X" />
    28            <JOB type="Y" sub_type="zz" dependency="X" />
    29          </JOBS>
    30        </JOB_SECTIONS>
    31      </SECTION>
    32      <SECTION name="Z" dependency="Y">
    33        <JOB_SECTIONS name="JOB3" dependency="NULL" >
    34          <JOBS>
    35            <JOB type="....." sub_type="...." dependency="NULL" />
    36          </JOBS>
    37        </JOB_SECTIONS>
    38        <JOB_SECTIONS name="JOB4" dependency="NULL">
    39          <JOBS>
    40            <JOB type="...." sub_type="...." dependency="NULL" />
    41          </JOBS>
    42        </JOB_SECTIONS>
    43      </SECTION>
    44    </BATCH_SECTIONS>
    45  </BATCH>
    46  ') as xml from dual)
    47  --
    48  -- END OF TEST DATA
    49  --
    50  ,flat as (select a.customer, a.cust_name, a.cust_type
    51                  ,b.sect_name, NULLIF(b.sect_dependency,'NULL') as sect_dependency
    52                  ,c.job_sect_name, NULLIF(c.job_sect_dependency,'NULL') as job_sect_dependency
    53                  ,d.job_type, d.job_sub_type, NULLIF(d.job_dependency,'NULL') as job_dependency
    54            from t
    55                ,XMLTABLE('/BATCH'
    56                          PASSING t.xml
    57                          COLUMNS customer     VARCHAR2(10) PATH '/BATCH/@customer'
    58                                 ,cust_name    VARCHAR2(10) PATH '/BATCH/@name'
    59                                 ,cust_type    VARCHAR2(10) PATH '/BATCH/@type'
    60                                 ,bat_sections XMLTYPE PATH '/BATCH/BATCH_SECTIONS'
    61                         ) a
    62                ,XMLTABLE('/BATCH_SECTIONS/SECTION'
    63                          PASSING a.bat_sections
    64                          COLUMNS sect_name        VARCHAR2(10) PATH '/SECTION/@name'
    65                                 ,sect_dependency  VARCHAR2(10) PATH '/SECTION/@dependency'
    66                                 ,section         XMLTYPE      PATH '/SECTION'
    67                         ) b
    68                ,XMLTABLE('/SECTION/JOB_SECTIONS'
    69                          PASSING b.section
    70                          COLUMNS job_sect_name        VARCHAR2(10) PATH '/JOB_SECTIONS/@name'
    71                                 ,job_sect_dependency  VARCHAR2(10) PATH '/JOB_SECTIONS/@dependency'
    72                                 ,job_sections         XMLTYPE      PATH '/JOB_SECTIONS'
    73                         ) c
    74                ,XMLTABLE('/JOB_SECTIONS/JOBS/JOB'
    75                          PASSING c.job_sections
    76                          COLUMNS job_type        VARCHAR2(10) PATH '/JOB/@type'
    77                                 ,job_sub_type    VARCHAR2(10) PATH '/JOB/@sub_type'
    78                                 ,job_dependency  VARCHAR2(10) PATH '/JOB/@dependency'
    79                         ) d
    80            )
    81  --
    82  select customer, cust_name, cust_type, sect_name, sect_dependency, job_sect_name, job_sect_dependency, job_type, job_sub_type, job_dependency
    83        ,row_number() over (partition by customer order by 1) as batch_rn
    84        ,row_number() over (partition by customer, sect_name order by 1) as section_rn
    85        ,row_number() over (partition by customer, sect_name, job_sect_name order by 1) as job_sections_rn
    86  from flat
    87  /
    16 rows created.
    SQL> select * from batch;
    CUSTOMER   CUST_NAME  CUST_TYPE
    ABC        ABC1       ABC_TYPE
    SQL> select * from section;
    CUSTOMER   SECT_NAME  SECT_DEPEN
    ABC        X
    ABC        Y          X
    ABC        Z          Y
    SQL> select * from job_sections;
    CUSTOMER   SECT_NAME  JOB_SECT_N JOB_SECT_D
    ABC        X          JOB1
    ABC        Y          JOB2       X
    ABC        Z          JOB3
    ABC        Z          JOB4
    SQL> select * from job;
    CUSTOMER   SECT_NAME  JOB_SECT_N JOB_TYPE   JOB_SUB_TY JOB_DEPEND
    ABC        X          JOB1       X          xx
    ABC        X          JOB1       X          yy
    ABC        X          JOB1       X          zz
    ABC        Y          JOB2       Y          xx         X
    ABC        Y          JOB2       Y          yy         X
    ABC        Y          JOB2       Y          zz         X
    ABC        Z          JOB3       .....      ....
    ABC        Z          JOB4       ....       ....
    8 rows selected.
    SQL>But it would depend what you are actually after in terms of primary keys, and table relationships etc.
    Let me put this simply for you...
    h1. IF YOU DON'T DEMONSTRATE TO US WHAT OUTPUT YOU REQUIRE, WE CAN'T GIVE YOU AN ANSWER

  • Error while creating storage bin structure.....

    Hi,
    When I try to create bin structure for newly created warehouse and storage type, the systerm is giving the error message as below,
    "*Entry WH1 ST1 001 does not exist in T302 (check entry)"
    Can anyone tell what is the issue and how to solve?
    Thanks in advance,
    Abi

    Hi,
    Table T302 is storage section table. In below issue you have not created storage section 001 in storage type ST1 in warehouse WH1. Follow path SPRO>LE>WM>Master data>Define storage section.
    This'll resolve it.
    Reg,
    Sudhir

  • Storage Bin Structure

    Dear Experts ,
    if my storage bin will start with 0101A00101.......and will end with0101A90909 what should be the Template , Structure and the increment value ?????????????

    the first 5 digits (0101A) do not change , so they get CCCCC in the template and spaces in the structure.
    the last 5 digits (e.g. 00101) are numbers that will change, so they get NNNNN in the template.
    only digit 6; 8 and 10 are changing, digit 7 and 9 are contant with a 0 value, hence set a A at 6 and a B at 7 and 8 and a C at 9 and  10 place in the structure, so it looks _____ABBCC
    as only the  6 , 8 and 10 digit is changing by 1, you have have increment like this 10101

  • Issue with OM relationship structure when using report RHSTRU00

    In HR, one Person (P) is attached to only one Central Person (CP). So, when we run the report with date period as of Today, we expect a Tree structure in the output with P-CP relationships displayed. However, we see that the report displays one Person attached to many CPs.
    The program fetches the 1 P to 1 CP combination. However, it deletes all Persons who are not Active as of today but does not delete the CP. It then attaches all CPs to the first Active Person it can find.
    This is a serious bug since it shows data which is different from what exists in the system. In our systems as would be in any HR system in the world, One person can be attached to only one CP and the program shows that the Person is attached to many CPs.
    I opened a OSS message but SAP refused to correct this bug.
    Has anybody else ever encountered the same issue and do you have a solution to this?

    I checked the report, and it certainly returns incorrect data, I found exactly what you say regarding active/inactive persons.
    What is SAP's reason for not looking into this? It would be interesting to hear their argumentation for this not being a bug. 
    It may be that SAP expects RHSTRU00 to be called only for active persons? This would require running another report first to get the input for RHSTRU00. This seems like a strange prerequisite for the program, and I do not understand why SAP don't see this as a bug. The error seems rather obvious and reproducable.
    I often find that I have to push to get passed first line of support to have SAP see the problem. It is tiring, but I have found this to be the fact far too often. 
    PS - we never use the program like this, so we do not face the problem ourselves.
    /Kirsten

  • DMS storage and structure

    Hi
    1) How to attach the GOS PC attachment with PO document using DMS
    2)Where and how the attachment is stored in DMS?
    Can I assume DMS is nothing but like SAP server where u store the attachments in DMS format.
    Pls suggest me
    Regards
    Ckumar

    Hi Christoph
    Thanks for your reply.
    I want to store GOS attachment at header level for SAP document(PR) in DMS scenario.
    Can you elaborate me bit more about Archive link. How its stored in DMS scenario
    pls correct my understanding if wrong.
    Using GOS scenario/attachment in header level
    1) I believe if i am attaching some file(pdf or doc)  to PR/PO document using GOS, the file is stored in
    SAP db table(table SRGBTBREL & SOOD) by default
    2) In case of DMS scenario, what happens with respect to attachment file and storing part.
    I observed only original files(min 2) attached in item level can only be managed or stored in DMS scenario(in sap file server/Content sever). To do this we need to configure DMS setting(DC10,20,30) in ERP system.
    I want to know how GOS attachment is stored physically and managed by archivelink.
    pls shed light on this.
    Regards
    ckumar
    Edited by: princeck on Nov 14, 2010 1:10 PM
    Edited by: princeck on Nov 14, 2010 1:21 PM

  • Data storage & Table structure in BW/BI

    Hi Experts,
                    I know that when we create an infocube and load data it gets stored in BI server, here my question is where does the data exactly get stored in depth in the server and i would like to know the table structure of the data that is stored in BW/BI.
    Thanks in advance
    Shiva

    Hi,
    You have tables to Master Data:
    Eg: 0MATERIAL
    /BI0/HMATERIAL                 Hierarchy: InfoObject Material
    /BI0/IMATERIAL                 SID Structure of Hierarchies: InfoObject M
    /BI0/KMATERIAL                 Conversion of Hierarchy Nodes - SID: InfoO
    /BI0/MMATERIAL                 View of Master Data Tables: Characteristic
    /BI0/PMATERIAL                 Master Data (Time-Ind.): Characteristic Ma
    /BI0/RMATERIAL                 View SIDs and Char. Values: Characteristic
    /BI0/SMATERIAL                 Master Data IDs: InfoObject Material
    /BI0/TMATERIAL                 Texts: Char. Material
    /BI0/XMATERIAL                 Attribute SID Table: InfoObject Material
    /BI0/ZMATERIAL                 View Hierarchy SIDs and Nodes: Char. Mater
    For Cubes
    you just goto SE11 and give star 0ic_c03 star and F4 then you can see the all tables for that cube like that you can check.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Jan 21, 2010 5:40 AM

  • Storage Bin Structure error

    HI All
    I cannot see where my bin structure is wrong, can someone please help
    Template
    C
    C
    N
    N
    C
    N
    N
    C
    A
    N
    Structure
    A
    A
    B
    C
    Start value
    S
    L
    0
    1
    0
    1
    A
    1
    End value
    S
    L
    0
    1
    0
    5
    E
    4
    Increment
    0
    1
    1
    1
    Bins should be created SL01-01-A1 to SL01-01-A4 then change to SL01-01-B1 to B4 all the way to E4 then change to SL01-02-A1 and then repeat the A1 to E4 bins until it reaches SL01-05-E4
    Error is 'Structure does not fit into format'
    Where am I going wrong?
    Thanks in advance
    Darren

    Apologies
    I took a break, came back to my screen and I could see my error
    1st 5 characters should have been 'C' as there was no change to their value.
    So it looked like this below
    Template
    C
    C
    C
    C
    C
    N
    N
    C
    A
    N
    Structure
    A
    A
    B
    C
    Start value
    S
    L
    0
    1
    0
    1
    A
    1
    End value
    S
    L
    0
    1
    0
    5
    E
    4
    Increment
    0
    1
    1
    1
    Now no error!!
    Regards Darren

  • Windows Live Mail Storage Structure in Win Explorer not the same as folder Structure in WLM

    How do i make the storage folder structure in Win7 Windows Explorer reflect EXACTLY how i have my email folders structured in WLM? I have several sub-folders in WLM that don't appear in the Win7 Windows Explorer folder structure, and Windows Explorer has
    several folders i deleted from WLM months ago. It makes backing up and reinstalling an absolute nightmare. What's the problem? I'll never find this page again, so kindly email me an answer at [email protected] Thx

    Please repost your query in the more appropriate Windows Community forums here..
    http://answers.microsoft.com/en-us/windows/forum/windows_7-ecoms
    Note however that the WLM 'file structure' is essentially different to the Windows file structure, so what you appear to want to do may not be possible.
    (Moving the thread to the 'Where is the Forum For...?' forum, as it's not related to WGA issues)
    Noel Paton | Nil Carborundum Illegitemi
    CrashFixPC |
    The Three-toed Sloth
    No - I do not work for Microsoft, or any of its contractors.

  • Multiple local storage repositories in a standalone Oracle VM Server

    Hi, I have a server with two disk volumes created: RAID1(/dev/sdb3) and RAID10(/dev/sda1)
    In the RAID1 volume was installed the Oracle VM Server 2.2.1.
    The rest of the RAID1 volume is available in the /OVS storage repository structure.
    Then I setting up a second storage repository using the space of the RAID10 volume.
    Steps:
    # mkfs.ext3 /dev/sda1
    # /opt/ovs-agent-2.3/utils/repos.py --new /dev/sda1
    # /opt/ovs-agent-2.3/utils/repos.py -i
    # /opt/ovs-agent-2.3/utils/repos.py -l
    [   ] 25bfdcda-bad1-4836-ad72-d6204e56befb => /dev/sda1 -- RAID 10
    [ * ] b8ea3f06-10f4-4ea3-8fd9-0295ac6d46b4 => /dev/sdb3 -- RAID 1
    Finally I setup the fstab file to mount the RAID10 volume in boot-time in the /raid10 directory
    Reboot the server
    In the /raid10 directory I see the same directories names than the RAID1(/OVS) volume.
    Are these steps correct?
    When a new virtual machine is created with the Oracle VM Manager, how can I select the storage repository for this machine?
    Thanks in advance

    Hi,
    yes this is correct.
    Internally the ovs-agent will use the /var/ovs/mount/<ID> folders (you can check that with df -k) and not the /OVS directly.
    You do not have a chance in the current version to choose the repository. The ovs-agent will simply take the repository where there is the most free space.
    However after creating the VMs, you always (if shutdown) can simply move the contents of the folders (e.g. running_pool/name) to the other pool, and ovs-agent will automatically find the corresponding images (and update the configuration), when you start the VM.
    Regards
    Sebastian

  • Do we need to create Storage Bins for each Client?

    Hi,
    I have defined the storage bin structure etc which I could transport.
    But does the creation of bins (using LS01N) need to be done separately for each client? If on the test client we dont have access to Create Bins then what is the right approach to get it done.
    Thanks.

    Thanks. I tried using LS05.
    What entries should I make?
    I entered Warehouse and Storage Type
    The Default Session was showing as RLLS0500 and I left it as it is.
    But I am getting Error message "Check you entry for manual storage bin creation".
    Any suggestions?
    Thanks.

  • Best practices for DAO with relationships

    Suppose I have have a relationship structure similar to this:
    School -> 1:M -> Classrooms -> 1:M -> Students -> 1:M TextbooksShould I have 4 DAOs? (SchoolDAO, ClassroomDAO, StudentDAO, TextBookDAO)...
    How would be the best way to insert a Student?
    Would I insert the Student from the ClassroomDAO (because I need to know the ClassroomID in order to insert a Student)? Or would it be better design-wise to insert a Student in the StudentDAO, and assume the correct ClassroomID has been retrieved before the insert?
    I guess this sounds a lot like an ORM tool -- we've tried to use Hibernate in the past but we're working against a large legacy database and we've had lots of trouble hooking hibernate up to it. We're trying to construct a nice DAO layer because the app is lacking a good one -- but I'd like to make sure we're following the best practices.
    Thanks, Kevin

    kp5150 wrote:
    Suppose I have have a relationship structure similar to this:
    >
    >
    Should I have 4 DAOs? (SchoolDAO, ClassroomDAO, StudentDAO, TextBookDAO)...Just noting that that doesn't seem realistic. Either the students own the books or the school does.> School -> 1:M -> Classrooms -> 1:M -> Students -> 1:M Textbooks
    If the first then a school system wouldn't track them. If the second then you need ownership in the database that reflects that.
    And students are not part of a class room but rather part of a class. Classes are held/scheduled in class rooms.
    Additionally best practices generally dictate that table names should not be plural unless they contain sets (plural of set) data.
    >
    How would be the best way to insert a Student?
    Would I insert the Student from the ClassroomDAO (because I need to know the ClassroomID in order to insert a Student)? Or would it be better design-wise to insert a Student in the StudentDAO, and assume the correct ClassroomID has been retrieved before the insert?
    Probably irrelevant. You could do one or the other or even both. In one case you have a class to which a student is added. In the other you have a student and add them to a class.
    I guess this sounds a lot like an ORM tool -- we've tried to use Hibernate in the past but we're working against a large legacy database and we've had lots of trouble hooking hibernate up to it. We're trying to construct a nice DAO layer because the app is lacking a good one -- but I'd like to make sure we're following the best practices.Huh?
    If you have a unrealistic datamodel (like the above) then that is the cause of problems, not a tool.
    But in a generic sense if you have the following
    A -> 1:M -> B -> 1:M -> C -> 1:M D
    Then that is easy for tools to handle.

  • WM - Storage type 001 is not suitable as an interim storage area -

    Hi,
    When i'm doing Migo, the blw error has came, pls advise , how solve it..
    seems, some where i made wrong config.. These process i was trying in our ides server..
    Storage type 001 is not suitable as an interim storage area
    Message no. L9022
    Diagnosis
    You have attempted to execute a posting to a dynamic coordinate in a storage type for which a putaway strategy is defined. Dynamic coordinates, however, are provided only for storage types without a putaway strategy.

    thanks Raman
    pls tell me now , where i have to check the config.. and where i may did the mistake.
    for ur info, ref to sdn A08- conf guide as per blw , i made the conf..
    3.1 Full WM Basic Settings     
    3.1.1 Defining Control Parameters for Warehouse Number     
    3.1.2 MM-IM Storage Location <-> Warehouse Number     J01
    3.1.3 Defining Storage Type                                              001- high rack system
    3.1.4 Defining Storage Section                                            001- Fastmoving
    3.1.5 Defining Storage Bin Types                                   P1-BIN HEGIHT 1 MTR
    3.1.6 Defining Blocking Reasons                                           1
    3.1.7 Defining Storage Bin Structures     
    3.1.8 Defining Storage Type Indicators                                1
    3.1.9 Defining Storage Unit Types                                    E1
    3.1.10 Defining Storage Section Indicator                        001- Fastmoving
    3.1.11 Defining Bulk Storage Indicator                                      B1
    3.2 Strategies     
    3.2.1 Activating Storage Type Search     
    3.2.2 Activating Storage Section Search     
    3.2.3 Activating Storage Bin Type Search     
    3.2.4 Defining Sort Sequence for Putaways (Cross-line Stock Putaway) Definition of Sort Field in Storage Bin     
    3.2.5 Defining Strategy for Pallets     
    3.2.6 Defining Putaway Strategy for Bulk Storage     
    3.2.7 Defining Strategy for Stringent FIFO     
    3.2.8 Defining Strategy for Large/Small Quantities Determining Search Sequence     
    3.3 Activities     
    3.3.1 Defining Requirement Categories     
    3.3.2 Defining Shipment Types     
    3.3.3 Defining Movement Types     
    3.3.4 Defining Stock Transfer and Replenishment Control Defining Replenishment Control for Storage Type     
    3.3.5 Setting up 2-Step Picking     
    3.3.6 Defining Confirmation     
    3.3.7 Print Control     
    3.3.8 Defining Default Values     
    3.3.9 Defining Types for Storage Type     
    3.3.10 Defining Difference and Document Limit     
    3.3.11 Clearing Difference (Interface with IM) MM-IM Movement Types for Clearing Inventory     
    3.3.12 Clearing Difference (Interface with IM)  Do Not Allow Clearing in Storage Types     
    3.4 Interfaces     
    3.4.1 Allowed Negative Stocks in Interim Storage Types Allowing Negative Stock for Each Storage Type     
    3.4.2 Shipping Shipping Control per Warehouse Number     
    3.4.3 Shipping  Requirement Types of Delivery Documents     
    3.4.4 2-Step Picking     
    3.4.5 Creating Automatic Transfer Order     
    3.5 Manual Activities     
    3.5.1 Maintaining Number Range and Assignment     
    3.5.2 Maintaining Number Range for Physical Inventory     
    3.5.3 Creating Storage Bins     
    3.5.4 Generating Interim Storage Bin
    Edited by: UJ on Mar 4, 2009 7:16 AM

  • Uploading data related to storage bin

    Hi,
    what are the tables to upload with LSMW the field Maximum weight in the screen of trx LS02N?
    Best regards

    Hi,
    try with trx LSMW with a Batch Input Recording if you want to modify your storage bins data.
    If you want to create them you can use as I told before the LSMW trx
    with the option Standard Batch/Direct Input, you can also do that from SPRO, Warehouse Management, Master Data, Storage Bins, Define Storage Bin Structure
    Best regards

  • Number of Storage location Manufacturing unit or tank wise

    Dear ALL,
    In a single plant i am having 4 manufacturing unit, and the raw material stock is maintain and monitored by 4 manufacturing unit wise.  Also in each manufacturing unit number of tank availble to store material.
    I am having 6 plants and in each plant no of manufacturing unit and in each manufacturing unit number of tank.
    Client want to track material by manuf unit and tank wise.
    It not looking feasible to generate storage location manufacturing unit wise or tank wise.
    Please suggest how to work out.
    Thanks
    Akshay

    Hi Akshay,
    As in total you are having six plant belonging to a company code and in each plant you have 4 manufacturing units in which you have tank to store material.
    The storage location key only has to be unique within a plant , you can  use same storage location keys in each plant as per the raw material in each tank where it is stored.. By this you can define the storage location key according to the function of the storage location and set up uniform storage location structure for all plants.
    For example for plant 2000  you can define storage location as per material . If you have define for plant 2000 5 storage location 0001, 0002,0003,0004 based on material . You can use same keys in other plants to make it material specific.
    Regards,
    Tushar Patankar
    Edited by: Tushar Patankar on Sep 27, 2009 2:57 PM

Maybe you are looking for