How to Activate Warehouse Management Module in IDES

Can any body tell me how to activate warehouse management module in IDES?If i activate some body told me that i will get problem with post goods issue.Is that true?WHy?
RamaChandra

in the IDES if we activate ware house while PGI for picking TO has to be created , so thats why in IDES ware house is not activated but if u wnat to activate it maintain ll the config settings of thye ware house concepts then it definately works.

Similar Messages

  • How to activate a function module programatically?

    How to activate a function module programatically?

    Hi,
    You can try the following function module:
    RS_FUNCTION_ACTIVATE
    Thanks and regards,
    S. Chandra Mouli.

  • How to know Warehouse Management is active or not in the system ?

    Hi Guys,
    How to know Warehouse Management is active in the system ?
    I have found Table TCURM and Field LVS_CUS to know WM is active or not. If thsi field LVS_CUS is 1 means WM is active and other than 1 means WM is not active. I have tried to run scenarios in WM by making this field is in active but all scenarios are running properly.
    So, what is the use of this and how to control this ?
    Give your valuable answers for this.

    Hello Narsimha..
    Just go to Transaction:EC01
    Go to Structure ,then Navigation,
    select your Co.Cd(eg:1000) ,open it by double clicking it..
    drill down to you plant and storage location,
    check wether Warehouse is assigned.
    If assigned WH is active ,if not not active..
    Hope this helps
    Arshad

  • How to install Tranportation Management module in SCM

    Hi Our SCM system has these components - SCEMSRV 700 0009 SCM 700 0009 SCMBPLUS 700 0006 SCMEWM 700 0009 SCMSNC 700 0009 SCM_BASIS 700 0009 One user wants to implement Transportation Management module (SAP TM) can any1 guide me through the steps of pre-installations and installations for these and if something needs to be check for installing it WR

    in the IDES if we activate ware house while PGI for picking TO has to be created , so thats why in IDES ware house is not activated but if u wnat to activate it maintain ll the config settings of thye ware house concepts then it definately works.

  • How to activate funds management

    Dear all,
    I have configured FM module, however, I can not activate it due to this screen is grey, the menu path is :'IMG-Public Sector Management-Funds Management Government-Actual and Commitment Update/Integration-Activate/Deactivate Funds Management'.
    In addition, I use BCS for the budget control, version is ECC600. would anyone help me?
    Thanks.
    Ben

    Hi,
    I am facing the same issue as well.
    I've checked the component activation and found that
    1) ES-PS is activated under SPRO
    2) IS-PS is checked under BF11, but the checkbox status is greyed, so that it's impossible to change it.
    I've tried to delete the IS-PS entry and re-insert it...the action was successful but the issue remained...
    Any clues?
    Thanks

  • Block menu complementary management module menu

    how to block complementary module menu management in firefox 3.6 and 4 ?

    Hi Asad,
    You can activate funds management using the path
    You activate Funds Management in the IMG of Funds Management Government, under Actual and Commitment Update/Integration → Activate/Deactivate Funds Management.
    Refer below SAP help for more details
    https://help.sap.com/saphelp_erp60_sp/helpdata/en/f0/ca3f1c260211d28a430000e829fbbd/content.htm
    How to activate Funds Management? - Public Sector - SCN Wiki
    Hope this helps.
    Regards,
    Deepak Kori

  • Master data for warehouse management

    Hi experts what are the master data for the warehouse
    management module.............

    Hi
    Sending you all the table for the warehouse mangement.
    Inventory document
    IKPF Header: Physical Inventory Document
    ISEG Physical Inventory Document Items
    LINK Inventory document header in WM
    LINP Inventory document item in WM
    LINV Inventory data per quant
    Storage locations and stocks
    LAGP Storage bins
    LEIN Storage unit header records
    LQUA Quants
    LQUAB Total quant counts for certain strategies
    MEIK Make-to-Order Stock for Customer Order
    MSCA Sales Orders on Hand with Vendor
    MSKA Sales Order Stock
    MBPR Stock at Production Storage Bin
    MLGN Material Data per Warehouse Number
    MLGT Material Data per Storage Type
    Rewards if useful.
    with regards
    Nikunj Shah

  • Activate/implement function module

    Hi,
    How to activate/implement function module?
    Thx.
    Anirudh,

    hi,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    Function Modules are Global ABAP programs created by SAP for reusable purpose. They have IMPORT, EXPORT and TABLE parameters, and EXCEPTIONS to through when error occurs.
    You can create them from TCode SE37.
    Go through the following doc:
    Function modules are cross-program, reusable procedures that are organized into function groups, and whose functions are implemented between the statements FUNCTION and ENDFUNCTION. Function modules and their interfaces are created in the Function Builder.
    Function Module Interfaces
    The parameter interface of a function module is defined in the Function Builder. It includes the definition of interface parameters and the specification of exceptions that can be triggered by a function module. The Function Builder automatically generates comment lines below the FUNCTION statement in the source code of the function module, which represent the interface of the function module with the following syntax:
    Syntax
    ... [IMPORTING parameters]
    [EXPORTING parameters]
    [CHANGING parameters]
    [TABLES table_parameters]
    [{RAISING|EXCEPTIONS} exc1 exc2 ...]
    The syntax and semantics of IMPORTING, EXPORTING, CHANGING, RAISING, and EXCEPTIONS mainly correspond to the definition of method interfaces with [CLASS-]METHODS. The additional option of defining table parameters using TABLES is obsolete.
    Interface parameters
    The interface parameters are defined on the relevant tab pages in the Function Builder.
    IMPORTING parameters are input parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input parameter. The content of the actual parameter is passed to the input parameter when the call is made. The content of an input parameter for which 'pass by reference' is defined cannot be changed in the function module.
    EXPORTING parameters are output parameters. When the function module is called, a suitable actual parameter can be specified for every output parameter. The content of an output parameter that is defined for 'pass by value' is transferred to the actual parameter if the function module is completed without errors. An output parameter that is defined for pass by reference is not initialized when the function module is called.
    CHANGING parameters are input and output parameters. When the function module is called, a suitable actual parameter must be specified for every non-optional input or output parameter. When the function module is called, the content of the actual parameter is passed to the input/output parameter, and when the function module is completed, the content of the input/output parameter is passed to the actual parameter.
    TABLES parameters are table parameters. Table parameters are obsolete CHANGING parameters that are typed as standard tables with a header line. If an internal table without a header line or a table body is passed as an actual parameter to a formal parameter of this type, an empty local header line is generated in the function module. If an internal table with a header line is used as an actual parameter, both the table body and the header line are passed to the function module. Pass by value is not possible in formal parameters defined using TABLES. Formal parameters defined with TABLES can be replaced by formal parameters defined with CHANGING. A local work area can be created for the internal table in the function module by using the addition LIKE LINE OF itab of the DATA statement.
    Exceptions
    The exceptions of a function module are defined on the Exceptions tab page in the Function Builder. Here you can select exception classes to define whether class-based exceptions are declared or non-class-based exception is defined. Class-based exceptions are represented in the above syntax by RAISING, and non-class-based exceptions are represented by EXCEPTIONS.
    CALLING A FUNCTION MODULE:
    1)In U ABAP Editor --> Click "Patter" ---> Selection Option Button "Call Function"
    --> Write the Corresponding FM name --> Hit Enter
    2)The appropriate import ,export Parameters will be displayed in ur editor
    3)Pass the Values Here.
    Check this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ef/d94b78ebf811d295b100a0c94260a5/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/43/41341147041806e10000000a1553f6/frameset.htm
    regards,
    rewards point.

  • Deactivate Warehouse Managment for Plant

    Dear All,
    Please only provide me setting for how to deactivate Warehouse Managment for a Particular Plant
    Regards
    Amey

    Remove the assignment at this node
    go to SPRO > Enterprise structure > Assignment > Logistic Execution > Assign Warehouse to plant / storage location
    Make stock to Zero before make this change

  • Apply Solution Manager to existing IDES ECC 6 server

    Hi There,
    Can anyone teach me how to apply Solution manager to existing IDES ECC 6 server. Exactly to say, i dont know how to start this installation.
    Any responses will be awarded!
    Thanks a lot!
    Samson

    Hi,
    SAP does not support any Add-On installation on IDES system, neither update, neither additional component.
    Solution Manager should be installed as separate system, based on specific installation kit. You can contact your account manager in order to obtain it. SolMan if free of fee product.
    Kind regards,
    Sam

  • How to install / activate 'Yard Management' and BC sets

    Hi everyone
    I've been asked to look into how to install/activate
    'Yard Management' for business warehouse. From what I've found so far online/in SDN forums, it looks like you need to activate it under Logistics Execution in SPRO. But it's not there... so looks like I need to install the necessary 'BC sets' ??
    I've found a spreadsheet for 'W70 Yard management' with some
    technical names for these BC sets, like
    /SMB30/LYYRD_V_B031_D70, /SMB30/T30B_V_B032_D70 etc.
    Any idea what these are / whether and where you can get them
    (downloadable from SAP??) what transaction you use etc???
    Thanks!
    Ross (Basis guy)
    Edited by: Ross Armstrong on Jun 18, 2008 9:13 AM
    It seems we need this on a 4.7 SAP system, whereas this other docs/installing via Best Practices seems to be for ECC5 onwards... any ideas anyone?

    You should activate 0ANALYSIS_PATTERN (and all necessary objects).  Use this as starting point for customizing your own template.  Then use SPRO transaction RSCUSTV27 to change fields "Broadcasting" and "Ad Hoc Analysis" to your customized templates.
    Activate and customize 0QUERY_TEMPLATE_BROADCAST_PDF if you need to broadcast PDF's.  There's no place SPRO that I know of where you can configure this to use a custom template.
    You don't need 0QUERY_TEMPLATE_BROADCASTING70.  It's labeled 70 but in fact it's a 3.5 web template.

  • How activate bluetooth manager on Satellite P200-1C7

    I have installed a bluetooth dongle on my Toshiba Satellite P200- 1C7 so I have downloaded bluetooth manager and bluetooth stack.
    Or when I tried to use bluetooth manager it said that it remains 25 days of evaluation.
    So I wanted to know how activate bluetooth manager?
    If it's not possible, someone can tell me what software can I use (bluesoleil doesn't work).
    Thank you very much for your reply.

    Hi
    The Toshiba Bluetooth stack on the Toshiba website is customized and designed for Toshiba notebooks.
    You should use the Bluetooth stack which is customized for your notebook. Then you would not need to activate any BT.
    But listen dude; your Satellite P200- 1C7 seems to be NOT equipped with the Toshiba internal BT module!
    Therefore you would need to switch to another external solution.

  • How to activate IM and WM managed storage location

    Hello MM Sapperu2019s,
    Please let me know if a storage location is related to IM or WM how / which t code  I can  activate the both.
    Cheers,
    Kumar.s

    Hi,
    Go to LI20 - clear differences WM ,LI21 - clear differences IM
    Please go to bellow link
    http://www.sap-img.com/warehouse/physical-inventory-in-sap-wm-and-im.htm
    http://www.sap-img.com/warehouse/important-t-codes-in-sap-warehouse-management.htm
    Thanks,
    Raviteja

  • How to incorporate training and event management module in ess1.0

    Hi all,
    I am implementing ess1.0 on EP6.0, NW7.0, ecc6.0.
    now in ess1.0 i could not find traing and event manag. module, but i found it in ITS version of ess.
    how can i incorporate 'traing and event manag' module in ess1.0??
    do i need to download two version of ess?...i doubt if its feasible!...can anybody guide me on this?
    I am new to portal, and hence trying to learn thing in EP ESS...please throw in your help ASAP
    Regards,
    JJ

    hi all,
    can anybody please throw some light on the above query?
    i m trying to search in forum but i am unable to find any reasonable answer to this.
    Regards,
    JJ

  • Function Modules for Cycle Counting in Warehouse Management.

    Hi All,
    Can anyone provide me with a list of function modules related to Cycle Counting in Warehouse Management? Also, what is the procedure to find these in SE37?
    Many thanks in advance.
    avi

    Hello Avi,
    What is the purpose of this functional module / BAPI? for Inv document creation or change or display or inventory count update or clear difference?
    Complete BAPI list is available in the first thread of this forum.
    Your answer will help us to provide accurate ansdre.
    To to SE37 -> Press F4 -> SAP Applications --> LE --> LE-WM here you will find all LE related FM or BAPI.
    Hope this helps.
    Regards
    Arif Mansuri

