I am keeping break-point in J_1I7_USEREXIT_CALC_EXC_BASE it's not stoping?

Hi all,
There is an user exit J_1I7_USEREXIT_CALC_EXC_BASE which has the KONV structure, you may put your logic to derive the excise base and pass it to field EXCITM_BASE which will update the assesable value. For example, you will have the JEXP condition in the KONV structure, you may pass te base values used for the JEXP as the value to the field EXCITM_BASE.
Actually i have to get stop in that FM by using break-point.
I am running J1IIN tcode.but it is not stoping in that FM.
Which T.Code i have to run for to get stop in that FM.
If my break-point will work to stop in that FM means my problem will be solved.
Please help me if any body knows solution?
Thanks & Reagrds,
J.Lokesh

write a code break-poink. in ur logic and execute the corresponding T.code. If It is Useful give me Reward points.
Regards,
babu

Similar Messages

  • How to keep break point in back ground scheduling Report

    Hi,
    how to keep break point in back ground scheduling Report?
    Regards,

    Hai ,
    One more way to debug  in the back ground is , pur some infinite loop condition and execute the job and in SM50 you can see the job which is running place the cursor on the job and go to the program in the menu and go to debugging from there .
    Example code for infinite loop .
    i=1 .
    loop at itab .
    if i > 5 .
    end loop .
    Regards,
    K.Vinaykumar

  • Break point in a program

    i kept a break point in a user exit with the statement
    BREAK-POINT.
    but the control is not stopping there , i am not testing it so didnt give it as user specific . what might be the mistake ? is it not the proper user exit , i have created a project and activated it . i have activated include and all .

    Hi,
    When you start transation in which you have put a break point, start debugging on(\h). add break-point at statement CALL CUSTOMER-FUNCTION.
    keep on pressing F7. You may reach to your exit if it come in way of executing you process.
    Could you mention for which functionality you have created using user exit, it will more easy to provde help.
    Regards,
    Amit R.

  • Break points

    hai gurus...
    how many watch points and break point can be used in each program...
    types of watch points and break points....
    Thanks
    Pavan

    Hi
    a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    · You can set up to five watchpoints in a program.
    See also Setting Watchpoints.
    · You can also specify the conditions under which a watchpoint is to become active.
    · You can specify a logical link for up to five (conditional) watchpoints.
    See also Specifying Logical Links.
    · You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in
    the specified program.
    · You can change and delete watchpoints.
    See Changing Watchpoints
    · You can use watchpoints to display changes to the references of strings, data and object references, and internal tables.
    See Memory Monitoring with Watchpoints
    Breakpoints
    Apart from being able to execute an ABAP program in the Debugger, you can also start the Debugger call by the choosing a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For more information, refer to the chapter Watchpoints.
    Breakpoint Variants
    The Debugger contains different breakpoint variants:
    Static
    A user-specific breakpoint is inserted in the source code as an ABAP statement using the keyword BREAK-POINT. A non user-specific breakpoint is set in the ABAP Editor using the BREAK user name statement.
    Directly set
    dynamic breakpoints
    Can be set in the ABAP Editor or the Debugger by double-clicking a line, for example. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    Breakpoints
    at statements
    The Debugger stops the program immediately before the specified statement is executed.
    Breakpoints
    at subroutines
    The Debugger stops the program immediately before the specified subroutine is called.
    Breakpoints at function modules
    The Debugger stops the program immediately before the specified function module is called.
    Breakpoints at methods
    The Debugger stops the program immediately before the specified method is called.
    Breakpoints at exceptions and system exceptions
    The Debugger stops the program immediately after a system exception, that is, after a runtime error has been intercepted.
    Static Breakpoints
    Static breakpoints are always user-independent if there is no specification of a user name. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application when program execution is always to be interrupted at the same place. For more information, refer to the chapter Static Breakpoints.
    In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.
    Dynamic Breakpoints
    Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints because you can deactivate or delete them at runtime. They have the following advantages:
    · You do not have to change the program code.
    · You can set them even when the program is locked by another programmer.
    · You can define a counter that only activates the breakpoint after it has been reached.
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For more information, refer to the chapter Dynamic Breakpoints.
    In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.
    Lifetime and Transfer of Breakpoints
    A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they remain in effect during the entire user session if they are saved by choosing the menu path Breakpoints ® Save in the ABAP Debugger. For more details on the subject of user sessions and modes, refer to Modularization Techniques in the ABAP keyword documentation.
    If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.
    If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.
    we can keep them at :
    Statements
    Subroutines
    Function Module Calls
    at Methods
    System Exceptions
    break point :
    we can start debugging from that point or if we keep break point at some place we can directly got ot htat point using f6.
    watch point: for example if we have to check the output for 4000 records based on a field value i.e.for vendor number 'in'we have to check then we will create watchpoint on field LIFNR value '2000'. then we can directly go to vendor whose numbe ris 2000
    Regards,
    Sree

  • External Break point in Bor

    hi All,
    Please tell me how to set external debugger in BOR
    i've tried putting Break-point in code it is not working
    please help me on this
    Thanks In Advance
    Hari Sankar M

    Hari,
    I remember this discussion once, but guess at that time this problem was not solved. It is working for me, you can also try. Go to method, click on program, in settings you have somthing called editor mode there go to activate debugging.  Put a breakpoint after that, you should get an option of session debugger or external debugger. select external debugger.
    Shweta

  • How to supress hanging productive BI at forgotten Break-Points

    Dear Colleagues,
    I think, that there is a customizing feature for productive BI systems, to prevent hanging prozess chains or DTPs.
    Sometimes you forgot to remove a break-point in your transformation ABAPs before transporting to test or productive BI systems. If so, chains run after some hours to red without any information about the reason.
    I know other BI systems, where BI wrote only break-point information into log, but run chains w/o any delay.
    At my current system, BI hang up on forgotten break-points.
    Who can help? What customizing is neccesary?
    Many regards,
    Wolfgang

    Hi there,
    Luckly for you I had the same problem some time ago and posted a service market place message.
    Here it is (with also the solution to your problem):
    Hello,
    in your start rourine is the command
    BREAK-POINT.
    Please remove this - there is a 'strange' Basis/Kernel bug which
    sometimes 'stalls' at a BREAK-POINT.
    See also the note 1388307 and 1405785
    You need Kernel patch 225 for solving it - or simply remove the
    BREAK-POINT.
    regards
    Diogo.

  • Dump while setting a break point in ECC 6.0

    Dear Experts,
    In ECC 6.0, when I try to put a break point in the program to stop the control there. I am not able to do so, it is going to dump. The dump message is also not very clear. Do anyone of you are facing the same problem. Any idea why is this happening and how do I fix it.
    Can it be due to the improper installation? Please respond.

    First of all thanks to Mickey, Nitin, Anki, Sujit, Red, Madhu, Vibin for the quick response...To be honest I did not expect such a response as a new member to the SDN community...I am sorry I could not mention the detail about the dump initially...Here is the detailed description..
    Issue: In ECC 6.0, when I write a simple ABAP program (e.g. 'Hello World' program). When I try to keep the cursor on any abap statement and click on the 'session break point' icon in the tool bar to set the break point, i get a status message 'Compling SAPLBREA in separate task and finally i get the dump.
    Dump Detail :
    Runtime Errors: DBIF_REPO_SQL_ERROR
    Short Text : SQL error 1115 occurred when accessing program 'LNAVIDAT' part "SRC".
    Program: SAPLBREA
    Include: LBREATOP
    Row: 41
    There is a an include being called at line no 41, which is "Include LNAVIDAT".
    Now when I click on the 'debugger' icon in the dump...It points to a functional module "RS_SET_BREAKPOINT"
    Also, while double clicking on this include to see the code within, it issues an error message saying "SQL error occurred when accessing the table TRDIR".
                                    Or
    While trying to display the code of the include LNAVIDAT in se38 to see what is wrong with that i get another dump and this time it points to be SELECT query in the dump which is:
    SELECT SINGLE * from PROGDIR WHERE name = rs38m-programm
                                                              and  state = active.
    Thereafter, i keep getting dumps when i try to go to any T.codes (e.g. se11, se38 etc.). until i log off and log in again. Hope this helps you guys understanding the problem. Being new to SAP, I have no clue why is this happening and how to fix it. Thanks in Advance.

  • Break point in BADI

    Hi,
      I am trying to keep a break point in BADI for PBEN0014 which I implemented using a method. But it does not stop at that point and gets the output directly. Is there any way to make the payroll stop at breakpoint in BADI.
    Thanks.
    Osacr

    There is an quicker way to finding a BADI and BADI implementations for a transaction:
    SE37 display Function Module - SXV_GET_CLIF_BY_NAME.
    Set a BREAKPOINT on call function SXV_ADD_PREFIX .
    In another SESSION run the desired transaction, parameter 'name' gives the BADI; parameter 'clif ' gives implementation, e.g. for TCode MIGO name = MB_MIGO_BADI, clif = CL_EX_MB_MIGO_BADI .
    Hope this helps.

  • Dual Layer break point - multiple videos

    I have 4 videos to go one the DVD, comes to 8.5 GB in total.
    1. 45mins
    2. 1hr 15mins
    3. 40 mins
    4. 35 mins
    How do I know which video to put the break point on and at what time.
    I've been using trial and error for the last couple of days now and error keeps winning.
    All I keep getting are various Error messages, this is my most recent
    +Formatting was not successful. Layer 1 exceeds the maximum layer size allowed. Please choose a suitable marker location that will support this condition.+
    Thanks in advance
    John E
    Message was edited by: John England

    It could be that you have exceeded the disc size, but assuming you haven't there has to be a break point where it crosses over from Layer 0 to Layer 1, if you have no Chapter Markers at all (or a limited number of Markers, none of which fall near the point which is a bit more than half the size of the assets you will get an error that a Layer is the wrong size.
    What you do is
    1.) Set up markers in the areas where your would guesstimate the Layer Break(s) should be. (You can build the project and use VTS view to see where about halfway plus a bit is located and make sure to put a few markers in the track in that VTS. Take a look [here|http://dvdstepbystep.com/vts.php] for looking at VTS and builds to see a bit more on that.)
    2.) Build the project (but not format)
    3.) Format a Disc (in the dialog that comes up, click on advanced tab, then where it says break point, use the pulldown which will have all valid breakpoint markers dark/black, while non-valid Layer Break Markers will be faded) If no marker is black there is no marker in the right place, regardless of you use automatic or not.
    4.) If the layer break(s) are not where you would like them (in other words a place where they may be more noticable) use VTS view to re-order then go back to step 1.
    If you have not made audio AC3, you should encode to AC3.

  • How to use break point in workflow to check

    hi there,
    how to use break point to check the values in debug mode.
    if i keep one break point in method..can the conttrol will be stop there?
    when work flow triggered??

    hi nag,
    thanks for ur fast responce.
    this FM will check very begining of the work flow..then it goes to aprover..then status will be updated to active.(for first time mm01 will not allow them to create mat in active status..as i configured user exit..after approving only these mat get active status). but in the case of extending materials they can create the views in active mode itself. after they r saving the material getting inactiv status in db tables...
    if u want i can provide the code where mat status is updating to active for new materials.
    My Q: i want to exit wf from where fm finds that the material is extending
    code is:(checking for both sales and pur views--i guess!)
    SELECT * INTO  TABLE t_marc
                     FROM  marc
                     WHERE matnr EQ objkey.
            DESCRIBE TABLE t_marc LINES records.
            IF records GT 1. "CHECK FOR MATERIAL EXTENSION
              MESSAGE ID      'ZAM_MWF' TYPE    'E' NUMBER  010 RAISING
                         check_failed.
            ELSE.
              LOOP AT t_marc.
                IF t_marc-mmsta EQ 'G5'.  "CHECK PURCHASING BLOCK
                  SELECT * FROM moff INTO TABLE t_moff
                  WHERE matnr EQ objkey AND
                       ( werks EQ plant OR
                         bwkey EQ plant ).
                  DESCRIBE TABLE t_moff LINES records.
                  IF records GT 0.
                    SELECT SINGLE * FROM zam_mat_wf_conf
                                    WHERE mtart EQ t_mara-mtart.
                    IF sy-subrc EQ 0.
                      LOOP AT t_moff.
                        FIND t_moff-statm IN zam_mat_wf_conf-pstat.
                        IF sy-subrc EQ 0.
                          DELETE t_moff.
                        ENDIF.
                      ENDLOOP.
                      DESCRIBE TABLE t_moff LINES records.
                      IF records GT 0.
                        MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  009 RAISING
                        check_failed.
                      ENDIF.
                    ENDIF.
                  ENDIF.
                ELSE.
                  MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  013 RAISING
                  check_failed.
                ENDIF.
              ENDLOOP.
            ENDIF.
          ENDIF.
        ELSEIF mstatus EQ 'V'.  "FOR SALES VIEW
          SELECT SINGLE * FROM  tvko
                    WHERE vkorg EQ salesorg AND bukrs IN r_bukrs .
          IF sy-subrc NE 0.  "CHECK SALES ORG CONFIGURED FOR WORKFLOW
            MESSAGE ID      'ZAM_MWF' TYPE    'E' NUMBER  005 RAISING
                       check_failed.
          ELSE.
            SELECT * INTO  TABLE t_mvke
                     FROM  mvke
                     WHERE matnr EQ objkey.
            DESCRIBE TABLE t_mvke LINES records.
            IF records GT 1.
              MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  012 RAISING
              check_failed.
            ELSE.
              LOOP AT t_mvke.
                IF t_mvke-vmsta EQ '10'.
                ELSE.
                  MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  014 RAISING
                  check_failed.
                ENDIF.
              ENDLOOP.
            ENDIF.
          ENDIF.
        ELSE. "NO SALES or PURCHASE RELATED VIEW'S CREATED
          MESSAGE ID 'ZAM_MWF' TYPE 'E' NUMBER  003 RAISING
                 check_failed.
        ENDIF.

  • Formatting Failed Error - Break Point Error

    I have a large project I'm trying to burn on a dual layer dvd. I keep getting the following error:
    Formatting was not successful. A suitable marker could not be found in the required layer break range. See the DVD Studio Pro User's Manual for more info.
    Well I did that and tried to move the break point marker to where I thought the break may occur according to the VTS outline view. I usually use automatic for this but it's not working this time.
    Any suggestion would be greatly appreciated. Thanks for your time.

    When you prepare to Format the disk: Look at the Disc/Volume tab: Dual-Layer Break Point drop down menu.
    Are any of the chapter markers in the middle tracks visible in black (ie not greyed out)? If so select a suitable one of these and you should be OK. If they are all greyed out then you need to create a chapter marker in an area of the movie that should be at about the mid point of the movie. Try to select a point where a slight pause would not be distracting.

  • Break-point in field Exit

    Hi Gurus,
    How can we keep a break point in filed exit . can any one help me .
    I Kept break point in the  functional module(field exit) but when i execute cursor is not stopping at break point.
    can any one help me
    thanking in advance.
    Thanking you,
    Raju

    Hi,
    The following ABAP statements are not allowed in the function modules of field exits:
    BREAK-POINT,  " We can not ues this statment
    CALL SCREEN, CALL DIALOG, CALL TRANSACTION, SUBMIT,
    COMMIT WORK, ROLLBACK WORK,
    COMMUNICATION RECEIVE,
    EXIT FROM STEP-LOOP,
    MESSAGE I, MESSAGE W.
    Field exits have to be tested in isolation in the development environment. To analyze problems that occur only in the screen environment, the relevant variables can be written to the file system using TRANSFER... and can be analyzed there.
    <b>Conclusion is We can not debug the Field Exits</b>
    Regards
    Sudheer

  • How to manually create layer breaking point for DVD9

    Hello, I was wondering if someone could please tell me how I would go about to manually set the layer break point for a DVD9 project that I burned onto 2 DLT tapes. The total size of the DVD is 6.3GB.
    I had used the "automatic" setting for burning the DLTs and sent them to a replicator. They came back saying that the layer 0 tape did not allow enough headroom for their Ripguard protection.
    I've always used the automatic setting and this is the first time I am asked to manually set it. SO now I need to figure out how I can put a certain amount of data on one DLT tape and the rest on the other DLT.
    I am a beginner at this so any help would be greatly appreciated.
    Thank you!

    Hi Eric,
    Unfortunately the information you have regarding RipGuard and the ability to copy RipGuard protected discs is a little outdated.
    Can RipGuard be broken? Yes, anything can be broken into, including the DoD Website by 14 yr old chinese students... but that doesn't mean there isn't value in protecting the DVD.
    Also, RipGuard is regularly updated, just like Antivirus software, so while older versions of RipGuard can be broken more easily, the latest versions of RipGuard are significantly more difficult to circumvent by existing software.
    But again, the point isn't to create the unbreakable 'holy grail' DVD copy protection, but rather to protect something of value.
    When you leave your house in the morning, do you close your front door and lock it? Of course you do, but why? So no one will break in. But do you think locking up your house is really going to stop someone from going around to the side of the house and busting out a window if they really want to get in? Of course it wont. If someone wants to break into your house, they will find a way.
    Same thing with DVDs. You lock your house because it provides a method of protection, a barrier to make it more difficult and to keep honest people honest. That's what RipGuard, or any copy protection software does.
    So the question isn't why would you protect your DVD, but rather why wouldn't you? In most cases if you prevent just a few illegal copies of your DVD from being ripped, it has already more than paid for itself.

  • DL Break Point error.. please help!

    Hi All,
    I have a really big DSP4 projects with a 78 min feature, and about 15 more 2-5min clips. For some reason, I am having a really hard time setting a break point.
    If I choose automatic break, I get:
    "Formatting was not successful. A suitable marker could not be found in the required layer break range. See the DVD Studio Pro User's Manual for more information."
    ...and if I set the breakpoint myself, I get:
    "Formatting was not successful. Layer 0 exceeds the maximum layer size allowed. Please choose a suitable marker location that will support this condition."
    Please help me out!

    Hi, I definitely understand what you are going trough, I spent a whole week trying to find the brake point, after reviewing my tutorial I realized wherre the problem was. Devide the total lenght of the movie by 2 and then add about 5 to 10% to the 50%, than start adding markers on the timeline close together, you are allowed 99 markers, hilight each marker after being used so that you can keep track, if you are reaching the disc limit, than you may be limited to a few choises.I hope this works for you.
    G5 Dual 2.0   Mac OS X (10.4.4)   ATI 9800 Pro Display Card
    G5 Dual 2.0   Mac OS X (10.4.4)   ATI 9800 Pro Display Card

  • Bitrate and break point problems

    Hello All,
    I am trying to create a dual layer dvd containing 37 chapters (all average 3 min. a piece) and 2 audio tracks (one with commentary) with DVD studio Pro 3. On my first build, the disc meter was 7.6 GB large. On a dual layer this should fit with no problems, right? The build got to muxing and cancelled saying "the video bitrate is too high". I read somewhere on these posts that this doesn't matter too much if you're planning on burning to Toast, which is what I was going to do. So I tried formatting and I keep getting the "can't find a suitable break point error". I then tried making several of the chapter markers break points but it didn't like any of them and I still keep getting the same error message on formatting. Any help is greatly appreciated!

    Carson:
    Wellcome to the forum!
    High bitrate
    First at all, you probably are using AIFF audio (uncompressed). If that's the case encode your audio to Dolby 2.0 (AC·) and you'll get a lower total bitrate and more free space.
    You must look for A.Pack app in your applications folder to encode to AC3. You can take a look to this tutorial about Encoding AC3 with A.Pack (from KenStone site).
    You didn't mention your MPEG2 encoding settings, did you used any standard Compressor preset?
    37 chapters x 3 min means less than 120 minutes. Encoding your audio to AC3 and using the 120 Min Compressor preset will let you fit your project in a DVD5.
    Hope it helps !
      Alberto

Maybe you are looking for