Difference between method,event handler,supply function.

hi,
i wants to know what is the difference between
method.
event handler.
supply funciton.
Regards:
Pankaj Aggarwal

Hi Pankaj,
These are few lines from the F1 help documentation given,
Web Dynpro: Method Type :The type of a method defines whether you have an event handler, a supply
                                            function, or a (normal) method.
  Event Handler : Handlers of an event, a controller, an action, or an inbound plug of a view.
   Method : Modularization unit within a view or a controller.Methods of a view can only be called locally
                   within this view.Methods of a controller (component or custom controller) can also be called from
                   a view or another controller, provided the controller is entered as controller used .
   Supply Function : Method for filling a context node.
For more information refer to the Thomas post
Regards,
Sravanthi

Similar Messages

  • What is difference between BP monitor and supplier monitor?

    hi friends
    what is difference between BP monitor and Supplier Monitor
    what is tcode for BPmonitor
    Regards
    Vinny

    Hi Vinny,
    Please refer to the following links. These seems useful:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f051efda-bc58-2910-3785-e60d1f798c96
    The specified item was not found.
    New Business Process Monitoring functionalities in SAP Solution Manager – ALE / IDoc Monitoring
    Regards,
    Saumya

  • Difference between wait event and timed event

    Hi,
    Anyone has idea that what is the difference between wait events and timed events in Statspack report. I couldn't find it over google.
    Thanks.

    It's 10.2.0.1 on Linux
    (Couldn't do a query, because Linux is inside VM Ware. And it is not being accessed from Base windows machine.)
    Top 5 Timed Events                                                    Avg %Total
    ~~~~~~~~~~~~~~~~~~ wait Call
    Event Waits Time (s) (ms) Time
    db file scattered read 9,750,617 34,611 4 44.7
    CPU time 14,248 18.4
    read by other session 1,532,282 8,984 6 11.6
    db file sequential read 4,514,494 5,588 1 7.2
    latch: cache buffers lru chain 277,245 4,823 17 6.2
    Wait Events  DB/Inst: ABCD/ABCD  Snaps: 1-2
    -> s - second, cs - centisecond, ms - millisecond, us - microsecond
    -> %Timeouts: value of 0 indicates value was < .5%. Value of null is truly 0
    -> Only events with Total Wait Time (s) >= .001 are shown
    -> ordered by Total Wait Time desc, Waits desc (idle events last)
    Avg
    %Time Total Wait wait Waits
    Event Waits -outs Time (s) (ms) /txn
    db file scattered read 9,750,617 0 34,611 4 24.2
    read by other session 1,532,282 0 8,984 6 3.8
    db file sequential read 4,514,494 0 5,588 1 11.2
    latch: cache buffers lru chain 277,245 0 4,823 17 0.7
    latch free 121,466 0 3,291 27 0.3
    ----------------------------------------------------------------------------------------------------

  • Difference between Business Events  and Complex Event Processing

    Dear All,
    Can anyone let me know the difference between
    Business Event -> http://docs.oracle.com/cd/E21764_01/integration.1111/e10224/obe_intro.htm#CHDIBHBE
    and
    Complex Event Processing->http://docs.oracle.com/cd/E21764_01/doc.1111/e14476/overview.htm#g1024628
    Are these 2 same?
    Thanks

    Hi.
    Complex Event Processing Server(CEP) is an entire Product.
    Business Event/Event Delivery Network is just a Messaging/Event component part of the SOA Infrastructure.
    So, if u r interested on event correlation from different sources, high performance on analyzing those events + operations among the data generated on those events, CEP is ur option.
    Hope this helps

  • What is the difference between Open-Script and Oracle functional testing

    Hi All,
    Please help me in spotting out the difference between the Openscript and Oracle Functional Testing for Web Application.
    Does Oracle Functional Testing for Web Application have any special features when compared with Open-Script.
    Please help me out.
    Thanks in Advance,
    Nishanth Soundararajan.

    Nishanth
    OFT is the old version of OpenScript, which will no longer be part of ATS as per the next major realize 9.20.
    I would recommend to to spend any time looking at it.
    Regards
    Alex

  • Difference between busniess Event and object event

    Hi All,
    Can anyone explain to me what the difference between business event and object event in Beehive?
    thanks

    Business events are events that are exposed for integration with policies, audit, workflows, user notifications etc.
    Object events are an internal-to-beehive system service that are consumed within Beehive Services and are not exposed for application or user consumption.
    Richard

  • Difference between soa Error handling framework 10g & 11g

    Hi,
    Is there any document available which shows the difference between soa Error handling framework 10g & 11g
    Thanks..

    Hi,
    Please find the documentation links here..
    http://wiki.oracle.com/page/Application+Integration+Architecture
    Foundation Pack Product Documentation - Metalink Note 824495.1
    You can refer to the developer guide "E14750-01.pdf" and Chapter 13 for error handling related information.
    Regards,
    Narayana

  • Difference between BAPI and remote enabled function module

    Hi!
    what is the difference between remote enabled function module and
    BAPI.
    How do we use remote enabled function module .
    thanks
    Amit

    Please search the forum before asking basic questions.

  • Difference between wait events 'buffer busy waits' & 'latch: CBC'

    Hi ,
    Can some one explain me the Difference Between 'Buffer Busy Waits' and 'Latch: Cache Buffers Chains"? What was explained in metalink note Doc ID: 833303.1
    , is incomprehensible to me.
    Looking for easy and better explanation.
    Thanks
    Naveen

    Naveen Sangam wrote:
    Can some one explain me the Difference Between 'Buffer Busy Waits' and 'Latch: Cache Buffers Chains"? What was explained in metalink note Doc ID: 833303.1
    , is incomprehensible to me.
    That note is awful and should be witdrawn - amongst other things it makes it sound as if there is only one reason for buffer busy waits. There is an option to comment on such notes - I suggest you use it.
    Going back a little further from Aman's description - and ignoring some of the internal details:
    The buffer cache is split into a large number of small groups of buffered blocks; these groups are usually called "hash buckets" or "hash chains". If you need to find a block and it is buffered, Oracle can do some hashing arithmetic to work out which chain the block will be in.
    The chains are protected by latches (typically a single latch protects 64 - 128 chains). You cannot examine a chain unless you are able to get the latch that protects it. So the commonest action you go through to view or modify a buffered block is:
    <ul>
    work out which chain
    get the latch for the chain xxx
    search along the chain to see if the block is in memory
    attach a "pin" to the buffered block block if you find it (to make sure it can't be kicked out of memory)
    release the latch
    do what you want to do with the buffered block ***
    get the latch for the chain xxx
    remove the pin from the buffered block
    release the latch
    </ul>
    The two points marked xxx are where you might end up sleeping in a wait for the "cache buffers chains latch". If too many people try to get the latch at the same time some of them will eventually fail and go to sleep for a short period.
    The point marked *** is where you get the buffer busy wait. When you attach the pin to the buffered block it's possible that what you want to do to the bllock is incompatible with what other people are already doing - so you have to attach your pin to the "waiters" list (the people currently using the block will have their pins attached to the "users" list". Eventually your wait will time out, or the users will get out of the way and you can move your pin to the users list and do whatever it was you wanted to do.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    To post code, statspack/AWR report, execution plans or trace files, start and end the section with the tag {noformat}{noformat} (lowercase, curly brackets, no spaces) so that the text appears in fixed format.
    "Science is more than a body of knowledge; it is a way of thinking"
    Carl Sagan                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Why is there a 2 hour difference between calendar event times after syncing? i.e., Dental appointment set at 9am on iphone but shows as 7am in icloud on pc after syncing.

    I noticed that when I enter a time for an event on my calendar on my iphone then sync it to icloud the event is show but the time for the event shows a 2 hour difference. Example: Dental appointment set for 9:00 am on my iphone but after sync to icloud on my PC, it shows the time to 7:00 am on my PC calendar. Why is this?

    To diesel vdub
    I found where to check icloud settings. Changed setting from Pacific to Central. That solved the problem.Thank you so much.

  • Difference between iCal events & iPhone calendar after syncing

    Events created on iMac iCal with a complex repeat (i.e every 2nd Tuesday of month) change their 'repeat' pattern on my sync'd iPhone calendar.
    On the iMac calendar it continues to be correct but on my iPhone it now defaults to iPhone calendar's standard 'every month' repeat.
    Why the difference??

    I have this question too

  • What's the difference between splitting events and creating an event?

    With photos selected in an event, "splitting" the event and "creating a new event" appear to do the same thing. Is there any difference? In either case, a new event is created with the selected photos taken out of the original event.
    doug

    Doug:
    Auto split will split up the event into events based on the date requirement that's been set for events, i.e. 1 day per ever, 1 week ,etc. It's automatic. Whereas creating a new event you determine which photos go into that event.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • What is the difference between methods of deleting data from cube

    Hi,
    Is there any differences, pros and cons for deleting data from cube by:
    1) deleting the specific request loaded into the cube
    2) using selective deletion with specific characteristic values
    Assumption for the above is both the options will delete the same data set.
    Thanks and regards.

    Hi BW Beginner,
    Yes, of course, there are differences.
    Selective Deletion:
    PROS: You can use to delete data that satisfies a certain criteria (e.g. some characteristic values).
    CONS: I think this locks the whole cube during deletion
    Deletion by request id:
    PROS: You can easily delete all data that belongs to a certain request id (i.e. you can easily delete a bad load).
    CONS: If you have already compressed the cube, you can not use deletion by request id to delete a certain request.
    Hope this helps.

  • Difference between drag events in Flex vs. Air?

    I have a Canvas with a dragEnter and a dragDrop event.
    On top of the canvas I have 2 buttons.
    button1 initiates a doDrag event.
    button2 also has a dragEnter and a dragDrop event, but also a dragExit event.
    Both the canvas' and the button2's dragEnter event, allow the drop.
    When I run this application in Flex and start dragging button1, I can see the canvas' dragEnter event dispatch.
    When I continue dragging on to button2, I can see button2's dragEnter event dispatch.
    When I continue dragging outside the boundaries of button2, back on to the canvas, I can see button2's dragExit event dispatched as well as the canvas' dragEnter event again.
    When I do this in AIR, everything works the same for one thing: when I drag button1 off button2, back on to the canvas, button2's dragExit event is dispatched but not the canvas' dragEnter event.
    I use exactly the same code.
    Anybody an idea?

    flash events package contains interaction events like mou
    se events and events related to the application
    where as mx events have the events related to components.

  • Whats the difference between extending the xls mapper functions and xpath

    What is the whole deal about extending the xlst mapper functions or the xpath functions?
    any insight about the diferences would be greatly appreciated. I mena shouldnt the functions for xlst be the sames that are available for xpath?
    regards,
    gabs

    Unfortunately, XPath and XSL are two different standards, and the implementation of functions at the Java level uses a different interface. So a custom XPath function is not automatically reusable in XSL and vice versa.
    The core java code might be the same, but you need to code different "wrappers" for XPath and XSL.
    Marc

Maybe you are looking for

  • ITunes wont open (Windows Error 998)

    iTunes was working fine and then it wouldnt open up and it would say "iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows Error 998)" I would reinstall it but i don't want to erase all the music off library. Anyone know how

  • Where to upload xml files?

    In the installation doc. I found: "Login as a user with administrative privileges and upload the following xml files from $IFS_HOME/samplecode/oracle/ifs/examples/jspapps/insurance/xml directory, in the order given a) CreateDirectoryObjects.xml b)Ins

  • Iphoto 6.0.4 - missing book themes

    I hope someone can help me with this one. Yesterday I upgraded to 10.4.7 from 10.3.? - I have never had any problem with iphoto until now. I can start a new book and choose a theme - BUT thre themes come up blank. crayon, baby girl and baby boy. I am

  • Copy files

    Hi, Is there any method in Java to copy / move files from one location to another ? I do not want to do it by invoking System.Runtime....... i.e programmatically through the command line. Please let me know if you have any idea as to how to do it. Th

  • BadPaddingException: Given final block not properly padded

    Hi, Can someone please tell me what's going on?? When I call c.doFinal(byte[]) and the length of my byte array is 512, I get a BadPaddingException. However, when I make the same call and my byte array's length is 504, everything is fine. Both are mul