Can not enter EXIT or BADI during Posting material

Hi, Guys.
I want to get Material posting data through exit EXIT_SAPLMBMB_001. Here is my issue:
1 add the break point in ZXMBCU01. the exits is active.
2 add break point in FM MB_POST_DOCUMENT.
When I do Material posting in MB1C, the process didnot stop at the break point. Anybody know the reason.
Moreover, I make a implementation with the BADI MB_DOCUMENT_BADI and make the break point in the method MB_DOCUMENT_UPDATE. Still when I posting material, the process didnot stop at the break point. It seems that the breakpoint didnot make sense.
They are very common EXIT and BADI, I am very comfused.
BJ

Hi,
Try these steps. While saving these material documents related FMs are being called in 'Update task'.
So we need to switch on the 'Update Debugging' to make stop the control at break points.
Put break point anywhere in the SAP source code from where execution starts after you save entries.
Once you are in debugging screen click on menu path 'Settings->Update debugging'. Then press F8.
Now your break point will be triggered.
Please let me know if you need any further clarifications.
Thanks,
Ravi

Similar Messages

  • IOS7 - After taking a photo the lock screen zooms in and I can not enter my password. Does anyone know why?

    Everytime I take a photo on my phone either when it is locked or not, when I come back to my phone to use it next the lock screen has zoomed in and I can not enter my password. I have to either switch the phone off or keep playing with the side button. Its only happened since iOS7 has been installed. Can anyone help?

    On the Home screen, double-tap with three fingers to exit zoom.
    Then go to Settings > General > Accessibility and make sure Zoom is turned Off.
    http://support.apple.com/kb/ts3129

  • User Exit or BADI while posting GRs.

    HI all,
    I am looking for a User Exit or BADI while posting Goods Receipts for Purchase Orders.
    I need to change the <b>POSTING DATE</b> on the receipt for certain document types.
    i found a user exit : MB_CF001, but this is not allowing me to change the posting date on the material document.
    Thanks for your help in advance.

    Hi Ravi,
                      This is ULitity program which takes Tcode or program name as a input and gives the BADI existing in the program. Please Allocate me the point if it is usefully to you
    REPORT ZBADI_CHECK .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.

  • Can not enter interface router.

    Cisco modem with Sitecom router and MacBook pro laptop and HP laptop
    IP router 192.168.0.1
    Can not enter interface and change SSID, code, etc. with the Apple mac.
    It works with the HP laptop.
    I just want the MAc to do that.
    What is there to be changed.

    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy – do not type – the following line into the Terminal window:
    curl -I http://192.168.0.1
    Press return. Post any lines of output that appear below what you entered. If there's no output within ten seconds, consider that a failure. You can then quit Terminal.

  • Can not enter printer code

    i am trying to sign up but getting a message saying "system error"
    meaning i can not enter my printer code

    Hello hamutal,
    Welcome to the HP Support Forums.  I gather that you are unable to get to the HP Connected or HP ePrintCenter web site to enter the printer’s claim code.
    HP Connected has only been rolled out to the USA, the UK, France and Germany.  The link will use your computer to reflect your country and language settings, so if you live outside of the countries that have HP Connected you will get a server error message.  If you live outside those countries, please try going to HP’s ePrintCenter web page.  The link is https://www.eprintcenter.com.
    You can reprint the web services information sheet with the claim code to reactivate it for another 24 hours.  If you are unsure how to do this, I’ve included the Getting the Printer Claim Code document for reference.
    If I have misunderstood, please let me know.  In the next post, please also include the following information:
    What make/model/product number of HP printer do you have? How Do I Find My Model Number or Product Number?
    How is the printer connected (USB cable, ethernet, or wireless)?
    What operating system are you using on your computer? whatsmyos.com
    Thank you.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • I have enlarged icons on the log in screen and can not enter my login code. I have tried enough times that I am locked out and my iphone 5 has been disabled.How do I fix this??

    I have enlarged icons on the log in screen and can not enter my login code. I have tried enough times that I am locked out and my iphone 5 has been disabled.How do I fix this??

    Hey there byambar,
    Welcome to Apple Support Communities.
    It sounds like you’re describing two issues, the first issue is related to the Zoom accessibility feature and the second issue is related to the device being disabled.
    Take a look at the article linked below to learn more about Zoom and the other accessibility features on your iPhone 5.
    Use Accessibility features in iOS - Apple Support
    This article will help you resolve the issue with your iPhone being disabled.
    Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled - Apple Support
    Take care,
    -Jason

  • When ı update firefox 7 to 8 I can not enter the facebook site, when I try it, it says Uyumsuz bir internet tarayıcısı kullanıyorsun. ( it means in english : you are using an unsuportted web browser) how I can solve this problem?

    when ı update firefox 7 to 8 I can not enter the facebook site, when I try it, it says Uyumsuz bir internet tarayıcısı kullanıyorsun. ( it means in english : you are using an unsuportted web browser) how I can solve this problem?

    Step by step, how did you arrive at seeing this agreement?

  • I have firefox 5, but now I can not enter a certain website. I would like to reset to firefox 4. Where can I find firefox 4?

    I have firefox 5, but now I can not enter a certain website. I would like to reset to firefox 4. Where can I find firefox 4?

    @[email protected], I'm surprised that page worked in earlier versions of Firefox. It uses a script to click on links, which has not worked for a long time as far as I know.
    There are at least two add-ons that can take actions on multiple links. I haven't tested either of them, but you could check them out:
    [https://addons.mozilla.org/en-US/firefox/addon/multi-links/ Multi Links :: Add-ons for Firefox]
    [https://addons.mozilla.org/en-US/firefox/addon/selection-links/ Selection Links :: Add-ons for Firefox]

  • VERY URGENT, I CAN NOT ENTER IN THE PORTAL

    Hi,
    yesterday i changed the number of sessions in the visual administrator, Visual Administrator->services->Security Provider ->properties -> sessions_size,  from 200 to 1 and now we can not enter in the portal even from visual administrator.
    any idea please??

    Hi did you tried implementing the solution given in
    Unable to login to Visual Admin
    Also go to this path and check
    if No body can log into the portal until this account is disabled and a new super admin is created.                                             
    Information about portal setup and configuration can be found on
    help.sap.com --> Netweaver --> EP6 =< NW04                                             
    Specifically look into the Administration Guide --> User Admin section on how to create a super admin user and disable sap*.                                             
    I am trying my level best to help you, also please open an OSS message with SAP in the meantime.

  • User can not enter value in INPUT field.

    hi experts,
    i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    Please suggest...
    points will be awarded...

    >
    ashish gupta wrote:
    > hi experts,
    >
    > i have a table control on the screen which have one input field which user needs to fill. But as per he business req. we don't want him to enter any value, values should be enter from the search help only.
    >
    >
    > If i make input field Read only it comes in gray color and user get confused. tell me some way so i can create white input field in which user can not enter values from key board.
    >
    >
    > Please suggest...
    >
    > points will be awarded...
    This you cannot control. because if it is enabled only in that case you can see it white.
    do that thing as suggested by basakar to add a new input field just besides first one with zero padding.
    One workaround is use an image instead of real input field. the image should have the input field as image.
    and besides it create the input field with width 0 and padding also zero.
    i think this can fulfill the requirement.
    Thanks
    sarbjeet singh

  • HT4859 I dropped my phone in the water can not enter pass word couse can not see the screen what can i do??

    I dropped my phone in the water can not enter pass word couse can not see the screen> what can i do?

    You're going to need a new phone unless you are very lucky. Take it to an Apple Store.

  • Why my iphone screen can not open the key and can not enter the menu

    why my iphone screen can not open the key and can not enter the menu

    Your issue is not clear - are you saying your phone is disabled and/or you forgot the passcode?
    http://support.apple.com/kb/ht1212

  • HT2693 I can not enter app store

    I can not enter enter App Store,  the message change in to sand box

    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Hello they sold me a iphone 5 but nose as I blocked iphone and I can not enter my iCloud account

    Hello they sold me a iphone 5 but nose as I blocked iphone
    and I can not enter my iCloud account

    Are you signed into your iCloud account right now?  If so, go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.
    To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.

  • I can not enter cd or dvd in the superdrive. The entrance is blocked. What may be happening. It is a configuration problem? Thank you.

    I can not enter cd or dvd in the superdrive. The entrance is blocked. What may be happening. It is a configuration problem? Thank you.

    In the newer iMac, a bar blocks the slot if the drive fails to prevent inserting a disk that may not ever come out. You'll need professionl help to get this sorted.

Maybe you are looking for