Capture network details

hi,
i am using OAS 9.0.4 and java for my project.
i want to capture details to know speed of application pages,the frequency wehn user i able to quickly view/takes time to view page..
This required as many users will be connecting from remote areas and they complain about application access being slow.
to debug such network issues what could be the best way??
are there any API's to capture which user has logged in, what is the login time,network details:ipadress of the user's machine:any other specific info for network etc.
asktom.oracle.com site has such features how can i go about it??
regards,
Avinash

Here's a start. I use it to get the network userid for the user running forms.
first, create a function:
CREATE OR REPLACE FUNCTION "your_schema_name"."OS_USER" return
varchar2 is begin
Return sys_context('USERENV','os_user');
End;
Then, in your trigger code or wherever,
Declare
network_userid varchar2(30);
begin
select os_user into network_userid from dual;
end
Consult the Oracle data dictionary views. There's probably something in there that will get you most of what you're after.
HTH,
Ron

Similar Messages

  • How to get the network details in flex4.5 web application

    How to get the network details in flex 4.5 web application
    similar to the nativeinterface in air application

    checkout this document for secure web application
    http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf6167e-7fff.html    

  • Has someone written a Script for Lion to capture Macbook details?

    Has someone written a Script for Lion to capture Macbook details?
    I would need a basic script for starts - the one that captures
    Mac's memory utilization
    Are there any libraries in this regard and whether normal bash scripting
    is used for capturing such details?

    I don't see any so far, but load the Dictionaty...

  • Tools to capture network traffic

    Hi,
    I'm looking for freeware tools which run on windows platform for capturing network traffic out of an interface and then tell that which type for traffic uses how much bandwidth of the interface. for e.g HTTP uses x%, Telnet use y%

    Also - check out ntop.
    Using the capture that you get from Ethereal/Wireshark it will display the data in a very pretty way.
    Check it out here:-
    http://images.google.co.uk/images?sourceid=navclient-ff&ie=UTF-8&rls=GGGL,GGGL:2006-26,GGGL:en&q=ntop&sa=N&tab=wi
    and get it here:-
    www.ntop.org - there is a windows version.
    HTH
    LH
    Please rate all posts

  • Capturing the details of  data in which error occured during uploading

    Hi, anyone tell me how to Capturing the details of  data in which error occured during uploading  the file using BDC in backgroung mode. Please do the needful
    Thanks & Regards.
    Aniruddha

    hi,
    This declaration is used to capture the error msg. V is the std table that captures that.i have given a sample code with this..pls chk it out..
    data: err type standard table of bdcmsgcoll with header line.
    SAmple code:
    report z_aru_bdc_new4
           no standard page heading line-size 255.
    include bdcrecx1.
    Generated data section with specific formatting - DO NOT CHANGE  ***
    parameters: p_file like rlgrap-filename obligatory.
    data: err type standard table of bdcmsgcoll with header line.
    data: mess(200) type c.
    data: begin of it_err occurs 0,
    msg(200) type c,
    end of it_err.
    data: begin of record occurs 0,
    data element:
            viewname_001(030),
    data element: VIM_LTD_NO
            ltd_dta_no_002(001),
    data element: ZEMPID3
            zempid3_003(004),
    data element: ZENAME3
            zename3_008(040),
    data element: ZEDEPID
            zedepid_009(004),
    data element:
            zsalkey_010(005),
    data element:
            salary_011(013),
    data element: ZENAME3
           ZENAME3_008(040),
    data element: ZEDEPID
           ZEDEPID_009(004),
    data element:
           ZSALKEY_010(005),
    data element:
           SALARY_011(013),
          end of record.
    End generated data section ***
    start-of-selection.
    at selection-screen on value-request for p_file.
    call function 'WS_FILENAME_GET'
    exporting
      DEF_FILENAME           = ' '
      DEF_PATH               = ' '
       mask                   = '.,..'
       mode                   = 'O'  " O -- open, S -- Save.
       title                  = 'OPEN'
    importing
       filename               = p_file
      RC                     =
    exceptions
       inv_winsys             = 1
       no_batch               = 2
       selection_cancel       = 3
       selection_error        = 4
       others                 = 5.
    start-of-selection.
    call function 'UPLOAD'
    exporting
      CODEPAGE                      = ' '
       filename                      = p_file
       filetype                      = 'DAT'
      ITEM                          = ' '
      FILEMASK_MASK                 = ' '
      FILEMASK_TEXT                 = ' '
      FILETYPE_NO_CHANGE            = ' '
      FILEMASK_ALL                  = ' '
      FILETYPE_NO_SHOW              = ' '
      LINE_EXIT                     = ' '
      USER_FORM                     = ' '
      USER_PROG                     = ' '
      SILENT                        = 'S'
    IMPORTING
      FILESIZE                      =
      CANCEL                        =
      ACT_FILENAME                  =
      ACT_FILETYPE                  =
      tables
        data_tab                      = record
    exceptions
       conversion_error              = 1
       invalid_table_width           = 2
       invalid_type                  = 3
       no_batch                      = 4
       unknown_error                 = 5
       gui_refuse_filetransfer       = 6
       others                        = 7
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    *perform open_dataset using dataset.
    *perform open_group.
    delete record index 1.
    loop at record.
    *read dataset dataset into record.
    *if sy-subrc <> 0. exit. endif.
    perform bdc_dynpro      using 'SAPMSVMA' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'VIEWNAME'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=UPD'.
    perform bdc_field       using 'VIEWNAME'
                                  record-viewname_001.
    perform bdc_field       using 'VIMDYNFLDS-LTD_DTA_NO'
                                  record-ltd_dta_no_002.
    perform bdc_dynpro      using 'SAPLZSHAP' '0001'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZEMPTAB1-ZEMPID3(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=NEWL'.
    perform bdc_dynpro      using 'SAPLZSHAP' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZEMPTAB1-SALARY'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_field       using 'ZEMPTAB1-ZEMPID3'
                                  record-zempid3_003.
    perform bdc_field       using 'ZEMPTAB1-ZENAME3'
                                  record-zename3_008.
    perform bdc_field       using 'ZEMPTAB1-ZEDEPID'
                                  record-zedepid_009.
    perform bdc_field       using 'ZEMPTAB1-ZSALKEY'
                                  record-zsalkey_010.
    perform bdc_field       using 'ZEMPTAB1-SALARY'
                                  record-salary_011.
    perform bdc_dynpro      using 'SAPLZSHAP' '0002'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZEMPTAB1-ZENAME3'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=UEBE'.
    perform bdc_field       using 'ZEMPTAB1-ZENAME3'
                                  record-zename3_008.
    perform bdc_field       using 'ZEMPTAB1-ZEDEPID'
                                  record-zedepid_009.
    perform bdc_field       using 'ZEMPTAB1-ZSALKEY'
                                  record-zsalkey_010.
    perform bdc_field       using 'ZEMPTAB1-SALARY'
                                  record-salary_011.
    perform bdc_dynpro      using 'SAPLZSHAP' '0001'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZEMPTAB1-ZEMPID3(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=SAVE'.
    perform bdc_dynpro      using 'SAPLZSHAP' '0001'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'ZEMPTAB1-ZEMPID3(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BACK'.
    perform bdc_dynpro      using 'SAPMSVMA' '0100'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EBACK'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'VIEWNAME'.
    perform bdc_transaction using 'SM30'.
    *enddo.
    *perform close_group.
    *perform close_dataset using dataset.
    endloop.
    loop at it_err.
    write : / it_err-msg.
    endloop.
    form error.
    call function 'FORMAT_MESSAGE'
    exporting
       id              = sy-msgid
       lang            = '-D'
       no              = sy-msgno
       v1              = sy-msgv1
       v2              = sy-msgv2
       v3              = sy-msgv3
       v4              = sy-msgv4
    importing
       msg             = mess
    exceptions
       not_found       = 1
       others          = 2
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    it_err-msg = mess.
    append it_err.
    clear it_err.
    endform.
    If it is session method u can find the session in SM35 from where u can get the error log.
    Hope this helps u,
    Regards,
    Arunsri

  • Capturing Expense Detail for BPC Planning

    Does anyone have recommendations on how to capture expense detail when creating an Outlook or plan in BPC.  For example, if a Cost Center owner wants to capture the detail behind her "Promotions" or "Events" expense by month, what are the some options.  I thought about Comments, but would like to plan expense by "event" by month...and not put a comment in each month.  I know the requirements are high level, but would like to be aware of some options before finalizing the design.

    Hi Mike,
    What do you mean by "event"?  Member of some dimension?
    Normally you have to use comments. In some cases it's possible to use journals but it's not very convenient.
    B.R. Vadim

  • MapListener & MapEvent Network Details

    Hello
    What are the network details concerning MapListeners within a Coherence cluster?
    MapListeners aren't required to be serializable, so this indicates that MapListeners are maintained on the heap of the JVM that has registered the MapListener. I'm concerned with purely client-side MapListeners here, not backing map listeners or Extend listeners.
    What is flying around the cluster when I do a put(.., ..) on a distributed (partitioned, replicated, etc.) cache? The put() call can occur from any node in the cluster, even one that does not have a MapListener registered locally. Is the Cluster constantly generating and sending (possibly broadcasting) MapEvents in response to puts() and removes(), even in the case where there are no client-side MapListeners on any node in the cluster? Does the cluster infrastructure blindly send (possibly broadcast) a MapEvent (or some internal representation) to all cluster nodes?
    I ask out of interest in deepening my understanding of Coherence. The documentation is quite clear in terms of the API, but it makes no mention of what is happening under the covers, and I would like to know.
    Regards, Pete

    Hi Pete,
    What is flying around the cluster when I do a put(.., ..) on a distributed (partitioned, replicated, etc.) cache? The put() call can occur from any node in the cluster, even one that does not have a MapListener registered locally. Is the Cluster constantly generating and sending (possibly broadcasting) MapEvents in response to puts() and removes(), even in the case where there are no client-side MapListeners on any node in the cluster? Does the cluster infrastructure blindly send (possibly broadcast) a MapEvent (or some internal representation) to all cluster nodes?The behaviour is that, if there is no client-side MapListener registered, no event will be sent. And when there is a client-side MapListener registered, the event/message is sent basically on UDP only to the nodes registered with MapListener.
    Hope this clear your queries.
    Regards,
    Rock
    Edited by: Rock Ching on Jan 20, 2011 12:57 AM

  • RAC network details

    Hi all
    i am planning to seup RAC oracle 10.2 using AIX O/S
    Can anyone provide me Network Details to setup two node RAC
    I will be using ASM and raw devices for OCR and Voting Disk and not GPFS and Hacmp.
    Please guide
    Thanks

    Hi,
    Please see bellow about what you need for this installation.
    http://download.oracle.com/docs/cd/B19306_01/install.102/b14201/toc.htm
    you need 2 NICs on each RAC node, one for public and virtual IP address configuration and other for private network between/among nodes.
    Assign public IP which belongs to your public network and a different IP sachem's IP which should be private for the nodes and should not be pingable from outside the nodes.
    Salman

  • Capture users details when logins to the applicaiton

    Hello,
    Can anyone please, help me with this issue. I am using APEX 3.2 version and I want to capture the details of the user mainly user id; their session id; when he/she logged to the application (Date & Time), which pages did he accessed within the application; ip address. After capturing the details i want to insert these into a sample table. So that I can display the details - such as users last visited date to the application.
    Thanks,
    Orton

    Hello Orton,
    Try checking out ApEx's built-in views Utilities > APEX Views. There is a wealth of information in those views. You'll need logging turned on for your application(s) - that is done in Shared Components > Definition. Using this information or summarizations of this information, should get you well on your way. One note - I believe the logs you will be interested in do get cleared automatically (forgive me I don't remember the frequency) so depending on how far back you need to report you may need to set up something to copy this data into your own tables.
    Hope this helps,
    John

  • TS1398 i have entered my wi-fi network details in my iPod touch but and it recognises it but it won't connect to it

    I have entered my network details in my iPod touch and it recognises it but it doesn't connect to it.

    Tap Settings > General > Reset > Reset Network Settings
    You will have to re enter your Wi-Fi password.
    If that did not help, try the help provided in the link you posted from >  iOS: Troubleshooting Wi-Fi networks and connections

  • How do you capture real detail of sql errors in crystal viewer of CR2008

    How do you captue the further details of an sql error when running a report in Crystal 2008 viewer (within a software application)? I get a 'failed to retrieve data from database. Details: Database Vendor Code: -nnnn' error where nnn is a number like 210074. If I run the same .rpt directly thru crystal I get a failed to retrive rowset. Then after choosing ok on that message  I get another message with more details and this time (in this particular case) it happens to be 'Column XXXXX cannot be found in database or is not specified for query. Other times it could be something about excedding max length/precison, etc..
    We recently switched from using the RDC CR10 to this new .net viewer way. With the RDC it gave us the 'meaningful" message so we could tell what was wrong. Using this new method it does not. Is there a setting for showing more detail or some coding that would give me the real message detail using cr2008?
    Don't know if it matters but in this case it is a Progress database.

    Hello,
    Back in the RDC days we manually added a lot of code to capture the exception info. When CR was re-written in 9 we removed all custom "fixes" and error handling, we basically said any ANSII 92 standards rule apply. We just pass what the client gives us.
    What this means is we dynamically pass the exception from the client to CR and interpret what we can or we simply pass the error code to the error UI.
    What you can do is to use a try/catch block and create your own error table according to Progress Error codes to pass on a more meaningful message to your users.
    We won't due to the vast amount of errors possible and the vast amount of DB clients we would have to maintain. If the client doesn't pass meaningful info onto CR then we just pass it's error onto the the end user.
    Thank you
    Don

  • To capture Trip details during MIGO

    Dear SAP Team,
    I have two scenerios being in practise by my client Request that if any one can give me the solution
    1.  When the material supplier is not taking  care of the transport ,at the time of good receipt there is one  activity called "TRIP DETAILS" done by my client during GR. Details is maintaied in the "Trip details "for transporter payment like transporter name ,vehicle no, gate pass no,material, Transport Order  no with the transporter .They also want during this activity the trip detail tab page must be made mandatory so that the user does not omit the relevant  transporter data
    2.Vendor supplies materials to the Client in two ways - One where vendor take care of the freight cost which can be tracked in PO. In second case , they arranges the transport for whom the transport contract exists based on the distance.When the GR is made for  this the product cost to be captured where there are two activities for the material.( One is material supplied by vendor / Transporter.The payment is done for the two  sepately
    Regards,
    Suresh.R

    In both the cases, freight will be there. So goto M/06 select your condition type-go to details- Control data 2- here maintain Vendor in GR - 2.
    This is nothing but delivery cost, you can change the vendor code (either your transporter or main vendor) during GR.
    As far as other transport details are concerned, you can make the field "header Text' mandatory & use it to maintain such details.

  • How capture Form Details in XML for a View and how to retrieve in 2nd View

    Hi all
    I have one typical requirement
    in a View i have a form when i submit the form then those form details i need to store (capture) in one form and retrieve the same values from the XML file into another View.
    if anybody worked on this requirement then can you please share the output.
    can anybody have the documents or related sample codes then can please share to me?
    Thanks
    Sunil

    Hi,
    For this you have to create an XML file with the data from your view1 and in form2 call that XML file and read data from the XML file and display...
    below links helps you in reading and creating XML files...
    Reading XML file in web dynpro
    Regards,
    Srinivas

  • CRM transaction CRMD_MKTSEG, to capture campaign details when executed

    Hi,
    I need to know how i can capture the campaign details in the transaction CRMD_MKTSEG when the campaign is executed. I need to send the same details to the XI ( Exchange Infrastructure). I tried to search the existing BADI for the transaction but could not find any relevant methods. Can anybody help me on this.
    Can this be done using BAPI?
    Please reply immediately. I have a urgent requirement.
    Thanks
    Chethana

    Its bcoz of the non-existence of some system files ,
    u can ask the Basis admin to install the latest version
    patches,, currently u can use Patch - 24, Check if it helps..

  • Capturing user details

    how can i get the all details like host details, user details,
    machine # , process or session id for a user or process
    that updates a particular table.
    i will use the code provided by you later in a trigger to capture.
    Please help ASAP
    Thanks.

    In Oracle, there are two ways to get a privilege. You can have it granted directly to you, i.e.
    GRANT select any dictionary TO user_nameor the privilege can be granted to a role which is granted to you
    GRANT select any dictionary TO developer_role
    GRANT developer_role TO user_nameOnly privileges granted directly to you are visible in definer's rights stored procedures (the default). If you've been granted privileges via a role, you would be able to query the table at the SQL*Plus prompt, but not inside a PL/SQL block.
    Justin

Maybe you are looking for

  • Sales Analysis for a certain period

    Hello Experts, In standard Sales Analysis Report, when we run report for a certain period for "Customers" and when we run the report with same parameters for "Items" it gives different results. Can anybody please guide me, why these results are diffe

  • Failed to invoke end componentFailed to invoke method error

    I am getting this error while invoking a web service in weblogic. What is root cause of this error...? Error Description:- <remoteFault xmlns="http://schemas.oracle.com/bpel/extension"> -<part name="code"> <code>Server </code> </part> -<part name="su

  • Errors were found when compiling the workflow. The workflow files were saved but cannot be run.

    Greetings All, I am having issues with a SharePoint Designer workflow.  This is a SharePoint 2013 environment, I'm using SharePoint Designer 2013 and working on a SharePoint 2010 workflow.  I'm developing this as a SharePoint 2010 workflow because I

  • Can I use ARD to 'push'  System Prefs LANGUAGE &TEXT to network

    Can I utiise ARD to 'push' System Prefs LANGUAGE &TEXT to all macs on our network? How would this be achieved? Currently whenever a user logs into a workstation for the first time, their Language & Text prefs change from English language and UK Regio

  • Preload flv?

    How can I preload an flv to the user's cache while they are busy interacting with a previous swf? Thanks