Problem setting External break point..

Hi All,
      I am using EP6 SP14 and R/3 4.6C.  Java Webdynpro aRFCs to connect to R/3 BAPIs. I am having problems setting up external break points. I don't see Debug option in "Utilities -> Settings -> ABAP Editor". Do we have this option in R/3 4.6C? If yes how to enable the option? If no, what is the work around to debug the BAPI through Portal.
   Helpful answers will be rewarded.
Regards,
Uday.

Hi,
Pl go through this
Debugging ABAP Code from within Web Dynpro Application
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e9a9d90-0201-0010-478e-991dbea73a30
It explains step by step process
Regards
Ayyapparaj

Similar Messages

  • 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.

  • How to set a Break point in Comp Workbench

    Hello Guys,
    I have a Z** Enhancement set ( t-code: bsp_wd_cmpwb)  and i have a view & a Z**IMPLclass for it.
    I need a way to set a break point in the Z*IMPLclass in t-code: bsp_wd_cmpwb.
    I have my code in this Z* impl class and making some changes for a field. I want to be able to debug this field in this Z**class
    when i launch the Web UI  using CRM_UI.
    Can someone help me on this?
    Thanks
    Ricky

    Hi,
    you should set an External Breakpoint (Ctrlshiftf9 in CRM 7.0) in the point you want to debug in bsp_wd_cmpwb. Then debug opens in the GUI as soon as you reach that breakpoint in the Web UI.
    Regards,
    Laura.

  • What is External Break points?

    Hello,
    What are external Break points...?
    My issue : I need to check a condition in the Source code...
    What do I need to do to get control at that condition directly to check whether the data is passing in those tables or not?
    Any suggestions would be appreciated...
    Regards,
    Krishna Chaitanya

    Hi,
    Breakpoints
    Setting and editing breakpoints, too, in the new Debugger is almost identical to the classic Debugger. However, several breakpoints can be set simultaneously in the new Debugger if you choose the path Breakpoint ® Create Breakpoint. Afterwards, the system displays a window in which the following options are available.
    Here it is obvious that, in contrast to the classic Debugger, all the input fields u2013 with the exception of those in the ABAP command tab u2013 have a search help function (function key F4). For example, under the Method tab you enter a certain class. Then, in the search help, all the methods that belong to this class are proposed.
    There are also certain differences when setting and deleting breakpoints. A double-click within a source code line creates a breakpoint in this line in both Debugger types, provided the cursor was not positioned on an ABAP keyword. A second double-click in the same line deletes this breakpoint in the classic Debugger, while it is only deactivated in the new Debugger.
    Breakpoint Types
    When you set a breakpoint in the Debugger, it is created as a debugger breakpoint by default. A debugger breakpoint is only valid while the Debugger instance, in which it was set, is active. When the Debugger is closed, all debugger breakpoints set in it are deleted.
    If you set a breakpoint in the ABAP Editor, for example, this breakpoint is a session breakpoint. Session breakpoints remain active independently of the existence of a Debugger and are valid for all external sessions of a logon. Within the Debugger, you can convert a debugger breakpoint into a session breakpoint and vice versa.
    If the setting Session Breakpoints Active Immediately is checked (via Utilities ® Settings ® ABAP Editor ® Debugging in the ABAP Editor or Object Navigator), you can set a session breakpoint in an external session of a logon to force a running program into the Debugger that runs in the same logon (for example, in an external session) and will process the point at which the session breakpoint was set.
    User breakpoints (previously known as external breakpoints) are valid for all user logons on the current server of the current system. User breakpoints are specifically required when debugging BSP or Web Dynpro applications. In these cases, you do not log on using the SAP GUI but via a browser, for example. Therefore, any breakpoints must be set before logging on.
    User breakpoints are only valid for a period of 2 hours.
    As of Release 7.00, user breakpoints set for BSP or Web Dynpro applications are also valid for SAP GUI logons.
    Within the Debugger, you can convert debugger or session breakpoints into user breakpoints and vice versa.
    External Debugging
    Use
    You can use debugging in order to carry out detailed troubleshooting. With the debugger, you check a given section of code in the Request Handler or an ABAP function module for errors.
    Basically, there are two different types of debugging:
    ·        With conventional debugging, you can analyze programs that you call up within your own user session on the server, with breakpoints being set at corresponding points in the coding.
    ·        With external debugging, you can analyze programs that are called up by an external user with HTTP. For the purpose of external debugging, special breakpoints (external breakpoints) are set on the target server.
    Two variants are available for conventional debugging: the classical variant and the new (2-processor) variant, which creates a separate session for the debugger. At present, external debugging can only be performed with the classical variant.
    This section deals especially with external debugging, as it is generally makes sense to call up an external user completely (with all sent parameters) in one step when investigating ICF processes.
    Prior to Release 640, the external debugging described below was known as HTTP debugging.
    Prerequisites
    ·        If you use load distribution for your system environment, the server group (logon group) is reduced to one server before debugging commences.
    ·        Ideally, the user who performs the debugging should not be a collective user.
    Activities
    Note that the troubleshooting method described here can affect your system performance. You should therefore only activate it if you really need it. You are advised to monitor the corresponding settings regularly and to deactivate any functions you no longer require.
    In transaction SICF, you can use the external debugger to set external breakpoints and check the debugging of the relevant section of code:
           1.      Select the required service in the service hierarchy.
           2.      Choose Edit ® Debugging ® Activate Debugging.
           3.      Enter the required data (if you have selected the service previously, the system will propose the service path for you). 
    Reward If Helpfull,
    Naresh.

  • How to set a break point !

    How to set a break point in the debugging screen !
    tell me the steps !

    Just Double click on the Left side of the Line where u want to put the breakpoint and Click Save.
    Or
    Place the Cursor on the Line and Click the Breakpoint Icon.
    Or
    Goto Utilities --> Breakpoints --> Set / Delete
    If u r already in the Debugging Mode Dont forget to click save once u set the Break point to get the breakpoint next time when u execute.
    awrd points if useful
    Bhupal

  • How to set line break points in JSF Facelets files on NetBeans?

    I am running debugger on NetBeans. I can set line break points for jsp files but cannot for Facelets files with extension 'xhtml'. Dose anybody know how to set break points for Facelets xhtml files? Or is it possible to set break points for xhtml filles?
    Thank you very much.

    You can't. They aren't executable code, they are templates. The only executable code is the part inside #{}.

  • HI How  to set a Break point In Smart Forms

    Hi Guys,
    i want to set a break-point in main window of the smart form ,before dispalying
    values of the varibles in the main window .
    How to Set a break-point And What are the ways to set a break point.
    Thanks for All.
    From
    Hitu.

    Hi Hitu,
    Generally, Break Points are set for the purpose of debugging in Smartforms.
    For debugging , one of the way is :
    1. Write BREAK POINT in the code window.
    2. Put a break point on the call function in the driver program
    3. Put a break point in the generated Function module.
    Hope this resolves your query.
    <b>Reward all the helpful answers.</b>
    Regards

  • 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

  • External break point in sap r/3 system

    i want to set external debugging to rfc in r/3
    i tried to set it
    its getting set
    but when i call rfc from external system(webdynpro)
    its not gng to that break point i.e its not linking to that break point
    what could be the reason
    and how we can set external breakpoint
    are there any setting we need to do in r/3 so that break points will work
    Regards,
    Vani

    Hi Vani,
    First u have set ur Server to Debug mode...then only u can debug the code...
    1. Select "Server0" from J2EE engine (To get this view navigate thru Window--> Show View --> J2EE Engine)
    2. Make a right click on "Server0" and choose "Enabling Debugging of Process"
    3. Now, Navigate to Run --> Debug --> Select your Project as "Webdynpro Application" and click "new" button
    4. Now give some name and Click BROWSE to select ur project and then click APPLY and DEBUG
    Or
    if u use 2004s, then u can do the settings in Portal itself...which gives u more clear information... follow the link
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0cb32c5-36a7-2910-2c9b-ba4a5bbdbb56">WebDynpro Java Debug Configurator</a>
    Hope it helps...
    Regards / Guru

  • Unable to set a break point in Enhancement part

    Hi,
       Hi,
        I have two servers one is quality and the other is upper lanscape system. I am able to set break point in the enhancement part in Upper landscape system. But in quality system its throwing some error 'The position of the break point cannot be determined'.
    Edited by: Delphi on Feb 23, 2012 8:17 AM

    This may be due to SWITCH POSITION property in Enhancement.
    Go to SE19 -> Edit Implementation -> New BAdI -> Display.
    Go to properties tab of your enhancement and check whether SWITCH POSITION is OFF or not.
    If its OFF, you cannot put breakpoint.
    NOTE: Its state can be changed, but its impact is at Package level
    Please find the detailed link:
    http://help.sap.com/saphelp_nw04s/helpdata/en/af/e8b540afc87c2ae10000000a155106/frameset.htm
    Edited by: Ajoy Chakraborty on Feb 23, 2012 1:15 PM

  • Problem chosing layer break point for multi-movie DL DVD

    HI. If you're authoring a DL DVD containing several short movies which can be selected from a menu in any order, how are you supposed to know which order they're burnt to disc in so as to know where the layer break point needs to be? Is media burnt in the order it's added to the project or what? Does it actually matter about choosing a LBP manually so long as DVDSP provides a choice of automatically determined points?

    You can use VTS view to see the order they are laid out in
    http://dvdstepbystep.com/vts.php
    As to manually selecting a layer break, you can if you want to, especially if you know a section is a fade to black (for instance) where it will be less noticeable.
    Some background -
    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
    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.
    When you do enough DLs, you start getting a sense based on the size of tracks where things should land

  • Problem related to break-point in SAP biller direct

    Hi All,
    I am new to SAP biller direct.We are using ECC 5.0 system as the back end system.We created an implementation for  the BADI 'APAR_EBPP_GET_DATA'.I wanted to debug this BADI.So i set a breakpoint at a particular line.When I opened biller direct web application , no dubugging session opens at any point.Any idea why this is happening.
    <removed_by_moderator>
    Edited by: Julius Bussche on Jun 23, 2008 9:55 PM

    If this is a production system, then debugging might have been disabled; so the backend is saying "no way". Contact your basis folks and ask them.
    Other than that, I am afraid you are not even left with the last resort option of debugging it anymore...
    How about writting really, really good code which does not require debugging?
    Cheers,
    Julius

  • Problem setting project end point (can't access the end point marker)

    I can't seem to set my project end point because the slider control that adjusts the spacing of the measures is obstructing my pointer from being able to click on the end point marker. Any hints as to how I can move the coation of this slider control so that I can access the end point marker with my pointer?

    6ftmama wrote:
    FYI - the end point marker now turns into a bracket when you hover over it.
    THe End-of-Project Marker doesn't change at all. What you see is a change of the Mouse Pointer.
    This is called a "Click Zone" where the Mouse Pointer changes to different shapes when moving over or click on an object or an area in the window.
    Here the Mouse Pointer changes to "Trim Tool" or "Resize Tool".
    Pointer Tool:
    Resize Tool:
    It is the same Tool wne you move the Mouse Pointer of the right edge of a Region to resize its length.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Problems with break point in Dual Layer project

    Hi,
    I'm currently having a problem setting a break point in a Dual Layer DVD project in DVD Studio Pro 4. I have a project that has 5.9 GB of data (5 shows with between 7-8 chapters in each). The problem I'm having is that in the 5th chapter of the 4th show, there is a freeze frame hickup when I burn the disk. I've tried moving around the chapter mark, deleting them and re-adding them, re-exporting the media (it is in MPEG-2) in all combinations of those and am still having the freeze problem at that chapter mark. I've gone back to the original media and there are no problems there.
    What I think the problem is is that the disk is automatically setting the break point for the dual layer disk at that chapter mark. However, when I go into the project and try to set the break point manually from the dropdown, I can't seem to select anything. The default is the begining of the 5th track, and I can only change it to automatic and back again. Anything else I select just goes back to that 5th track, but I still think it's actually doing automatic instead. I'm using a Verbatim DVD+R DL if that helps anything as well.
    To all, do you agree that the problem is most likely due to the break point? And if so, how do I change the break point to the beginning of either the 3rd or 4th of the shows instead of having it seem to be stuck on automatic?
    Thanks in advance,
    Chris

    Alright, to answer my own question. Here's what I think the problem was.
    There are actually two Disk/Volume menus: one in the Disk settings when you're actually working in the project and another when you go to build and format. I kept trying to set the break point in the first one--in the disk settings in the project--and it wouldn't let me because it can only be set when building and formatting.
    It's kind of an annoying settup that there are two identical menus that don't fully communicate with each other, but in the end the solution has been solved.
    Chris

  • Break points set in an included script during debugging sporadically jump to the last line of the included script

    As I stated in the title, I use the ScriptInclude command quite extensively, because we have at our company a policy of maintaining one large-ish (roughly 7k lines) function library which is included by various individual evaluation scripts. Debugging this with break points is often the only (useful) way to see into the state of the script, so I depend on them.
    My problem is that often when I debug a script calling the function library, setting a break point in that library and running into it during debug mode will not transport the cursor to the location of the current break point, but instead to the very end of the included script. I have noticed this with a separate pair of scripts, as well, which includes a similar size script to call functions from (roughly 2k lines).
    Now I wonder if this has to do with the size of the scripts included, or if it is dependent on something else. It seems to not be affected by restarting DIAdem, and sometimes it works as intended, but I have not been able to reliably replicate indivdual occurrences one way or the other.
    Has anyone else had this problem happen to them?
    Leo Zschokke
    Test Engineer C-EPS
    ThyssenKrupp Presta AG

    Leo
    I also use scriptincludes extensively, Most of mine are in the range of 500 to 2000 lines.  Usually I organize them in logical code topics,  I like to use them to hold one class most of the time.  When I debug these I can set a breakpoint, and it will stop at that location.
    I also use custom log class as well, I find this quite helpful, in the applications that are unattended.
    The only thing I can think of to try is to separate the 7k file into 2 2k line files and then script include them separately.
    Paul
    ps. I sometimes need to have intellisense work from a file that was scriptincluded, this requires copying the file into the end of the main script.  (you most likely already know this   )
    One other note, Are you talking about debuging code in a SUD, that is whole different problem to deal with.

Maybe you are looking for

  • Newbie Layout Help Needed

    I am normally an After Effects and Premiere Pro user but have been forced to volunteer for help on a Dreamweaver project.  The site is built on the template: HTML, 1 column fixed, centered, header and footer.  I want to be able to insert a photo the

  • What is the best way to create a diagram or space layout?

    I need to create a layout of an area for an upcoming event.  What is the best way to do that?

  • Configure security with principals.xml

    Hello! I'm trying to configure security in Oracle IAS 9.0.4. I have two applications into an OC4J instance. I've configured an admin user with RMI connection permission in the intance's principals.xml file. I've configured another admin user with RMI

  • Gallery Album 808 Missing

    Hi, I'm little frustrated with the Gallery of the 808 Pureview: I don't understand why the Gallery Album option is missing!!! With such a phone it's easy to take hundred and hundred of pics, but how to browse them without sorting them by: - Album - D

  • Opening zipped & exe files

    How do I open downloaded files that are zipped or in .exe format? When I click on them, nothing happens.