Evaluation of Payroll result: customized report

Hi All,
I need a report containing the following info:
1  Empcode
2  Curretn payroll period
3  Employement status (active/inactive/withdrawn)
4  No of periods for which payroll was run
5  If inactive or withdrawn, then date from which they are inactive or withdrawn
Any inputs would be highly appreciated.
Thanks & best regards, VC

vishali,
      I think u need to query the IT0000 and the RGDIR table for the employees u need to run the report.
RGDIR is the results directory where we can get all the payroll results after a payroll run.
the Report to see the RGDIR is H99_DISPLAY_PAYRESULT.
first u need to check for the employee's status in IT0000.
      IF he is active then, using macros; read the RGDIR results. if he is not, then pick the date of the latest record in IT0000 which gives the withdrawn date.
        while reading the results you need to pick the results for which the current indicator is A (current result).
       This has to be done because u said that u need to calculate the number of periods for which payroll was run.
     For the current payroll period, you need to use the 'for-period' of the last sequential number (SEQNR) of the RGDIR whose current indicator is A.
Hope this will give an idea.

Similar Messages

  • Custom report on payroll and time evaluation results

    Hello Experts,
    My client would like to have a custom report on payroll and time evaluation results , can you please provide me with 2 options of achieving them.
    Thanks,
    Regi

    Hi,
    The time clusters are found using reports RPCLST*(B2, B1, PC etc) via SE38. You can find the time clusters under the time menu in the menu tree.
    PCL1 - Database for HR work area
    PCL2 - Accounting Results (time, travel expense and payroll);
    The database table PCL2 contains the following data areas:
    B2 time accounting results
    CD cluster directory of the CD manager
    PS generated schemas
    PT texts for generated schemas
    RX payroll accounting results/international
    Rn payroll accounting results/country-specific ( n = HR country indicator )
    ZL personal work schedule
    Tto retrieve payroll results accesse SAP transaction PC_PAYRESULT for all countries.
    Finally u can get the results for time PT_CLSTB2 , for Payroll PC_PAYRESULT. With this t.codes u can get the require results for ur custom report.
    Regards,
    Devi.

  • Can we use ad hoc query to get a temporary report of payroll result?

    Hi,All
    can we use ad hoc query to get a temporary report of payroll result?or we have to get a report of payroll result by customizing and ABAP?
    and how can I customizing a report on the basis of standard SAP report for payroll?

    Hi
    As of my Knowledge You cannot get the payroll report through Adhoc query you have to go for ABAP Devlopment
    Thanks
    Mahantesh

  • Report not showing terminated empoyees payroll results

    Hi there,
    I have coded a report that shows customized payroll data for a group of employees, delimited by two dates. The user found a problem when an employee is terminated on a given month but his termination is processed the next month (vacations, etc). Say the employee quits October 27, the payroll is run on November 10 and the report is run for November 1 - November 30: I wont see his payroll results because the employee does not belong to a particular organizational unit in november.
    This is my main code:
    START-OF-SELECTION.
    GET pernr.
      sapid = pernr-pernr.
    * CREATE AND POPULATE PAYROLL OBJECT                         RRV100807
      CREATE OBJECT pay.
      CALL METHOD pay->read_result IMPORTING list = mylist.
    * ELIMINATE OLD RECORDS                                      RRV100807
      LOOP AT mylist INTO wa_mylist WHERE SRTZA <> 'A'.
        DELETE TABLE mylist FROM wa_mylist.
      ENDLOOP.
    * PROCESS PAYROLL FOR THE DESIRED ENTRIES                    RRV100807
      CALL METHOD pay->write_result EXPORTING list = mylist.
    GET payroll.
      LOOP AT payroll-inter-wpbp INTO wa_wpbp WHERE orgeh IN PNPOBJID.
    *   PROCESS PERIOD DATA
        itab_rt = payroll-inter-rt.
        PERFORM get_wt_amounts.
        EXIT.
      ENDLOOP.
    GET pernr LATE.
    * IF THERE ARE PAYROLL RESULTS
      IF wa_result-otsal <> 0
         OR wa_result-regsal <> 0
         OR wa_result-teller <> 0
         OR wa_result-other <> 0.
    *   PROCESS EMPLOYEE
        PERFORM get_data.
      ENDIF.
    Basically, the GET PERNR (get personnel record) is never executed because the employee does not belong to the org unit. Is there any way to gather employee records in one interval and payroll results in another? I assume they both use PNBEGDA and PNENDDA at this point.
    What I want is to retrieve payroll information based on the screen dates (BEGDA and ENDDA) and the employee data based on the payroll periods that were run during those dates.

    Instead of using the standard selection screen field for choosing org units, you could create a custom selection screen field for the org unit.  So the org unit would not affect the initial GET PERNR selection.  Then in your code (after the GET PERNR) you could check for the org unit, with an additional condition to check the employee's previous org unit if he is terminated.  There is also more than one way to get payroll results.  We often use this in our reports:
    FORM get_payroll_results.
      CLEAR results_present.
        CALL FUNCTION 'CU_READ_RGDIR'
          EXPORTING
            persnr          = pernr-pernr
          TABLES
            in_rgdir        = rgdir
          EXCEPTIONS
            no_record_found = 1
            OTHERS          = 2.
        IF sy-subrc EQ 0.
    Get cumulative monthly results
        Store only active payroll results.
          DELETE rgdir WHERE srtza NE 'A'.                "Active
        Delete all the payroll results not from the requested year
          DELETE rgdir WHERE paydt0(4) NE p_mdate0(4). "Reporting Year
        Delete any payroll results after the requested balance date
          DELETE rgdir WHERE paydt > p_mdate.
        Delete voided payroll data.
          DELETE rgdir WHERE voidr NE space.              "Voided
        Sort so the first record is the last for the requested year.
          SORT rgdir BY paydt DESCENDING fpend DESCENDING.
          LOOP AT rgdir INTO ws_rgdir
            WHERE paydt > beg_date.
            seqnr = ws_rgdir-seqnr.
            CALL FUNCTION 'PYXX_READ_PAYROLL_RESULT'
              EXPORTING
                clusterid                    = 'RU'
                employeenumber               = pernr-pernr
                sequencenumber               = seqnr
              CHANGING
                payroll_result               = result
              EXCEPTIONS
                illegal_isocode_or_clusterid = 1
                error_generating_import      = 2
                import_mismatch_error        = 3
                subpool_dir_full             = 4
                no_read_authority            = 5
                no_record_found              = 6
                versions_do_not_match        = 7
                error_reading_archive        = 8
                error_reading_relid          = 9
                OTHERS                       = 10.
            LOOP AT result-inter-rt INTO wa_rt
              WHERE lgart = wa_wagetype.
                  ADD ws_betrg TO ws_total.
             ENDLOOP.
          ENDLOOP.
        ENDIF.
    This allows you to specify by date, wagetype, pay period, etc. which payroll results you wnat to include.  I hope this helps.
    - April King

  • Custom report for vendor evaluation

    Hai All,
    My client requires custom report to show the vendor evaluation i.e., it has to show the working how it has arrived at the final score, to be clear systems works automatically and displays the final score based on certain main and sub criteria that working has to be shown in a table format for the purpose of TPM  audit.
    Regards
    R.Senthilnambi

    Hi Senthil,
    u can download the documents from sap help to show the logic to ur audit, how sap will calculate the scores.
    If they insist for certain data with logic, u can develop a z-report and show them for 10 or 20 materials.
    hope this resolves ur problem

  • Custom Report For Vvendor Evaluation

    Hai All,
    My client requires custom report to show the vendor evaluation i.e., it has to show the working how it has arrived at the final score, to be clear systems works automatically and displays the final score based on certain main and sub criteria that working has to be shown in a table format
    Thanks in Advance,
    Anthyodaya.

    So what is your question ?
    Are you expecting someone some design options which anyway cannot be given on such a broad area.

  • Custom Report Item CustomData evaluation problem in a subreport loop

    Came across a strange problem with the custom report item CustomData property evaluation when using a sub report loop.
    I have a master report, which contains a sub report component within a List. The List is bound to a dataset from which a numeric value is passed on to a sub report's report parameter, and from there further down as an argument to a sub report dataset. The sub
    report contains our custom image CRI, which is bound to the said dataset. This dataset outputs a base64 encoded image data value, which the CRI then renders.
    Now the problem is that only the first sub report iteration gets evaluated correctly, rest of them seem to get their CRI CustomData from the first iteration. So essentially the loop just outputs the same first sub report over and over again.
    However, if I make the List component do a page break after each sub report, then all the sub reports start getting rendered correctly. 
    Here's how the CustomData gets initialized in the CRI designer class:
    this.CustomData = new CustomData();
    this.CustomData.DataRowHierarchy = newDataHierarchy();
    this.CustomData.DataRowHierarchy.DataMembers.Add(newDataMember());
    this.CustomData.DataRowHierarchy.DataMembers[0].Group = newGroup();
    this.CustomData.DataRowHierarchy.DataMembers[0].Group.Name = this.Name + "_SingleGrouping";
    this.CustomData.DataRowHierarchy.DataMembers[0].Group.GroupExpressions.Add(new ReportExpression());
    this.CustomData.DataColumnHierarchy = new DataHierarchy();
    this.CustomData.DataColumnHierarchy.DataMembers.Add(new DataMember());
    DataRow row = new DataRow();
    DataValue value = new DataValue();
    value.Name = "Base64";
    value.Value = ""; 
    DataCell cell = new DataCell();
    cell.Add(value);
    row.Add(cell);
    this.CustomData.DataRows.Add(row);
    The CRI also exposes the CustomData's DataSetName and a Base64 property.
    Has anyone else seen something like this happen? Not sure if this could be an issue with our CustomData configuration/usage, the API documentation is pretty much non-existent as usual. Seems more like bug to
    me.
    Leo Wartinen, Predisys Inc.

    Hi WarLe,
    If I understand correctly, you are using a list control to contain the subreport in the master report. The dataset of the list contains the field which is passed as the parameter values of the subreport. When you render the report, only the first subreport
    gets evaluated correctly, rest of them seem to get their CRI CustomData from the first iteration, right?
    If in this scenario, it seems that you haven’t add a group in the list. We can try to add a group grouped on the field which is passed as the parameter values of the subreport to check the issue again. Besides, could you mind post the sample data for the
    dataset of the list and tell us the settings for the list control? Then we can make further analysis.
    If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Product Tables vs Custom Report Results

    I was recently asked to provide an installation list of Adobe Reader to one of my coworkers. This is simple enough - under the Asset Inventory/Workstation Inventory Tab in the Custom Reports I have created a simple report to show me where Adobe Reader is installed and I get results.
    If I run the same type of report in the Asset Management/Software Management Tab Custom Reports again looking for Adobe Reader I get results.
    However, if I look for that product in either the Product Catalog or Discovered Catalog I get zero results. I thought that for ZAM to be able to report on a piece of software that it should appear as either a Product or Discovered Catalog Product. Can someone explain why I am getting these results when I look in either of the Catalogs?

    You should be able to see it in the Discovered Products list. I suspect you don't have the correct search criteria set in the column on the left. select 'All Products' in all the View fields on the left and 'Filter by' = Value and 'Field name' = product and 'Search string' = acrobat. This works for me and brings up all the products with acrobat in their name installed in our envirnoment.
    The Product Catalog isn't what you think it is. Products are added by the user and represent the form the licences come in. Read the online help on the Product Catalog.
    Simon

  • Ad-Hoc Query reporting off of Payroll Results Infotypes

    Dear Experts,
    Has anyone used the Payroll Results Infotypes (IT0448 - IT0464) to create Payroll Results reports using Ad-hoc query? I would appreciate it if someone could enlighten me as to how to get the Cluster Data into these Infotypes.
    Cheers,
    Venkata

    I tried this option but was able to succed so
    Fetched the data through the use of the functional module and desigend the code as per the client requirment
    Pasteing the code
    DATA: payroll TYPE pay99_result.
    DATA : BEGIN OF itab OCCURS 0,
          srno TYPE sy-tabix,
           pernr TYPE pa0001-pernr,
           ename TYPE pa0001-ename,
           location TYPE pa0001-zz_loca,
           dept TYPE pa0001-zz_dept,
           hq TYPE pa0001-zz_hq,
           desig TYPE hrp1000-stext,
           pay_day TYPE pc207-anzhl,
           basic TYPE p0008-bet01,
           con TYPE p0008-bet01,
           hra TYPE p0008-bet01,
           hra_o TYPE p0008-bet01,
           trans TYPE p0008-bet01,
           we TYPE p0008-bet01,
           oth TYPE p0008-bet01,
           tal TYPE p0008-bet01,
           a_loan TYPE p0008-bet01,
           h_loan TYPE p0008-bet01,
           p_loan TYPE p0008-bet01,
           total TYPE p0008-bet01,
           t_ded TYPE p0008-bet01,
           net_sal TYPE p0008-bet01,
           END OF itab,
           ipa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE .
    the help of technical consultant is needed
    Edited by: Sikindar on Oct 27, 2009 7:46 AM

  • Standard report for Payroll Results wth Pay Scale Groups

    Dear Experts
    Is there any standard report to view payroll results, Pay Scale Group wise.
    In CWTR and ANN, i cdnt find Pay Scale Group of an employee.
    Thanks in advance
    ...Sadhu

    Can we enhance CWTR report ? is it possible ?
    any guidance ?
    Thanks in advance
    ...Sadhu

  • Custom Report Template Issue

    Hi,
    I have a Custom Report Template, it is a Named Column(Row) Report that I have created. It seems I can get the look and feel I want on a per row basis. But when I try and convert it to be able to loop through for a specific type, like a break on the first column, it gets all messed up. I was wondering if someone might be able to shed some light for me on this I have tried everything
    Here is the row template
    <table width="100%"  border="0" cellspacing="1" cellpadding="0" bgcolor="#000000">
       <tr  class="Tabledetail">
          <td class="SectionHeading" width="100%" bgcolor="#336699" valign="middle">
             <img src="spacer.gif" width="1" height="1">  <b>#1#</b> 
          </td>
       </tr>
       <tr class="Tabledetail">
          <td>
             <table width="100%"  border="0" cellspacing="1" cellpadding="1" bgcolor=white>
                <tr class="Tabledetail">
                   <td>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td class=formlabel>
                      #2#
                   </td>
                   <td>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td colspan=4 class="SectionHeading" bgcolor="#336699" align=middle valign="bottom">
                      <b>Evaluation Trips</b> 
                   </td>
                   <td>
                      <img src="spacer.gif" width="10" height="1">
                   </td>
                   <td colspan=4 class="SectionHeading" bgcolor="#336699" align=middle valign="bottom">
                      <b>All Other Trips</b> 
                   </td>
                </tr>
                <tr class="Tabledetail">
                   <td>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td  class=formlabel>
                      #3#
                   </td>
                   <td  align=right class=formlabel>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td align=right class=formlabel>
                      #4#
                   </td>
                   <td align=right class=formlabel>
                      #5#
                   </td>
                   <td align=right class=formlabel>
                      #6#
                   </td>
                   <td align=right class=formlabel>
                      #7#
                   </td>
                   <td>
                      <img src="spacer.gif" width="10" height="1">
                   </td>
                   <td align=right class=formlabel>
                      #4#
                   </td>
                   <td align=right class=formlabel>
                      #5#
                   </td>
                   <td align=right class=formlabel>
                      #6#
                   </td>
                   <td align=right class=formlabel>
                      #7#
                   </td>
                </tr>
                <tr class="Tabledetail" width=50%>
                   <td>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td  class=formlabel>
                      #8#
                   </td>
                   <td class=formlabel>
                      <img src="spacer.gif" width="5" height="1">
                   </td>
                   <td align=right>
                      #9#
                   </td>
                   <td  align=right>
                      #10#
                   </td>
                   <td align=right >
                      #11#
                   </td>
                   <td align=right >
                      #12#
                   </td>
                   <td>
                      <img src="spacer.gif" width="10" height="1">
                   </td>
                   <td align=right >
                      #13#
                   </td>
                   <td align=right >
                      #14#
                   </td>
                   <td align=right >
                      #15#
                   </td>
                   <td align=right >
                      #16#
                   </td>
                </tr>
             </table>
          </td>
       </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td><img src="spacer.gif" width="1" height="10"> </td>
    </tr>
    <tr>
    <td>Here is the before rows
    <table cellpadding="0" border="0" cellspacing="0" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#">
      #TOP_PAGINATION#
      <tr>
        <td>
          <table cellpadding="0" border="0" cellspacing="0" summary="" class="report-standard">Here is the after rows
            </table>
        </td>
      </tr>
      #PAGINATION#
    </table>But when I try and pull the upper level html tables out of the row template the format goes to heck. Anyone have any ideas?
    Thanks in advance!

    goochable wrote:
    Thanks for the input! Yeah it is based on a query from a collection as all this data is summations that i am pre-populating.
    Yes this html is probably from 1998 or 1999 I think they told me actually lol
    So there is no way to accomplish what I am trying to do then?
    There is no way I could use a break on first column and modify the header info to get the same sort of look and feel?Still not really clear what you are trying to accomplish, and in my view there are so many problems with the "look and feel" that it's not worth perpetuating.
    Making a lot of assumptions, I've come up with the kind of HTML structure I'd use when marking up this kind of data. I added a page 2 to your example on apex.oracle.com, showing a basic presentation of this structure alongside the original for comparison, and another styled using the default theme L&F.
    <li>Given the requirement to use multi-level headers (and because I prefer to have total control over the HTML), I stayed with a custom report template rather than trying to utilise column breaking with a generic column report template. This also permits use of more advanced table structures than can be supported by standard templates, such as s<tt>colgroup</tt>s to organize the table columns as well as the rows:
    Before Rows
      <table cellpadding="0" border="0" cellspacing="0" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#">
      #TOP_PAGINATION#
      <tr>
        <td>
          <table class="fish">
            <caption>Some fishy summaries</caption>
            <colgroup span="1"></colgroup>
            <colgroup span="4" class="evaluation-trips" align="right"></colgroup>
            <colgroup span="4" class="other-trips" align="right"></colgroup>
    After Rows
          </table>
        </td>
      </tr>
      #PAGINATION#
    </table><li>Rather than separate tables, the report is contained in one HTML table, utilizing the <tt>tbody</tt> element to subdivide this into separate row groups to meet the "break on first column" requirement. This is achieved using conditional row templates, with PL/SQL Expressions based on the values of metadata columns added to the query:
    Row Template 1
    Header rows and first data row for each row group. <tt>scope</tt> attributes are added to multi-column headers for improved accessibility:
      <tbody>
        <tr>
          <th colspan="9" scope="rowgroup">#C1#</th>
        </tr>
        <tr>
          <th></th>
          <th colspan="4" scope="colgroup">Evaluation Trips</th>
          <th colspan="4" scope="colgroup">All Other Trips</th>
        </tr>
        <tr>
          <th>#C2#</th>
          <th>#C4#</th>
          <th>#C5#</th>
          <th>#C6#</th>
          <th>#C7#</th>
          <th>#C4#</th>
          <th>#C5#</th>
          <th>#C6#</th>
          <th>#C7#</th>
        </tr>
        <tr class="#ALT#">
          <td class="desc">#C8#</td>
          <td>#C9#</td>
          <td>#C10#</td>
          <td>#C11#</td>
          <td>#C12#</td>
          <td>#C13#</td>
          <td>#C14#</td>
          <td>#C15#</td>
          <td>#C16#</td>
        </tr>
      #CLOSE_ROW_GROUP#
    Row Template 1 Expression
    This template is used when the row metadata shows that the current row is in a different row group from the previous row:
    #ROW_GROUP# != #PREVIOUS_ROW_GROUP#
    Row Template 2
    This is the "default" template, used for any subsequent data rows in the row group:
        <tr class="#ALT#">
          <td class="desc">#C8#</td>
          <td>#C9#</td>
          <td>#C10#</td>
          <td>#C11#</td>
          <td>#C12#</td>
          <td>#C13#</td>
          <td>#C14#</td>
          <td>#C15#</td>
          <td>#C16#</td>
        </tr>
      #CLOSE_ROW_GROUP#Both templates make use of a <tt>#CLOSE_ROW_GROUP#</tt> column value conditionally generated in the query that returns a <tt>&lt;/tbody&gt;</tt> tag if the current row is the last data row in the row group. (Mixing logic and structure in this way is not good practice, but APEX only allows up to 4 conditional row templates, which is completely insufficient for any moderately complex structure.)
    <li>Several metadata columns (incorporating heavy use of analytic functions) are added to the report query for use in the report template or CSS presentation:
    with fish as (
          select
                    c1, c2, c3, c4, c5, c6, c7, c8, c9, c10, c11, c12, c13, c14, c15, c16
                      Generate a fixed order for separate report sections/row groups.
                      (This is a guess as the actual requirement is not specified.)
                  , case c1
                      when 'OTC Summary' then 1
                      when 'Retained Catch Summary' then 2
                      when 'Discarded Catch Summary' then 3
                      when 'Discarded Species Composition Summary' then 4
                      when 'Retained Species Composition Summary' then 5
                      when 'Priority Species Biospecimen Summary - Discarded Catch' then 6
                      when 'Other Species Biospecimen Summary - Discarded Catch' then 7
                      when 'Dissection Summary - Discarded Catch' then 8
                    end row_group
                      Calculate row number within row group.
                      Copes with row order in some row groups being determined
                      numerically, while others used standard character semantics.
                  , row_number()
                      over (
                        partition by  c1
                        order by      to_number(regexp_replace(c8, '[^[:digit:]]')) nulls last
                                    , c8) group_rn
                      Calculate number of rows in row group.
                  , count(*)
                      over (
                        partition by c1) group_rows
          from
                  test)
    select
              c1
                Not clear on meaning of "Weight"/"Method" values: assumed this is
                column heading equivalent to "Species".
                Combine both source DB columns into one for HTML heading, dealing
                with various null/space/blank issues...
            , nullif(c2 || ' ', '  ') || c3 c2
            , ' ' c3
            , c4
            , c5
            , c6
            , c7
            , c8
            , c9
            , c10
            , c11
            , c12
            , c13
            , c14
            , c15
            , c16
            , row_group
                Get the rowgroup for the previous row
            , lag(row_group, 1, 0)
                over (
                  order by row_group) previous_row_group
            , group_rn
            , group_rows
                Determine odd/even row number: used for standard or alternate style.
            , mod(group_rn, 2) alt
                Generate a closing element if the row is the last row in the
                row group.
            , case
                when group_rn = group_rows
                then
                  '</tbody>'
                else
              end close_row_group
    from
              fish
    order by
               row_group
             , group_rnThis makes major assumptions about the sort order(s) and break(s) required in the report.
    <li>Finally, the visual presentation is applied using CSS rather than (mainly deprecated) HTML attributes, via an embedded style sheet in the page HTML Header:
    <style type="text/css">
    .fish {
      empty-cells: show;
      border-collapse: collapse;
    .fish tbody tr:first-child th {
      border-top: 1px solid #fff;
      font-weight: bold;
    .fish th,
    .fish td {
      padding: 3px 6px;
    .fish th {
      border-bottom: 1px solid #fff;
      border-left: 1px solid #fff;
      background-color: #275096;
      color: #fff;
      font-weight: 300;
      text-align: left;
    .fish td {
      text-align: right;
      .fish tr.\30  td {
        background-color: #dde;
      .fish td:first-child {
        text-align: left;
    </style>The default theme L&F report adds vertical borders to separate columns and column groups (latter may not be fully effective on IE: I'm not wasting my time on quirks mode fixes for that).
    The resulting report uses 60% less vertical space, and 87% less HTML code[1] than the original. Usability and accessibility are improved by eliminating nested tables and useless table cells and shim images, increasing the contrast between text and background colours, and using alternating row backgrounds for better visual tracking.
    [1] Including whitespace, but neither template is compressed in any way: both are in fully readale format including normal whitespace indentation.

  • Customized reports of SD & MM in SAP BI/BW

    Hi,
    Could you please tell me where the customized sample reports available pertaining to the SD & MM applications in BI/BW prospective.  Any links, etc...And could you create any reports in BI/BW after postproduction/go-live also
    Regards,
    RCReddy

    Hi,
    general method is
    Goto SE84 .
    Choose Program Library -> Programs
    Enter suitable application component you need (viz, SD or MM)
    RUN.
    Here is a list of standard MM program for you.
    TA Report Header Description
    M/N2 SAPMV12A Create free goods table
    M/N3 SAPMV12A Display free goods table
    M/03 SAPMV12A Create Conditions Table (Purchasing
    M/04 SAPMV12A Change Conditions Table (Purchasing
    M/05 SAPMV12A Displ. Conditions Table (Purchasing
    M/13 SAPMV12A Create Condition Table (Service)
    M/14 SAPMV12A Change Condition Table (Services)
    M/15 SAPMV12A Display Condition Table (Services)
    M/56 SAPMV12A Messages: Create Cond. Table: RFQ
    M/57 SAPMV12A Messages: Change Condition Table
    M/58 SAPMV12A Messages: Display CondTab: RFQ
    M/59 SAPMV12A Messages: Create CondTab: Pur. Orde
    M/60 SAPMV12A Messages: Change CondTab: Pur. Orde
    M/61 SAPMV12A Messages: Disp. CondTab: Pur. Order
    M/62 SAPMV12A Messages: Create CondTab: Del. Schd
    M/63 SAPMV12A Messages: Change CondTab: Del. Schd
    M/64 SAPMV12A Messages: Disp. CondTab: Del. Sched
    M/65 SAPMV12A Messages: Create CondTab: O. Agmt.
    M/66 SAPMV12A Messages: Change CondTab: O. Agmt.
    M/67 SAPMV12A Messages: Disp. CondTab: Outl. Agmt
    M/70 SAPMV12A Messages: Create CondTab.: Entry Sh
    M/71 SAPMV12A Messages: Change CondTab.: Entry Sh
    M/72 SAPMV12A Messages: Disp. CondTab.: Entry Sh.
    M_LA SAPMV14A Purchasing: Condition List
    M_LB SAPMV14A Change Condition List
    M_LC SAPMV14A Display Condition List
    M_LD SAPMV14A Execute Condition List
    MAL1 SAPMMG01 Create material via ALE
    MAL2 SAPMMG01 Change material via ALE
    MAP1 SAPMF02K Create contact person
    MAP2 SAPMF02K Change contact person
    MAP3 SAPMF02K Display contact person
    MASS SAPMMSDL Mass Change
    MASSD MASSD_DIALOG Mass Maintenance
    MBBM RM07MMBL Batch Input: Post Material Document
    MBBR RM07RRES Batch Input: Create Reservation
    MBBS RM07MBWS Display valuated special stock
    MBC1 SAPMV13H Create MM Batch Search Strategy
    MBC2 SAPMV13H Change MM Batch Determ. Strategy
    MBC3 SAPMV13H Display MM Batch Determ. Strategy
    MBGR RM07MGRU Displ. Material Docs. by Mvt. Reaso
    MBLB RM07MLBB Stocks at Subcontractor
    MBNK SAPMSNUM Number Ranges; Material Document
    MBNL SAPMM07M Subsequent Delivery f. Material Doc
    MBN1 SAPMV13N Free goods - Create (Purchasing)
    MBN2 SAPMV13N Free goods - Change (Purchasing)
    MBN3 SAPMV13N Free goods - Display (Purchasing)
    MBPM MMIM_PREDOC_MAIManage Held Data
    MBRL SAPMM07M Return Delivery for Matl Document
    MBSF SAPMM07M Release Blocked Stock via Mat. Doc.
    MBSI RM07SINV Find Inventory Sampling
    MBSL SAPMM07M Copy Material Document
    MBSM RM07MSTO Display Cancelled Material Docs.
    MBST SAPMM07M Cancel Material Document
    MBSU SAPMM07M Place in Stor.for Mat.Doc: Init.Scr
    MBVR RM07RVER Management Program: Reservations
    MBWO RM07MWOFF test
    MBW1 SAPMMBW1 Special stocks via WWW
    MBXA SAPLMBXA Printout of XAB Documents
    MB0A SAPMM07M Post Goods Receipt for PO
    MB00 MENUMB00 Inventory Management
    MB01 SAPMM07M Post Goods Receipt for PO
    MB02 SAPMM07M Change Material Document
    MB03 SAPMM07M Display Material Document
    MB04 SAPMM07M Subsequ.Adj.of "Mat.Provided"Consmp
    MB05 SAPMM07M Subseq. Adjustmt: Act.Ingredient Ma
    MB1A SAPMM07M Goods Withdrawal
    MB1B SAPMM07M Transfer Posting
    MB1C SAPMM07M Other Goods Receipts
    MB11 SAPMM07M Goods Movement
    MB21 SAPMM07R Create Reservation
    MB22 SAPMM07R Change Reservation
    MB23 SAPMM07R Display Reservation
    MB24 RM07RESL Reservation List
    MB25 RM07RESL Reservation List
    MB26 PP_PICK_LIST Picking list
    MB31 SAPMM07M Goods Receipt for Production Order
    MB5B RM07MLBD Stocks for Posting Date
    MB5C RM07MCHS Pick-Up List
    MB5K RM07KO01 Stock Consistency Check
    MB5L RM07MBST List of Stock Values: Balances
    MB5M RM07MMHD BBD/Prod. Date
    MB5S RM07MSAL Display List of GR/IR Balances
    MB5T RM07MTRB Stock in transit CC
    MB5U RM07AUMD Analyze Conversion Differences
    MB5W RM07MBST List of Stock Values
    MB51 RM07DOCS Material Doc. List
    MB52 RM07MLBS List of Warehouse Stocks on Hand
    MB53 RM07MWRKK Display Plant Stock Availability
    MB54 RM07MKBS Consignment Stocks
    MB55 RM07MMST Display Quantity String
    MB56 RVBBWULS Analyze batch where-used list
    MB57 RM07MCHW Compile Batch Where-Used List
    MB58 RM07MKON Consgmt and Ret. Packag. at Custome
    MB59 RM07DOCS Material Doc. List
    MB9A RM07MAAU Analyze archived mat. documents
    MB90 MM70AMEA Output Processing for Mat. Document
    MC.A RMCB0300 INVCO: Mat.Anal.Selection; Rec/Iss
    MC.B RMCB0300 INVCO: Mat.Anal.Selection; Turnover
    MC.C RMCB0300 INVCO: Mat.Anal.Selection; Coverage
    MC.D RMCB0400 INVCO: MRP Cntrllr.Anal.Sel. Stock
    MC.E RMCB0400 INVCO: MRP Cntrllr Anal.Sel. Rec/Is
    MC.F RMCB0400 INVCO: MRP Cntlr Anal.Sel. Turnover
    MC.G RMCB0400 INVCO: MRP Cntlr.Anal.Sel. Coverage
    MC.H RMCB0500 INVCO: Business Area Anal.Sel. Stoc
    MC.I RMCB0500 INVCO: Bus. Area Anal. Sel. Rec/Iss
    MC.J RMCB0500 INVCO: Bus. Area Anal. Sel. Turnove
    MC.K RMCB0500 INVCO: Bus. Area Anal. Sel. Coverag
    MC.L RMCB0600 INVCO: Mat.Group Analysis Sel. Stoc
    MC.M RMCB0600 INVCO: Mat.Group Anal. Sel. Rec/Iss
    MC.N RMCB0600 INVCO: Mat.Group Anal. Sel. Turnove
    MC.O RMCB0600 INVCO: Mat.Group Anal. Sel. Coverag
    MC.P RMCB0700 INVCO: Division Analysis Sel. Stock
    MC.Q RMCB0700 INVCO: Division Anal. Sel. Rec/Iss
    MC.R RMCB0700 INVCO: Division Anal. Sel. Turnover
    MC.S RMCB0700 INVCO: Division Anal. Sel. Coverage
    MC.T RMCB0800 INVCO: Mat.Type Anal.Selection Stoc
    MC.U RMCB0800 INVCO: Mat.Type Anal.Sel. Rec/Issue
    MC.V RMCB0800 INVCO: Mat.Type Anal.Sel. Turnover
    MC.W RMCB0800 INVCO: Mat.Type Anal.Sel. Coverage
    MC.1 RMCB0100 INVCO: Plant Anal. Selection: Stock
    MC.2 RMCB0100 INVCO: Plant Anal.Selection; Rec/Is
    MC.3 RMCB0100 INVCO: Plant Anal.Selection;Turnove
    MC.4 RMCB0100 INVCO: Plant Anal.Selection;Coverag
    MC.5 RMCB0200 INVCO: SLoc Anal. Selection; Stock
    MC.6 RMCB0200 INVCO: SLoc Anal. Selection: Rec/Is
    MC.7 RMCB0200 INVCO: SLoc Anal. Selection;Turnove
    MC.8 RMCB0200 INVCO: SLoc Anal.Selection; Coverag
    MC.9 RMCB0300 INVCO: Material Anal.Selection;Stoc
    MC(A RMCV0100 SIS: Customer;Inc.Orders - Selectio
    MC(B RMCV1300 SIS: Variant Configuration
    MC(E RMCV0200 SIS: Material;Inc.Orders - Selectio
    MC(I RMCV0300 SIS: SalesOrg. Inc.Orders Selection
    MC(M RMCV0600 SIS: Sales Office; Inc.Orders Selec
    MC(Q RMCV0500 SIS: Employee; Inc.Orders Selection
    MC(U RMCV0400 SIS: Shipping Point Deliveries Sel.
    MC+A RMCV0100 SIS: Customer Returns; Selection
    MC+E RMCV0100 SIS: Customer; Sales - Selection
    MC+I RMCV0100 SIS: Customer Credit Memos - Selec.
    MC+M RMCV0200 SIS: Material Returns; Selection
    MC+Q RMCV0200 SIS: Material; Sales - Selection
    MC+U RMCV0200 SIS: Material Credit Memos; Selec.
    MC+Y RMCV0300 SIS: Sales Org. Returns; Selection
    MC+2 RMCV0300 SIS: SalesOrg.Invoiced Sales; Selec
    MC+6 RMCV0300 SIS: SalesOrg.Credit Memos Selectio
    MC$< RMCE0300 PURCHIS: MatGrp PurchVal Selection
    MC$> RMCE0300 PURCHIS: MatGrp PurchQty Selection
    MC$: RMCE0200 PURCHIS: Vendor Freqs. Selection
    MC$A RMCE0300 PURCHIS: MatGrp DelRelblty Selectio
    MC$C RMCE0300 PURCHIS: MatGrp QtyRelblty Selectio
    MC$E RMCE0300 PURCHIS: MatGrp Freq. Selection
    MC$G RMCE0400 PURCHIS: Material PurchVal Selectio
    MC$I RMCE0400 PURCHIS: Material PurchQty Selectio
    MC$K RMCE0400 PURCHIS: Material DelRelib Selectio
    MC$M RMCE0400 PURCHIS: Material QtyRel Selection
    MC$O RMCE0400 PURCHIS: Material Freqs. Selection
    MC$0 RMCE0100 PURCHIS: PurchGrp PurchVal Selectio
    MC$2 RMCE0100 PURCHIS: PurchGrp Freqs. Selection
    MC$4 RMCE0200 PURCHIS: Vendor PurchVal Selection
    MC$6 RMCE0200 PURCHIS: Vendor DelRelblty Selectio
    MC$8 RMCE0200 PURCHIS: Vendor QtyRelblty Selectio
    MC-A RMCV0600 SIS: Sales Office Returns; Selectio
    MC-E RMCV0600 SIS: Sales Office - Sales Selection
    MC-I RMCV0600 SIS: Sales Office Credit Memos Sele
    MC-M RMCV0500 SIS: Employee - Returns; Selection
    MC-Q RMCV0500 SIS: Employee - Sales; Selection
    MC-U RMCV0500 SIS: Employee - Credit Memos; Selec
    MC-0 RMCV0400 SIS: Shipping Point Returns; Selec.
    MC/B SAPMMCY1 Schedule jobs: Exceptions INVCO
    MC/E SAPMMCY1 Create Exception: EWS/PURCHIS
    MC/F SAPMMCY1 Maintain exception: EWS/PURCHIS
    MC/G SAPMMCY1 Display exception: EWS/PURCHIS
    MC/H SAPMMCY1 Create groups exception: PURCHIS
    MC/I SAPMMCY1 Change groups exception: PURCHIS
    MC/J SAPMMCY1 Display exception: PURCHIS
    MC/K SAPMMCY1 Create job for exception: PURCHIS
    MC/L SAPMMCY1 Change jobs exceptions: PURCHIS
    MC/M SAPMMCY1 Display jobs exceptions: PURCHIS
    MC/N SAPMMCY1 Schedule jobs exceptions: PURCHIS
    MC/Q SAPMMCY1 Create exception: EWS/SIS
    MC/R SAPMMCY1 Maintain exception: EWS/SIS
    MC/S SAPMMCY1 Display exception: EWS/SIS
    MC/T SAPMMCY1 Create groups exception: SIS
    MC/U SAPMMCY1 Change groups exception: SIS
    MC/V SAPMMCY1 Display exception: SIS
    MC/W SAPMMCY1 Create job for exception: SIS
    MC/X SAPMMCY1 Change Jobs: Exceptions SIS
    MC/Y SAPMMCY1 Display Jobs: Exceptions SIS
    MC/Z SAPMMCY1 Schedule Jobs: Exceptions SIS
    MC/1 SAPMMCY1 Create Exception: EWS/INVCO
    MC/2 SAPMMCY1 Maintain exception: EWS/INVCO
    MC/3 SAPMMCY1 Display exception: EWS/INVCO
    MC/4 SAPMMCY1 Create groups exception: INVCO
    MC/5 SAPMMCY1 Change groups exception: INVCO
    MC/6 SAPMMCY1 Display exception: INVCO
    MC/7 SAPMMCY1 Create job for exception: INVCO
    MC/8 SAPMMCY1 Change jobs exceptions: INVCO
    MC/9 SAPMMCY1 Display jobs exceptions: INVCO
    MC?0 SAPMMCY1 WFIS: Schedule Jobs - Exceptions
    MC?1 SAPMMCY1 WFIS: Create Exception
    MC?2 SAPMMCY1 WFIS: Maintain Exception
    MC?3 SAPMMCY1 WFIS: Display Exception
    MC?4 SAPMMCY1 WFIS: Create Exception Group
    MC?5 SAPMMCY1 WFIS: Change Exception Group
    MC?6 SAPMMCY1 WFIS: Display Exception Group
    MC?7 SAPMMCY1 WFIS: Create Jobs - Exceptions
    MC?8 SAPMMCY1 WFIS: Change Jobs - Exceptions
    MC?9 SAPMMCY1 WFIS: Display Jobs - Exceptions
    MC:B SAPMMCY1 Schedule jobs exceptions: RIS
    MC:1 SAPMMCY1 Create exception: EWS/RIS
    MC:2 SAPMMCY1 Maintain exception: EWS/RIS
    MC:3 SAPMMCY1 Display exception: EWS/RIS
    MC:4 SAPMMCY1 Create exception group: RIS
    MC:5 SAPMMCY1 Change groups exception: RIS
    MC:6 SAPMMCY1 Display exception: RIS
    MC:7 SAPMMCY1 Create job for exception: RIS
    MC:8 SAPMMCY1 Change jobs exceptions: RIS
    MC:9 SAPMMCY1 Display jobs exceptions: RIS
    MC=B SAPMMCY1 Schedule jobs exceptions: SFIS
    MC=E SAPMMCY1 Create exception: EWS/PMIS
    MC=F SAPMMCY1 Maintain exception: EWS/PMIS
    MC=G SAPMMCY1 Display exception: EWS/PMIS
    MC=H SAPMMCY1 Create groups exception: PMIS
    MC=I SAPMMCY1 Change groups exception: PMIS
    MC=J SAPMMCY1 Display exception: PMIS
    MC=K SAPMMCY1 Create job for exception: PMIS
    MC=L SAPMMCY1 Change jobs exceptions: PMIS
    MC=M SAPMMCY1 Display jobs exceptions: PMIS
    MC=N SAPMMCY1 Schedule jobs exceptions: PMIS
    MC=Q SAPMMCY1 Display exception: EWS/QMIS
    MC=R SAPMMCY1 Maintain exception: EWS/QMIS
    MC=S SAPMMCY1 Display exception: EWS/QMIS
    MC=T SAPMMCY1 Display groups exception: QMIS
    MC=U SAPMMCY1 Change groups exception: QMIS
    MC=V SAPMMCY1 Display exception: QMIS
    MC=W SAPMMCY1 Create job for exception: QMIS
    MC=X SAPMMCY1 Change Jobs: Exceptions QMIS
    MC=Y SAPMMCY1 Display Jobs: Exceptions SIS
    MC=Z SAPMMCY1 Schedule Jobs: Exceptions QMIS
    MC=1 SAPMMCY1 Create exception: EWS/SFIS
    MC=2 SAPMMCY1 Maintain exception: EWS/SFIS
    MC=3 SAPMMCY1 Display exception: EWS/SFIS
    MC=4 SAPMMCY1 Create groups exception: SFIS
    MC=5 SAPMMCY1 Change groups exception: SFIS
    MC=6 SAPMMCY1 Display exception: SFIS
    MC=7 SAPMMCY1 Create job for exception: SFIS
    MC=8 SAPMMCY1 Change jobs exceptions: SFIS
    MC=9 SAPMMCY1 Display jobs exceptions: SFIS
    MCAA SAPMMCS1 WFIS: Maintain Requirements
    MCAC SAPMMCS1 WFIS: Maintain Formulas
    MCAE SAPMMC0C WFIS: Activate Updating
    MCAF SAPMMCS4 WFIS: Standard Analyses
    MCAG SAPMMCSC WFIS: Customizing; Standard Analyse
    MCAH RMCAORG0 WFIS: Organization View - Selection
    MCAI RMCAPRO0 WFIS: Process View - Selection
    MCAJ RMCAOBJ0 WFIS: Object View - Selection
    MCAK RMCAGRU0 WFIS: Group View - Selection
    MCAL RMCAEXP0 WFIS: Sample Scenario - Selection
    MCAM RMCAKOMM WFIS: Append Structure
    MCAN RMCAEXIT WFIS: Selection Program
    MCAO RMCAAPP0 WIS: Application PM/QM/SM Selection
    MCAP RMCADELE WIS: Delete Data
    MCAQ RMCAADJU WIS: Correct Data
    MCAR RMCADATA WIS: Transfer Data
    MCAT SAPMMCS7 WFIS: Display Evaluation Structure
    MCAU SAPMMCS7 WFIS: Change Evaluation Structure
    MCAV SAPMMCS7 WFIS: Create Evaluation Structure
    MCAW SAPMMCS2 WFIS: Display Evaluation
    MCAX SAPMMCS2 WFIS: Change Evaluation
    MCAY SAPMMCS2 WFIS: Create Evaluation
    MCAZ SAPMMCS2 WFIS: Execute Evaluation
    MCA7 SAPMMCS2 INVCO: Execute Evaluation
    MCB& RMCBDISP INVCO: Set up statis. for stck/reqt
    MCB) RMCB1200 INVCO: Long-Term Stock Selection
    MCB% RMCBPARA INVCO: Set up stats. for parm. anal
    MCBA RMCB0100 INVCO: Plant Analysis Selection
    MCBC RMCB0200 INVCO: Stor. Loc. Analysis Selectio
    MCBE RMCB0300 INVCO: Material Analysis Selection
    MCBG RMCB0400 INVCO: MRP Cntrlr Analysis Selectio
    MCBI RMCB0500 INVCO: Business Area Anal. Selectio
    MCBK RMCB0600 INVCO: MatGrp Analysis Selection
    MCBM RMCB0700 INVCO: Division Analysis Selection
    MCBO RMCB0800 INVCO: Mat.Type Analysis Selection
    MCBR RMCB0900 INVCO: Batch Analysis Selection
    MCBV RMCB1000 INVCO: Parameter Analysis Selection
    MCBZ RMCB1100 INVCO: Stck/Reqt Analysis Selection
    MCB1 MENUMCB1 Inventory Controlling
    MCB2 SAPMMCS7 INVCO: Create Evaluation Structure
    MCB3 SAPMMCS7 INVCO: Change Evaluation Structure
    MCB4 SAPMMCS7 INVCO: Display Evaluation Structure
    MCB5 SAPMMCS2 INVCO: Create Evaluation
    MCB6 SAPMMCS2 INVCO: Change Evaluation
    MCB7 SAPMMCS2 INVCO: Display Evaluation
    MCC1 MENUMCC1 Inventory Controlling
    MCC2 MENUMCC2 Inventory Information System
    MCC3 RMCBNEUA Set Up INVCO Info Structs. from Doc
    MCC4 RMCBNEUB Set Up INVCO Info Structs.from Stoc
    MCDA SAPMMCS2 PURCHIS: Create Evaluation
    MCDB SAPMMCS2 PURCHIS: Change Evaluation
    MCDC SAPMMCS2 PURCHIS: Display Evaluation
    MCDG SAPMMCS2 PURCHIS: Execute Evaluation
    MCD7 SAPMMCS7 PURCHIS: Create Eval. Structure
    MCD8 SAPMMCS7 PURCHIS: Change Eval. Structure
    MCD9 SAPMMCS7 PURCHIS: Display Eval. Structure
    MCE+ RMCE0900 PURCHIS: Reporting - Subseq. Settlm
    MCEA RMCE0600 PURCHIS:Long-Term Plg Vend.Analysis
    MCEB RMCE0700 PURCHIS:Lng-Term Plg Mat.Gr.Analysi
    MCEC RMCE0800 PURCHIS:Long-Term Plg Mat. Analysis
    MCER RMCE2000 PURCHIS: Service Purch.Qty-Selectio
    MCES RMCE2000 PURCHIS: Service Purch.Val-Selectio
    MCE0 MENUMCE0 Purchasing Information System
    MCE1 RMCE0100 PURCHIS: PurchGrp Analysis Selectio
    MCE2 SAPMMCS3 PURCHIS: Update Diagnosis Purch.Doc
    MCE3 RMCE0200 PURCHIS: Vendor Analysis Selection
    MCE5 RMCE0300 PURCHIS: MatGrp Analysis Selection
    MCE7 RMCE0400 PURCHIS: Material Analysis Selectio
    MCE8 RMCE2000 PURCHIS: Service Analysis Selection
    MCE9 MENUMCE9 Purchasing Information System
    MCGC RMCW1400 RIS: Season: Mvmts + Stk - Selectio
    MCGD RMCW1600 RIS: POS: Sales - Selection
    MCGE RMCW1700 RIS: POS: Matl Aggr. POS - Selectio
    MCGF RMCW1800 RIS: POS: Cashier - Selection
    MCGG RMCW1900 RIS: Cust./Material Grp - Selection
    MCGH RMCW2000 RIS: Customer/Material - Selection
    MCGJ RMCW2800 RIS: POS: POS Balancing - Selection
    MCGK RMCW2900 RIS: Matls w/ additionals- Selectio
    MCGL RMCW3000 RIS: Sales data: Customers- Sel.
    MCG1 MENUMCG1 Rough-Cut Planning Profiles
    MCG2 SAPMMCSC Var. standard anal. def. sett. IS-R
    MCG3 SAPMMCS4 Call Self-Defined Analyses: Retail
    MCH+ SAPMMCS7 RIS: Display Evaluation Structure
    MCH: RMCW0300 RIS: STRPS/Mvmts + Stock - Selectio
    MCHA RMCW2500 RIS: Till Receipt/Matl - Selection
    MCHB RMCW2700 RIS: Till Receipt - Selection
    MCHC RMCWAPRI_START Companion sales
    MCHG RMCW0600 RIS: Purchasing: Mvmt+Stck-Selectio
    MCHP RMCW0900 RIS: Material: Mvmt+Stck - Selectio
    MCHS RMCW1000 RIS: Promotion - Selection
    MCHV RMCW1100 RIS: Material/Add-On - Selection
    MCHY SAPMMCS7 RIS: Create Evaluation Structure
    MCHZ SAPMMCS7 RIS: Change Evaluation Structure
    MCH0 MENUMCH0 Retail Information System
    MCH1 SAPMMCS2 RIS: Execute Evaluation
    MCH2 SAPMMCS2 RIS: Create Evaluation
    MCH3 SAPMMCS2 RIS: Change Evaluation
    MCH4 SAPMMCS2 RIS: Display Evaluation
    MCH6 SAPMMC0C Update Maintenance: RIS
    MCH7 SAPMMCS3 RIS: Update Diagnosis; SP Change Do
    MCH8 RMCW2300 RIS: Perishables - Selection
    MCH9 RMCW2400 RIS: Inventory Controlling - Stores
    MCIA RMCI1000 PMIS: Customer Notification Analysi
    MCIS SAPMMCS4 Call Up PM Standard Analyses
    MCIZ RMCI1100 PMIS: Vehicle Consumption Analysis
    MCI0 MENUMCI0 Plant Maintenance Information Syste
    MCI1 RMCI0300 PMIS: Object Class Analysis
    MCI2 RMCI0700 PMIS: Manufacturer Analysis
    MCI3 RMCI0200 PMIS: Location Analysis
    MCI4 RMCI0600 PMIS: Planner Group Analysis
    MCI5 RMCI0800 PMIS: Object Damage Analysis
    MCI6 RMCI0500 PMIS: Obj.Statistic.Analysis
    MCI7 RMCI0100 PMIS: Breakdown Analysis
    MCI8 RMCI0900 PMIS: Cost Evaluation
    MCJB RIEQS070 MTTR/MTBR for Equipment
    MCJC RITPS070 FunctLoc: Mean Time Between Repair
    MCJE MENUMCJE PMIS: Info System
    MCJ1 SAPMMCS2 PMIS: Create Evaluation
    MCJ2 SAPMMCS2 PMIS: Change Evaluation
    MCJ3 SAPMMCS2 PMIS: Display Evaluation
    MCJ4 SAPMMCS2 PMIS: Execute Evaluation
    MCJ5 SAPMMCS7 PMIS: Create Evaluation Structure
    MCJ6 SAPMMCS7 PMIS: Change Evaluation Structure
    MCJ7 SAPMMCS7 PMIS: Display Evaluation Structure
    MCKA RMCROIW0 OIW Metadata
    MCKB RMCSSLVS TIS selection version tree
    MCKC RMCSSLVS User-spec. TIS select. version tree
    MCKH RMCSSLVS Selection version tree: Sales
    MCKI RMCSSLVS Selection version tree: Purchasing
    MCKJ RMCSSLVS Selection version tree: Stock
    MCKK RMCSSLVS Selection version tree: Production
    MCKL RMCSSLVS Selection version tree: Quality
    MCKM RMCSSLVS Selection version tree: Plant Maint
    MCKN RMCSSLVS Selection version tree: Retail
    MCKO RMCSSLVS Selection version tree: General
    MCKP RMCSSLVS User-spec. selec. vers. tree: Sales
    MCKQ RMCSSLVS User-spec. sel. vers. tree: Purchas
    MCKR RMCSSLVS User-spec. sel. vers. tree: Stock
    MCKS RMCSSLVS User-spec. sel. vers. tree: Product
    MCKT RMCSSLVS User-spec. sel. vers. tree: Quality
    MCKU RMCSSLVS User-spec. sel. vers. tree: PM
    MCKV RMCSSLVS User-spec. sel. vers. tree: Retail
    MCKW RMCSSLVS User-spec. sel. vers. tree: General
    MCKY RMCSSLVS WFIS: Selection Versions (User-Spec
    MCKZ RMCSSLVS WFIS: Selection Versions (General)
    MCK0 MENUMCK0 Plant Maintenance Information Syste
    MCK1 SAPMMCSH Create Hierarchy
    MCK2 SAPMMCSH Change hierarchy
    MCK3 SAPMMCSH Display hierarchy
    MCK4 SAPMMCSH Change SAP OIW Hierarchy
    MCK5 SAPMMCSH Display SAP OIW Hierarchy
    MCK6 SAPMMCSH Create Customer OIW Hierarchy
    MCK7 SAPMMCSH Change Customer OIW Hierarchy
    MCK8 SAPMMCSH Display Customer OIW Hierarchy
    MCK9 SAPMMCSH Maintain Customer OIW Info Catalog
    MCLD RMCB2300 WM: Material Flow - Selection
    MCLH RMCB2400 WM: Movement Types - Selection
    MCL1 RMCB2000 WMS: Stck Placemt.+Remov. Selection
    MCL5 RMCB2100 WMS: Flow of Quantities Selection
    MCL9 RMCB2200 WM: Material Plcmt/Removal:Selectio
    MCM+ SAPMMCSV WFIS: Create Selection Version
    MCM- SAPMMCSV WFIS: Change Selection Version
    MCM/ SAPMMCSV WFIS: Display Selection Version
    MCM% SAPMMCSV RIS: Create Selection Version
    MCM? SAPMMCSV RIS: Schedule Selection Version
    MCMA SAPMMCSV INVCO: Display selection version
    MCMB SAPMMCSV INVCO: SelecVers: Schedule job
    MCMC SAPMMCSV PPIS: Create selection version
    MCMD SAPMMCSV PPIS: Change selection version
    MCME SAPMMCSV PPIS: Display selection version
    MCMF SAPMMCSV PPIS: SelectVers: Schedule job
    MCMG SAPMMCSV QMIS: Create selection version
    MCMH SAPMMCSV QMIS: Change selection version
    MCMI SAPMMCSV QMIS: Display selection version
    MCMJ SAPMMCSV QMIS: Selection Version:Schedule Jo
    MCMK SAPMMCSV PMIS: Create selection version
    MCML SAPMMCSV PMIS: Change selection version
    MCMM SAPMMCSV PMIS: Display selection verison
    MCMN SAPMMCSV PMIS: SelectVers: Schedule job
    MCMO SAPMMCSV Create selection version
    MCMP SAPMMCSV Change selection version
    MCMQ SAPMMCSV Display selection version
    MCMR SAPMMCSV Selection Version: Create Variant
    MCMS SAPMMCSV Selection Version: Change Variant
    MCMT SAPMMCSV Selection Version: Display Variant
    MCMV SAPMMCSV Selection version: Schedule job
    MCMX SAPMMCSV RIS: Change Selection Version
    MCMY SAPMMCSV RIS: Display Selection Version
    MCMZ SAPMMCSV RIS: Selection Version: Schedule Jo
    MCM0 SAPMMCSV INVCO: Change selection version
    MCM1 SAPMMCSV SIS: Create selection version
    MCM10 SAPMMCSV TIS: Create selection version
    MCM11 SAPMMCSV TIS: Change selection version
    MCM12 SAPMMCSV TIS: Display selection version
    MCM13 SAPMMCSV TIS: Selection Version: Schedule Jo
    MCM2 SAPMMCSV SIS: Change selection version
    MCM3 SAPMMCSV SIS: Display selection version
    MCM4 SAPMMCSV SIS: Selec. version: Schedule job
    MCM5 SAPMMCSV PURCHIS: Create selection version
    MCM6 SAPMMCSV PURCHIS: Change selection version
    MCM7 SAPMMCSV PURCHIS: Display selection version
    MCM8 SAPMMCSV PURCHIS: SelectVers: Schedule job
    MCM9 SAPMMCSV INVCO: Create selection version
    MCNB RMCBINIT_BW BW: Initialize Stock Balances
    MCNR SAPMSNUM Number Range Maintenance: MCLIS
    MCOA RMCQ1100 QMIS: Cust. analysis; Lot overview
    MCOB RMCQ2400 QMIS: General Results for Customer
    MCOC RMCQ1100 QMIS: Cust. Analysis Quant. Overvie
    MCOD RMCQ2500 QMIS: Quantitative Results for Cust
    MCOE RMCQ1100 QMIS: Customer Analysis Q Score
    MCOG RMCQ1100 QMIS: Customer Analysis Lot Counter
    MCOI RMCQ1100 QMIS: Customer Analysis Quantities
    MCOK RMCQ1100 QMIS: Customer Analysis Expense
    MCOM RMCQ1100 QMIS: Customer Analysis Level/Disp.
    MCOO RMCQ1100 QMIS: Customer analysis - insp. lot
    MCOP RMCQ0800 QMIS: Cust. Analysis Item Q Not.
    MCOV RMCQ0500 QMIS: Cust. Anal. Overview Q Not.
    MCOX RMCQ1200 QMIS: Customer Analysis Defects
    MCO1 CALLSTAOTB RIS: OTB - Selection
    MCO2 RMCACOP8 OTB: Copy Planning Type
    MCO4 CALLOTB Create OTB Planning
    MCO5 CALLOTB Change OTB Planning
    MCO6 CALLOTB Display OTB Planning
    MCO7 CALLOTB Create OTB Planning
    MCO8 CALLOTB Change OTB Planning
    MCO9 CALLOTB Display OTB Planning
    MCPB RMCF0200 Operation analysis: Dates
    MCPD RMCF0100 Production order analysis: Dates
    MCPF RMCF0300 Material analysis: Dates
    MCPH RMCF0400 Work center analysis: Dates
    MCPI MENUMCPI Menu: Production Info System
    MCPK RMCF0200 Operation analysis: Quantities
    MCPM RMCF0100 Production order anal.: Quantities
    MCPO RMCF0300 Material analysis: Quantities
    MCPQ RMCF0400 Work center analysis: Quantities
    MCPS RMCF0200 Operation analysis: Lead time
    MCPU RMCF0100 Production Order Analysis: Lead Tim
    MCPW RMCF0300 Material analysis: Lead time
    MCPY RMCF0400 Work center analysis: Lead time
    MCP0 MENUMCP0 Shop Floor Information System
    MCP1 RMCF0200 SFIS: Operation Analysis Selection
    MCP3 RMCF0100 SFIS: Material Analysis Selection
    MCP5 RMCF0300 SFIS: Material Analysis Selection
    MCP6 RMCFSERI Goods rcpt analysis: repetitive mfg
    MCP7 RMCF0400 SFIS: Work Center Analysis Selectio
    MCP8 RMCF2500 Goods rcpt analysis: repetitive mfg
    MCP9 RMCF0500 SFIS: Select Run Schedule
    MCQ. RMCFPK00 SFIS: Kanban analysis selection
    MCQA SAPMMCS4 Call Up QM Standard Analyses
    MCR: SAPMMCSC Std Analyses: User Settings; CALL
    MCRB RMCSGENA LIS: Generate Evaluations
    MCRC RMCS802T Charact. Texts for Eval. Structures
    MCRE RMCF0600 Material Usage Analysis: Selection
    MCRG RMCFCUST Change Settings: PPIS
    MCRH RMCFCUST Display Settings: PPIS
    MCRI RMCF0700 Product Cost Analysis: Selection
    MCRJ RMCF2700 Prod. Cost Analysis: Repetitive Mfg
    MCRK RMCFSERI Prod. Cost Analysis: Repetitive Mfg
    MCRM RMCF0800 Reporting Point Stats.: Selection
    MCRO RMCF2600 Matl consumptn anal.: repetitive mf
    MCRP RMCFSERI Matl consumptn anal.: repetitive mf
    MCRQ SAPMMCS4 Call Standard Analyses: PP-IS
    MCRU RMCF0200 PP-PI: Operation Analysis Selection
    MCRV RMCF0100 PP-PI: Process Order Analysis
    MCRW RMCF0400 PP-PI: Resources Selection
    MCRX RMCF0600 PP-PI: Material Usage Analysis
    MCRY RMCF0700 PP-PI: Product Cost Analysis
    MCR1 SAPMMCS2 SFIS: Create Evaluation
    MCR2 SAPMMCS2 SFIS: Change Evaluation
    MCR3 SAPMMCS2 SFIS: Display Evaluation
    MCR4 SAPMMCS2 SFIS: Execute Evaluation
    MCR7 SAPMMCS7 SFIS: Create Evaluation Structure
    MCR8 SAPMMCS7 SFIS: Change Evaluation Structure
    MCR9 SAPMMCS7 SFIS: Display Evaluation Structure
    MCS/ RMCSISGN Mass Generation: Info Struct./Updat
    MCSA SAPMMCS2 SIS: Create Evaluation
    MCSB SAPMMCS2 SIS: Change Evaluation
    MCSC SAPMMCS2 SIS: Display Evaluation
    MCSG SAPMMCS2 SIS: Execute Evaluation
    MCSH SAPMMCS4 Call Std. Analyses of Customer Appl
    MCSI SAPMMCS4 Call Standard Analyses of Sales
    MCSJ SAPMMCS4 Call Standard Analyses of Purchasin
    MCSK SAPMMCS4 Call Standard Analyses of Stocks
    MCSL SAPMMCS4 Call Shop Floor Standard Analyses
    MCSM1 SAPMMCS2 TIS: Create evaluation
    MCSM2 SAPMMCS2 TIS: Change evaluation
    MCSM3 SAPMMCS2 TIS: Display evaluation
    MCSM4 SAPMMCS2 TIS: Execute evaluation
    MCSM5 SAPMMCS7 TIS: Create evaluation structure
    MCSM6 SAPMMCS7 TIS: Change evaluation structure
    MCSM7 SAPMMCS7 TIS: Display evaluation structure
    MCSR SAPMMCS4 Standard Analyses External Data
    MCSS SAPMMCS3 Display Log: Gen. Info Structure
    MCST SAPMMCS3 Display Log: Gen. Updating
    MCSX SAPMMCS4 Archive Statistical Data
    MCSY RMCSCORS Reset Time Stamp: LIS Generation
    MCSZ SAPMMCS4 Convert LIS Statistical Data
    MCS1 SAPMMCS4 Standard Analyses; General Logistic
    MCS7 SAPMMCS7 SIS: Create Evaluation Structure
    MCS8 SAPMMCS7 SIS: Change Evaluation Structure
    MCS9 SAPMMCS7 SIS: Display Evalaution Structure
    MCTA RMCV0100 SIS: Customer Analysis - Selection
    MCTC RMCV0200 SIS: Material Analysis - Selection
    MCTE RMCV0300 SIS: Sales Org. Analysis - Selectio
    MCTG RMCV0600 SIS: Sales Office Analysis Selectio
    MCTI RMCV0500 SIS: Sales Empl. Analysis Selection
    MCTK RMCV0400 SIS: Shipping Pt. Analysis Selectio
    MCTV01 RMCV0800 SIS: Sales Activity - Selection
    MCTV02 RMCV0900 SIS: Sales Promotions - Selection
    MCTV03 RMCV1000 SIS: Address List - Selection
    MCTV04 RMCV1100 SIS: Address Counter - Selection
    MCTV05 RMCV1200 SIS: Customer Potential Analysis
    MCT0 MENUMCT0 Initial SIS Screen
    MCT1 MENUMCT1 Standard SDIS Analyses
    MCT2 MENUMCT2 Initial SIS Screen
    MCUA RMCT0100 TIS: Shpt analysis
    MCUB RMCT0200 TIS: Shipment Analysis: Routes
    MCUC RMCT0300 TIS: ShipmentAnaly: MeansOfTranspor
    MCUD RMCT0400 TIS: Shipment Analysis: Shipping
    MCUE RMCT0500 TIS: Shipment Analysis: Stages
    MCUF RMCT0600 TIS: Shipment Analysis: Material
    MCU0 MENUMCU0 Transportation Info System (TIS)
    MCU1 RMCSUNIT Create LIS Unit
    MCU2 RMCSUDEL Delete LIS Unit
    MCU3 SAPMMCS4 Call Standard Analyses: Transportat
    MCVA RMCQ0100 QMIS: Vendor Analysis Lot Overview
    MCVB RMCQ2200 QMIS: General Results for Vendor
    MCVC RMCQ0100 QMIS: Vendor Analysis - Qty Overvie
    MCVD RMCQ2300 QMIS: Quant. Results for Vendor
    MCVE RMCQ0100 QMIS: Vendor Analysis Quality Score
    MCVG RMCQ0100 QMIS: Vendor Analysis - Lot Numbers
    MCVI RMCQ0100 QMIS: Vendor Analysis - Quantities
    MCVK RMCQ0100 QMIS: Vendor Analysis - Effort
    MCVM RMCQ0100 QMIS: Vendor Analyis - Level & Disp
    MCVO RMCQ0100 Vendor Analysis - Lots Overview
    MCVP RMCQ0700 QMIS: vendor analysis items Q notif
    MCVQ MENUMCVQ Quality Management Info System QMIS
    MCVR SAPMMCS3 SIS: update diagnosis - order
    MCVS SAPMMCS3 TIS: Update Diagnosis: Transportatn
    MCVT SAPMMCS3 SIS: update diagnosis - delivery
    MCVV SAPMMCS3 SIS: update diagnosis - billing doc
    MCVVK SAPMMCS3 SIS: Updating - Sales Activities
    MCVW SAPMMCS3 INVCO: Update Diagnosis MatDoc
    MCVX RMCQ1000 QMIS: Vendor analysis defects
    MCVY SAPMMCS3 INVCO: Update Diagnosis AcctngDoc
    MCVZ RMCQ0400 QMIS: Ven. Analysis- Q Not. Overvie
    MCV0 MENUMCV0 Purchasing Information System
    MCV1 RMCQ0100 QMIS: Vendor analysis - insp. lot
    MCV3 RMCQ0200 QMIS: Material analysis - insp. lot
    MCV5 /1SDBF12L/RV14ACall Up Price List w.Stepped Displa
    MCV6 /1SDBF12L/RV14ACall Up Indiv. Customer Prices List
    MCV7 /1SDBF12L/RV14ACall Up List of Price Groups
    MCV8 /1SDBF12L/RV14ACall Up Material/MatPrcGroup List
    MCV9 RVAUFERR Call Up List of Incomplete Document
    MCW_AA MCW_AA_CUST IMG Retail
    MCWIS SAPMMCS3 FK Simulation Inventory Document
    MCWRP SAPMMCS3 FK Simulation Invoice Document
    MCW1 RMCE5000 PURCHIS: Evaluate Payment Header
    MCW2 RMCE5100 PURCHIS: Evaluate Payment Item
    MCW3 RMCE5200 PURCHIS: Evaluate VBD Header
    MCW4 RMCE5300 PURCHIS: Evaluate VBD Item
    MCW5 SAPLMCW1_WLF Payment: Simulate Updating
    MCW6 RMCENEUB LIS Setup for Agency Documents
    MCXA RMCQ0200 QMIS: Material Analysis-Lot Overvie
    MCXB RMCQ2000 QMIS: General Results for Material
    MCXC RMCQ0200 QMIS: Matl Analysis - Qty Overview
    MCXD RMCQ2100 QMIS: Quant. Results for Material
    MCXE RMCQ0200 QMIS: Matl Analysis - Quality Score
    MCXG RMCQ0200 QMIS: Matl Analysis - Lot Numbers
    MCXI RMCQ0200 QMIS: Material Analysis - Quantitie
    MCXK RMCQ0200 QMIS: Material Analysis - Effort
    MCXM RMCQ0200 QMIS: Matl Analysis - Level & Disp.
    MCXP RMCQ0600 QMIS: Matl. Analysis - Q Notif. Ite
    MCXV RMCQ0300 QMIS: mat. analysis overview Q not.
    MCXX RMCQ0900 QMIS: Material analysis defects
    MCX1 SAPMMCS2 QMIS: Create Evaluation
    MCX2 SAPMMCS2 QMIS: Change Evaluation
    MCX3 SAPMMCS2 QMIS: Display Evaluation
    MCX4 SAPMMCS2 QMIS: Execute Evaluation
    MCX7 SAPMMCS7 QIS: Create Evaluation Structure
    MCX8 SAPMMCS7 QIS: Change Evaluation Structure
    MCX9 SAPMMCS7 QIS: display evaluation structure
    MCYA SAPMMCY1 Delete Jobs: Exceptions
    MCYB SAPMMCY1 Plan Jobs: Exceptions
    MCYG SAPMMCY1 Exception Analysis INVCO
    MCYH SAPMMCY1 Exception Analysis: PURCHIS
    MCYI SAPMMCY1 Exception Analysis: SIS
    MCYJ SAPMMCY1 Exception Analysis: PP-IS
    MCYK SAPMMCY1 Exception Analysis: PM-IS
    MCYL SAPMMCY1 Exception Analysis: QM-IS
    MCYM SAPMMCY1 Exception Analysis: Retail IS
    MCYN SAPMMCY1 Exception Analysis: LIS-General
    MCYO SAPMMCY1 Exception analysis: TIS
    MCYO0 SAPMMCY1 Schedule Jobs: Exceptions: TIS
    MCYO1 SAPMMCY1 Create Exception: EWS/TIS
    MCYO2 SAPMMCY1 Maintain Exception: EWS/TIS
    MCYO3 SAPMMCY1 Display Exception: EWS/TIS
    MCYO4 SAPMMCY1 Create Exception Group: TIS
    MCYO5 SAPMMCY1 Change Exception Group: TIS
    MCYO6 SAPMMCY1 Display Exception: TIS
    MCYO7 SAPMMCY1 Create Job for Exception: TIS
    MCYO8 SAPMMCY1 Change Jobs: Exceptions: TIS
    MCYO9 SAPMMCY1 Display jobs: Exceptions SIS
    MCYY SAPMMCY1 WFIS: Exception Analysis
    MCY1 SAPMMCY1 Create Exception EWS/LIS
    MCY2 SAPMMCY1 Maintain Exception EWS/LIS
    MCY3 SAPMMCY1 Display Exception (EWS/LIS)
    MCY4 SAPMMCY1 Create Group Exception
    MCY5 SAPMMCY1 Change Group Exception
    MCY6 SAPMMCY1 Display Exception
    MCY7 SAPMMCY1 Create Job For Exception
    MCY8 SAPMMCY1 Change Jobs: Exceptions
    MCY9 SAPMMCY1 Display Jobs: Exceptions
    MCZ1 SAPMMCSE Create LIS Inbound Interface
    MCZ2 SAPMMCSE Change LIS Inbound Interface
    MCZ3 SAPMMCSE Display LIS Inbound Interface
    MC0A SAPMSNUM Number Range Maintenance: Key Figs.
    MC0C SAPMSNUM Number Range Maintenance: Info Sets
    MC00 MENUMC00 Logistics Information System (LIS)
    MC01 SAPMMCL1 Key Figure Retrieval Via Info Sets
    MC02 SAPMMCL1 Key Fig.Retrieval Using Text String
    MC03 SAPMMCL1 Key Fig Retrieval via Classificatio
    MC04 SAPMMCL1 Create Info Set
    MC05 SAPMMCL1 Change Info Set
    MC06 SAPMMCL1 Display Info Set
    MC07 SAPMMCL1 Create Key Figure
    MC08 SAPMMCL1 Change Key Figure
    MC09 SAPMMCL1 Create Field Catalog
    MC1/ SAPMMCS1 External Data: Maintain Formulas
    MC1A SAPMMCS1 Maintain Formulas/Requirements
    MC1AT SAPMMCS1 Maintain Formulas/Requirements
    MC1B SAPMMCS1 SIS: Maintain Requirements
    MC1BT SAPMMCS1 TIS: Maintain requirements
    MC1D SAPMMCS1 SIS: Maintain Formulas
    MC1DT SAPMMCS1 TIS: Maintain formulas
    MC1F SAPMMCS1 PURCHIS: Maintain Requirements
    MC1H SAPMMCS1 PURCHIS: Maintain Formulas
    MC1J SAPMMCS1 SFIS: Maintain Requirements
    MC1L SAPMMCS1 SFIS: Maintain Formulas
    MC1N SAPMMCS1 INVCO: Maintain Requirements
    MC1P SAPMMCS1 INVCO: Maintain Formulas
    MC1Q SAPMMCS1 INVCO: Display Formulas
    MC1R SAPMMCS1 Display Formulas/Requirements
    MC1S SAPMMCS1 QMIS: Maintain Requirements
    MC1T SAPMMCS1 QMIS: Display Requirements
    MC1U SAPMMCS1 QMIS: Maintain Formulas
    MC1V SAPMMCS1 QMIS: Display Formulas
    MC1W SAPMMCS1 PMIS: Maintain Requirements
    MC1X SAPMMCS1 PMIS: Display Requirements
    MC1Y SAPMMCS1 PMIS: Maintain Formulas
    MC1Z SAPMMCS1 PMIS: Display Formulas
    MC10 SAPMMCS2 Perform Analysis
    MC11 SAPMMCS2 Create Evaluation
    MC12 SAPMMCS2 Change Evaluation
    MC13 SAPMMCS2 Display Evaluation
    MC14 SAPMMCS1 TIS: Maintain requirements
    MC15 SAPMMCS1 TIS: Maintain formulas
    MC16 RMCSAUSW LIS: Delete Evaluation Structure
    MC18 SAPMMCS3 Create Field Catalog
    MC19 SAPMMCS3 Change Field Catalog
    MC20 SAPMMCS3 Display Field Catalog
    MC21 SAPMMCS3 Create Info Structure
    MC22 SAPMMCS3 Change Info Structure
    MC23 SAPMMCS3 Display Info Structure
    MC24 SAPMMCS1 Create Update
    MC25 SAPMMCS1 Change Update
    MC26 SAPMMCS1 Display Update
    MC27 SAPMMCS7 Create Evaluation Structure
    MC28 SAPMMCS7 Change Evaluation Structure
    MC29 SAPMMCS7 Display Evaluation Structure
    MC3V RMCSV3VB U3 update
    MC30 RMCSSH02 Update Log
    MC35 SAPMMCP6 Create Rough-Cut Planning Profile
    MC36 SAPMMCP6 Change Rough-Cut Planning Profile
    MC37 SAPMMCP6 Display Rough-Cut Planning Profile
    MC38 SAPMSNUM Number range maintenance: MC_ERKO
    MC40 RMCBAB20 INVCO: ABC Analysis of Usage Values
    MC41 RMCBAB25 INVCO: ABC Analysis of Reqmt Values
    MC42 RMCBRW30 INVCO: Range of Coverage by Usg.Val
    MC43 RMCBRW40 INVCO: Range Of Coverage By Reqmts
    MC44 RMCBUH30 INVCO:Analysis of Inventory Turnove
    MC45 RMCBVW30 INVCO: Analysis of Usage Values
    MC46 RMCBLH30 INVCO: Analysis of Slow-Moving Item
    MC47 RMCBBE30 INVCO: Analysis of Reqmt Values
    MC48 RMCBBW30 INVCO: Anal. of Current Stock Value
    MC49 RMCBBW40 INVCO: Mean Stock Values
    MC50 RMCBBS30 INVCO: Analysis of Dead Stock
    MC59 SAPMMCP3 Revise Planning Hierarchy
    MC6A MENUMC6A Sales and Operations Planning
    MC6B MENUMC6B Sales and Operations Planning
    MC61 SAPMMCP3 Create Planning Hierarchy
    MC62 SAPMMCP3 Change Planning Hierarchy
    MC63 SAPMMCP3 Display Planning Hierarchy
    MC64 SAPMMCP6 Create Event
    MC65 SAPMMCP6 Change Event
    MC66 SAPMMCP6 Display Event
    MC67 SAPMMCP3 Init.graphics screen: genl.plg.hier
    MC7E SAPLMCP2 ALE Configuration for Info Structur
    MC71 RMCP2L01 Evaluation: Product Group Hierarchy
    MC72 RMCP2L04 Evaluation: Product Group Usage
    MC73 RMCP2L05 Evaluation: Material Usage; Prod.Gr
    MC74 SAPMMCP6 Transfer Mat. to Demand Management
    MC75 SAPMMCP6 Transfer PG to Demand Management
    MC78 SAPMMCP6 Copy SOP Version
    MC79 SAPL0MP0 User Settings for SOP
    MC8A SAPMMCP6 Create Planning Type
    MC8B SAPMMCP6 Change Planning Type
    MC8C SAPMMCP6 Display Planning Type
    MC8D RMCP6BCH Mass Processing: Create Planning
    MC8E RMCP6BCH Mass Processing: Change Planning
    MC8F RMCP6BCH Delete Entry in Planning File
    MC8G RMCP6BRU Schedule Mass Processing
    MC8H SAPMMCP6 Maintain User Methods
    MC8I RMCP6TST Mass Processing: Check Planning
    MC8J RMCP6JOB Reprocess Mass Processing
    MC8K RMCP6BRV Copy/Delete Planning Versions
    MC8M RMCP6BAB Read Opening Stocks
    MC8N RMCP6PRL Delete forecast versions
    MC8O RMCSCORS Reset Generation Time Stamp
    MC8P RMCPSOPP Standard SOP: Generate Master Data
    MC8Q RMCP6ACO Aggregate Copy
    MC8R RMCP6RES RESET: Status for Planning Objects
    MC8U SAPMMCP6 Calculate Proportional Factors
    MC8V SAPMMCP6 LIS Planning: Copy Versions
    MC8W SAPMMCP6 LIS Planning: Delete Versions
    MC8X RMCP0100 SOP: Distribution Scenario - Select
    MC8Y RMCP0105 SOP: Distribution Scenario - Displa
    MC8Z SAPLMCP2 SOP => Key Figure Assignments
    MC80 SAPMMCP6 Delete and activate versions
    MC84 SAPMMCP3 Create Product Group
    MC85 SAPMMCP3 Display Product Group
    MC86 SAPMMCP3 Change Product Groups
    MC9A RMCP6FLS Flexible Planning: Gen. Master Data
    MC9B RMCP6PAP Calc. Proportions as in Pl.Hierarch
    MC9C SAPMMCP6 Reports for Flexible Planning
    MC9E RMCP3INS Info Structure: Add to General Char
    MC9F RMCP3DEL Info Structure: Delete All Charact.
    MC9K SAPMMCP6 Maintain Available Capacity
    MC90 SAPMMCP6 Tsfr.to Dm.Mgmt.: Mat.from any IS
    MC91 SAPMMCP3 Initial Graphic: Product Groups
    MC92 SAPMMCP3 Initial: Product Groups; Hierarchie
    MC93 SAPMMCP6 Create Flexible LIS Planning
    MC94 SAPMMCP6 Change Flexible LIS Planning
    MC95 SAPMMCP6 Display Flexible LIS Planning
    MC97 SAPMSNUM Number Range Maintenance: MC_SAUF
    MC98 SAPMMCP3 Maintain Planning Objects
    MC99 SAPMMCP3 Display Planning Objects
    MDAB RMMDBTCH Planning File - Set Up BATCH
    MDAC SAPMM61P Execute Action for Planned Order
    MDBA MDBAPI01 BAPI planned order processing
    MDBS RMMDBTCH MPS - total planning run
    MDBT RMMDBTCH MRP Run In Batch
    MDC7 SAPMM61R Start MD07 by using report
    MDLD RMDLDR00 Print MRP List
    MDLP MENUMDLP MPS
    MDL1 SAPLMD07 Create Production Lot
    MDL2 SAPLMD07 Change Production Lot
    MDL3 SAPLMD07 Display Production Lot
    MDM1 RMDMAIL1 Mail To Vendor
    MDM2 RMDMAIL2 Mail to Vendor
    MDM3 RMDMAIL3 Mail to Customer
    MDM4 RMDMAIL4 Mail to MRP Controller
    MDM5 RMDMAIL5 Workflow: Mail to MRP Controller
    MDPH SAPMM60X Planning Profile
    MDPP MENUMDPP Demand Management
    MDPV SAPLM60K Planning variant: Initial screen
    MDP0 MENUMDP0 Independent Requirements
    MDP1 SAPLCUTU Create combination structure
    MDP2 SAPLCUTU Change combination structure
    MDP3 SAPLCUTU Display combination structure
    MDP4 SAPLCUD2 Maintain combinations
    MDP6 SAPLM60K Modeling
    MDRE RMMDBTCH Checking Plnng File In BCKGRND Mode
    MDRP MENUMDRP Distribution Resource Planning
    MDSA SAPMM61S Display Serial Numbers
    MDSP SAPMM61S Change BOM Explosion Numbers
    MDUM RMMDBTCH Convert Planned Orders into PReqs
    MDUP SAPMM61U Maintain Project New Key Assignment
    MDUS SAPMM61U Assign New Key to WBS Elements
    MDVP RLD05000 Collective Availability Check PAUF
    MDW1 SAPMM61K Access MRP control program
    MD00 MENUMD00 MRP : external procurement
    MD01 SAPMM61X MRP Run
    MD02 SAPMM61X MRP - Single-item; Multi-level -
    MD03 SAPMM61X MRP-Individual Planning-Single Leve
    MD04 SAPMM61R Display Stock/Requirements Situatio
    MD05 SAPMM61R Individual Display Of MRP List
    MD06 SAPMM61R Collective Display Of MRP List
    MD07 SAPMM61R Current Material Overview
    MD08 RMMDKP01 Reorg. MRP Lists
    MD09 SAPMM61O Pegging
    MD11 SAPMM61P Create Planned Order
    MD12 SAPMM61P Change Planned Order
    MD13 SAPMM61P Display Planned Order
    MD14 SAPMM61P Individual Conversion of Plnned Ord
    MD15 SAPMM61P Collective Conversion Of Plnd Ordrs
    MD16 SAPMM61P Collective Display of Planned Order
    MD17 SAPLM61Q Collective Requirements Display
    MD19 SAPMM61P Firm Planned Orders
    MD20 SAPMM61R Create Planning File Entry
    MD21 RMDPFE00 Display Planning File Entry
    MD25 SAPMM61I Create Planning Calendar
    MD26 SAPMM61I Change Planning Calendar
    MD27 SAPMM61I Display Planning Calendar
    MD4C SAPMM61O Multilevel Order Report
    MD40 SAPMM61X MPS
    MD41 SAPMM61X MPS - Single-item; Multi-level -
    MD42 SAPMM61X MPS - Single-item; Single-level -
    MD43 SAPMM61X MPS - Single-item; Interactive -
    MD44 SAPMM61M MPS Evaluation
    MD45 SAPMM61M MRP List Evaluation
    MD46 SAPMM61M Eval. MRP lists of MRP controller
    MD47 SAPMM61M Product Group Planning Evaluation
    MD48 SAPMM61M Cross-Plant Evaluation
    MD50 SAPMM61X Sales order planning
    MD51 SAPMM61X Individual project planning
    MD61 SAPMM60X Create Planned Indep. Requirements
    MD62 SAPMM60X Change Planned Indep. Requirements
    MD63 SAPMM60X Display Planned Indep. Requirements
    MD64 SAPMM60X Create Planned Indep.Requirements
    MD65 SAPMM60X Change Standard Indep.Requirements
    MD66 SAPMM60X Display Standard Indep.Requirements
    MD67 RM60ROLL Staggered Split
    MD70 RM60FORC Copy Total Forecast
    MD71 RM60COPY "Copy Reference Changes"
    MD72 RM60COMB Evaluation; Charac.Plnng Techniques
    MD73 SAPMM60X Display Total Indep. Requirements
    MD74 RM60RR20 Reorganization: Adapt Indep.Reqmts
    MD75 RM60RR30 Reorganization: Delete Indep.Reqmts
    MD76 RM60RR40 Reorg: Delete Indep.Reqmts History
    MD79 SAPMM60M "PP Demand Mngmt - XXL List Viewer"
    MD81 SAPMV45A Create Customer Indep. Requirements
    MD82 SAPMV45A Change customer indep. requirement
    MD83 SAPMV45A Display Customer Indep. Requirement
    MD85 SAPMV75A List Customer Indep. Requirements
    MD90 SAPMSNUM Maintain Number Range for MRP
    MD91 SAPMSNUM Maintain No. Range for Planned Orde
    MD92 SAPMSNUM Maint.No.Range for Reserv/Dep.Reqmt
    MD93 SAPMSNUM Maintain Number Range: MDSM
    MD94 SAPMSNUM Number range maint.: Total reqs
    MEBA RWMBON08 Comp. Suppl. BV; Vendor Rebate Arr.
    MEBB RWMBON10 Check Open Docs.; Vendor Reb. Arrs.
    MEBC RWMBON20 Check Customizing: Subsequent Sett.
    MEBE RWMBON11 Workflow Sett. re Vendor Reb. Arrs.
    MEBF RWMBONF0 Updating of External Busn. Volumes
    MEBG RWMBONE1 Chg. Curr. (Euro); Vend. Reb. Arrs.
    MEBH RWMBONE2 Generate Work Items (Man. Extension
    MEBI RWBNAAWN Message; Subs.Settlem. - Settlem.Ru
    MEBJ RWMBON07 Recompile Income; Vendor Reb. Arrs.
    MEBK RWBNAAWS Message.; Subs. Settlem.- Arrangmen
    MEBM RWMBON14 List of settlement runs for arrngmt
    MEBR RV130007 Archive Rebate Arrangements
    MEBS RWMBON13 Stmnt. Sett. Docs.; Vend. Reb. Arrs
    MEBT RWMBONF1 Test Data: External Business Volume
    MEBV SAPMV13A Extend Rebate Arrangements (Dialog)
    MEB0 RWMBON15 Reversal of Settlement Runs
    MEB1 SAPMV13A Create Reb. Arrangs. (Subseq. Sett.
    MEB2 SAPMV13A Change Reb. Arrangs. (Subseq. Sett.
    MEB3 SAPMV13A Displ. Reb. Arrangs. (Subseq. Sett.
    MEB4 RWMBON01 Settlement re Vendor Rebate Arrs.
    MEB5 RWMBON02 List of Vendor Rebate Arrangements
    MEB6 RWMBON03 Busn. Vol. Data; Vendor Rebate Arrs
    MEB7 RWMBON05 Extend Vendor Rebate Arrangements
    MEB8 RWMBON04 Det. Statement; Vendor Rebate Arrs.
    MEB9 RWMBON06 Stat. Statement; Vendor Rebate Arrs
    MEDL RM11KS00 Price Change: Contract
    MEIA RMEBEIK3 New Structure Doc.Ind. Cust. Sett.
    MEIS RMIMST00 Data Selection: Arrivals
    MEI1 RMEBEIN1 Automatic Purchasing Document Chang
    MEI2 RMEBEIN2 Automatic Document Change
    MEI3 RMEBEIN3 Recompilation of Document Index
    MEI4 RMEBEIN4 Compile Worklist for Document Index
    MEI5 RMEBEIN5 Delete Worklist for Document Index
    MEI6 RMEBEIN6 Delete purchasing document index
    MEI7 RMEBEIN7 Change sales prices in purch. order
    MEI8 RMEBEIZ3 Recomp. doc. index settlement req.
    MEI9 RMEBEIL3 Recomp. doc. index vendor bill. doc
    MEKA RM06K000 Conditions: General Overview
    MEKB RM06K020 Conditions by Contract
    MEKC RM06K021 Conditions by Info Record
    MEKD RM06K022 Conditions for Material Group
    MEKE RM06K023 Conditions for Vendor
    MEKF RM06K024 Conditions for Material Type
    MEKG RM06K025 Conditions for Condition Group
    MEKH RM06K026 Market Price
    MEKI RM06K027 Conditions for Incoterms
    MEKJ RM06K028 Conditions for Invoicing Party
    MEKK RM06K029 Conditions for Vendor Sub-Range
    MEKL RM06K052 Price Change: Scheduling Agreements
    MEKLE RM06K082 Currency Change: Sched. Agreements
    MEKP RM06K050 Price Change: Info Records
    MEKPE RM06K080 Currency Change: Info Records
    MEKR RM06K051 Price Change: Contracts
    MEKRE RM06K081 Currency Change: Contracts
    MEKX SAPMSM29 Transport Condition Types Purchasin
    MEKY SAPMSM29 Trnsp. Calc. Schema: Mkt. Pr. (Pur.
    MEKZ SAPMSM29 Trnsp. Calculation Schemas (Purch.)
    MEK1 SAPMV13A Create Conditions (Purchasing)
    MEK2 SAPMV13A Change Conditions (Purchasing)
    MEK3 SAPMV13A Display Conditions (Purchasing)
    MEK31 SAPMV13A Condition Maintenance: Change
    MEK32 SAPMV13A Condition Maintenance: Change
    MEK33 SAPMV13A Condition Maintenance: Change
    MEK4 SAPMV13A Create Conditions (Purchasing)
    MELB RM06XB00 Purch. Transactions by Tracking No.
    MEL0 MENUMEL0 Service Entry Sheet
    MEPA RMEEINJ1 Order Price Simulation/Price Info
    MEPB RMEEINJ2 Price Info/Vendor Negotiations
    MEPO RM_MEPO_GUI Purchase Order
    MEQB RMMEBTCH Revise Quota Arrangement
    MEQM RM06Q001 Quota Arrangement for Material
    MEQ1 SAPDM06Q Maintain Quota Arrangement
    MEQ3 SAPDM06Q Display Quota Arrangement
    MEQ4 RM06QCD1 Changes to Quota Arrangement
    MEQ6 RM06Q004 Analyze Quota Arrangement
    MEQ7 RM06QRE0 Reorganize Quota Arrangement
    MEQ8 RM06Q006 Monitor Quota Arrangements
    MERA RWMBON38 Comp. Suppl. BV; Cust. Rebate Arrs.
    MERB RWMBON40 Check re Open Docs. Cust. Reb. Arr.
    MERE RWMBON41 Workflow: Sett. Cust. Rebate Arrs.
    MERF RWMBONF2 Updating of External Busn. Volumes
    MERG RWMBONE3 Change Curr. (Euro) Cust. Reb. Arrs
    MERH RWMBONE4 Generate Work Items (Man. Extension
    MERJ RWMBON37 Recomp. of Income; Cust. Reb. Arrs.
    MERS RWMBON43 Stmnt. Sett. Docs. Cust. Reb. Arrs.
    MER4 RWMBON31 Settlement re Customer Rebate Arrs.
    MER5 RWMBON32 List of Customer Rebate Arrangement
    MER6 RWMBON33 Busn. Vols.; Cust. Reb. Arrangement
    MER7 RWMBON35 Extension of Cust. Reb. Arrangement
    MER8 RWMBON34 Det. Statement: Cust. Rebate Arrs.
    MER9 RWMBON36 Statement: Customer Reb. Arr. Stats
    MEU2 SAPLWN50 Perform Busn. Volume Comp.: Rebate
    MEU3 SAPLWN50 Display Busn. Volume Comp.: Rebate
    MEU4 SAPMNB01 Display Busn. Volume Comp.: Rebate
    MEU5 SAPMNB01 Display Busn. Volume Comp.: Rebate
    MEWP SAPMMEWP Web based PO
    MEWS SAPLMEW5 Service Entry (Component)
    MEW0 SAPMMWE0 Procurement Transaction
    MEW1 SAPMMWE1 Create Requirement Request
    MEW10 SAPLMEW5 Service Entry in Web
    MEW2 SAPMMWE1 Status Display: Requirement Request
    MEW3 SAPMMWE2 Collective Release of Purchase Reqs
    MEW5 SAPMMWE3 Collective Release of Purchase Orde
    MEW6 SAPMMWE6 Assign Purchase Orders WEB
    MEW7 SAPLMEW4 Release of Service Entry Sheets
    MEW8 SAPLMEW4 Release of Service Entry Sheet
    MEW9 SAPMMEW9 mew9
    ME0M RM06W001 Source List for Material
    ME00 MENUME00
    ME01 SAPLMEOR Maintain Source List
    ME03 SAPLMEOR Display Source List
    ME04 RM06WCD1 Changes to Source List
    ME05 RM06W003 Generate Source List
    ME06 RM06W004 Analyze Source List
    ME07 RM06WRE0 Reorganize Source List
    ME08 RBDSESRC Send Source List
    ME1A RM06IR30 Archived Purchasing Info Records
    ME1B RMMEBTCH Redetermine Info Record Price
    ME1E RM06IAP0 Quotation Price History
    ME1L RM06IL00 Info Records Per Vendor
    ME1M RM06IM00 Info Records per Material
    ME1P RM06IBP0 Purchase Order Price History
    ME1W RM06IW00 Info Records Per Material Group
    ME1X RM06EVBL Buyer's Negotiation Sheet for Vendo
    ME1Y RM06EVBM Buyer's Negotiat. Sheet for Materia
    ME11 SAPMM06I Create Purchasing Info Record
    ME12 SAPMM06I Change Purchasing Info Record
    ME13 SAPMM06I Display Purchasing Info Record
    ME14 RM06ICD1 Changes to Purchasing Info Record
    ME15 SAPMM06I Flag Purch. Info Rec. for Deletion
    ME16 RM06ILV0 Purchasing Info Recs. for Deletion
    ME18 RBDSEINF Send Purchasing Info Record
    ME2A RM06ENBE Monitor Confirmations
    ME2B RM06EB00 POs by Requirement Tracking Number
    ME2C RM06EC00 Purchase Orders by Material Group
    ME2J RM06EKPS Purchase Orders for Project
    ME2K RM06EK00 Purch. Orders by Account Assignment
    ME2L RM06EL00 Purchase Orders by Vendor
    ME2M RM06EM00 Purchase Orders by Material
    ME2N RM06EN00 Purchase Orders by PO Number
    ME2O RM06ELLB SC Stock Monitoring (Vendor)
    ME2S RMSRVPO1 Services per Purchase Order
    ME2V RM06EWE0 Goods Receipt Forecast
    ME2W RM06EW00 Purchase Orders for Supplying Plant
    ME21 SAPMM06E Create Purchase Order
    ME21N RM_MEPO_GUI Create Purchase Order
    ME22 SAPMM06E Change Purchase Order
    ME22N RM_MEPO_GUI Change Purchase Order
    ME23 SAPMM06E Display Purchase Order
    ME23N RM_MEPO_GUI Display Purchase Order
    ME24 SAPMM06E Maintain Purchase Order Supplement
    ME25 SAPMM06B Create PO with Source Determination
    ME26 SAPMM06E Display PO Supplement (IR)
    ME27 SAPMM06E Create Stock Transport Order
    ME28 RM06EF00 Release Purchase Order
    ME29N RM_MEPO_GUI Release purchase order
    ME3A RBDSERED Transm. Release Documentation Recor
    ME3B RM06EB00 Outl. Agreements per Requirement No
    ME3C RM06EC00 Outline Agreements by Material Grou
    ME3J RM06EKPS Outline Agreements per Project
    ME3K RM06EK00 Outl. Agreements by Acct. Assignmen
    ME3L RM06EL00 Outline Agreements per Vendor
    ME3M RM06EM00 Outline Agreements by Material
    ME3N RM06EN00 Outline Agreements by Agreement No.
    ME3P RMMEBTCH Recalculate Contract Price
    ME3R RMMEBTCH Recalculate Sched. Agreement Price
    ME3S RMSRVR20 Service List for Contract
    ME308 RBDSECON Send Contracts with Conditions
    ME31 SAPMM06E Create Outline Agreement
    ME31K SAPMM06E Create Contract
    ME31L SAPMM06E Create Scheduling Agreement
    ME32 SAPMM06E Change Outline Agreement
    ME32K SAPMM06E Change Contract
    ME32L SAPMM06E Change Scheduling Agreement
    ME33 SAPMM06E Display Outline Agreement
    ME33K SAPMM06E Display Contract
    ME33L SAPMM06E Display Scheduling Agreement
    ME34 SAPMM06E Maintain Outl. Agreement Supplement
    ME34K SAPMM06E Maintain Contract Supplement
    ME34L SAPMM06E Maintain Sched. Agreement Supplemen
    ME35 RM06EF00 Release Outline Agreement
    ME35K RM06EF00 Release Contract
    ME35L RM06EF00 Release Scheduling Agreement
    ME36 SAPMM06E Display Agreement Supplement (IR)
    ME37 SAPMM06E Create Transport Scheduling Agmt.
    ME38 SAPMM06E Maintain Sched. Agreement Schedule
    ME39 SAPMM06E Display Sched. Agmt. Schedule (TEST
    ME4B RM06EB00 RFQs by Requirement Tracking Number
    ME4C RM06EC00 RFQs by Material Group
    ME4L RM06EL00 RFQs by Vendor
    ME4M RM06EM00 RFQs by Material
    ME4N RM06EN00 RFQs by RFQ Number
    ME4S RM06ES00 RFQs by Collective Number
    ME41 SAPMM06E Create Request For Quotation
    ME42 SAPMM06E Change Request For Quotation
    ME43 SAPMM06E Display Request For Quotation
    ME44 SAPMM06E Maintain RFQ Supplement
    ME45 RM06EF00 Release RFQ
    ME47 SAPMM06E Create Quotation
    ME48 SAPMM06E Display Quotation
    ME49 RM06EPS0 Price Comparison List
    ME5A RM06BA00 Purchase Requisitions: List Display
    ME5F RM06BF00 Release Reminder: Purch. Requisitio
    ME5J RM06BKPS Purchase Requisitions for Project
    ME5K RM06BK00 Requisitions by Account Assignment
    ME5R RM06BR30 Archived Purchase Requisitions
    ME5W RM06BW00 Resubmission of Purch. Requisitions
    ME51 SAPMM06B Create Purchase Requisition
    ME51N RM_MEREQ_GUI Create Purchase Requisition
    ME52 SAPMM06B Change Purchase Requisition
    ME52N RM_MEREQ_GUI Change Purchase Requisition
    ME52NB RM_MEREQ_GUI Buyer Approval: Purchase Requisitio
    ME53 SAPMM06B Display Purchase Requisition
    ME53N RM_MEREQ_GUI Display Purchase Requisition
    ME54 SAPMM06B Release Purchase Requisition
    ME54N RM_MEREQ_GUI Release Purchase Requisition
    ME55 RM06BF00 Collective Release of Purchase Reqs
    ME56 RM06BZ00 Assign Source to Purch. Requisition
    ME57 RM06BZ00 Assign and Process Requisitions
    ME58 RM06BB00 Ordering: Assigned Requisitions
    ME59 RM06BB10 Automatic Generation of POs
    ME59N RM06BB30 Automatic generation of POs
    ME6A RM06LA00 Changes to Vendor Evaluation
    ME6B RM06LB00 Display Vendor Evaln. for Material
    ME6C RM06LC00 Vendors Without Evaluation
    ME6D RM06LD00 Vendors Not Evaluated Since...
    ME6E RM06LE00 Evaluation Records Without Weightin
    ME6F RM06LF00 Print
    ME6G RMMEBTCH Vendor Evaluation in the Background
    ME6H RMCE0130 Standard Analysis: Vendor Evaluatio
    ME6Z SAPMSM29 Transport Vendor Evaluation Tables
    ME60 MMTEST Screenpainter Test
    ME61 SAPMM06L Maintain Vendor Evaluation
    ME62 SAPMM06L Display Vendor Evaluation
    ME63 RM06LAUB Evaluation of Automatic Subcriteria
    ME64 RM06LSIM Evaluation Comparison
    ME65 RM06LBEU Evaluation Lists
    ME80 SAPMM06R Purchasing Reporting
    ME80A SAPMM06R Purchasing Reporting: RFQs
    ME80AN RM06EAAW General Analyses (A)
    ME80F SAPMM06R Purchasing Reporting: POs
    ME80FN RM06EAAW General Analyses (F)
    ME80R SAPMM06R Purchasing Reporting: Outline Agmts
    ME80RN RM06EAAW General Analyses (L;K)
    ME81 RM06ENHI Analysis of Order Values
    ME81N RM06EBWA Analysis of Order Values
    ME82 RM06ER30 Archived Purchasing Documents
    ME84 RM06EFLB Generation of Sched. Agmt. Releases
    ME84A SAPLEINL Individual Display of SA Release
    ME85 RM06NEUN Renumber Schedule Lines
    ME86 RM06REOR Aggregate Schedule Lines
    ME87 RM06EKBE Aggregate PO History
    ME88 RM06CUMF Set Agr. ***. Qty./Reconcil. Date
    ME9A RM06ENDR_ALV Message Output: RFQs
    ME9E RM06ENDR_ALV Message Output: Sch. Agmt. Schedule
    ME9F RM06ENDR_ALV Message Output: Purchase Orders
    ME9K RM06ENDR_ALV Message Output: Contracts
    ME9L RM06ENDR_ALV Message Output: Sched. Agreements
    ME91 RM06ENMA Purchasing Docs.: Urging/Reminding
    ME91A RM06ENMA Urge Submission of Quotations
    ME91E RM06ENMA Sch. Agmt. Schedules: Urging/Remind
    ME91F RM06ENMA Purchase Orders: Urging/Reminders
    ME92 RM06ENAB Monitor Order Acknowledgment
    ME92F RM06ENAB Monitor Order Acknowledgment
    ME92K RM06ENAB Monitor Order Acknowledgment
    ME92L RM06ENAB Monitor Order Acknowledgment
    ME99 MM70AEFA Messages from Purchase Orders
    MFBF SAPLBARM Backflushing In Repetitive Mfg
    MFHU SAPLVHURM Backflushing In Repetitive Mfg
    MFI2 SAPLKAZB Actual Overhead: Run Schedule Heade
    MFN1 SAPLKAZB Actual Reval.: PrCstCol. Ind.Pro
    MFN2 SAPLKAZB Actual Reval.: PrCstCol. Col.Pro
    MFPR RMSERIPR Process Inspection Lot for Versions
    MFS0 SAPMM61R LFP: Change Master Plan
    MF00 MENUMF00 Run Schedules
    MF02 SAPMM61G Change Run Schedule Header
    MF03 SAPMM61G Display Run Schedule Header
    MF12 RMSERI12_ALV Display Document Log (With ALV)
    MF20 SAPLBARM REM Cost Controlling
    MF22 RMSERI01 Versions: Overview
    MF23 RMSERI05 Linking Versions Graphically
    MF26 RMSERI15_ALV Display Reporting Point Quantity
    MF27 RMSERI20 Update Stats for Planned Quantities
    MF30 RMSERI40 Create PrelimCostEst - ProdCostColl
    MF4R SAPLBARM Resetting Reporting Points
    MF41 SAPLBARM Reverse Backflush (With ALV)
    MF42 SAPLBARM Collective Backflush
    MF42N SAPLBARM New Collective Entry
    MF45 SAPLBARM Reprocessing Components: Rep.Manuf.
    MF46 SAPLBARM Collective Reprocessing; Backflush
    MF47 RMSERI11 Open Reprocessing Records / Pr.Line
    MF50 SAPMM61R Planning Table - Change
    MF51 RMSERIDR Print Production Quantities
    MF52 SAPMM61R Planning Table - Display
    MF53 RMSERIMA Maintaining Variants-Production Lis
    MF57 SAPMM61R Planning Table - By MRP Lists
    MF60 RMPU_SEL_SCREENPull List
    MF63 RMPU_SEL_SCREENStaging Situation
    MF65 RMPU_PICK_LIST_Stock Transfer for Reservation
    MF68 RMPU_DISPLAY_LOLog for Pull List
    MF70 RMSERI70 Aggregate Collective Backflush
    MGWA SAPLMGW3 Change Components for Prepack
    MGWB SAPLMGW3 Change Components for Full Product
    MGW0 SAPLMGW3 Create Components for Set Material
    MGW1 SAPLMGW3 Display Components for Set Material
    MGW2 SAPLMGW3 Create Components for Display Matl
    MGW3 SAPLMGW3 Display Components for Display Matl
    MGW4 SAPLMGW3 Create Components for Prepack Matl
    MGW5 SAPLMGW3 Display Components for Prepack Matl
    MGW6 SAPLMGW3 Create Components for Full Product
    MGW7 SAPLMGW3 Display Components for Full Product
    MGW8 SAPLMGW3 Change Components for Set Material
    MGW9 SAPLMGW3 Change Components for Display Matl
    MIBC RMCBIN00 ABC Analysis for Cycle Counting
    MICN RM07ICN1 Btch Inpt:Ph.Inv.Docs.for Cycle Ctn
    MIDO RM07IDOC Physical Inventory Overview
    MIE1 RM07IE31 Batch Input: Phys.Inv.Doc. Sales Or
    MIGO SAPLMIGO Goods movement
    MIGR1 RSIWB090 KW: Conversion of enh./rel. (global
    MIGR2 RSIWB096 KW: Conver. of Enh/Rel/Origin (sel.
    MIK1 RM07IK31 Batch Input: Ph.Inv.Doc.Vendor Cons
    MILES RSAL_MONITOR_FRInfrastructure Navigator
    MIMD RM07IMDE Tansfer PDC Physical Inventory Data
    MIM1 RM07IM31 Batch Input: Create Ph.Inv.Docs RTP
    MIO1 RM07IO31 Batch Input: Ph.Inv.Doc.:Stck w.Sub
    MIQ1 RM07IQ31 Batch Input: PhInvDoc. Project Stoc
    MIRA SAPLMR1M Fast Invoice Entry
    MIRCMR VHUMI_RECONCILIMaterial Reconciliation
    MIRO SAPLMR1M Enter Invoice
    MIR4 SAPLMR1M Call MIRO - Change Status
    MIR6 SAPMM08N Invoice Overview
    MIR7 SAPLMR1M Park Invoice
    MIS1 SAPMM07S Create Inventory Sampling - R/3
    MIS2 SAPMM07S Change Inventory Sampling
    MIS3 SAPMM07S Display Inventory Sampling
    MIS4 SAPMM07S Create Inventory Sampling - R/2
    MIS5 SAPMM07S Create Inventory Sampling - Other
    MITT SAPMMITT Test Tool Administration
    MIV1 RM07IV31 Batch I.:PhInDoc f.Ret.Pack.at Cust
    MIW1 RM07IW31 Batch I.;PhInDoc f. Consigt at Cust
    MI00 MENUMI00 Physical Inventory
    MI01 SAPMM07I Create Physical Inventory Document
    MI02 SAPMM07I Change Physical Inventory Document
    MI03 SAPMM07I Display Physical Inventory Document
    MI04 SAPMM07I Enter Inventory Count with Document
    MI05 SAPMM07I Change Inventory Count
    MI06 SAPMM07I Display Inventory Count
    MI07 SAPMM07I Process List of Differences
    MI08 SAPMM07I Create List of Differences with Doc
    MI09 SAPMM07I Enter Inventory Count w/o Document
    MI10 SAPMM07I Create List of Differences w/o Doc.
    MI11 SAPMM07I Recount Physical Inventory Document
    MI12 RM07ICDD Display changes
    MI20 RM07IDIF Print List of Differences
    MI21 RM07IDRU Print physical inventory document
    MI22 RM07IMAT Display Phys. Inv. Docs. f. Materia
    MI23 RM07IINV Disp. Phys. Inv. Data for Material
    MI24 RM07IDIF Physical Inventory List
    MI31 RM07II31 Batch Input: Create Phys. Inv. Doc.
    MI32 RM07II32 Batch Input: Block Material
    MI33 RM07II33 Batch Input: Freeze Book Inv.Balanc
    MI34 RM07II34 Batch Input: Enter Count
    MI35 RM07II35 Batch Input: Post Zero Stock Balanc
    MI37 RM07II37 Batch Input: Post Differences
    MI38 RM07II38 Batch Input: Count and Differences
    MI39 RM07II39 Batch Input: Document and Count
    MI40 RM07II40 Batch Input: Doc.; Count and Diff.
    MI9A RM07IAAU Analyze archived phy. inv. docs
    MKH1 RMLFMH00 Maintain vendor hierarchy
    MKH2 RMLFMH00 Display vendor hierarchy
    MKH3 RMCHACTK Activate vendor master (online)
    MKH4 RMCHACTB Activate vendors (batch input)
    MKVG RM06IA00 Settlement and Condition Groups
    MKVZ RMKKVZ00 List of Vendors: Purchasing
    MKVZE RM06KLFM Currency Change: Vendor Master Rec.
    MK01 SAPMF02K Create vendor (Purchasing)
    MK02 SAPMF02K Change vendor (Purchasing)
    MK03 SAPMF02K Display vendor (Purchasing)
    MK04 SAPMF01A Change Vendor (Purchasing)
    MK05 SAPMF02K Block vendor (Purchasing)
    MK06 SAPMF02K Mark vendor for deletion (purch.)
    MK12 SAPMF02K Change vendor (Purchasing); planned
    MK14 SAPMF01A Planned vendor change (Purchasing)
    MK18 SAPMF02K Activate planned ve

  • How/ where to change a weekly off to working day, working day to weekly off by maintaining IT0007 is 7-time evaluation without payroll integration

    Dear Experts
    We are doing Negative Time Management where we record only deviations
    But customer has third party time machine which required to be integrated with SAP system
    As I know, from the time recording terminal, i should map SAP number to all employees and then get a text mail the  details with employee attendance for the  respective dates and times. Then, have to create a ABAP report which will read the text file and update clock in/out with date into SAP system. After this we can check employee attendance infotype 2011.
    But, Before going for above, time administrator wants to set IT0007 as 7- time evaluation without payroll integration, then maintain data in IT0050 & IT2011
    Then run Time Evaluation then the out put will be according to the data maintained in IT 2011. Now the  requirement is, time administrator wants to change eg. the  day is suppose to be working day for any employee but based on adjustments that day became weekly off, another employee suppose to work but again due to some adjustments that day became weekly off, so how this time administrator can change this and where. This is like, time administrator  need to see the total work schedule for an employee and needs to change whichever data and whenever or after time evaluation, he could see the total work schedule as desired.
    And also, time administrator wants to change schedule manually for any of the employee during that particular period and view the same.
    Please note that, ESS/MSS haven't implemented yet.
    Appreciated all your prompt responses to this.
    Thanks
    SS

    No
    I have created a workschedule on wednesday In a year there can be weekly off 5 or 6 times on Saturday or Sunday So  in that case there is no need to create three workschedules we can create one workschedule and change the days Again we need to regenerate the workschedules inorder to take 'off's" in to account. that is what iam thinkinng at the moment. Yes there is no need to do anything in IT 007 If there is any change in Shift in that Case User has to change workschedule in IT 007.
    If there is weekly off he can select the dates on which day it is falling and generate the workschedule.
    for changing shifts he should change work schedule in IT 007
    Is this is right approach please throw some light on this
    My client requirement was Sometimes there can be weekly off in the company It can be either wednesday off or saturday off or
    unday off or it can be any day.
    Edited by: My SAP Cronies on Feb 2, 2012 5:17 AM
    Edited by: My SAP Cronies on Feb 2, 2012 5:22 AM

  • Delete Payroll results.

    Hello All,
    Is there any way or any report by which we can delete payroll results for 3000 employees at a time. I tried to use the report RPUDEL20 but this is promting me again for which payroll result shall I have to delete?
    Please advice this is very urgent!
    Thanks,
    Chakri.

    There is no Std option to delete multiple Payroll Results. You either have to d it manually one at a time or go for a custom Program. I would prefer the manual option even though it is time consuming. It is always safer to stick to the Std option while dealing with Payroll clusters. Whereas, you will have to spend a lot of time testing the custom Program to ensure nothing else is impacted.
    ~Suresh

  • Capturing payroll results

    Hi folks,
    want to capture payroll result in the master data and then to an adhoc query. Found an infotype Payroll Result (0402) and tried configuring the same in Personnel Management -> Human Resources Information System -> Payroll Results.
    In step 1: Define Evaluation Wage Types
    have maintained one entry /560 with Amount selected.
    In step 2: Assign Wage Types
    have maintained one entry of /560 as eval WT and /560 as corresponding WTyp.
    In step 3 : Set Up Payroll Infotypes
    have maintained 0402 for country grp 40 with Active / Generated Check which contains one entry of /560.
    In step 4: Set Up Assignment to Payroll
    have maintained 0402 with Active status.
    While preparing the adhoc query, could see a Zfield made by the system for capturing result of /560.
    Ran payroll for the employees and still this infotype has 0 records.
    Tried doing through RPABRI00 report with no success.
    Can someone please help me with this asap.
    Thanks in Advance !
    Cheers !
    Jack

    HI
    I think you can also fix cells in the interactive planning. Once user executed the forecast at lower level. They can fix the cell for particular KF. I think once you Fix the cell the values from the KF will not get changed.
    I think you can also fix cells using macro. All you need to do is define a simple
    macro with singe step and copy "Values" to "Fixed values" of the same
    key figure. This you define in "Change of scope" of result row
    attribute.
    Thanks
    Amol

Maybe you are looking for

  • Multiple accounts in one household.

    My wife and I have had accounts since before we met. She is American and has a US account and I am British and mine is a UK account. I understand that each country has its own store but how much sharing can we have and what are the restrictions using

  • Com,unicting on Serial Port using RXTX on Mac System!

    Hi, I have written an application which acts as an interface between the GPS device and Mac System. I have used rxtx api for communicating on Serial Port. The communication works well for some time. This device gives NMEA output and its proprietory s

  • How do i delete pictures from the camera roll, but keep them in different albums?

    i have added pictures from my camera roll into different albums. but every time i try to delete the ones from the camera roll, it asks if i want to delete the picture from everywhere or cancel. how do i keep them in the other albums, but delete them

  • Charge off reporting

    i have an account that was charged off last year. Since the. They report a new 90 day late each month and the account is still marked as open. I am making Payments but not paid in full yet. Can they continue to report new late payments every month. I

  • Some confusion about Web Cache clustering for load balancing

    I have 4 Windows 2003 identical machines having OAS 10g installed with Web Cache (Same Passwords and Oracle Home) . I want to utilize them for load-balancing using Microsoft Network Load-balancing. I followed the Note: 259208.1 till step#10. Now we h