HOW TO TRACE THE PLSQL API BEING CALLED WHEN WE USE FORM

Dear ALL,
How I can track the PLSQL API name when we press any button in form.
For example when I click on Bill By Requirement button on EAM Work Order Billing FORM , how will I know which PLSQL API is being called.
Please give me an idea about how to identify the PLSQL API being called.
Thanks and Regards,
Lavan

Please refer to (FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12 [ID 296559.1]).
Thanks,
Hussein

Similar Messages

  • How to trace the message in which line of program used?

    Dear fellows,
           Many times when we run a t-code (especially standard t-code), it will return many message log. but when we debug the t-code to trace the error message, it is difficult to find why raise this error message. Even we can not find in which line of program. We can not use the where-to-used list in SE91 to trace, because it is not written like this:       message 033(FD) TYPE E.
           For example in validation(GGB0)  we use some message, but when this message come out, we didn't know this message in which program raise.  And it also can not be traced using message at in debug mode.
           In many case, the way of using message is not easy to be trace , but if we can find which line of program to raise this message, would help a lot for finding the cause problem.
           Is there any tool for us to trace message ?
           Thanks for your sincerely answer!

    Hello All,
    If the message log is filled like this
      L_S_MSG-MSGTY     = 'E'.
      L_S_MSG-MSGID     = 'BL'.
      L_S_MSG-MSGNO     = '303'.
      L_S_MSG-MSGV1     = '007'.
    Can you trace this message by putting a watch-point/break point? I guess no! If some has YES as answer, please feel free to correct me.
    That is why whenever filling a message log/return table it is important that we ensure that the message can be traced back using "where-used". Hence the usage of MESSAGE...INTO (or the pre-historic, IF 1 = 2 ... MESSAGE ... ENDIF) construct.
    BR,
    Suhas

  • Can Siri enable the speaker on phone calls when I use the "hey  Siri" feature when the phone is plugged in

    TTrying to get Siri to put phone on speaker so I can talk without touching the phone Using the hey Siri feature

    When you say "shift to speaker mode" are tapping on "speaker" icon thta appears on the screen when you take the phone away from your ear? IF so go to settings/general/accessibility/incoming calls and check "default"

  • How to view the pdf files stored in client side using  forms 10g

    Hi All,
    I am using webutil to upload and download the blobs from database. I susccessfully uploaded/downloaded the blobs from database to client(d:\temp.one.pdf)
    Now I want to view the download pdf through form.
    Can anyone help me regarding this?

    I have tested the sql and found that there are no records in the table in which iam uploading the file
    In the form, I am joing tow tables mapping with rpt_num
    Even after adding information for the image table like image_no,image_name and
    when i click on upload to db icon. it gives me the same error WUT-113
    I think I need to save this basic information first and then upload the file
    can you please advise where can i add this code to save the data first
    below is the code iam using to upload the file from database
    PROCEDURE UPLOAD_DB IS
    l_success boolean;
    BEGIN
    l_success := webutil_file_transfer.Client_To_DB_with_progress
    (clientFile => :images.file_name
    ,tableName => images'
    ,columnName => 'RPT_IMAGE'
    ,whereClause => 'RPT_NUM = ''' || :PVT.PVT_SA_RPT_NUM || ''''
    ,progressTitle => 'Upload to Database in progress'
    ,progressSubTitle=> 'Please wait'
    ,asynchronous => false
    ,callbackTrigger => null
    if l_success
    then
    message('File uploaded successfully into the Database');
    else
    message('File upload to Database failed');
    end if;
    exception
         when others
         then
         message('File upload failed: '||sqlerrm);
    END;

  • How to keep the column with FIXED? When I use pivot refreshes in Excel 2007, it keep changes

    I use MS Excel 2007.
    I want to keep the column fixed whenever I refresh data in pivot tables.
    I tried even coding it with a macro:
        Columns("B:F").Select
        Columns("B:F").EntireColumn.AutoFit
        And, in another time I tried columnwidth value to a fixed number; both doesnt work.  
    Please suggest a solution
    Thanks in advance
    Rafeek KBM

    Hi Rafeek,
    One solution is to set the column width after manually or programmatically refresh the PivotTable, for example:
    Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Columns("A").ColumnWidth = 10
    End Sub
    Another option is to set the column width, then protect the columns from been updated by the user, before refreshing the PivotTable, unprotect the worksheet. For example:
    Public Sub LockColumnA()
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Columns("A").ColumnWidth = 10
    ws.Columns("A").Locked = True
    ws.Protect "123"
    End Sub
    Public Sub UnprotectWorksheet()
    Dim ws As Worksheet
    Set ws = Application.ActiveWorkbook.ActiveSheet
    ws.Unprotect ("123")
    End Sub
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to trace the flow of plsql procedures/functions in oracle 10g

    Hi All,
    Recently I came to know that there is dbms_hprof PL/SQL built-in package in Oracle 11g which can be used to trace PL/SQL calls in a Hierarchical way. (acts as a PL/SQL Hierarchical Profiler).
    Steps are given in -
    http://www.oracle-base.com/articles/11g/PlsqlHierarchicalProfiler_11gR1.php
    I would like to know whether there is a similar package in Oracle 10g because I want to trace the flow of plsql procedure and function calls in order to generate an output in a hierarchical way (for debug purposes).
    The following example shows the flow of procedure calls when I execute PACKAGE_A.Proceudure_A. I want to generate that kind of an output.
    Ex -
    PACKAGE_A.Proceudure_A
    ----|_PACKAGE_A.Proceudure_B
    ----|------|_PACKAGE_B.Proceudure_C
    ----|_PACKAGE_B.Proceudure_M
    ----|------|_PACKAGE_A.Proceudure_B
    ----|-------------|_PACKAGE_C.Proceudure_C
    ----|_PACKAGE_Z.Proceudure_Z
    If there is no similar package in *10g* I would really appreciate if someone can provide me directions to get the job done using the exsting packages and tables in Oracle 10g. Thanks in advance.
    Edited by: user8326781 on Nov 28, 2008 8:57 PM
    Edited by: user8326781 on Nov 28, 2008 8:58 PM
    Edited by: user8326781 on Nov 29, 2008 12:19 AM

    I am not sure that this would serve the purpose or not but still, I guess its worth to atleast be mentioned,
    http://www.oracle-base.com/articles/9i/DBMS_TRACE.php
    HTH
    Aman....

  • How can i debug a rfc being called from sap

    hello Gurus,
    We made a RFC call from SAP r3 to sap grc nfe......we did not receive any data in sap grc .......we go to SM58 and there it gives
    the message "Name or password is incorrect (repeat logon)u201D.
    How can i find out where the data has stuck.
    Please help.
    BR
    Honey

    HI,
    please have a look at the link below..
    this may help u !!!
    [Re: how can i debug a rfc being called from .net connector (NCO) v2.0?;
    Best of Luck !!1
    Regards
    Ravi

  • How to stop the Dialog from being dragged

    I was hoping that someone could tell me when calling a Dialog from Jframe, a how to stop the Dialog from being dragged
    while a dialog is showing.
    When it is visible I can still click and drag the Dialog
    I want to set it so you can not drag it until the dialog has be closed.

    If you don't have access to the parent frame, a "hack" that usually works:
    Frame frame = Frame.getFrames()[0];
    if (null != frame && frame instanceof JFrame){
    JFrame jf = (JFrame)frame;
    JDialog jd = new JDialog(jf, "title");
    ... code here ...
    As each JFrame (or Frame) is opened, its stored in the array of Frames that you can get. Same thing with Dialog.getDialogs(). Almost always, at least so far for me I've never had this problem, the [0] index is the main window opened, or the parent/top frame. I'd put the check in there to be safe and make sure its a JFrame and usually you'll only have the one JFrame.

  • Want to know how to debug the Business Object Method called from CRM

    Hi all,
    I have to debug a Method of a custom Business Object. This is being called when a certain action is performed
    on the CRM  ( CIC0 screen). I can not see an option to set an external break point in the Program of the Business Object
    Method.
    This Business Object calls a standard SAP FM. I tried setting an external break point in that FM and tried executing that.
    But it  is not stopping there.
    Can any one please let me know how I can debug this when triggered from CRM?
    Thanks  in advance.
    Thanks & regards,
    Y Gautham

    Hi,
    I have tried checking the option 'IP MATCHING' option. I have given my user id and also the 'WEBUSER' as well.
    But still I am unable to debug the application.
    Can you please let me know if I am missing anything further.
    Thanks & regards,
    Y Gautham

  • How to trace the wdy application from Portal link?

    Hi
    I have a  req to work with a application,which show the salary slip,through ESS portal,but I am not able to trace out the webdynpro application,is is running behing this?
    can any oe pls tell how to trace out the application,if worked any time.
    secondly req is to insert the logo in the salary slip,when we clk in the SALARY button,its display the slip as PDF,please tell how this PDF is attached inside the application,as if its a Z smart form,than i can insert the logo in it & can reinsert in the webdynpor application,as I think its a case of z smrtform which is called or linked on webdynpro.
    pls tell how to trace the standard application or the smart form.
    regds

    Hi Vipin,
    You can get the webdynpro application name from the portal link or you can ask portal team to get you the webdynpro
    application name from the portal iView of salary slip application.
    After that go to SICF tcode.
    Search for the application name by entering the application name against the field SERVICE NAME and press F8 (execute).
    The system will find you the SICF service for that webdynpro application. Select that service from the list.
    Now click on menu GOTO->OBJECT DIRECTORY ENTRY and get the package name from the popup window.
    Go to tcode SE80 and open that package.
    Expand node Web dynpro->Web Dynpro Applicat.  and find the application there.
    Double click on the application.
    Get the web dynpro component from the application parameter.
    Open the Web Dynpro component in se80 and do the changes as required.
    Regards,
    Vikrant

  • How to delete the number saved in CALL FORWARDING list?

    how to delete the number saved in CALL FORWARDING list? seems like the number cannot be deleted in CALL FORWARDING list, i tried several times...
    he thing is, here are three numbers in the call forwarding list, one of them were set up by mistake, and none of them can be deleted.......it brothers me all the time. i already turn it off, but the number list is still there...

    Hello dennis130915 and welcome to the BlackBerry Support Community Forums.
    The image you have uploaded is unable to be displayed.
    Call Forwarding is a carrier controlled feature. Most likely, the number you see could be for the Voice Mail server.
    It's advised you call your mobile service provider to further assist with this feature.
    Thanks!
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • How to trace the save menu in cs3 using javascript?

    i can able to add menu items using the following syntex
    app.scriptMenuActions.add("Script 1");
    but i dont know how to trace the save menu, i want to do certain action while the user try to save their active document.
    is it possible in script?
    thanks
    subha

    Hi subha,
    re: "i dont know where to get that BeforePrint.jsx, but by using scripting guide i able to trace the menu events."
    All of the scripts shown in fragmentary form in the Scripting Guide are included in the associated scripts archive on the InDesign Scripting home page.
    The BeforePrint.jsx script shows how to cancel the display of the Print dialog box; I assume that the same techniques will work for the Save dialog box. No time to check right now.
    Thanks,
    Ole

  • How to trace the value passed by select list

    Hi,
    Is it possible to know what value is passed by the select list.
    eg:
    :p1_testid -- is the select list name .
    if select list contains 3 values ... value1, value2, and value3. and I select value2 from the select list.
    I want to confirm it that the value I selected is the same value passed to the query.
    - select * from Test where Testid=:p1_testid;
    How to trace the value of :p1_testid before query execution.
    Thanks.

    check your session state to see what value the select list has..
    From developer tools at bottom of running page, select session, then look for the value associated with your select list..
    Thank you,
    Tony Miller
    UTMB/EHN

  • How complete is the javascript API?

    Hi,
    I am trying to serealize a AI document using the javascript API. Based on the "AI CC SCRIPTING REFERENCE" I assumed this could be done by simple traversing the dom and saving the type and properties of each object. It seems however that the API isn't complete. For example, I can't figure out how to read the transformation matrix of a symbolItem. (i.e. when creating a new symbolItem from a symbol and then resizing/rotating/repositioning it, how can I find these new properties?)
    This is just one thing I ran into, that might be fixed using the C SDK. I am wondering however if this is worth the effort or more like filling a bucket full of holes? How complete is the javascript API?
    Thanks,
    Tom

    the DOM in Illustrator is very limited, half the features are not exposed to scripting, SymbolItem Matrix is one of them.

  • How to trace the form functions

    Can some help me how to trace the form functions like who has executed the function and when it has been exectued.
    Please let me know if a table is already exists for tracing the form functions.

    I am not sure that this would serve the purpose or not but still, I guess its worth to atleast be mentioned,
    http://www.oracle-base.com/articles/9i/DBMS_TRACE.php
    HTH
    Aman....

Maybe you are looking for