Looking to implement QM module

Dear all,
We are currently using ECC5.0 with SD,MM,PP & FICO modules. We are looking to use the QM module in the near future. However not sure if we need to pay separate licence fee to SAP for using QM module. The system allows us to configure QM module to meet our needs but not sure if we are allowed to use it without permission from SAP/ or partner.
Anyone with similar experience please advise
thanks,
Ram

HI,
You dont need to pay seperately for QM module this is the basic fucntion which comes with PP module. Yes you may have to shed out extra money to the configuration vendor.
Thanks
Arun

Similar Messages

  • Best Practices to implement PM module in BI 7

    Hello Guys, how are you.
    I need your help to find the documentation of the Building Blocks to configure PM modelue in BI 7.
    I acces the following pages, but i cannot find where the building blocks for this module are.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/f6/7a0c3c40787431e10000000a114084/frameset.htm
    http://help.sap.com/bp_biv370/html/Bw.htm
    The last link contains the documentation to implement somo modules like SD, MM, PP, FI, and you can access the configuration guide of this modules, but i need to find out the documents for PM (Plant Maintenance) module in order to know the correct steps to initialice the tables in R/3, the extractors to use and the cubes.
    Thanks for your help guys.

    Hi,
    You have a good start.  What you need to do is 1.) Find out what the requirements are -- what does your user want.... if this is a fact finding mission (e.g., they want to see what's in the system) then your requirement becomes load the data in R/3, so figure out what they configured in PM and use those definitions as your requirements.   2.) Use those requirements to find data in the fields listed in the MultiProvider, InfoCubes, or DataStore Objects sections in your first link ... in other words, now that you know what data to look for, look for it in the Data Targets (MP's, Cubes and DSO's).  If you find some of the data you want, then trace back the infosources and determine what datasources in R/3 load the data you are looking for.  After all that, check those datasources for any additional fields you may need and add them in.
    So, if your company doesn't maintain equipment costs or maintenance costs for equipment, then you don't have to worry about 0PM_MP04.  Use this type of logic to whittle down to what your really need and want, then activate those object only.
    Good Luck,
    Brian

  • Implementing SD module in BW

    Hi Experts,
    My requirement is to implement SD module in BW to create Order and Invoice (billing) reports as per my requirements.
    Please let me know the standard steps that I should follow(right from the begining).
    Thanks in Advance.
    Reagrds,
    Amit.

    Hi Amit,
       You need to look at application areas 11,12,13. Please check the following link, it contains everything that you need.
    [http://help.sap.com/saphelp_nw70/helpdata/en/f0/3baf6718d2427a94ced005f298be06/frameset.htm]
    Regards,
    Ansel D'Souza

  • Parallel to serial conversion for implementing FSK modulation on fpga

    I want to implement FSK modulation in LABview FPGA using the arithematic VIs. My bit rate is 625 kbps and sampling rate of the waveforms i utilize is 80 MHz.(for 0 i use 1.25 MHz and for 1 2.5 MHz). I want to take AUDIO input from computer and modulate it and then transmitting it into the air. Modulation has to be done in FPGA Vi. Now i want to convert the sample values coming at particular rate to bits (parallel to serial conversion) representing the samples these bits should come one by one at the rate of 625 kbps to select vi which would select the waveform depending on zero or one on its select port. I want to know how parallel to serial conversion can be done in labview
    KAMRAN ZIA
    UNGERGRADUATE STUDENT (AVIONICS)

    Hi Kamran,
    With respect to the first issue, it should be relatively straightforward to generate the signal you want. In your FPGA code, I would assume that you have a sine wave generator. In the configuration screen, you can elect to show the frequency terminal. you can generate a certain amount of data (whatever you require) and then when the FPGA loops again, generate the next section of waveform based on the bit you want to output.
    a few documents on our website include:
    http://zone.ni.com/devzone/cda/tut/p/id/3253
    http://decibel.ni.com/content/docs/DOC-5412
    http://forums.ni.com/t5/Real-Time-Measurement-and/Simple-FSK-signal-generation/m-p/783361?requireLog...
    With respect to the second issue, there are many many ways to do it. I have attached a very basic example which shows you one such option. It takes a U8 (a single byte) and spits out each of the contained bits at 40 MHz.
    Thanks,
    D Smith
    Attachments:
    parallel to serial FPGA.vi ‏26 KB

  • I'm looking for a Funciont Module that check posting date (VBRK-FKDAT)

    Hi, All
    I'm looking for a Function Module that let me know whether or not a Date (importing paramerter) is allowed for posting in period. (MARV data (including XRUEM (Allow Posting to Previous Period) ))
    If you know that, please let me know.
    Best Regards.
    Rie.

    Hi,
    Check the following FM. :
    MARV_SINGLE_READ
    Thanks & Regards,
    Faheem.

  • Implementing Login Module with MS-AD

    Hi,
    I will implement Login Module of Portal NW 2004s SP7 to integrate with AD from Microsoft.
    Does any one know if is required to install SSL in the MS-AD server? Is it mandatory or just a security necessity?
    Regards,
    Daniel Silva

    Any One have Idea ?

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

  • JDE Source/System Table to store Implemented (Active) Modules

    When customer implement the required modules, other modules can't be accessed. Which JDE table/source contains the list of implemented (active) modules by the customer? Please share your input.
    Edited by: user10485009 on Jun 11, 2009 4:25 AM

    Hi ,
    Check if there is Partner Profile available .
    Check these tables for the entries , 
    EDP 12,
    EDP 13,
    EDPBI
    EDP21

  • Different ways to implement OM Module

    Hi All,
    I am new to this, Please let me know all the 5 different ways to implement OM and PA module in HCM

    Basics of OM
    OM is mainly used to perform numerous business and human resources processes. As the first step an organizational plan is created. The organizational plan is a functional structure representing the enterprise. In OM, the current organizational plan can be created and additional organizational plans are created as archives (this provides a clear picture of the organization at any point in time:past, present or future). Organizational Management is the basis for additional Human Resources components and functions as well as for SAP Business Workflow.
    OM is installed before Personnel Development(PD), Recruitment, Compensation Management (CM/ECM), Workflow, Time Management, Security, ESS/MSS etc. OM structure provides the foundation for these modules and streamlines business processes. For example MSS setup can be such that the manager will be able to view only the details of those working under him/her - the details of persons working under the manager are picked up from OM. Similarly data from OM is used when WF has to route the work of approving the leave of an employee to his/her manager.
    OM is based on the objects and their relationships. Jobs, tasks, positions, etc are the objects. These objects are created in OM. The relationship between various objects is also stored in OM.
    Transaction codes
    PPOM - Change org Unit
    PO03 - Maintain Jobs
    P013 - Maintain Position
    PO10 - Maintain Organizational Unit
    PP01 - Maintain Plan Data (menu-guided)
    PP02 - Maintain Plan Data (Open)
    PP03 - Maintain Plan Data (Event-guided)
    PP05 - Number Ranges
    PP06 - Number Ranges Maintenance HR Data
    PP07 - Tasks/Descriptions
    PP69 - Choose Text for Organizational Unit
    PP90 - Setup Organization
    PP01 - Change Cost Center Assignment
    PP02 - Display Cost Center Assignment
    PP03 - Change Reporting Structure
    PP04 - Display Reporting Structure
    PP05 - Change Object indicators (O/S)
    PP06 - Change Object indicators OS
    PPOA - Display Menu Interface (with dyn.)
    PPOC - Create Organizational Unit
    PPOM - Maintain Organizational Plan
    PPOS - Display Organizational Plan
    PQ01 - Events for Work Center
    PQ02 - Events for Training Program
    PQ03 - Events for Job
    PQ04 - Events for Business Event Type
    PQ06 - Local Events
    PQ07 - Resource Events
    PQ08 - Events for External Person
    PQ09 - Events for Business Event Group
    PQ10 - Events for Organizational Unit
    PQ11 - Events for Qualification
    PQ12 - Resource Type Events
    PQ13 - Events for Position
    PQ14 - Events for Task
    PQ15 - Events for Company
    PSO5 - PD : Administration Tool
    PSOA - Work Center Reporting
    PSOC - Job Reporting
    PSOG - Org Mgmt General Reporting
    PSO1 - Tools Integration PA-PD
    PSOO - Organizational Unit Reporting
    PSOS - Position Reporting
    PSOT - Task Reporting
    Configuration steps apart from steps which were given by Teja
    IMGPersonnel management Organizational management  Basic settings  Maintain number ranges  set up number assignment for all plan versions
    Maintain object type:
    IMGPersonnel management  Organizational management  Basic settings  Data model enhancement  maintain object type
    Maintain infotypes
    IMGPersonnel management Organizational management  Basic settings  Data model enhancementu2014infotype maintenance  maintain infotypes
    Relationaship maintenance:
    IMGPersonnel management Organisational management  Basic settings  Data model enhancement  Relationship maintenance  maintain relationships
    Maintain evaluation paths:
    IMGPersonnel management Organisational management  Basic settings Maintain evaluation paths
    Maintain personnel actions:
    IMGPersonnel management Organisational management  Basic settings Maintain personnel actions
    Activate inheritance of account assignment features
    IMGPersonnel management Organisational management  Basic settings Activate inheritance of account assignment features
    Setup integration with Personnel Administration
    IMGPersonnel management Organisational management  Basic settings Integration  Setup integration with PA
    Transfer data from Pa
    IMGPersonnel management Organisational management  Basic settings integration  transfer data from PA
    Perepare integration with Pa
    MGPersonnel management Organisational management  Basic settings integration Prepare integration with PA
    Transfer data to PA
    IMGPersonnel management Organisational management  Basic settings integration Transfer data to PA
    Check integration consistency
    IMGPersonnel management Organisational management  Basic settings integration Check integration consistency

  • Role of Apps DBA in Implementing New Module

    Hi Friends,
    Supposing a company has a running smooth production system of EBS 11i. With modules
    FINANCIALS(GL,AR,AP,FA,CM) in it. Then the Company want to add another module HR system. Is an Apps DBA needed in the scenario? or only the SysAdmin and Functional
    Consultant only.
    What is the role of an AppsDBA in implementing a new module?
    Thank a lot

    It is the responsibility of both the System Administrator and the Apps DBA. If you need to change the status of HR module to fully installed, then you need to change the status from shared to fully installed (in case it is shared). You will also need to run DataInstall and apply hrglobal.drv driver using adpatch.
    For more details, refer to:
    Note: 374915.1 - HRMS PATCH INSTALL FAQ
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=374915.1
    Note: 175846.1 - How to find the latest version of hrglobal.drv on Metalink
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=175846.1

  • Looking for good sound module/card for AE CS4 and AE CS5.5 Echo Audio not working proper

    Hi,
    I have two different computers, one with AE CS4 and a other one with AE CS 5.5.
    On both systems ( Windows 7 64) my Echo audio fire4 sound-module driver is not working proper
    and crashing AE. Despite the latest updates from Echo. When I uninstall the driver the problems
    are gone!
    That's the reason I'm looking for a good stable sound-module (FireWire) to work with Premiere Pro
    and AE.
    Thanks! David

    Hi,
    I have two different computers, one with AE CS4 and a other one with AE CS 5.5.
    On both systems ( Windows 7 64) my Echo audio fire4 sound-module driver is not working proper
    and crashing AE. Despite the latest updates from Echo. When I uninstall the driver the problems
    are gone!
    That's the reason I'm looking for a good stable sound-module (FireWire) to work with Premiere Pro
    and AE.
    Thanks! David

  • Look for a PLC module !

    Hi,
    Anyone knows that there is a PLC module like in NI products family?  I want the control module in a mine to control the underground traffic lamps, hope the module to have analogure and digital terminal, and can determine if the lamp is working. Also, it should comply Modbus protocol . Thanks.
    David

    Hi!
       Have a look here .
       Since  Modbus relies on common serial port, maybe you can use compact FieldPoint modules (you can ask directly to NI for better details).  a cFP-2020 has some I/O, but they are too few for your application, so it should be better to get separate I/O modules.
       I posted some months ago to say I would like to see PLC from NI, and this seems not to come; tha main problem is cost: cFP modules, in a base configuration, are usually more expensive than common PLCs, you can check prices on NI site.  On the other side, of course, you can take advantage of the quick developement provided by LabVIEW and NI libraries, so if you are interested in shortening time-to-market this is a good choice.
        Hope I answered your question! Have a nice day!
    graziano

  • Testworkbench (STWB) - Implementation cross-module test cases

    Hi experts,
    we want to use the SAP Solution Manager (SolMan) Testworkbench u2013 STWB u2013 for system testing.
    However, we are faced with the problem to make cross-module test cases in the system. In our test cases are examined by different teams. For example, in a account booking on the modul MM also different teams involved, which are responsible for CO and FI.
    Operationally in the test case is a kind of indicator/flag can be set that each team has already tested and thus immediately apparent which team must consider the test case yet.
    First, i think on a workflow - but I do not know how to implement something in the test case or Tetsworkbench.
    If you have any other or better ideas?
    Thanks a lot!
    Regards,
    Stefan

    Hello Stephan,
    Have you checked these SAP Solman help links?
    http://help.sap.com/saphelp_sm70ehp1_sp23/helpdata/en/48/e151fddb163184e10000000a421937/frameset.htm
    http://help.sap.com/saphelp_sm70ehp1_sp23/helpdata/en/2e/e7769b243b4d0993429c71996f985e/frameset.htm
    Also this blog is pretty good:
    /people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager
    Hope this helps guide you in your project.
    Regards,
    Paul

  • Cost of implementation HR Module

    Kindly give me estimated cost of implementation of HR module in SAP. Any persom from that company , who are using HR in sap, kindly write prospectus of this module.
    regards

    Pl clarify what you mean by "cost" - license cost ? implementation cost ?
    HTH
    Srini

  • Looking to activate QM module

    Dear all,
    We are currently using ECC5.0 with SD,MM,PP & FICO modules. We are looking to use the QM module in the near future. However not sure if we need to pay separate licence fee to SAP for using QM module. The system allows us to configure QM module to meet our needs but not sure if we are allowed to use it without permission from SAP/ or partner.
    Anyone with similar experience please advise
    thanks,
    Ram

    Hi,
    Sujit is suggested the best way. Go for OSS.
    -VD

Maybe you are looking for

  • How can i transfer my iTunes account to my new mac from my old pc

    I have an iPod classic and my itunes account was on my old pc.  How do I transfer my account to my Mac and sync my iPod without loosing all my playlists?

  • Error While configuring SMS

    Hi All, I configured SMS by using transaction code SCOT and while sending the sms i am getting the below error "No Delivery to SMS:9*********** due to problem with communication connection. No delivery to SMS:9********** due to problem with communica

  • Function in xslt mapping?

    Hi guys,         I want to split the resultset containing many rows coming from database into a set fo individual rows using xslt mapping. I know we can acheive this using "split by value" node function in graphical mapping. But want is the name of t

  • Assign Excel functionality to a New Button

    Hi all, Does anyone know how to assign the functionality of exporting to excel to a button? I mean if anyone knows the code in order to export to a excel file. I already know how to create a new button and the way to assign the function to it, but I

  • Characteristics for Cost Center

    Dears, Can someone help what are the settings to be done (what should be maintained in all tabs of characteristics) when creating characteristics for Cost Center that will be used in PR Release Strategy: Structure: CEBAN Field: KOSTL Anything else?