Maybe you are looking for

  • How do I add a quote to an individual photo I took?

    how do I add a quote to an individual photo I took? And is there a way to change the background color on the photo. The pics are in my photo gallery taken with my ipad <Re-Titled By Host>

  • Cant find settings for black and white prints using konica minolta bizhub 280 printer

    I am having difficulty finding where to set our network Konica Minolta bizhub C280 printer to print black and white instead of colour from my macbook pro with OSX 10.8.2. I dont want to change the default printer settings, just change individual docu

  • Adding field in ME21N po header

    Hi All, I have added field on ME21N on header level. I used below screen exit SAPMM06E 0101 CUSTSCR1 SAPLXM06 0101 Subscreen: PO header and added fields to structure CI_EKKODB. Field is created on ME21N but table is not updating. can you please let m

  • Tab page is missing

    Hi, I m planing to show the Pharmaceutical tab page on creation of bp role which is avaiable in screens PHA010 (Pharmaceuticals) . In that Pharmaceuticals tab I want to bring Views like PHA101 to PHA301 and all the sections and fields are assigned to

  • HI,How can i set delta option for costumised Generic data source

    Hi Sir/Madam,       How can i set delta option for costumised Generic data source. Regards, Vishali.R Please search the forum before posting a thread Edited by: Pravender on Aug 15, 2011 1:26 PM