Why customer exit not call  ?

i had imp customer exit 'MBCF0007'     use  CMOD
When  i use Tcode 'MB21'  , it  work  ,but when  I use  "CALL TRANSACTION 'MB21' USING TABLE_BDC" in abap programm, it does not  work.
why?
pls  help
thx
Edited by: yudong Geng on Dec 11, 2008 4:16 PM

Look at this OSS [ Note 899033 - Problems with the MBCF0007 enhancement|https://service.sap.com/sap/support/notes/899033]
1. The user exit is not executed when a batch input session is running.
Regards

Similar Messages

  • Customer Exit not called upon in the Query...

    Dear Guys,
    I am working on the "Slow Moving Item(MC46)" report in BW.We need "No.of Days Not consumed" in the Input selection screen in the BW Query.We tried creating a Formula variable upon "Calday" with Data type "Numeric" and then a Customer Exit is called to the Subtract the "No. of days not consumed" from "Today's date(System Date)" and gives the result as "Earlier date" .
    (Eg: Today's Date : 04-04-08
           No. of Days Consumed : 30
           ZSlow_Mov_Date          : 03-03-08).
    But for some reason the Customer exit is not called upon when we execute the Query (RSRT-->Execute + Debug option)..Can someone take time to throw some light on this,plz?
    Manythanks
    Arun

    Hello Arun,  
    In the User Exit Code, please check at what I_STEP value the variable exit is called.
    See this link for more info about I_STEP
    [Dependencies for Variables of Type Customer Exit |http://help.sap.com/saphelp_nw04/helpdata/en/1d/ca10d858c2e949ba4a152c44f8128a/frameset.htm]
    Thanks
    [Chandran|http://chandranonline.blogspot.com/]

  • Why can I not call a live person ofr support - this is frustrating.

    Why can I not call a support person directly for help - this is frstrating.

    I understand your discontent regarding the delayed availability of our reps when you call us juliusb85! We offer other customer service alternative for you like Twitter @VZWSupport and Facebook http://fb.me/Verizon or we can assist you here also. However, please keep in mind that this is a peer to peer forum and while our Social Media team monitors the posts, the best way to get immediate assistance when network issues are suspected is to call 800-922-0204 from a different line to troubleshoot device or send us a message on twitter at @VZWSupport.
      AntonioC_VZW
    Follow us on Twitter at www.twitter.com/VZWSupport

  • Why can i not call out when in roaming but can recieve calls

    why can i not call out when roaming and my data shuts off but i can recieve calls

        rhondahuffman1,
    These are great question and we definitely want to help out! For starters, what model of device are we working with? Are you roaming outside of the country or is the device stating roaming within certain areas? What's your zip code? Happening in specific locations? Share some details, so that we may assist.
    AdamG_VZW
    Follow us on Twitter @VZWSupport

  • Customer exit for calling a database a table

    Hi Friends,
    I want to write a customer exit code for customer exit variable which should call a database table which i have created. The database table  consist of two fileld username and the material value assign to that user.
    and when a  perticuler user execute a query using this customer exit variable the customer exit code will  check the user who is log in and will get filled by value assigned to it in the database table.
    i am new to the customer exit can any one send me the sample code for this.
    Points will be assign to helpful answer.
    Regards,
    Deepak

    Hay Diogo,
    here is the code.even if i put I_step = 2 i can not see any value in the variable as default and when i try to select it.i can not see any value in selection screen and i see message that You must have authorization for at least one characteristic value for the characteristic PLD_MPLAN.
    Database table created is ZPLDVALUES with following entries
      USERNAME     PLD_MPLAN
      TEST_DW03       000000000000101628            not working  when no I_Step in coad
      TEST_DW04       000000000000101628
      TEST_DW15       000000000000101628
    FUNCTION zpldvarexit_pld_mplan_u01.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_VNAM) TYPE  RSZGLOBV-VNAM
    *"     VALUE(I_VARTYP) TYPE  RSZGLOBV-VARTYP
    *"     VALUE(I_IOBJNM) TYPE  RSZGLOBV-IOBJNM
    *"     VALUE(I_S_COB_PRO) TYPE  RSD_S_COB_PRO
    *"     VALUE(I_S_RKB1D) TYPE  RSR_S_RKB1D
    *"     VALUE(I_PERIV) TYPE  RRO01_S_RKB1F-PERIV
    *"     VALUE(I_T_VAR_RANGE) TYPE  RRS0_T_VAR_RANGE
    *"     VALUE(I_STEP) TYPE  I DEFAULT 0
    *"  EXPORTING
    *"     VALUE(E_T_RANGE) TYPE  RSR_T_RANGESID
    *"     VALUE(E_MEEHT) TYPE  RSZGLOBV-MEEHT
    *"     VALUE(E_MEFAC) TYPE  RSZGLOBV-MEFAC
    *"     VALUE(E_WAERS) TYPE  RSZGLOBV-WAERS
    *"     VALUE(E_WHFAC) TYPE  RSZGLOBV-WHFAC
    *"  CHANGING
    *"     VALUE(C_S_CUSTOMER) TYPE  RRO04_S_CUSTOMER OPTIONAL
      "DATA material LIKE zpldvalue-pld_mplan.
      DATA: l_s_range TYPE rs_s_range,
            l_s_var_range LIKE LINE OF i_t_var_range.
    *if i_step = 2.
      DATA: BEGIN OF usevalue OCCURS 0,
            username LIKE zpldvalues-username,
            pld_mplan LIKE zpldvalues-pld_mplan,
            END OF usevalue.
       " Variable nach Selektionsbild bearbeiten
        SELECT pld_mplan FROM zpldvalues
        INTO  usevalue-pld_mplan
        WHERE username = sy-uname.
        ENDSELECT.
        refresh e_t_range.
        CLEAR l_s_range.            " Range-Tabelle füllen
        l_s_range-low  =  usevalue-pld_mplan.
        l_s_range-sign = 'I'.
        l_s_range-opt  = 'EQ'.
        APPEND l_s_range TO e_t_range.
    *endif.
    ENDFUNCTION.
    -Deepak
    Edited by: Deepak warbhe on Sep 2, 2008 5:18 PM
    Edited by: Deepak warbhe on Sep 2, 2008 5:28 PM

  • Customer Exit not working - need help in diagnosing

    Hi all,
    I need some help in identifying a Customer Exit issue in our QA system. 
    Currently, in Dev I have a customer exit defined and everything works perfectly.  However, the same code which was migrated to QA works fine when testing at the FM level but not when executing at the report level.  I tried inserting a breakpoint and executing the report, however the breakpoint never populates.  There seems to be a communication issue here.  When executing the report the variable does not call the customer exit FM/program. 
    How do you diagnose this problem?  Is this a BASIS issue?
    I tried testing the query in RSRT and I run into the same issue of nothing happening.  I tried deleting the variable and recreating with only the same results. 
    Is there a config or setting that is related to the customer exit functionality within BW?
    Also, when transporting the customer exit code I did not migrate the FM along with the Include.  Is there a proper way to migrate this?
    Thanks,
    DC

    Thanks for your response.
    I did double check the variable name to be exact.  I think the issue maybe related to the project not being activated.  I will update as I diagnose the problem.
    Thanks

  • Why customer exit variable to grab the current month value doesn't work?

    In CMOD, input the following code to grab the current month value from the system date:
    Grab the month value with System Date
    WHEN 'CURMONTH'.
        CLEAR l_s_range.
        l_s_range-low = SY-DATUM+4(2).
        l_s_range-sign = 'I'.
        l_s_range-opt = 'EQ'.
        APPEND l_s_range TO e_t_range.
    In Query Designer, create a formula variable CURMONTH processed by customer exit and the dimension under the Currency/Unit tab is "Number".  Put the formular variable in the column as a KF.  When running the query, the column with the formular variable shows values of "2,0000000" other than just "2" I want for the current month.  If  the dimension under the Currency/Unit tab is "date", the column with the formular variable shows values of "00/00/0000".  Any idea?  How to grab the correct current month value which is 2 from the system date.
    Thanks!

    Oh ok , try the below options, As such I dont see any errors in our code .
    Not sure if you have ABAPER's in your team, just check with them once on the FM we are trying to see .
    Next , do you hvae 0CALDAY available in your report ? If so try to restrict that field with variable "0DAT" and write the same code you have written for your formula variable , but instead change the variable name to "0DAT" and try if this gets the month . let me know if I'm not clear .

  • Why button can not call its script?

    I did very simple work: open Director MX 2004, click the
    button icon on the Tool Palette, and draw a button on the stage.
    Right click it and menu appear. Click "Scripts..." and script
    window opens. MouseUp() event function is there already. Write
    something in mouseUp(). Anything is OK. Put a breakpoint on some
    line.
    OK, then click menu Control-Play to run the movie. Click the
    button on stage. At this time, it ought to be broken on the
    breakpoint. But it didn't. The mouseUp() was not called!
    On the other hand, other controls are OK, such as Text,
    Shape, etc.. Only botton can not call its script. Is it a bug of
    Director MX 2004?

    It may be that you're creating flash component buttons. Try
    setting the tool palette to 'classic' mode (the dropdown at the top
    of the tool palette). The buttons you create once you've done this
    will be native director buttons.
    I've not really used flash component elements much at all so
    I can't offer advice as to why the mouseup isn't working with it.
    - Ben

  • Customer exit not working for variable

    hi ,  i have created the variable with customer exit,options for variable are optional and ready for input checked.when in debugging mode the value in exit i_vnam is having value of the variable but in the second time it dont have.so i cannot go the code after user inputs data. please solve.

    Hi vijay pilli,
    Custome exit means  by writing code you have to populate the value by specifying a value directly or from the user input.
    for example :
    when ever user runs the report he need to see only for that current year sales revenue.So, for this create a variable for 0calyear > customer exit> clear the ready for input>
    here based on sy-datum we will get the current year.
    when variable
    l_s_range-low = Sy-datum+0(4).
    l_s_range-sign = I.
    L_S_RANGE-OPT = EQ
    Append L_S_RANGE TO E_T_RANGE.
    Regards
    Sree

  • Customer Exit notes

    hey all,
    Can anyone help me, where can i find more information on writing customer exits in BEx. i want a better understanding of what does low, high etc mean.
    thanks
    Laura.

    hi laura to create a customer exit:
    Execute TX CMOD.
    Choose either existing project or create a new one.
    enhancement = RSR00001
    Press the button Components
    Double click on a row with EXIT_SAPLRRSO_001.
    Double click on INCLUDE ZXRSRU01.
    If want information on the fields LOW, HIGH etc.
    1.choose enhancement assignment radio button on tx cmod   window.
    2.click on the display documentation icon(CTRL+F4)
    Message was edited by:
            Karthik Ten

  • Custom Widget not calling cpSetValue in Runtime mode

    Hi,
    for some reason , Captivate Runtime is not calling cpSetValue throught the ExternalInterface... so this is really problematic as i need to retreive the movie_handle and the variable_handle.
    is anyone already experienced this problem?
    Thank you!
    E.

    Hi, thank you for helping me.
    So whats happend here is based on the documentation and other widget example, captivate at runtime is supposed to call cpSetValue using the ExternalInterface Call.
    The problem is, not callBack is been called in runtime... Work well in Edit and Stage Mode thought.
    if(ExternalInterface.available == true)
              Todo : Register all the ExternalInterface functions
              ExternalInterface.addCallback( "isStatic" , isStatic );
              ExternalInterface.addCallback( "getInspectorParameters" , getInspectorParameters );
              ExternalInterface.addCallback( "setInspectorParameters" , setInspectorParameters );
              ExternalInterface.addCallback( "setParameters" , setParameters );
              ExternalInterface.addCallback( "cpSetValue" , cpSetValue );
              ExternalInterface.addCallback( "getEditModeWidth", getEditModeWidth);
              ExternalInterface.addCallback( "getEditModeHeight", getEditModeHeight);
              ExternalInterface.addCallback( "IsReadyForSnapShot", IsReadyForSnapShot);
              ExternalInterface.addCallback( "getListOfUsedInternalResources", getListOfUsedInternalResources);
              ExternalInterface.addCallback( "getListOfUsedExternalResources", getListOfUsedExternalResources);
              ExternalInterface.addCallback( "SetExternalResources", SetExternalResources);
              ExternalInterface.addCallback( "SetInternalResources", SetInternalResources);
              ExternalInterface.addCallback( "GetWidgetAPIVersion", GetWidgetAPIVersion);
              ExternalInterface.addCallback( "SetStageModeSize", SetStageModeSize);
              ExternalInterface.addCallback( "SetCaptivateVersion", SetCaptivateVersion);
              ExternalInterface.addCallback( "SetLanguage", SetLanguage);
    i have my functions defined properly and as stated previously its working in Edit and Stage Mode.
    Thank you!
    E.

  • Exit not called

    Dear All,
    We are using the standard workflow for PR Release. I have created a project and used enhancement M06B0001 and Exit EXIT_SAPLEBNF_001 (include ZXM06U12).
    I put the break point in the exit but it has not been called in the workflow.
    Please suggest if i missed any step.
    Thanks and Regards
    Ankur Gupta

    Thanks for your reply.
    Yes i have activated the project and include both and put a break point in the include but this break point is not reached.
    Please help.
    Thanks & Regards
    Ankur Gupta

  • Contract Account Custom view not called when replicating thru CRM

    Hi All,
    We have modified the Contract account screen through BDT.
    Functionality -
    We have a custom table, that needs to be updated during contract account creation when reference contract account is used for creation.
    The update is successful when creating contract account via ISU, but when creating thru CRM, the custom view is not getting triggerred.
    I have checked in debugging as well, the process flow triggered via CRM is different than that from ISU. When Business Agreement is created via CRM, neither of PAI / PBO event is triggerred defined for the custom view created in BDT.
    When we have the custom field passed from CRM, it is getting updated correctly, but if the field is not passed from CRM view and we are updating using code logic in BDT modules, it is not successful.
    Could you please help in case I have missed on some config or is there any alternate way to get the custom requirement achieved.
    The requirement is to have custom table updated in both Create and Change mode.
    Thanks in Advance!!
    Regards,
    Rajesh Popat

    Hi Siva,
    Contract Account was replicating correctly for the ISU system. The issue was, we want to update some custom fields that are not passed as a part of CRM data, but using BDT and some validations, we were trying to populate that field and also update the custom table and link the same to sub screen attached for the contract account screen.
    The issues is now resolved. The custom view is getting triggered through CRM. There was some config missing for the BDT.
    When using BDT, only the PAI module gets called for all the views defined for the BDT.
    Thanks!!
    Regards,
    Rajesh Popat

  • Why custom layout not take effect if navigating from left tree

    Hi,
    I specified a custom layout for a repository in KM Content. The layout is a duplicate of AdminExplorer, which contains a tree structure in the left panel.
    The problem is, when I navigate the repository in the right panel, the custom layout is always in effect. However, if I navigate from the tree structure in the left panel, the custom layout doesn't take effect.
    Anyone knows why? I wonder if I forget to configure something, or this is indeed not supported?
    I don't know how to attach screenshot - if you wanna see the screenshot for more info, please add [email protected]
    Thanks,
    Ray

    problem doesn't exist. close it.

  • Why can I not call myself if my devices are in different houses?

    I would like to be able to call myself from My macbook air to my IPad when the devices are in different houses. Is there a way to do this? Fine from the I Phone or I Pod touch. All accounts are in my name and have same email. Between the Ipad and macbook I have to switch to SKYPE.

    You might need to go to Facebook to ask for help with their app.

Maybe you are looking for

  • How can I use the FM tuner in Windows Media Center?

    Hi everyone. New to the threads. Found this site while looking for answers to a problem I'm having. ?:| I received my Toshiba Satellite computer as a Christmas gift. I noticed it has a cool FM tuner feature. I also have been playing around with Windo

  • Changing Login Name and Password

    Greetings, I gave my MacBook Pro to my brother and would like to change the computer owner name, login and password so it comes up as his computer. Where and hos do I do this? Also, I did a Software Update and was prompted for my user id and password

  • JNI_CreateJavaVM hangs in DLL called via Adobe plug-in

    We have a plugin that works in Adobe Acrobat and Adobe Reader. The plugin is written in VS2008 VC++ and calls into a DLL that we have written. The DLL in turn uses JNI and calls into some Java code. We've tested the DLL and calls into Java separately

  • Add days to a date field on adobe form

    Hi, I have to add 15 days to a date field how i do that on javascript or formcalc? Thank you in advance. Miguel

  • What is the current version of SAP in Market ?

    Dear, What is the current version of SAP in Market ? Thanx & Regards, Mohammad Nabi, [email protected]