Screen Sequence number for MM01 T.Code

Hi,
Do we have any screen sequence for MM01 T.Code ? If Yes, Can you tell me the screen sequence number for MM01 and how to find it for other T.Codes also?
Thanks in advance
Pavan

Hi,
Follow this path
SPROIMGLogistic generalMaterial masterConfiguring the Material MasterDefine Structure of Data Screens for Each Screen Sequence
21 will be the u201CStd ind.(short) tab pagesu201D
In this if you double click on u201CData screensu2019 in that u201CSub screensu201D if you click on that  you can find the all screen sequences for material master, program and screen number all you can find there
Regards,
Pramod

Similar Messages

  • Screen sequence number could not be determined

    Hi, All,
    After client copy, I ran MM03, but got an error as below:
    screen sequence number could not be determined.
    How to solve it?

    You need an ABAPER to debug the issue. Also check the logs for more details
    Regards
    Juan

  • Sequence number for opportunities

    Hello,
    My customer needs a sequence number for opportunities... So I can create a custom field but is there a way to automatic generate a number to fill it ? or for that matter a sequence ?
    Txs.
    Antonio

    Antonio, this functionality is not available at this time. This could be done using a custom web service program.

  • How to execute a same sequence number for the resulting dynamic rows

    Hi friends,
    I have a sequence and trigger(which will fire id for each and every row insert).
    My scenario is, If i update more than 5 rows at a time means, i need to set a same sequence number example(1) for all the 5 rows.
    Next time, if i update another 5 rows means, then i need to set a same sequence number (i.e) 2 for the next 5 rows.
    So, my updation will be dynamic(may be 2 ,5, 10 rows at a time), But i need to set a same sequence number for one of the column for all the rows that i update.
    Next time, if i update another set of rows means, then i need to set only the next sequence number(i.e) 2(assume that previously updated sequence for the before set of rows is 1) for another set of rows.
    Like that sequence has to update in a sequential manner for more than one set of rows in that column.
    How to achieve it friends.
    example
    id-----------------name
    1-------------------A
    1-------------------B
    1-------------------C
    1-------------------D
    1-------------------E
    2-------------------D
    2-------------------E
    2-------------------F
    2-------------------G
    3-------------------H
    3-------------------IBrgds,
    Mini

    Hi,
    You forgot to mention your version.
    If you want a trigger based solution, then in 10g you need two triggers
    1. A statement level trigger that takes sequence.nextval into a dummy variable that will not be used.
    2. A for each row trigger that uses sequence.currval.
    In 11g you should be able to write a single, composite trigger.
    If you want a solution with no triggers, it could look something like
    SQL> create sequence s start with 10;
    Sequence created.
    SQL>
    SQL> create or replace function s_wrapped
      2  return number
      3  as
      4     v number;
      5  begin
      6     select s.nextval
      7     into v
      8     from dual;
      9
    10     return v;
    11  end s_wrapped;
    12  /
    Function created.
    SQL> create table tab1 as (Select level x, cast(null as number) y from dual connect by level <= 5);
    Table created.
    SQL> update tab1
      2    set y = (select s_wrapped from dual)
      3   where x <= 3;
    3 rows updated.
    SQL> commit
      2  /
    Commit complete.
    SQL> select *from tab1
      2  /
           X          Y
           1         10
           2         10
           3         10
           4
           5
    SQL>Regards
    Peter

  • Screen EXITS and Badi's for MM01 t.code

    Hai Guru's,
    I hav a requirment of add a aditional tab in the standard Master 'MM01' T.code.
    can any one please help me with all possible Screen exits or badi's. Also i want to know weather selecting correct exits depend on the position where we want the new Tab to be placed?
    Thank U in advance.

    Hi
    EXITS :
    MGA00001            Material Master (Industry): Checks and Enhancements  
    MGA00002            Material Master (Industry): Number Assignment        
    MGA00003            Material Master (Industry and Retail): Number Display
    BADI's
    MG_MASS_NEWSEG                          User-Specific Fields & Segments in Mass Maintenance        
    MATGRP_SKU_UPD                          BAdI for the Article Hierarchy Connection                  
    CDT_CHECK_MATERIAL                      Checks for Existence of a Material in a CDT                
    BADI_MM_MATNR                                                                               
    BADI_MAT_F_SPEC_SEL                     BAdI for Material Special Field Selection                  
    BADI_MATNR_CHECK_PVS                                                                               
    BADI_MATERIAL_REF                       Addition of customer-defined default data for material     
    BADI_MATERIAL_OD                                                                               
    BADI_MATERIAL_CHECK                     Enhanced checks for material master table                  
    BADI_GTIN_VARIANT                                                                               
    BADI_EAN_SYSTEMATIC                                                                               
    Regards
    Pavan

  • Sequence number for group of values in column

    I need to create a sequnece number in a column starting from 5 and incremented by 5, based on values presenet in first column. If the value in first column changes then the sequence should start again with 5 and increment by 5.
    for example: I want to generate the following output
    Cat_code     Seq_No
    1001          5
    1001          10
    1001          15
    1001          20
    2001          5
    2001          10
    2001          15
    3001          5
    3001          10
    4001          5
    4001          10
    4001          15
    4001          20
    5001          5
    6001          5
    7001          5
    7001          10
    7001          15
    7001          20
    7001          25
    So if the cat_code changes, the sequence number should again start from 5 and should be generate sequence number until the cat_code changes again.
    any help apreciated.
    Thanks
    Rahul

    Hi, Rahul,
    You can use the analytic ROW_NUMEBR function to generate the numbers, like this:
    SELECT       cat_code
    ,       5 * ROW_NUMBER () OVER ( PARTITION BY  cat_code
                                     ORDER BY        NULL
                         )       AS seq_no
    FROM       table_x
    ORDER BY  cat_code
    ,            seq_no
    ;You must use an analytic ORDER BY clause when you call ROW_NUMBER. If you don't really care about the order, then you can ORDER BY a constant, but you still need the analytic ORDER BY clause.

  • Sequence Number for messages

    Hi,
    I need to implement a sequence number in the target structure for each time a message mapping is executed.
    As far as i can see on this forum and on sap.help.com it can be easily done with RFClookup inside the message mapping, and best implement something on abap-stack.
    I need to decide on using either a z-table or a number range and i need to decide whether to use PI abap stack or ECC abap stack.
    Any comments are useful.
    kr
    Robert

    Hi Bhavesh,
    I get interesting considerations on my question.
    It will be sequentially, almost for sure,  because i get this message via flatfile.
    Your second consideration is also interesting. Maybe the source can provide, maybe not (i'm not sure)
    Even more interesting if it is really necessary at the receiver side. This i actually asked the business, but still waiting for an answer. Meanwhile i just started looking around for the correct solution.
    kr
    Robert
    On second thought. It will be unique if i use number ranges with RFC lookup, because each number can only be used once.
    Edited by: R. den Hoedt on Mar 16, 2011 4:37 PM

  • Need an online number for local area code 606 for ...

    I need an online number for my local area code 606 Morehead Kentucky.
    There are several cities surrounding mine with local online number options
    but not Morehead, Kentucky. If it is possible, please add Morehead to your list
    and I will purchase an online number. Thank you for your attention.

    mjm10036 wrote:
    I wanted to get an Online Number for New York City and got as far as
    Select your local area and choose a number
    at
    https://secure.skype.com/store/skypein/number?voucher=0&fuseaction=skypein.info&country_code=US&vc=0...
    But couldn't figure out what to chose among 13 choices listed as New York City Zones 3 through 15.  Is there a difference in the Zones? I notice they all have the same area code - 347.
    There are some subtle differences, related to how local phone calls are billed for callers in New York City.  It would not affect how the Online Number works for you - you are not charged for incoming calls made to Skype's Online Numbers, when you answer those calls with Skype.  For those calling you, it can mean the difference between a free call to your Online Number and having to pay a small fee to call your number.  For someone calling from outside the New York City area, it probably doesn't matter which of those zones you use for your Online Number.
    I have not found a good concise online reference to those calling zone in the past.  I have found some rather cryptic material that shows which prefixes in each of the New York City area codes are in each of those zones.  The zones are defined by lists of prefixes within each of those area codes, and those lists can be substantial with the growth in mobile phones over the years. 
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • Automatic sequence number for Inter-Org

    The problem which right now i am facing is that while making inter-org,... i am maintaining my own sequence... because system is not giving me any automated number... so due to this sometimes... sequence got disturbed... so is there any way.. that i can get the system generated sequence number.. as i am getting for sales order when i save it....if yes.. then please give me brief solution about this issue..
    Thanks,
    Junaid Iftikhar

    Hi,
    If you want your intercompany AR transactions to have a different numbering sequence from regular AR invoices, you need to setup a new transaction batch source for your interncompany AR transactions, a new order type and a new line type for your intercompany sales orders. When you define your order and line types, reference the new batch source you have just created in AR.
    AR Batch Source: AR Manager: Setup: Transactions: Batch Sources.
    Order an Line Type: OM Superuser: Setup: Transaction Types: Define.
    Hope it helps,
    Ketter Ohnes

  • How to generat sequence number for db in XSLT

    Hello SOA Gurus,
    I have a requirement, Please see below
    I am using SOA 11.1.1.6
    From a webservice call to db insert XSLT,  i have 10 elements at source side and 11 elements at target side.
    From source to target first 10 mappings are done.
    Now requirement is, for the 11th element in target- we need pass a sequence number to the targeted database, means---(sequence number has to be generated for every execution of XSLT execution)
    How to do the last point???
    Can anyone help me plzz

    Hi,
    You can pass the sequence number in the 11th element using "oraext:sequence-next-val("Sequence name as a string", "Datasource as a string") function.
    Regards,
    Anshul

  • Creation of same personnel number for different company codes

    Hi All,
    I am having the requirement to cerate same personnel number under different compant codes.
    Eg. There are 2 company codes MO10 and MO20 for the same country
    Personnel number- 0100000023 should exist for both company code MO10 and MO20.
    Please help.
    regards,
    Gaurav

    Dear Roger,
    Thanks for replying, I have been waiting for this. We are a group  of copmanies with the name of orient and have  four different  companies and currently  using one payroll area Z1 for payroll processing for  OEL; company code 1000. we have these company codes 2000, 3000 and 4000 for rest three companies and want to use same payroll area Z1 for processing payroll of these three companies. is that possible to do in SAP HCM if yes then how?
    Can you please guide on this? Look forward for your response.
    Stay Blessed,
    Waqar

  • How to print sequence number for a text item in a oracle reports

    Hi
    I have text item which repets for every round,if i have 3 or 4 rounds i should number the text item as 1,2,3,4 etc.... in a report.
    Can anybody help me
    Thanks in advance

    Hi Bob
    Thank you for your reply.
    Here is the data for example:
    Jobxxxx
    Round
    assembly for 3d $200 1 $200.00
    proof for 3d $10 3 $30.00
    Round
    plate for 3d $200 1 $200.00
    image for 3d $10 3 $30.00
    Job yyyy
    Round
    assembly for 3d $100 1 $100.00
    proof for 3d $50 3 $150.00
    So Bob everything is comming from tables except round.
    My question is how to add sequence number to round adn the result should be like this:
    Jobxxxx
    Round 1
    assembly for 3d $200 1 $200.00
    proof for 3d $10 3 $30.00
    Round 2
    plate for 3d $200 1 $200.00
    image for 3d $10 3 $30.00
    Job yyyy
    Round 1
    assembly for 3d $100 1 $100.00
    proof for 3d $50 3 $150.00
    Thank you in advance

  • Create Auto increment sequence number for list view report

    Hi All,
              Am using BAM 11.1.1.6 version, Have updating list report & wants to create auto increment sequence number at report level. Is it possible to create column at run time in BAM reports.
    Please help.
    Thanks.

    Hi All,
              Am using BAM 11.1.1.6 version, Have updating list report & wants to create auto increment sequence number at report level. Is it possible to create column at run time in BAM reports.
    Please help.
    Thanks.

  • SHDO-how to create transactional ,screen , standard variants for a t code..

    hi experts,,,,,
    1)can u explain the use of it.......
    how to create diff type of variants.......
    2)......how to give batch number assignment alpha numerically.......
    here in the system only numbe\rically available, and i have to assign the batch number  internal assignment.........for a particular production order.

    Hi,
    <b>creating Transaction Variants</b>
    Step 1:
    Execute transaction SHD0 and create a Transaction Variant against the original transaction.
    Step 2:
    As soon as you press the create button, the original screen of the transaction will appear. After pressing any button/tab on the screen a menu variant screen will appear. Make sure to check any field or tab or any button you want to disappear from the menu functions. Press the exit and save button when you are sure that no further settings are required on sub-screens (if present). After pressing the exit and save button another menu variant screen will appear. Press the save button here and save as a local object or under any development class.
    Step 3:
    When you are back on the Transaction Variant (SHD0) screen, press shift+F6 or click the goto menu and press the create variant transaction button. Through this transaction SE93 will be executed. Enter the transaction name you want to create and any other required field and now press the save button.
    Step 4:
    Now execute the transaction you create through create Transaction Variant and enjoy the results.
    Case two for creating Transaction Variants
    Step 1:
    Create a dialogue transaction through SE93 and enter the program name and screen number of the original transaction you want to make a variant on (e.g., PFCG). Press the save button and check whether the replica transaction (PFCG) has been created successfully by executing it on a new session.
    Step 2:
    Execute transaction SHD0 to create a Transaction Variant. Specify the transaction name (replica of PFCG) which you have just created and create a Transaction Variant against the replica transaction.
    Step 3:
    As soon as you press the create button, the original screen of the transaction will appear. After pressing any button/tab on the screen a menu variant screen will appear. Make sure to check any field or tab or any button you want to disappear from the menu functions. Press the exit and save button when you are sure that no further settings are required on sub-screens (if present). After pressing the exit and save button another menu variant screen will appear. Press the save button here and save as a local object or under any development class.
    Step 4:
    When you are back on the main screen of the SHDO (Transaction Variant) click the edit option on the menu tab and activate Standard Variant. Through this a Standard Variant will be assigned to the transaction specified (replica transaction).
    Note: Make sure you activate the Standard Variant against a replica transaction and not on the original one.
    Regards
    Sudheer

  • IDOC to file: Increase sequence number for each item in a segment

    Dear All,
    I am having one scenario IDOC to file, where one IDoc with multiple items for an header in it will be sent.
    In Destination structure, for each iitem segment I am creating multiple rows. I have a field(INC_NUM) in target structure where in I have to start line number from 1 for each item.
    Also I have a condition - for item x or y I should only have the same line number.
    TinAdvance
    Swarna.
    Edited by: Swarna on Oct 24, 2011 8:15 AM

    Hello,
    You can use the statistic function called index for your requirement. Can you give sample input/output so that we can visualize further?
    Hope this helps,
    Mark

Maybe you are looking for

  • Permission issues when trying to run any adobe app, tech support guy quit after trying to fix it for 2 hours

    I don't know what to do. Any of my adobe apps give the same error: Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item. The aforementioned tech support person was a test account h

  • Java.lang.ClassCastException in glassfish

    I'm working on a simple application with Glassfish and OSGI. I found this tutorial: http://blogs.oracle.com/arungupta/entry/totd_154_dynamic_osgi_services I modified the example. You can find my customized example file: http://uploading.com/files/cf1

  • Slideshow in iPhoto 08

    I recently completed a slide show in iPhoto with 500+ slides and during several attempts at trying to get it to appear in iDVD, the order of the pictures is now reversed. I have no idea how it happened but more importantly, I cannot get the slides ba

  • Default Environment layer ?

    Hey, does anyone know how I can specify which Environment layer gets new objects if/when they're created by Track->Create Multiple... ? I've played around with inserting and deleting layers, and I haven't yet found a reliable way to control where the

  • TS1292 there is no pin on my itunes giftcard and the giftcard number is invalid

    I am trying to redeem an iTunes Gift Card from 2009.  It has a 16 digit number beginning with X and a serial number beginning with GCA.  There is no pin number on the card.  How do I redeem this card or even check to see if it was activated?