Problem while activating an Enh. Imp.

I met a problem. It is like that:
I copied from an standard Enhancement Implementation OIC_MM06EFKO_PREISFINDUNG in the package of OIC to my own enh. imp of Z_OIC_MM06EFKO_PREISFINDUNG in my package.
I have changed the code of Z_OIC.....UNG. And I can also see the change in the program of MM06EFKO_PREISFINDUNG. The changed codes are right there. But while running ME21N, this implementation was not executed. The original one which I copied from is executed well.
Can anybody help me? I was in trouble with this for 2 days.
By the way, what I wanna do is to achieve this:
Change the pricing auto while I create a SO and reference from a PR. The price in conditions will be fetch from somewhere.
Thanks a lot !!!!

Hi Zhang,
Got your problem, had also faced once, Goto tcode CMOD, i think you would have already created a project there, else create a project and assign the enhancement to that project and activate the project, Note here you have two options, you can activate and deactivate the projects(like a hook), when you want to use the standard functionalities u can deactivate, if you want the enhanced version activate here(CMOD). This info had solved my issue, hope the same in your case.
Cheers...
Santosh.
P.S. Mark usefull answers.

Similar Messages

  • Problem while activating message mapping

    Hi all,
       I am facing a problem while activating message mapping in IR.It says Object being edited by XXXX and cannot be activated.It's giving my user name itself and even it doesn't allow to go to edit mode even.But I am not opening  it twice.How to monitor all the XI users logged into the XI system and find the users using IR and ID objects.Please help in this regard.
    Thanks.

    Hi Jaya
    It is .....
    http://<host:port>/rep/support/public/LockAdminService
    Hope this helps !!!
    Regards,
    J Augastine

  • Having problem while activating my product please help

    having problem while activating the product

    gifted,
    Depending on your version, you may try a chat here or here:
    Creative Cloud support (all Creative Cloud customer service issues, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    Serial number and activation support (non-CC, chat open between 5AM and 7PM PST/PDT on workdays)
    http://helpx.adobe.com/x-productkb/global/service1.html

  • BI7.0 Hexdecimal values problem while activating the data in DSO

    Hi Friends,
                     I've got the data upto PSA and i've run DTP also from PSA to DSO, but while activating the data in DSO from New Data Table to Active Data Table, it's giving the error given below:
    Error when assigning SID: Action VAL_SID_CONVERT table
      0DOC_HD_TXT     
    Value '1st disb' (hex. '00310073007400200064006900730062') of          characteristic 0DOC_HD_TXT contains invalid characters
    Process 000037 returned with errors.
                it isn't accepting the values like with numberels and chars together
    ex: 1st disb, 70 cr Gen Hsg.
                   I want the same to be in the report, how these are to be allowed?, i don't want to edit in PSA and there are a lot of values like that i can't edit all those, since there are thousands of records.
    Regards,
    BalajiReddy

    Hi Anil,
                       Thanx for your quick replay, i've allowed ',' in RSKC and i've checked the check box LOWER CASE LETTERS for IO 0DOC_HD_TXT, the problem was almost solved out. What does ',' mean by?
                          Why lower case letter has to be checked only for this IO (0DOC_HD_TXT), not for others? if it is checked, it allows only lower cases, doesn't allow upper cases i think. won't there be any problem? if it is done like that?
            pls tell me the reason, i'm really thankfull for your quick replay
    Regards,
    BalajiReddy

  • Problem While Activating Transformation

    Hi BW Gurus,
    I am currently working on BW 7.0 on Purchasing Area, I found some problem while modifying the transformation or activating the transformation. I have mapped the data source 2LIS_02_SCL Purchasing Data (Schedule Line Level). I have written a routine for mapping rules of 0ORDER_VAL base on the source field of BWVORG, BWAPPLNM, BWEFFWR, BEDAT, WAERS, HWAER, WKURS. And it shows no error while syntax check. But while activating the Transformation it leads to dump. And after that if I try to change the routine, it leads me to the same dump.
    Please advice.
    For reference, find the code what I wrote in the routine below,
    IF ( SOURCE_FIELDS-BWVORG = '001' or SOURCE_FIELDS-BWVORG = '011'
      or SOURCE_FIELDS-BWVORG = '021' or SOURCE_FIELDS-BWVORG = '004'
      or SOURCE_FIELDS-BWVORG = '014' or SOURCE_FIELDS-BWVORG = '024' )
    AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'
    AND SOURCE_FIELDS-BWEFFWR  0.
       PERFORM LOC_CURR_CONVERT
               USING    SOURCE_FIELDS-BWEFFWR
                        SOURCE_FIELDS-BEDAT
                        SOURCE_FIELDS-WAERS
                        SOURCE_FIELDS-HWAER
                        SOURCE_FIELDS-WKURS
               CHANGING RESULT.
    ENDIF.
    where the LOC_CURR_CONVERT is given below
          FORM LOC_CURR_CONVERT                                         *
    -->  LC_DOCUMENT_VALUE                                             *
    -->  LC_DATE                                                       *
    -->  LC_DOCUMENT_CURRENCY                                          *
    -->  LC_LOCAL_CURRENCYY                                            *
    -->  LC_RATE                                                       *
       LC_LOCAL_VALUE                                                *
    FORM loc_curr_convert
      USING    lc_document_value
               lc_date
               lc_document_currency
               value(lc_local_currency)
               lc_rate
      CHANGING lc_local_value.
    conversion of lc_rate from floating-point to decimal. Necessary for *
    call of CONVERT_TO_LOCAL_CURRENCY.
    data lc_rate_dec type p decimals 5.
    lc_rate_dec = lc_rate.
      IF lc_document_currency = lc_local_currency
      no conversion necessary -> Main case 1
        AND NOT ( lc_document_currency IS INITIAL
               OR lc_local_currency IS INITIAL ) .
        lc_local_value = lc_document_value.
      ELSEIF NOT ( lc_document_currency IS INITIAL
      OR lc_local_currency IS INITIAL OR lc_date IS INITIAL ) .
      conversion necessary with lc_date -> Normally not possible
        CALL FUNCTION 'CONVERT_TO_LOCAL_CURRENCY'
          EXPORTING
            date                 = lc_date
            foreign_amount       = lc_document_value
            foreign_currency     = lc_document_currency
            local_currency       = lc_local_currency
            rate                 = lc_rate_dec
          IMPORTING
          EXCHANGE_RATE        =
            local_amount         = lc_local_value
          EXCEPTIONS
            NO_RATE_FOUND        = 1
            OVERFLOW             = 2
            NO_FACTORS_FOUND     = 3
            NO_SPREAD_FOUND      = 4
            DERIVED_2_TIMES      = 5.
        IF sy-subrc NE 0.
      message a802 with lc_date lc_document_currency lc_local_currency
                        sy-subrc.
        ENDIF.
      ELSE.
      if conversion not possible -> assign target values
        lc_local_value = lc_document_value.
        lc_local_currency = lc_document_currency.
      ENDIF.
    ENDFORM.
    Thnaks
    Regards,
    Deep.

    Hi,
    Please check routine if any for 0CO_REPLINE and also expert routine.
    Regards,
    Rema.

  • RFC problem while activating the new ODS...

    Hi Experts,
    I have created a new ODS, while activating that it is giving bellow error message,
    RFC ERROR IN THE SOURCE SYSTEM.
    but I have checked with my basis team, everything is fine,
    What would be the problem.
    helpful answer will be appreciated with points,
    Thanks in advance,
    Venkat.

    hi all,
    iam even getting the same error and unable to solve this.please provide me solution with step wise process.iam getting the below error:
    Message no. RSBM035
    Diagnosis
    The system could not create DataSource .
    System Response
    The metadata for a DataSource must be created while the export InfoSouce is being generated. An error occurred at that time.
    Procedure
    Consult the appropriate developer (function module: RSA1_OLTPSOURCE_GENERATE).
    thanks&regards
    Vamshi

  • Activation problem while activating PRODHS

    Dear Experts,
    I have modified PRODHS structure by adding some more fields.  While activating it is generating warning activation log, saying that there is inconsistencies in some of the other tables and some tables were adjusted and activated. 
    Rgds,
    Rajesh

    Hi rajesh ,
    Goto transaction SE14.
    Give the table name.
    Select the option Tables and press 'Edit' pushbutton.
    It will take you to another screen.The processing type by default on the new screen will be 'Direct'.
    In that screen select the last tab ' Activate and adjust database '.
    Your problem will be solved.
    Regards ,
    Anuj

  • Problems while activating ABAP proxy

    Hi All,
    I am dealing with a problem while I am trying to activate a proxy in Sproxy tcode
    Package Check for Table/Structure ZDT_ENVIO_DADOS_MESTRES_IN
    The object TABL ZDT_ENVIO_DADOS_MESTRES_IN uses TTYP PRXCTRLTAB     
    Table Type PRXCTRLTAB
    Package ZBW does not have sufficient use access     
    Does someone could help me on how to fix that ?
    Regards
    Diego

    Hi Diego,
    Add SAI_TOOLS under Use access.
    Check the below link for more info.
    http://help.sap.com/saphelp_nw04/helpdata/en/ea/c05da0f01011d3964000a0c94260a5/content.htm
    Thanks,

  • Problem while activating Custom Include

    Hi,
    My requirement is to make a copy of standard include (V50R_ON_OUTPUT) into ZV50R_ON_OUTPUT.
    And to add this custom include in another copy of the main program ZRVV50R10C (copied from RVV50R10C).
    But am facing problem when activating the custom main program ZRVV50R10C.
    Can anyone faced similar issue(as it contains many enhancements, may be the cause)?
    Pls help!
    Thanks!
    Sangar

    Hi Thomas,
    Thanks for ur response.
    I totally understood the upgrade issue, but unfortunately that's my need now.
    The issue am facing is when activating it getting error as "Data not defined". like   ( t_prof1  = %_p_prof1_%_app_%-text.) of the statndard include.
    do i need to add anything in declaration part also?
    Thanks!
    -sangar

  • Debugger problem while activating Datasource in BW 7.4 Sysytem

    Hi All.
    I am getting very strange problem on BI 7.4. Whenever I try to activate datasource, I get the debugger launched up in a separate window. I have to manually Step Over the code (F6) each time for about 2-3 minutes. Then on the original window, I get message that Datasource is activated.
    However the second debug window is still open with an hourglass. I have to manually STOP TRANSACTION and close that window.
    If I dont Step Over the code then my datasource does not get activated so I have to do this step.
    What could be causing this frustrating problem. Is there a way to disable this debugger..

    Hi Ram,
    Thanks for your inputs.
    still my problem not resolved. Not only data source even if I tried to activate transformation, DTP which installed from BI content & custom DTP also  getting same problem.
    This is not upgraded one, as freshly installed BW 7.4 and couple of hours before only established RFC connection b/w ECC & BW dev systems.
    As per this version all BI content components were installed by basis team.

  • Debugger problem while activating Datasource..

    Hi All.
    I am getting very strange problem on BI 7.0. Whenever I try to activate datasource, transformation, DTP or Replicate metadata, I get the debugger launched up in a separate window. I have to manually Step Over the code (F6) each time for about 2-3 minutes. Then on the original window, I get message that Datasource is activated.
    However the second debug window is still open with an hourglass. I have to manually STOP TRANSACTION and close that window.
    If I dont Step Over the code then my datasource does not get activated so I have to do this step.
    What could be causing this frustrating problem. Is there a way to disable this debugger..

    Hi Phunet,
    Just wondering ..
    Is that any debugging command there ?
    If yes, i think you need to remove that command ..
    Hopefully it can help you a lot .
    Regards,
    Niel
    thanks for the points you choose to assign.

  • Problem while activating the DSO

    Hi-
    I have some invalid characters in the reference document number which is causing not to activate the DSO. I found the document numbers which is causing the problem. They are not more than 2, so I thought to put a filter in the DTP. It is not allowing me to exclude the document numbers in DTP. It is only allowing me to keep the single values.
    Please let me know how to exclude the affected document numbers so that my DSO gets activated.
    This is a production issue and please get back to me with ur suggestions.

    Hi n p,
                  In DTP screen at filter>mutlipule selection>exclude single values-->multiple selction..you can check the seleted the values to which you want to exclude them into filter.
    Hope this help you
    Thanks,
    Praveena.

  • Problem while activating Adobe form

    Hi Experts,
    I have created a adobe form but when i am trying to activate it a message is displaying that "Action Cancelled by user". and form is not activating.
    Thanks
    Narendra

    Hi Naredra,
    did you try to see if the ADS connection is up and running? You can test it from SM59 or better,
    try to test a standard form (just run and test inf the SFP transaction). If it works (the pdf form is displayed on the screen) check your form parameters.
    The interface should be "Abap dictionary based" and form layout should be "ZCI".
    Let us know
    Andrea

  • Problem while activating table

    Hi,
    The system I am using was upgraded from 4.7 to ECC 6.0
    I have a table ZABCD. When i try to activate this table, i get the following warning message
    Enhancement category for table missing
    Enhancement category for include or subtype missing
    Table ZABCD was checked with warnings
    Why is this happening? What should be done to remove this warning message
    Thanks,
    Prasy

    Hi,
    Go to EXTRAS---->enhancement category
    Check the radiobutton  can be enhanced deeply or as per your requirement.
    Then activate it ,it will be activated.
    Regards,
    Raj.

  • Problem while activating BI contents

    Hi Experts,
    I am trying to activate BI contents, when i select "Install In Background" option system shows succesful scheduling of job but when i see the scheduled job from transaction SM37 system shows released status & under "Delay Seconds" by which job is delayed but shows 0 seconds under "Duration Sec."
    Collection mode : Collect Automatically
    Grouping : Dataflow Before & Aftrwds
    Please Help in this regard
    Thanks & Regards
    Sushant

    Hi,
    Select the job in SM37, from the job option in the menu, select "Change".  In the new screen that comes up, click on the Start option button and select, the Immediate button, click on the save button below.  Save the job, the job will now become active.
    Cheers
    Neeraj

Maybe you are looking for

  • Start a process at a specific time of day

    Is there any kind of a time mechanism that will allow a process to be started at a specific time each day?

  • [SOLVED] No sound with Asus Xonar DGX

    I've got no sound so I've looked into journalctl and there were some bluez and pulseaudio related erros. So i.a.w. this topic https://bbs.archlinux.org/viewtopic.php?id=155714 I did `systemctl enable bluetooth.service`. No more errors but still no so

  • Random emails won't open

    Hi There, Having a strange problem - I'm using a single IMAP account in Mac Mail, 10.9.5, and I'm getting a lot of bugs that seem connected.  Two worth noting are: - When opening Mail, a few of the newest emails won't open; the preview window stays g

  • Utl_file.file_type / ora01041:hostdef does not exist

    Hello all, I have got a problem with ora01041:hostdef does not exist. My package compiles well untill he reaches a procedure with an declaration with the utl_file. I get above error and Oracle terminates unexpectedly. The stranges thing is that this

  • MB1A and Cost Center (KOSTL) based on Order (AUFNR)

    Hello, I have a requirement, where i must make a modification in transaction MB1A in the following way: On the second screen "Enter Goods Issue: New items" i must fill automatically the Cost Center field, based on the Order number (after the Enter).