The exit of transaction ME21N   for version  ECC 6.0

The version of my system is ECC 6.0 . 
Some exit for ME21N  here is useless,
Does anyone know any new exit for this version.
The exit when the Purchase order is created or changed.
Thanks
Regards!
Message was edited by: liwei zhuang
Message was edited by: liwei zhuang

Oh  I am so sorry.    I wrote a wrong t-code . 
The transaction I want to write is ME21N.
I have tested the exit MM06E005. 
But in this version, it is useless . 
so.......

Similar Messages

  • The transaction log for database 'ECC' is full + ECC6.0 Installation Failur

    Guyz,
    my ecc6 installation failed after 8 hours run with following error log snippet...
    exec sp_bindefault 'numc3_default','SOMG.MSGNO'
    DbSlExecute: rc = 99
      (SQL error 9002)
      error message returned by DbSl:
    The transaction log for database 'ECC' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
    (DB) ERROR: DDL statement failed
    (ALTER TABLE [SOMG] ADD CONSTRAINT [SOMG~0] PRIMARY KEY CLUSTERED ( [MANDT], [OBJTP], [OBJYR], [OBJNO] ) )
    DbSlExecute: rc = 99
      (SQL error 4902)
      error message returned by DbSl:
    Cannot find the object "SOMG" because it does not exist or you do not have permissions.
    ECCLOG1 data file has got 25GB initial size and growth was restricted to 10% (PROPOSED BY SAPInst)...
    i'm assuming this error was due to lack of growth space for ECCLOG1 datafile...am i right? if so how much should i allocate memory for this log ? or is there any workaround ?
    thanks in advance

    Kasu,
    If SQL is complaining that the log file is full then the phase of the install that creates the SQL data/log files has already occurred (happens early in the install) and the install is importing programs, config and data into the db.
    Look at the windows application event log for "Transaction log full" events to confirm.
    To continue, in SQL Query analyzer try:
    "Backup log [dbname] with truncate_only"
    This will remove only inactive parts of the log and is safe when you don't require point-in-time recovery (which you don't during an install).
    Then, go to the SQL Enterprise manager, choose the db in question and choose the shrink database function, choose to shrink only the transaction log file and the space made empty by the truncate will be removed from the file.
    Change the recovery mode in SQL Server to "simple" so that the log file does not grow for the remainder of the install.
    Make sure you change the recovery mode back to "full" after the install is complete.
    Your transaction log appears to have filled the disk partition you have assigned to it.
    25GB is huge for a transaction log and you would normally not see them grow this large if you are doing regular scheduled tlog backups (say every 30-60 minutes) because the log will truncate every time, but its not unusual to see one get big during an install, upgrade or when applying hotpacks.
    Tim

  • Message no. KI506: Transaction RKP2 for version 0 is not permitted

    Hi CO Gurus,
    I'm getting error Message no. KI506: Transaction RKP2 for version 0 is not permitted in Transaction code KP26 when I'm trying to extend the Activity types cost for year 2009. Before that I already extended Version 0 for year 2009.
    Now system is not allowing me to enter and maintain values for a particular combination of cost center and activiy types.
    Please help out.
    Thanks & Regards,
    Abu Arbab

    Hi Suraj,
    Thanks for immediate help.
    Best Regards,
    Abu Arbab

  • Hiding the Pushbuttons in Transaction iView for the Selection Screen.

    Hi -
    There is a need to Hide the Pushbuttons in the transaction i-view which is being created for a custom transaction.
    The pushbuttons that needs to be disabled are like 'Save as Variant' , 'Choose Variant' etc..
    How do we go about doing it.
    Thanks,
    Maheshwari

    hi..
    You can use this
    case sy-tcode.
    WHEN 'I-VIEW'.
          LOOP AT SCREEN.
            IF screen-name CS 'SAVE _AS _VARIANT.
              screen-input = 0.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
    endif.
    ENDCASE.
    hope it will help you.
    regards,
    Lokesh
    Edited by: Lokesh Tripathi on Jul 21, 2008 1:13 PM
    Edited by: Lokesh Tripathi on Jul 21, 2008 1:13 PM

  • User Exit in ME51N & ME21N for checking stock at location

    Dear All,
    Requirement is to give error message while creatin a PR / PO for a material for whcih there is stock at XXXX storage location.
    Is there user exit for checking stock whiel creating PR and PO waih will check stock at a particular storage location ?
    OR any other way ..
    Regards,
    Rakesh

    User Exit
    PR -
    MEREQ001
    PO -
    MM06E004  Control import data screens in purchase order
    MM06E005  Customer fields in purchasing document
    ME_PROCESS_PO_CUST (BADi)
    Hope the above helps.
    Regards,
    Vivek

  • The cache's transaction boundary for db cacheStore

    Hi !
    I implement a CacheStore interface to cache db data,when I use cache.put() , the value can be persist into db,it's a statement level transaction, how can i control a code fragment's transaction boundary
    such as:
    cache.put(key1,value1);
    cache.put(key2,value2);
    when the last operation fail the first operation can be rollback by theory, the conclusion the other question is the cache.storeAll is handled by multi-thread , the some values has persited into db ,but one fail ,it's violates business's atomicity ,how can handle this situation?

    Hi Stephen,
    You can do the cache operations as a part of a single transaction by using a transactional cache. Something like ...
    Connection conn =  new DefaultConnectionFactory().createConnection();
    OptimisticNamedCache cache1 = conn.getNamedCache("tx-cache1");
    OptimisticNamedCache cache2 = conn.getNamedCache("tx-cache2");
    OptimisticNamedCache cache3 = conn.getNamedCache("tx-cache3");
    conn.setAutoCommit(false);
    cache1.insert(key1, value1);
    cache2.insert(key2, value2);
    cache3.remove(key3);
    conn.commit();You are correct that you cannot currently use write-behind with a transactional cache. I'm not sure of your requirements but if you don't need the database updates to be part of the transaction then you could possibly do something by registering a MapListener with the transactional caches. Events occur on the transactional cache at commit time.
    Another thing to keep in mind is that there are some other limitations with transactional caches and there is a performance cost. See the documentation for more details.
    Thanks,
    Tom

  • User Exit transaction ME21N and ME22N in the save moment

    Hi, all.  I need one user exit to transaction ME21N and ME22N for SAVE.
    I need name user exit please in the save moment.
    Message was edited by:
            Martínez Vásquez Rubén Dario
    Message was edited by:
            Martínez Vásquez Rubén Dario

    Hi,
    Please check this user exits.
    EXIT_SAPMM06E_012 - Check Customer-Specific Data Before Saving
    EXIT_SAPMM06E_013 - Update Customer's Own Data in Purchasing Document
    EXIT_SAPMM06E_016 - Export Data to Customer Subscreen for Purchasing Document Item (PBO)
    EXIT_SAPMM06E_017 - Export Data to Customer Subscreen for Purchasing Document Item (PAI)
    EXIT_SAPMM06E_016 and EXIT_SAPMM06E_017 are the best place to change line item. I used in both places again it depends on your requirement for PBO or PAI.
    By the way, what do you mean by actualization?
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • PO in transaction ME21N, the condition tab in PO is greyed out

    Hi Experts,
    Pls help me out from this...
    When creating the PO in transaction ME21N, the condition tab in PO is greyed out.I am not able to enter the price. The price fields are greyed out.
    Any inputs on this will be highly rewarded.
    Regards
    Lakshmiraj

    Hi,..
    thanks a lot for the reply.
    yes  it is allowing.
    Moreover it is happening in production server . In development server everything is fine.

  • Event : changing purchase order's type in transaction ME21N

    Hi all,
    I am looking for a user exit or an enhencement to set some abap code when a purchase order's type is changed by the user in transaction ME21N.
    Thanks.
    Regards,

    Hi,
    Please find the user exit list below for ME21N. You can try out.
    USER EXIT
    MELAB001 Gen. forecast delivery schedules: Transfer schedule implem.
    MEQUERY1 Enhancement to Document Overview ME21N/ME51N
    MEVME001 WE default quantity calc. and over/ underdelivery tolerance
    MM06E001 User exits for EDI inbound and outbound purchasing documents
    MM06E003 Number range and document number
    MM06E004 Control import data screens in purchase order
    MM06E005 Customer fields in purchasing document
    MM06E007 Change document for requisitions upon conversion into PO
    MM06E008 Monitoring of contr. target value in case of release orders
    MM06E009 Relevant texts for "Texts exist" indicator
    MM06E010 Field selection for vendor address
    MM06E011 Activate PReq Block
    MMAL0001 ALE source list distribution: Outbound processing
    MMAL0002 ALE source list distribution: Inbound processing
    MMAL0003 ALE purcasing info record distribution: Outbound processing
    MMAL0004 ALE purchasing info record distribution: Inbound processing
    MMDA0001 Default delivery addresses
    MMFAB001 User exit for generation of release order
    MRFLB001 Control Items for Contract Release Order
    AMPL0001 User subscreen for additional data on AMPL
    LMEDR001 Enhancements to print program
    LMEKO001 Extend communications structure KOMK for pricing
    LMEKO002 Extend communications structure KOMP for pricing
    LMELA002 Adopt batch no. from shipping notification when posting a GR
    LMELA010 Inbound shipping notification: Transfer item data from IDOC
    LMEQR001 User exit for source determination
    LMEXF001 Conditions in Purchasing Documents Without Invoice Receipt
    LWSUS001 Customer-Specific Source Determination in Retail
    M06B0001 Role determination for purchase requisition release
    MEFLD004 Determine earliest delivery date f. check w. GR (only PO)
    MEETA001 Define schedule line type (backlog, immed. req., preview)
    ME590001 Grouping of requsitions for PO split in ME59
    M06E0005 Role determination for release of purchasing documents
    M06E0004 Changes to communication structure for release purch. doc.
    M06B0005 Changes to comm. structure for overall release of requisn.
    M06B0004 Number range and document number
    M06B0003 Number range and document number
    M06B0002 Changes to comm. structure for purchase requisition release
    Thanks,
    Raj

  • Transaction code for BADI : FMCH

    Hi,
         I want to know if there is any way to find the transaction code of a BADI.
         I've a BADI : FMCH , now how can I find the transaction code in which this BADI  is used.
    Thanks

    Hi,
    Rather than the mentioned List of related Transaction Code, there exit a lot of other Transaction Codes.
    The procesdure for this to find the List of Transaction Code for a specfic BADI is very simple.
    SE18 -> <Mention BADI Name> ->  Display It -> When BADI is displayed click on Display Object List (CTLRSHIFTF5)
    -> Open the List seen at left side -> U will find the Workbench Browser open and List of Global data avalible for this BADI ->  Now Click on Transactions -> U would see the List of Transaction Code from Where u can get into this BADI.
    I hope this would help you in futher.
    Thanks.

  • Transaction Variant for VA03 in SAP 4.6C – Few Questions

    Hi Friends,
    To block ‘Net Value’ from being visible for specific users, for VA03 transaction, we have created a variant YVA03. Further, we had created a new transaction ZVA03 and activated this with the variant YVA03.
    Now, we observed, for the variant to work, we have to set the ‘variant’ field under VOV8 (sales document->Transaction flow) with‘NO_VARIANT’option.
    Why is this selection required? Will this have any impact on the working of standard transactions VA01/VA02 etc. (though we didn’t observe any)
    Also, is there a way we can activate custom transaction ZVA03 for all sales document types in one step i.e. without going through the task of setting every sales order type with ‘NO_VARIANT’ selection?
    Lastly, we are working on SAP 4.6C. Are there any known version limitations on the working of transaction variants for VAXX transactions?
    Please share your valuable inputs.
    Regards,
    Jagan

    Hello,
    Try adding the correct parameters in the user parameter settings in SU3/System->User profile->Own data.
    STC     Transaction variants: Transaction
    STV     Transaction variants: Variant
    Cheers,
    Balaji

  • Create RFx Response: An error occurred in the PD Layer transaction terminated

    Hello Experts,
    Currently we are in SRM 7.02 implemenation: we are facing below problem while creating RFx response with popup screen.
                             "An error occurred in the PD Layer transaction terminated"
    For this we have checked below
    1. http://scn.sap.com/thread/1912966    ----> it didn't help
    2. We have assigned SAP_ALL role to bidder also ----> Facing same issue
    3. Check Number ranges ---> everything is fine.
    there is no clue from above points.
    Thanks & Regards
    Sandeep.

    Hello Sandeep,
    I am facing the same problem while creating the RFx response in SUS side. Same error occurred while i am creating the Rfx response with bidder.
    error: An error occurred in the PD Layer transaction terminated
    Could you please let me know, did you find any solution for this issue?
    Thanks in advance!!
    Thanks,
    Anil

  • File system for SAP ECC, EP , BI and CRM installation on Solaris/DB2

    Hello,
    We are going to implement SAP ECC 6.0 with EP 7, BI and CRM on Solaris operating system with IBM DB2 database.
    All these applications are going to be installed on single server, as being a basis person, I know this is not all recommended.
    But due to client's requirement and keeping cost factor in mind I need to install all these application on single box.
    Now here I need your help. as I basis person, I know the required Solaris file system for SAP ECC 6.0 but not having any Idea about other application like EP/ CRM and BI .
    If anyone able to help me with required Solaris file system. it will be great help.
    Please let me know if there is any query.
    Thanks.

    > All these applications are going to be installed on single server, as being a basis person, I know this is not all recommended.
    > But due to client's requirement and keeping cost factor in mind I need to install all these application on single box.
    Why not using Solaris zones/container? This decreases the administrative amount tremendeously since you will deal as with "single machines" but they all run together on one box.
    > Now here I need your help. as I basis person, I know the required Solaris file system for SAP ECC 6.0 but not having any Idea about other application like EP/ CRM and BI .
    So you'd need to read the installation guides
    Markus

  • SX_OBJECT_CONVERT_OTF_PDF for SAP ECC 6.0

    Hi all,
         The function SX_OBJECT_CONVERT_OTF_PDF is different for SAP ECC 6.0.
         The parameters are as below:
          IMPORTING
    *"     VALUE(FORMAT_SRC) TYPE  SX_FORMAT
    *"     VALUE(FORMAT_DST) TYPE  SX_FORMAT
    *"     VALUE(ADDR_TYPE) TYPE  SX_ADDR_TYPE OPTIONAL
    *"     VALUE(DEVTYPE) TYPE  SX_DEVTYPE OPTIONAL
    *"     VALUE(FUNCPARA) TYPE  SX_FUNCPAR OPTIONAL
    *"  CHANGING
    *"     VALUE(TRANSFER_BIN) TYPE  SX_BOOLEAN
    *"     VALUE(CONTENT_TXT) TYPE  SOLI_TAB
    *"     VALUE(CONTENT_BIN) TYPE  SOLIX_TAB
    *"     VALUE(OBJHEAD) TYPE  SOLI_TAB
    *"     VALUE(LEN) TYPE  SO_OBJ_LEN
    *"  EXCEPTIONS
    *"      ERR_CONV_FAILED
    Anybody know how to used this function?
    Thanks
    Regards,
    Kwchan

    Hi Chan,
    Check the following piece of code:
        data transfer_bin type  sx_boolean.
        data:li_pdf_data type  w3mimetabtype.
        data objhead type  soli_tab.
        call function 'SX_OBJECT_CONVERT_OTF_PDF'
          exporting
            format_src      = 'OTF'
            format_dst      = 'PDF'
            devtype         = 'ASCIIPRI'
          changing
            transfer_bin    = transfer_bin
            content_txt     = li_otf_data
            content_bin     = li_pdf_data
            objhead         = objhead
            len             = l_size
          exceptions
            err_conv_failed = 1
            others          = 2.
    Regards,
    Ravi

  • Changing default transaction timeout for 5.1

              Hi
              Does someone know a way to change the default ejb transaction timeout for
              WL5.1?
              The default is 300 secs, which is a bit too long for me.
              I know I can change it in each deployment descriptor but it would be easier
              and quicker if I could just change the default :-)
              Thanks
              Nicolas
              

    There is another way but I think it's more complicated.
    After reading the file you can use a java code (java embedded activity) and split the file.
    For each part of the split you can PUT by FTP the file with append mode. That way your transaction will run in few cycles with less time.

