Wat is the use of writting

"break-point" at the start of the program.

Hi,
A breakpoint is the signal, which is specified in the program, tells the system to stop the program execution and to start the debugger
Static are set up with the BREAKPOINT keyword inside the program, which you can directly display with the ABAP/4 source code editor.  To set the breakpoint in the program enters the keyboard BREAKPOINT.
The ABAP/4 debugger is the development workbench tool, which allows you to stop a program during its execution when a particular condition is met.  When the program is stopped, you can use the debugger to display the contents of the table and variable being used by the program.  It allows you to execute the program step by step, reviewing exactly the real flow of the program execution.
Regards,
Sruthi

Similar Messages

  • Wat is the use of occurs

    hi all
    wat is the use of occurs while declaring internal table.
    thankn in advance

    Hi
    The OCCURs Clause is used for declaring the SIZE of the Internal Table..
    For EG:
    Data: begin of itab occurs 0, means this will create an internal table with 8KB of memory.
    But if you are specifrying
    data:begin of itab occurs 10, this will create an internal table with 10 rows(according to the structure of the internal table)...
    Reward All Helpfull Answers........

  • Wat is the use of sid in extended star schema rather than linking masterdat

    hi bw gurus,
    wat is the use of sid in extended star schema rather than linking masterdata with dimention tables?
    thanx in advace,
    i will assign points,
    srinivas

    hi,
        the sid are used instead of the data in order to avoid the redunduncy of data.
    and reduce the datastorage size.
    the data will be present in the sid table and the data is linked used the corerponding sid in the dimension.
    regards

  • Wat is the use of casting in field symbols

    wat is the use of casting in field symbols?

    When you assign a data object to a field symbol, you can cast to any data type. This means that any area of memory can be viewed as having assumed a given type. You can then address parts of fields symbolically without having to use offset/length addressing.
    A cast is performed using the CASTINGaddition of the ASSIGN statement. The CASTINGaddition allows you to assign a data object to a field symbol where the type of the data object is incompatible with that of the field symbol. There are two types of casting: casting with an implicit type declaration and casting with an explicit type declaration.
    For details please have a look at below link:
    [Casting|http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3930358411d1829f0000e829fbfe/frameset.htm]
    I hope it helps.
    Thanks,
    Vibha
    Please mark all the useful answers

  • Wat is the use of ports those are used for EMconsole

    hi all;,
    Could anyone please tell me
    1. the use of the agent,rmi and jms ports used for the dbconsole?
    2. if i block those ports can i use dbconsole?
    3. what are all the ports used for the database like listener, dbconsole http, dbconsole agent etc. and use of those.
    Thanks & Regards,
    Sagar Maram

    What is the use of the rmi and jms ports i mean how those are getting used internally. if block those ports with firewal then wat happend to dbconsole.?They are more appserver related components and to be clear..if the apps and DB are in the same server...then if you block these ports your DBConsole/Appconsole continues to work as long you have not blocked http DBconsole/Appconsole ports...
    But if you apps and DB are across network with a firewall between them then there is a possibility some of the functionality might not work but http console should work as long as http console port is opened in the firewall.....

  • Wat is the use of Advance tab in obiee

    hi all ,
    What is the use of advance tab , and that xml thing ..
    can any one tel me about it
    Thanks

    791907 wrote:
    hi all ,
    What is the use of advance tab , and that xml thing ..
    can any one tel me about it
    ThanksIf you actually go into the Advanced tab you will find some meaningful descriptions against everything on it.
    'That XML Thing' , its the definition of your report, criteria panel, views on the results tab.

  • Wat is the use of "DATA var-name LIKE SY-INDEX" statement

    Hi to all,
           is there any use of "DATA <var-name> LIKE SY-INDEX"  statement in ABAP, do the variable <var-name> be changed with that of SY-INDEX when we declare like this.
             Could u give me a fast response,
                                            Thank you,
                                                 Srinivasa Rao k.

    hi check this example..
    data: v_index type sy-index value 10 .
    do 15 times .
    if sy-index = v_index .
    write:/ 'the system index is 10 '.
    exit.
    endif.
    enddo.
    the main use of the index is used in the hr programs..
    the user wants the emp salary and previous months   salary then you need to use the index .
    if the table had 10 records .then you need to catch the record of  index1(current) and index 2(for previous month)..
    select pernr ansal  from pa0008 into table it_pa0008 where pernr in s_pernr and begda in s_begda .
    loop at it_pa0008.
    case sytabix.
    when 1 .
    it_final-cursal =  it_pa0008-ansal.
    when 2 .
    it_final-prevsal =  it_pa0008-ansal.
    endcase .
    endloop.
    regards,
    venkat.

  • Wat is the use of having a synchronized block

    instead of a synchronized????....Can anyone explain??...Is it because we can do the synchronization altogether for all the functions?//
    is this the only use of it??
    pls explain........

    You synchronize on an object, not a set of methods. If you write:
    public synchronized void f() {
    // code here
    }Then that's shorthand for:
    public void f() {
       synchronized(this) {
         // code here
    }But you don't always want to synchronize for the whole of a method, and you don't always want to synchronize on this.
    The Object you synchronize on is called a monitor, and it's that object that can't simultaneously be synchronized on by more than one threads.

  • Wat is the use of sy-cucol and how to use tel me the syntax

    pls let me know

    Hi,
    SY-CUCOL: Position of the column in the window from which the event was triggered (counting starts with 2) i.e Horizontal cursor position.
    Ex.
    REPORT demo_list_system_fields NO STANDARD PAGE HEADING
    LINE-COUNT 12 LINE-SIZE 40.
    DATA: l TYPE i, t(1) TYPE c.
    DO 100 TIMES.
    WRITE: / 'Loop Pass:', sy-index.
    ENDDO.
    TOP-OF-PAGE.
    WRITE: 'Basic List, Page', sy-pagno.
    ULINE.
    TOP-OF-PAGE DURING LINE-SELECTION.
    WRITE 'Secondary List'.
    ULINE.
    AT LINE-SELECTION.
    DESCRIBE FIELD sy-lisel LENGTH l TYPE t.
    WRITE: 'SY-LSIND:', sy-lsind,
    / 'SY-LISTI:', sy-listi,
    / 'SY-LILLI:', sy-lilli,
    / 'SY-CUROW:', sy-curow,
    / 'SY-CUCOL:', sy-cucol,
    / 'SY-CPAGE:', sy-cpage,
    / 'SY-STARO:', sy-staro,
    / 'SY-LISEL:', 'Length =', l, 'Type =', t,
    / sy-lisel.
    This program creates a list of ten pages. When you run the program, you can place the cursor within the basic list and create a detail list by choosing Choose. This displays the contents of the system fields.
    SY-LSIND is the index of the current list, SY-LISTI is the index of the previous list.
    SY-LILLI is the number of the selected line in the list, SY-CUROW contains the line number of the selected line on the current screen. SY-CUCOL is the position of the cursor in the window. This position exceeds the corresponding unscrolled list column by one. SY-CPAGE is the currently displayed page of the list. SY-STARO is the number of the topmost actual list line displayed on the current page. This does not include the page header. SY-CPAGE and SY-STARO do not depend on the cursor position. For SY-LISEL, the program displays length, data type, and contents. The length of SY-LISEL is always 255, independent of the list's width.
    Regards,
    Bhaskar

  • What is the use of updating the phone software???

    hi friends ,
    i jus want to know wat is the use of updating phone software

    99% of the time to fix software bugs people have found and reported back to nokia, in other cases speed improvement, memory improvement, and overall fixes to problems that occur on your phone...
    However, sometimes updates can give you problems you never had before

  • Wats the use of Listener file in oracle

    wats the use of Listener file in oracle.

    Hi Rajesh !
    The listener.ora file describes the environment within which requests for remote connections are serviced. When the listener process is running on a machine, connection requects are intercepted on the specified ports and passed to the database.
    The listener trained to listen on a certain port , passess connections thru' to ORACLE 9i server when they contain proper authentication details.
    listener.ora file consists of the following elements:
    + Listener's name
    + Protocol addresses that it is accepting connection requests on
    + Services it is listening for
    + Control parameters
    By default, the listener.ora file is located in the $ORACLE_HOME/network/admin directory on UNIX operating systems and the ORACLE_HOME\network\admin directory on Windows NT.
    It is possible to configure multiple listeners, each with unique name, in one listener.ora file FYI !!
    ~ Chinmay
    ~ Happy Working !!

  • [svn:osmf:] 13113: Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.

    Revision: 13113
    Revision: 13113
    Author:   [email protected]
    Date:     2009-12-21 01:08:10 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/.flexLibProperties
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/ScrubBar.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/URLInput.as
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/Fonts.as
    Removed Paths:
        osmf/trunk/libs/ChromeLibrary/assets/images/stop_up.png_1

    Your site was built using tables, whose sizes are defined in your site.
    If we look at your first table definition, we can see:
    <table width="861" height="1449" border="3" cellpadding="0" cellspacing="0" bordercolor="#868787">
    Your table has a width of 861 pixels and an overall height of 1449 pixels. Anything you put into that overall box must fit those dimensions, else
    it won't be visible. Anything you add above it will push everything down. You can redefine your sizing to let you edit more inside of the table elements.
    This is why, when you type in more text, things act weird. If you are in Dreamweaver, you must find the right cell to put your text into and then enter
    text there. Unfortunately, this is going to push things around, which were all lined up using tables. And this gets everything offset with respect to
    everything else in your website.
    And that is why everyone is saying, "Start Over!"
    I just inherited a website that has been put together using tables. I'm going to have to expend considerable effort in rewriting the entire design of the
    website because of that. because everything I intend to add to the pages on the site is going to need to be deconstructed in order to get it to work
    properly if I'm adding text and pictures that need to line up with each other.
    You need something done quick and dirty and the only way I can recommend you do that is to use Dreamweaver to show you the tables you have
    and put what you need in a new table that is defined above or below the tables you all ready have defined. Do that and then get back to someone here
    who knows how to make a website correctly to clean up your entire website and make it editable -- which will cost you some money, but it will be
    money well-spent.
    I like to quote this maxim: Good, Fast, Cheap. Pick any two. This works for website design. You can get it fast and cheap, but it won't be good. I
    think you may have chosen that route.

  • I want to put Acrobat in full screen mode, and use the pencil to write simultaneously.

    I want to put Acrobat in full screen mode for a presentation, and use the pencil to write on the page at the same time. Is there any way both can be used simultaneously?

    George is on the money - you'll not be able to use the pencil tool while in full screen.
    Something to try:
    Use F8 and F9 to hide what is at the top of Acrobat's window.
    Have the Pencil tool selected for use first.
    You'll be able to use the Pencil tool.
    The PDF, with Acrobat's window maximized, will give the appearance of "full screen".
    Be well...

  • Is it right to use the "sound file write simple.vi"?

    I had a problem to use the Sound File Write Simple.vi  that is it can not save the data.
    The links are shown in the following picture.
    I wonder is it right for me to use that vi like that shown in the picture?
    And why I can not save file as *.wav while I can save it as a *.txt?
    Thank you!
    Attachments:
    Image00003.jpg ‏77 KB

    No command lines do not work inside stored procedures.
    Firstly, remember that the stored procedure is running on the database server so any files it can access have to be on the server itself.
    ZIP is an operating system command, so you would have to have some java code or some other means of shelling out to the operating system to execute it, an area which I'm not to familiar with doing myself as I've never found a need to.
    Have you looked at Oracles own UTL_COMPRESS package?

  • Wats the use of reward points in this site

    <i>wats the use of reward points in this site
    Senthil</i>

    From whose point of view?
    <u>From the point of view of the originator of the post</u>
    --> people will be encouraged to answer your questions because you told them how valuable their answers were.
    <u>From the point of view of the people who answer</u>
    --> It will tell them if they are on the right track or not in understanding and providing the answer for your question
    --> It will give them a sense of satisfaction that they were able to help someone
    --> It works as an indirect measure for their knowledge
    <u>From the point of view of others searching the forum</u>
    --> It will tell them that someone else had the same or similar issue and they got n number of answers and the points will tell how close each one of them are to the ultimate resolution
    <u>From the point of view of SAP</u>
    --> It attracts people to the forum, which generates more visbility for their products.
    --> They can find patterns and may be breakthrough thinking presented in the forums that they may use in their product development
    --> If more and more people share their knowledge and help each other in resolving their issues, then the cost of ownership of their products will be lower for the customers and so they will stay with SAP products.
    --> and many more
    <b>Above all</b>, your points will allow me to gain one more T-shirt or Ipod or some of the cool things that SAP is giving top contributors.... so why not!!!..} Right? Wrong, it is the recognition and acceptance that you gain from others that inspires you to learn more and contribute more...
    Happy SDNing..)
    Srinivas

Maybe you are looking for

  • ALV Page Break when Catagory Changes (ie SO # change)

    I will have an ALV report with a Sale Order # on a header section and line items associated for the header SO#, and when a different SO# occurs it will go to next page and display the next SO# on header section and the item info on the main body.  Is

  • How to create and implement a new work schedule rule successfully?

    Dear Community, How to create and implement a new work schedule rule successfully? In other words, what are all the basic steps to create and implement a new work schedule rule successfully? Thanks in advance.

  • Cover Flow Disappearing Act

    I am using iTunes 10 for OSX 10.6.4. I have experiencing this since using some version of iTunes 9, I can't remember when it started. Cover Flow does not show up when I am in the main window of iTunes and viewing all music. If I switch to cover flow

  • Can't un-mute tracks

    I'm using Logic together with an MC-808. Every so often tracks become muted and I can't un-mute them. Has anybody else had this problem with external instruments?

  • Alignment in rectangle

    Hi apoligies if this is a repeat, seem to be having serious issues with my PC If I in cs4 I draw a box using the rectangle tool and the  using the text box I add a number approx in the centre to create a "numbered button "  everything looks ok but I