How to find out the plants and storage location for a given company code

hi
How to find out the plants and storage location for a given company code

Hi
Check for Assignem,ent of Plant & compnay code in OX18
& for Combination of Plant & Storage location in OX09
The total org structure can be viewed in EC01 - Click on Structure  -> navigation
& Continue, Click on the Compnay code & the wole structure can be viewed
Thanks & Regards
Kishore

Similar Messages

  • Default Plant and storage location for components in MFBF

    Hi,
    I have 2 plants 1000-procurement plant and 2000- production plant. I am using special procurement key 70( Withdrawal from alternative plant from 1000 to 2000) for components in Plant 2000. The requirements for the components are transferred from 2000 plant to 1000 plant. The 1000 plant run MRP for the dependent requirements and procure the materials and transferred to the production storage location in Plant 2000.The raw materials are purchased in plant 1000 and transferred to Plant 2000 production storage location based on the manual reservations created with movement type 301. This is fine.
    But when I do backflush in MFBF the plant and storage location for the components issue are displayed as plant 1000 which is the procurement plant  and the production storage location in plant 2000-production plant location. In the BOM the production storage location is production storage location of plant 2000. Since we use the special procurement key system defaults the plant as 1000(procurement  plant) insteadd of 2000(production plant). can we make this plant default to the production plant 2000 as default in the MFBF goods issue screen.
    thanks and regards
    Murugesan

    Hi MURUGESAN !
          Can you give me some information more in Special Procument Configure in plant 2000 like:
              -  Procurement type (maybe F)
              -  Special procurement (Maybe U)
              -  Plant (Maybe 1000).
              - Issuing plant (maybe 2000)
           We will check together.
           Regards,
          Tony

  • How to find out the primary and failover DNS name

    Hi;
    This sounds very stupid, but could some one please tell me how to find out the name/dns name of the primary and failover server without using the CDS console.
    any help is appreciated

    Is this what you want?
    $ /usr/lib/ldap/ldap_cachemgr -g
    cachemgr configuration:
    server debug level 0
    server log file "/var/ldap/cachemgr.log"
    number of calls to ldapcachemgr 12729
    cachemgr cache data statistics:
    Configuration refresh information:
    Previous refresh time: 2005/08/07 23:54:59
    Next refresh time: 2005/08/08 00:55:00
    Server information:
    Previous refresh time: 2005/08/14 15:15:00
    Next refresh time: 2005/08/15 03:15:00
    server: ldap1.example.com, status: UP
    server: ldap2.example.com, status: UP
    server: ldap3.example.com, status: UP
    Cache data information:
    Maximum cache entries: 256
    Number of cache entries: 0
    Gary

  • How to find out the cost of SAP user for a particular user id

    Dear All,
    I got one issue like how to find out the cost of SAP user, i mean for a particular user id.
    Could you please advice me regarding this.
    Raghu

    Hello Raghu,
    I got one issue like how to find out the cost of SAP user, i mean for a particular user id.
    Could you please advice me regarding this.
    I think you need to reach out to BASIS consultant to check out the Cost involved for User ID for the SAP application.
    Regards,
    Sarthak

  • How to find out the tablename and column name

    Hi,
    I have inserted a value (say 'I am here') in a table. but i don't know which is getting inserted this value.
    Now i want to know which table and colums has this value (I am here). How to find out as without knowing the table name.
    Is there any option to get the tablename and colum??.
    Please help me.
    thanks.

    Does nobody document their code anymore?
    See my response Re: How to find out a tablename for one possible solution.
    HTH
    John

  • How to find out the IPS and DS Service Pack and patch levels in windows server.

    Hi,
    I have installed the Information Platform Services 4.0 and Data services 4.0 in windows QA system, now we need to install the same version of IPS & DS  in windows PRD system for this how could we find out the exact version of IPS & DS  ( Service pack and patch levels ) and where we can find the same.
    Many Thanks,
    Sudheer

    Hi Sudheer,
    On a Windows Operating Systems you can check the “Programs and Features” in control panel.You can see a list of both the Name and Version number of SAP BusinessObjects that is installed.
    option 2:
    Open CMC go to Settings. In the properties, you will find the Product Version.
    Please check below SAP notes for more information.
    http://service.sap.com/sap/support/notes/1602088
    Regards,
    Pavan

  • How will the plant and storage location be determined automatically in PO

    Hi,
    In ME21n, I have entered Vendor, Material and Qty; also the info record is maintained. Now if I save the PO, the plant and Sloc should be auto determined. Where will I have to maintain this information.
    In master data the net SLOC for EP is maintained in MRP view.
    The SLoc value is getting populated if I enter the Plant.
    But I want that the Plant should also be auto populated. Please provide a solution.
    Thanks and Regards,
    Yogesh Walke

    Hi,
    You can create a Transaction Variant for creation of purchase order with your favorable plant.
    Use T.Code :SHD0,enter the T. Code: ME21N and enter in Transaction Variant: ZME21N and later
    confirm screen entry with your favorable plant to proceed further.
    Now create purchase order with ZME21N and find your your favorable plant
    Refer how to create Transaction Variant
    How to Create a Transaction Variant
    Transaction Variant - A Step by Step Guide for Creation - Code Gallery - SCN Wiki
    Regards,
    Biju K

  • How to find out the object and tables that belong to it

    Do you know how to find out which tables belong to which object in trans. BD66, I have a CABN table but i donot the object name so how i can find out that??

    Hi,
    Wht object u r taking about .if it's a transport object,
    Go to Utilities -> Versions -> Version Mgt ->
    The latest one which is active, is the one u have to transport .
    Rgds ,
    J
    Do Award pts by cliking the left-hand side of this info.

  • How to find out the list of field exists for a particular transaction

    Hi all,
    Can u please help me find out the list of field exits available for a particular Tcode?
    Is it similar to User exit or . . . . ?
    Thanks,
    C.Selvaraj
    SAP-QM

    Create a program and add this code to find user exit
    tables : tstc, tadir, modsapt, modact, trdir, tfdir, enlfdir.
    tables : tstct.
    data : jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode obligatory.
    select single * from tstc where tcode eq p_tcode.
    if sy-subrc eq 0.
      select single * from tadir where pgmid = 'R3TR'
      and object = 'PROG'
      and obj_name = tstc-pgmna.
      move : tadir-devclass to v_devclass.
      if sy-subrc ne 0.
        select single * from trdir where name = tstc-pgmna.
        if trdir-subc eq 'F'.
          select single * from tfdir where pname = tstc-pgmna.
          select single * from enlfdir where funcname =
          tfdir-funcname.
          select single * from tadir where pgmid = 'R3TR'
          and object = 'FUGR'
          and obj_name eq enlfdir-area.
          move : tadir-devclass to v_devclass.
        endif.
      endif.
      select * from tadir into table jtab
      where pgmid = 'R3TR'
      and object = 'SMOD'
      and devclass = v_devclass.
      select single * from tstct where sprsl eq sy-langu and
      tcode eq p_tcode.
      format color col_positive intensified off.
      write:/(19) 'Transaction Code - ',                        "#EC NOTEXT
      20(20) p_tcode,
      45(50) tstct-ttext.
      skip.
      if not jtab[] is initial.
        write:/(95) sy-uline.
        format color col_heading intensified on.
        write:/1 sy-vline,
        2 'Exit Name',                                          "#EC NOTEXT
        21 sy-vline ,
        22 'Description',                                       "#EC NOTEXT
        95 sy-vline.
        write:/(95) sy-uline.
        loop at jtab.
          select single * from modsapt
          where sprsl = sy-langu and
          name = jtab-obj_name.
          format color col_normal intensified off.
          write:/1 sy-vline,
          2 jtab-obj_name hotspot on,
          21 sy-vline ,
          22 modsapt-modtext,
          95 sy-vline.
        endloop.
        write:/(95) sy-uline.
        describe table jtab.
        skip.
        format color col_total intensified on.
        write:/ 'No of Exits:' , sy-tfill.                      "#EC NOTEXT
      else.
        format color col_negative intensified on.
        write:/(95) 'No User Exit exists'.                      "#EC NOTEXT
      endif.
    else.
      format color col_negative intensified on.
      write:/(95) 'Transaction Code Does Not Exist'.            "#EC NOTEXT
    endif.
    at line-selection.
      get cursor field field1.
      check field1(4) eq 'JTAB'.
      set parameter id 'MON' field sy-lisel+1(10).
      call transaction 'SMOD' and skip first screen.
    Rewards if useful........................
    Minal

  • How to find out the aligning Data dictionary table for a structure.

    Hi
    As the table controls are associated with strucures, the data input goes to the data dictionary table aligned to that structure. Is there any way we can find out the table related to that particular structure ?
    Thanks,
    Dhareppa

    Hi,
    The structure and its fields may be associated with multiple database tables.
    You can try by where-used list of the structure/field and then you can look and determine the table by hit and try method.
    Also as suggested above you can try get the SQL trace and then ypu can look for table associated behind the structure/fields I believe this is the best way to find the DB table.
    Thanks,
    Ravi

  • How to find out the differences in minor builds for components?

    Hello,
    We use crystal 10 included in a vb6 application for reports design and viewing. When we changed our installshield version, for a reason I haven't understood yet, our versions of all the crystal components changed with it. This got identified as a problem with some minor difference in a small bit of functionality, what I'm now looking for is to know what changes were made between the builds for these components. If it's very minor changes that will not affect us we will leave these components as they are, if there are any major changes that will affect us we can either test their impact or make the decision to revert to all the old versions and re-release the software.
    I've spent just under an hour looking for the information but to no success, this forum really helped me out before with a weird crystal problem we were getting so thought I'd try here!
    These are all from the Ciphr Install\Common\Crystal Decisions\2.5\bin directory.
    File Name     Previous Version      Version in 5.1     Product
    commonobjmodel.dll     10.0.5.587     10.0.5.1017     Report Application Server
    craxddrt.dll     10.0.5.860     10.0.5.1506     Crystal Reports
    craxddrt_res_en.dll     10.0.5.860     10.0.5.1450     Crystal Reports
    craxdrt.dll     10.0.5.839     10.0.5.1519     Crystal Reports
    craxdrt_res_en.dll     10.0.5.839     10.0.5.1450     Crystal Reports
    crdb_ado.dll     10.0.5.655     10.0.5.668     Crystal Reports
    crdb_adoplus.dll     10.0.5.418     10.0.5.1210     Crystal Reports
    crdb_adoplus_res_en.dll     10.0.5.418     10.0.5.1210     Crystal Reports
    crdb_ado_res_en.dll     10.0.5.655     10.0.5.663     Crystal Reports
    crdb_cdo.dll     10.0.5.573     10.0.5.578     Crystal Reports
    crdb_cdo_res_en.dll     10.0.5.573     10.0.5.578     Crystal Reports
    crdb_com.dll     10.0.5.137     10.0.5.143     Crystal Reports
    crdb_com_res_en.dll     10.0.5.137     10.0.5.143     Crystal Reports
    crdb_dao.dll     10.0.5.606     10.0.5.611     Crystal Reports
    crdb_dao_res_en.dll     10.0.5.606     10.0.5.611     Crystal Reports
    crdb_dataset.dll     10.0.5.148     10.0.5.152     Crystal Reports
    crdb_dataset_res_en.dll     10.0.5.148     10.0.5.152     Crystal Reports
    crdb_fielddef.dll     10.0.5.568     10.0.5.574     Crystal Reports
    crdb_fielddef_res_en.dll     10.0.5.568     10.0.5.574     Crystal Reports
    crdb_filesystem.dll     10.0.5.563     10.0.5.567     Crystal Reports
    crdb_filesystem_res_en.dll     10.0.5.563     10.0.5.567     Crystal Reports
    crdb_JavaBeans.dll     10.0.5.145     10.0.5.152     Crystal Reports
    crdb_JavaBeans_res_en.dll     10.0.5.145     10.0.5.152     Crystal Reports
    crdb_odbc.dll     10.0.5.751     10.0.5.768     Crystal Reports
    crdb_odbc_res_en.dll     10.0.5.751     10.0.5.768     Crystal Reports
    crdb_oracle.dll     10.0.5.249     10.0.5.257     Crystal Reports
    crdb_oracle_res_en.dll     10.0.5.249     10.0.5.257     Crystal Reports
    crdb_p2bact3.dll     10.0.5.199     10.0.5.196     Crystal Reports
    crdb_p2bbde.dll     10.0.5.115     10.0.5.116     Crystal Reports
    crdb_p2bbtrv.dll     10.0.5.200     10.0.5.210     Crystal Reports
    crdb_p2bxbse.dll     10.0.5.113     10.0.5.114     Crystal Reports
    crdb_p2sacl.dll     10.0.5.128     10.0.5.129     Crystal Reports
    crdb_p2sdb2.dll     10.0.5.196     10.0.5.197     Crystal Reports
    crdb_p2sevta.dll     10.0.5.129     10.0.5.130     Crystal Reports
    crdb_p2sevtc.dll     10.0.5.129     10.0.5.130     Crystal Reports
    crdb_p2sexsrm.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2sexsrp.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2smapi.dll     10.0.5.133     10.0.5.134     Crystal Reports
    crdb_p2smsiis.dll     10.0.5.137     10.0.5.139     Crystal Reports
    crdb_p2soutlk.dll     10.0.5.222     10.0.5.225     Crystal Reports
    crdb_p2srepl.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2ssyb10.dll     10.0.5.176     10.0.5.179     Crystal Reports
    crdb_p2strack.dll     10.0.5.130     10.0.5.131     Crystal Reports
    crdb_p2swblg.dll     10.0.5.134     10.0.5.135     Crystal Reports
    crdb_query.dll     10.0.5.689     10.0.5.693     Crystal Reports
    crdb_query_res_en.dll     10.0.5.689     10.0.5.693     Crystal Reports
    CRDesignerCtrl.DLL     10.0.5.819     10.0.5.1016     Crystal Reports
    crdesignerctrl_res_en.dll     10.0.5.819     10.0.5.1016     Crystal Reports
    crqe.dll     10.0.5.877     10.0.5.882     Crystal Reports
    crqe_res_en.dll     10.0.5.877     10.0.5.882     Crystal Reports
    crtslv.dll     10.0.5.587     10.0.5.1017     TSLV Reader
    crviewer.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    crxf_html.dll     10.0.5.72     10.0.5.75     Crystal Reports
    crxf_html_res_en.dll     10.0.5.72     10.0.5.75     Crystal Reports
    crxf_pdf.dll     10.0.5.598     10.0.5.604     Portable Document Format DLL for Crystal Reports
    crxf_pdf_res_en.dll     10.0.5.598     10.0.5.604     Portable Document Format DLL for Crystal Reports
    crxf_rtf.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_rtf_res_en.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_wordw.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_wordw_res_en.dll     10.0.5.603     10.0.5.604     Rich Text and MSWord Format DLL for Crystal Reports
    crxf_xls.dll     10.0.5.737     10.0.5.755     Crystal Reports
    crxf_xls_res_en.dll     10.0.5.737     10.0.5.754     Crystal Reports
    Emfgen.dll     10.0.5.587     10.0.5.1017     Crystal Reports
    exlate32.dll     10.0.5.587     10.0.5.1017     Crystal Reports For Windows
    ExportModeller.dll     10.0.5.580     10.0.5.581     ExportModeller Module
    filedialog.dll     10.0.5.587     10.0.5.1017     Report Application Server
    filedialog_res_chs.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_de.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_en.dll     10.0.5.587     10.0.5.1017     Report Application Server
    filedialog_res_es.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_fr.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_it.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_jp.dll     10.0.5.587     10.0.5.1016     Report Application Server
    filedialog_res_ko.dll     10.0.5.587     10.0.5.1016     Report Application Server
    keycode.dll     10.0.5.417     10.0.5.847     Crystal Decisions keycode Module
    p2bbtrv.dll     10.0.5.16     10.0.5.24     Crystal Reports
    p3dbeen.dll     10.0.5.115     10.0.5.116     Crystal Reports
    p3dbten.dll     10.0.5.16     10.0.5.23     Crystal Reports
    p3dxben.dll     10.0.5.113     10.0.5.114     Crystal Reports
    p3sacen.dll     10.0.5.128     10.0.5.129     Crystal Reports
    p3sd2en.dll     10.0.5.196     10.0.5.197     Crystal Reports
    p3seven.dll     10.0.5.129     10.0.5.130     Crystal Reports
    p3sisen.dll     10.0.5.137     10.0.5.139     Crystal Reports
    p3smpen.dll     10.0.5.133     10.0.5.134     Crystal Reports
    p3srpen.dll     10.0.5.130     10.0.5.131     Crystal Reports
    p3ssten.dll     10.0.5.176     10.0.5.179     Crystal Reports
    p3stken.dll     10.0.5.130     10.0.5.131     Crystal Reports
    p3swlen.dll     10.0.5.134     10.0.5.135     Crystal Reports
    p3sxsen.dll     10.0.5.130     10.0.5.131     Crystal Reports
    pageObjectModel.dll     10.0.5.855     10.0.5.1509     PageObjectModel Module
    querybuilder.dll     10.0.5.625     10.0.5.630     Crystal Reports
    querybuilder_res_en.dll     10.0.5.625     10.0.5.630     Crystal Reports
    r3exlen.dll     10.0.5.587     10.0.5.1017     Crystal Reports For Windows
    ReportRenderer.dll     10.0.5.855     10.0.5.1509     ReportRenderer Module
    RptControllers.dll     10.0.5.798     10.0.5.1031     Report Application Server
    rptcontrollers_res_en.dll     10.0.5.798     10.0.5.1031     Report Application Server
    rptdefmodel.dll     10.0.5.587     10.0.5.1016     Report Application Server
    rptdefmodel_res_en.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols.dll     10.0.5.696     10.0.5.1251     Report Application Server
    sacommoncontrols_res_chs.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_de.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_es.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_fr.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_it.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_jp.dll     10.0.5.587     10.0.5.1016     Report Application Server
    sacommoncontrols_res_ko.dll     10.0.5.587     10.0.5.1016     Report Application Server
    saxmlserialize.dll     10.0.5.587     10.0.5.1017     Report Application Server
    saxmlserialize_res_en.dll     10.0.5.587     10.0.5.1017     Report Application Server
    sscdlg.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_chs.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_de.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_en.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_es.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_fr.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_it.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_jp.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscdlg_res_ko.dll     10, 0, 0, 6     10, 0, 0, 7     Amigo Dialogs DLL
    sscsdk80.dll     10, 0, 0, 8     10, 0, 0, 16     Charting Engine DLL
    sscsdk80_res_chs.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_de.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_en.dll     10, 0, 0, 8     10, 0, 0, 16     Charting Engine DLL
    sscsdk80_res_es.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_fr.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_it.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_jp.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sscsdk80_res_ko.dll     10, 0, 0, 7     10, 0, 0, 12     Charting Engine DLL
    sviewhlp.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    swebrs.dll     10.0.5.822     10.0.5.1155     Crystal Reports
    u2dapp.dll     10.0.5.548     10.0.5.550     Crystal Reports
    u2ddisk.dll     10.0.5.554     10.0.5.556     Crystal Reports
    u2dmapi.dll     10.0.5.549     10.0.5.550     Crystal Reports
    u2dpost.dll     10.0.5.560     10.0.5.562     Crystal Reports
    u2dvim.dll     10.0.5.20     10.0.5.21     Crystal Reports
    u2fcompress.dll     10.0.5.537     10.0.5.539     Crystal Reports
    u2fcr.dll     10.0.5.552     10.0.5.554     Crystal Reports
    u2fodbc.dll     10.0.5.556     10.0.5.558     Crystal Reports
    u2frdef.dll     10.0.5.23     10.0.5.25     Crystal Reports
    u2frec.dll     10.0.5.545     10.0.5.547     Crystal Reports
    u2fsepv.dll     10.0.5.59     10.0.5.62     Crystal Reports
    u2ftext.dll     10.0.5.591     10.0.5.604     Crystal Reports
    u2fxml.dll     10.0.5.582     10.0.5.584     Crystal Reports
    ufmanager.dll     10.0.5.30     10.0.5.32     Crystal Reports Professional For Windows
    UndoManager.dll     10.0.5.587     10.0.5.1017     Report Application Server
    vle.dll     10.0.5.587     10.0.5.904     VLE Module
    vle_res_en.dll     10.0.5.587     10.0.5.904     VLE Module
    webReporting.dll     10.0.5.855     10.0.5.1509     WebReporting Module
    x3dapen.dll     10.0.5.548     10.0.5.550     Crystal Reports
    x3ddken.dll     10.0.5.554     10.0.5.556     Crystal Reports
    x3dmpen.dll     10.0.5.549     10.0.5.550     Crystal Reports
    x3dpten.dll     10.0.5.560     10.0.5.562     Crystal Reports
    x3dvmen.dll     10.0.5.20     10.0.5.21     Crystal Reports
    x3fcpen.dll     10.0.5.537     10.0.5.539     Crystal Reports
    x3fcren.dll     10.0.5.552     10.0.5.554     Crystal Reports
    x3foden.dll     10.0.5.556     10.0.5.558     Crystal Reports
    x3frcen.dll     10.0.5.545     10.0.5.547     Crystal Reports
    x3frden.dll     10.0.5.23     10.0.5.25     Crystal Reports
    x3fsven.dll     10.0.5.59     10.0.5.61     Crystal Reports
    x3ftxen.dll     10.0.5.591     10.0.5.603     Crystal Reports
    x3fxmen.dll     10.0.5.582     10.0.5.584     Crystal Reports
    Thanks in advance for any pointers on where to get this info!
    Tim
    Edited by: Tim Hopkins on Sep 27, 2010 5:34 PM

    This is in the order of Filename, then the previous version number, then the build number that's now been included, then the product name.<br><br>commonobjmodel.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    craxddrt.dll     <br>     10.0.5.860     <br>     10.0.5.1506     <br>     Crystal Reports     <br><br>
    craxddrt_res_en.dll     <br>     10.0.5.860     <br>     10.0.5.1450     <br>     Crystal Reports     <br><br>
    craxdrt.dll     <br>     10.0.5.839     <br>     10.0.5.1519     <br>     Crystal Reports     <br><br>
    craxdrt_res_en.dll     <br>     10.0.5.839     <br>     10.0.5.1450     <br>     Crystal Reports     <br><br>
    crdb_ado.dll     <br>     10.0.5.655     <br>     10.0.5.668     <br>     Crystal Reports     <br><br>
    crdb_adoplus.dll     <br>     10.0.5.418     <br>     10.0.5.1210     <br>     Crystal Reports     <br><br>
    crdb_adoplus_res_en.dll     <br>     10.0.5.418     <br>     10.0.5.1210     <br>     Crystal Reports     <br><br>
    crdb_ado_res_en.dll     <br>     10.0.5.655     <br>     10.0.5.663     <br>     Crystal Reports     <br><br>
    crdb_cdo.dll     <br>     10.0.5.573     <br>     10.0.5.578     <br>     Crystal Reports     <br><br>
    crdb_cdo_res_en.dll     <br>     10.0.5.573     <br>     10.0.5.578     <br>     Crystal Reports     <br><br>
    crdb_com.dll     <br>     10.0.5.137     <br>     10.0.5.143     <br>     Crystal Reports     <br><br>
    crdb_com_res_en.dll     <br>     10.0.5.137     <br>     10.0.5.143     <br>     Crystal Reports     <br><br>
    crdb_dao.dll     <br>     10.0.5.606     <br>     10.0.5.611     <br>     Crystal Reports     <br><br>
    crdb_dao_res_en.dll     <br>     10.0.5.606     <br>     10.0.5.611     <br>     Crystal Reports     <br><br>
    crdb_dataset.dll     <br>     10.0.5.148     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_dataset_res_en.dll     <br>     10.0.5.148     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_fielddef.dll     <br>     10.0.5.568     <br>     10.0.5.574     <br>     Crystal Reports     <br><br>
    crdb_fielddef_res_en.dll     <br>     10.0.5.568     <br>     10.0.5.574     <br>     Crystal Reports     <br><br>
    crdb_filesystem.dll     <br>     10.0.5.563     <br>     10.0.5.567     <br>     Crystal Reports     <br><br>
    crdb_filesystem_res_en.dll     <br>     10.0.5.563     <br>     10.0.5.567     <br>     Crystal Reports     <br><br>
    crdb_JavaBeans.dll     <br>     10.0.5.145     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_JavaBeans_res_en.dll     <br>     10.0.5.145     <br>     10.0.5.152     <br>     Crystal Reports     <br><br>
    crdb_odbc.dll     <br>     10.0.5.751     <br>     10.0.5.768     <br>     Crystal Reports     <br><br>
    crdb_odbc_res_en.dll     <br>     10.0.5.751     <br>     10.0.5.768     <br>     Crystal Reports     <br><br>
    crdb_oracle.dll     <br>     10.0.5.249     <br>     10.0.5.257     <br>     Crystal Reports     <br><br>
    crdb_oracle_res_en.dll     <br>     10.0.5.249     <br>     10.0.5.257     <br>     Crystal Reports     <br><br>
    crdb_p2bact3.dll     <br>     10.0.5.199     <br>     10.0.5.196     <br>     Crystal Reports     <br><br>
    crdb_p2bbde.dll     <br>     10.0.5.115     <br>     10.0.5.116     <br>     Crystal Reports     <br><br>
    crdb_p2bbtrv.dll     <br>     10.0.5.200     <br>     10.0.5.210     <br>     Crystal Reports     <br><br>
    crdb_p2bxbse.dll     <br>     10.0.5.113     <br>     10.0.5.114     <br>     Crystal Reports     <br><br>
    crdb_p2sacl.dll     <br>     10.0.5.128     <br>     10.0.5.129     <br>     Crystal Reports     <br><br>
    crdb_p2sdb2.dll     <br>     10.0.5.196     <br>     10.0.5.197     <br>     Crystal Reports     <br><br>
    crdb_p2sevta.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    crdb_p2sevtc.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    crdb_p2sexsrm.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2sexsrp.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2smapi.dll     <br>     10.0.5.133     <br>     10.0.5.134     <br>     Crystal Reports     <br><br>
    crdb_p2smsiis.dll     <br>     10.0.5.137     <br>     10.0.5.139     <br>     Crystal Reports     <br><br>
    crdb_p2soutlk.dll     <br>     10.0.5.222     <br>     10.0.5.225     <br>     Crystal Reports     <br><br>
    crdb_p2srepl.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2ssyb10.dll     <br>     10.0.5.176     <br>     10.0.5.179     <br>     Crystal Reports     <br><br>
    crdb_p2strack.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    crdb_p2swblg.dll     <br>     10.0.5.134     <br>     10.0.5.135     <br>     Crystal Reports     <br><br>
    crdb_query.dll     <br>     10.0.5.689     <br>     10.0.5.693     <br>     Crystal Reports     <br><br>
    crdb_query_res_en.dll     <br>     10.0.5.689     <br>     10.0.5.693     <br>     Crystal Reports     <br><br>
    CRDesignerCtrl.DLL     <br>     10.0.5.819     <br>     10.0.5.1016     <br>     Crystal Reports     <br><br>
    crdesignerctrl_res_en.dll     <br>     10.0.5.819     <br>     10.0.5.1016     <br>     Crystal Reports     <br><br>
    crqe.dll     <br>     10.0.5.877     <br>     10.0.5.882     <br>     Crystal Reports     <br><br>
    crqe_res_en.dll     <br>     10.0.5.877     <br>     10.0.5.882     <br>     Crystal Reports     <br><br>
    crtslv.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     TSLV Reader     <br><br>
    crviewer.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    crxf_html.dll     <br>     10.0.5.72     <br>     10.0.5.75     <br>     Crystal Reports     <br><br>
    crxf_html_res_en.dll     <br>     10.0.5.72     <br>     10.0.5.75     <br>     Crystal Reports     <br><br>
    crxf_pdf.dll     <br>     10.0.5.598     <br>     10.0.5.604     <br>     Portable Document Format DLL for Crystal Reports     <br><br>
    crxf_pdf_res_en.dll     <br>     10.0.5.598     <br>     10.0.5.604     <br>     Portable Document Format DLL for Crystal Reports     <br><br>
    crxf_rtf.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_rtf_res_en.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_wordw.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_wordw_res_en.dll     <br>     10.0.5.603     <br>     10.0.5.604     <br>     Rich Text and MSWord Format DLL for Crystal Reports     <br><br>
    crxf_xls.dll     <br>     10.0.5.737     <br>     10.0.5.755     <br>     Crystal Reports     <br><br>
    crxf_xls_res_en.dll     <br>     10.0.5.737     <br>     10.0.5.754     <br>     Crystal Reports     <br><br>
    Emfgen.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports     <br><br>
    exlate32.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports For Windows     <br><br>
    ExportModeller.dll     <br>     10.0.5.580     <br>     10.0.5.581     <br>     ExportModeller Module     <br><br>
    filedialog.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    filedialog_res_chs.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_de.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    filedialog_res_es.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_fr.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_it.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_jp.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    filedialog_res_ko.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    keycode.dll     <br>     10.0.5.417     <br>     10.0.5.847     <br>     Crystal Decisions keycode Module     <br><br>
    p2bbtrv.dll     <br>     10.0.5.16     <br>     10.0.5.24     <br>     Crystal Reports     <br><br>
    p3dbeen.dll     <br>     10.0.5.115     <br>     10.0.5.116     <br>     Crystal Reports     <br><br>
    p3dbten.dll     <br>     10.0.5.16     <br>     10.0.5.23     <br>     Crystal Reports     <br><br>
    p3dxben.dll     <br>     10.0.5.113     <br>     10.0.5.114     <br>     Crystal Reports     <br><br>
    p3sacen.dll     <br>     10.0.5.128     <br>     10.0.5.129     <br>     Crystal Reports     <br><br>
    p3sd2en.dll     <br>     10.0.5.196     <br>     10.0.5.197     <br>     Crystal Reports     <br><br>
    p3seven.dll     <br>     10.0.5.129     <br>     10.0.5.130     <br>     Crystal Reports     <br><br>
    p3sisen.dll     <br>     10.0.5.137     <br>     10.0.5.139     <br>     Crystal Reports     <br><br>
    p3smpen.dll     <br>     10.0.5.133     <br>     10.0.5.134     <br>     Crystal Reports     <br><br>
    p3srpen.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    p3ssten.dll     <br>     10.0.5.176     <br>     10.0.5.179     <br>     Crystal Reports     <br><br>
    p3stken.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    p3swlen.dll     <br>     10.0.5.134     <br>     10.0.5.135     <br>     Crystal Reports     <br><br>
    p3sxsen.dll     <br>     10.0.5.130     <br>     10.0.5.131     <br>     Crystal Reports     <br><br>
    pageObjectModel.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     PageObjectModel Module     <br><br>
    querybuilder.dll     <br>     10.0.5.625     <br>     10.0.5.630     <br>     Crystal Reports     <br><br>
    querybuilder_res_en.dll     <br>     10.0.5.625     <br>     10.0.5.630     <br>     Crystal Reports     <br><br>
    r3exlen.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Crystal Reports For Windows     <br><br>
    ReportRenderer.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     ReportRenderer Module     <br><br>
    RptControllers.dll     <br>     10.0.5.798     <br>     10.0.5.1031     <br>     Report Application Server     <br><br>
    rptcontrollers_res_en.dll     <br>     10.0.5.798     <br>     10.0.5.1031     <br>     Report Application Server     <br><br>
    rptdefmodel.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    rptdefmodel_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols.dll     <br>     10.0.5.696     <br>     10.0.5.1251     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_chs.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_de.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_es.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_fr.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_it.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_jp.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    sacommoncontrols_res_ko.dll     <br>     10.0.5.587     <br>     10.0.5.1016     <br>     Report Application Server     <br><br>
    saxmlserialize.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    saxmlserialize_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    sscdlg.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_chs.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_de.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_en.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_es.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_fr.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_it.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_jp.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscdlg_res_ko.dll     <br>     10, 0, 0, 6     <br>     10, 0, 0, 7     <br>     Amigo Dialogs DLL     <br><br>
    sscsdk80.dll     <br>     10, 0, 0, 8     <br>     10, 0, 0, 16     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_chs.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_de.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_en.dll     <br>     10, 0, 0, 8     <br>     10, 0, 0, 16     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_es.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_fr.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_it.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_jp.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sscsdk80_res_ko.dll     <br>     10, 0, 0, 7     <br>     10, 0, 0, 12     <br>     Charting Engine DLL     <br><br>
    sviewhlp.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    swebrs.dll     <br>     10.0.5.822     <br>     10.0.5.1155     <br>     Crystal Reports     <br><br>
    u2dapp.dll     <br>     10.0.5.548     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    u2ddisk.dll     <br>     10.0.5.554     <br>     10.0.5.556     <br>     Crystal Reports     <br><br>
    u2dmapi.dll     <br>     10.0.5.549     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    u2dpost.dll     <br>     10.0.5.560     <br>     10.0.5.562     <br>     Crystal Reports     <br><br>
    u2dvim.dll     <br>     10.0.5.20     <br>     10.0.5.21     <br>     Crystal Reports     <br><br>
    u2fcompress.dll     <br>     10.0.5.537     <br>     10.0.5.539     <br>     Crystal Reports     <br><br>
    u2fcr.dll     <br>     10.0.5.552     <br>     10.0.5.554     <br>     Crystal Reports     <br><br>
    u2fodbc.dll     <br>     10.0.5.556     <br>     10.0.5.558     <br>     Crystal Reports     <br><br>
    u2frdef.dll     <br>     10.0.5.23     <br>     10.0.5.25     <br>     Crystal Reports     <br><br>
    u2frec.dll     <br>     10.0.5.545     <br>     10.0.5.547     <br>     Crystal Reports     <br><br>
    u2fsepv.dll     <br>     10.0.5.59     <br>     10.0.5.62     <br>     Crystal Reports     <br><br>
    u2ftext.dll     <br>     10.0.5.591     <br>     10.0.5.604     <br>     Crystal Reports     <br><br>
    u2fxml.dll     <br>     10.0.5.582     <br>     10.0.5.584     <br>     Crystal Reports     <br><br>
    ufmanager.dll     <br>     10.0.5.30     <br>     10.0.5.32     <br>     Crystal Reports Professional For Windows     <br><br>
    UndoManager.dll     <br>     10.0.5.587     <br>     10.0.5.1017     <br>     Report Application Server     <br><br>
    vle.dll     <br>     10.0.5.587     <br>     10.0.5.904     <br>     VLE Module     <br><br>
    vle_res_en.dll     <br>     10.0.5.587     <br>     10.0.5.904     <br>     VLE Module     <br><br>
    webReporting.dll     <br>     10.0.5.855     <br>     10.0.5.1509     <br>     WebReporting Module     <br><br>
    x3dapen.dll     <br>     10.0.5.548     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    x3ddken.dll     <br>     10.0.5.554     <br>     10.0.5.556     <br>     Crystal Reports     <br><br>
    x3dmpen.dll     <br>     10.0.5.549     <br>     10.0.5.550     <br>     Crystal Reports     <br><br>
    x3dpten.dll     <br>     10.0.5.560     <br>     10.0.5.562     <br>     Crystal Reports     <br><br>
    x3dvmen.dll     <br>     10.0.5.20     <br>     10.0.5.21     <br>     Crystal Reports     <br><br>
    x3fcpen.dll     <br>     10.0.5.537     <br>     10.0.5.539     <br>     Crystal Reports     <br><br>
    x3fcren.dll     <br>     10.0.5.552     <br>     10.0.5.554     <br>     Crystal Reports     <br><br>
    x3foden.dll     <br>     10.0.5.556     <br>     10.0.5.558     <br>     Crystal Reports     <br><br>
    x3frcen.dll     <br>     10.0.5.545     <br>     10.0.5.547     <br>     Crystal Reports     <br><br>
    x3frden.dll     <br>     10.0.5.23     <br>     10.0.5.25     <br>     Crystal Reports     <br><br>
    x3fsven.dll     <br>     10.0.5.59     <br>     10.0.5.61     <br>     Crystal Reports     <br><br>
    x3ftxen.dll     <br>     10.0.5.591     <br>     10.0.5.603     <br>     Crystal Reports     <br><br>
    x3fxmen.dll     <br>     10.0.5.582     <br>     10.0.5.584     <br>     Crystal Reports     <br><br>

  • To find out the min and max memory been used by each parameter under SGA_MA

    Hi,
    Can any please tell me how to find out the min and max memory been used by each parameter under SGA_MAX and SGA_TARGET ? below is the db CRMS65T. If any such script is there please provide me
    SQL> select name from v$database;
    NAME
    CRMS65T
    SQL> show parameter sga
    NAME                                 TYPE        VALUE
    lock_sga                             boolean     FALSE
    pre_page_sga                         boolean     FALSE
    sga_max_size                         big integer 1000M
    sga_target                           big integer 1000MThanks in advance

    Can any please tell me how to find out the min and max memory been used by each parameter under SGA_MAX and SGA_TARGET ? below is the db CRMS65T. If any such script is there please provide meI guess your question is, each memory components of SGA? if so
    SQL> select * from v$sgainfo;
    NAME                                  BYTES RES
    Fixed SGA Size                      2088504 No
    Redo Buffers                       18882560 No
    Buffer Cache Size                 616562688 Yes
    Shared Pool Size                  301989888 Yes
    Large Pool Size                     4194304 Yes
    Java Pool Size                      4194304 Yes
    Streams Pool Size                         0 Yes
    Granule Size                        4194304 No
    Maximum SGA Size                  947912704 No
    Startup overhead in Shared Pool   125829120 No
    Free SGA Memory Available                 0Also check
    SQL> select COMPONENT,CURRENT_SIZE,MIN_SIZE,MAX_SIZE,USER_SPECIFIED_SIZE from v$sga_dynamic_components;
    shared pool                                                         301989888  301989888          0           209715200
    large pool                                                            4194304    4194304          0             4194304
    java pool                                                             4194304    4194304          0             4194304
    streams pool                                                                0          0          0                   0
    DEFAULT buffer cache                                                616562688  616562688          0           603979776
    KEEP buffer cache                                                           0          0          0                   0
    RECYCLE buffer cache                                                        0          0          0                   0
    DEFAULT 2K buffer cache                                                     0          0          0                   0
    DEFAULT 4K buffer cache                                                     0          0          0                   0
    DEFAULT 8K buffer cache                                                     0          0          0                   0
    DEFAULT 16K buffer cache                                                    0          0          0                   0
    DEFAULT 32K buffer cache                                                    0          0          0                   0
    ASM Buffer Cache                                                            0          0          0           603979776
    13 rows selected.
    SQL>Edited by: CKPT on Sep 19, 2011 8:55 AM

  • Plant and Storage Location determination at Item level during Copy control

    Hello Freinds,
    We are experiencing issues within Sales Order creation when the line item is referencing a contract. The plant and storage location is being determined from the contract - this should not be done, we have an enhancement in place for sales order plant/storage location determination which is how these values should be determined.
    Kindly suggest, if it can be achieved through configuration setting at Copy control level, to avoid the Plant and Storage location determination from Contract in to Sales Order.
    Thanks,
    Anup Bansal

    Hello
    You can mention the additional logic of redetermining Plant and storage location whenever copied from contract.
    In a sale order, i think you are maintaining a enhancement in prog MV45AFZB & user exit userexit_source_determination.
    YOu can maintain the coding at same place.
    thank you
    Anirudh

  • Plants and storage locations..!!

    dear all,
    i have created one plant 2001 with storage location 1002 1001 respectivley. now i want to add more plants and storage locatons to that same company code..how to do.? can anyone tell me the step by step process.
    regards
    shaik.

    Dear,
    You can create more plants by the same way I have created plant  2001.
    - Tcode SPRO (IMG Customizing)
    > Enterprise Structure
    >> Definition
    >>> Plant Maintenance
    >>>> Maintain maintenance planning plant
    And the storage locations:
    - Tcode SPRO (IMG Customizing)
    > Enterprise Structure
    >> Definition
    >>> Materials Management
    >>>> Maintain storage location
    Best regards,
    Eduardo Junior

  • Search shopping cart by plant and storage location?

    Hi,
    is there any standard report or anyway to search the shopping cart based on the plant and storage location..
    please let me know..
    thanks

    Hi ,
    Not directly as Yann says.
    But indirectly
    from SRM org structure -> ex attribute -> location
    go to yr desired plant
    get all the employees assigned to this plant
    In admin log in -> monitor shopping carts
    use these employees as requestors
    and search
    let us know if it suits your need
    BR
    Dinesh

Maybe you are looking for

  • Cancelled sales order

    Hi, Through which table and field , we can know that a sales order is cancelled? I need to give this information to technical consultant for making the report.So that cancelled sales order wont be displayed in the report. regards, sathya

  • File structure and Multi-user access/control

    Hi All Currently evaluating RH. Our plan is to use RH HTML with RoboServer and either SourceSafe or Team Foundation for source control. We will be producing the "printed" manual (PDF) and publishing online help (hopefully html via RH server) from the

  • MacBook Display Cleaning

    Hello, I recently purchased the iKlear Travel Wipes Kit to use in cleaning my screen. I followed the instructions exactly and did result in screen smearing which (after researching on these forums), was resolved by vigorously buffering the screen wit

  • Create DVD backup

    It it possible to create a boot disk on CDROM, but this limits the size to 650 MB (roughly). Is it possible to make a boot disk in DVD format, and if so, can it be done by burning all the relevant files on a Win 2k DVD burner? Our rep is suggesting a

  • NullPointerException in HttpsClient

    I'm trying to get the content from a url using the https protocol, but when I run my program I get the following exception: java.lang.NullPointerException      at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA6275)      at com.sun.n