Maybe you are looking for

  • Simple button to play symbol....?

    I have a symbol "NA". It is an animated map that scales up and then back in place when closed. I have added a button to the main stage to play this symbol with the following code on the "click" event: sym.getSymbol("NA").play(); What am I missing? So

  • Tiger software  DVD or CD for g3 imac

    I'd like to install Tiger for my g3 imac 500 mhz but wondering if I need external dvd player to install software with dvd or must it be cd cuz I only have internal crwd (sp??) Thx. Sandy

  • OS 10.7.5 W' permissions repair problems. How to fix it?

    I have a 27" iMac running os 10.7.5 and i'm having permissions repair problems ever since my last os update,does anyone know whats going on and how to fix it? Any help or ideas would be appreciated.

  • Re-Recording DVD+RW disks?

    I have a LaCie d2 DVD±RW drive and was planning to use DVD+RW disks to (hopefully) re-record iPhoto library backups, ITunes backups, etc. I wanted to use the same disks every month, instead of using DVD+R or DVD-R disks and throwing them out. Well, a

  • ABAP IMPORT in error

    Dear All, D:\usr\sap\QAS\SYS\exe\uc\NTAMD64\R3load.exe -i SAPDFACT.cmd -dbcodepage 4103 -l SAPDFACT.log -stop_on_error DbSl Trace: ORA-1403 when accessing table SAPUSER DB) INFO: connected to DB (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET):