Is possible to save the user who uses the download action in an interactive report.

Hello

In my application I want to save that downloads information from the interactive reports in any format, is this possible?

Concerning

Hi Eva,

The event would be onClick of one of the download buttons (either CSV, HTML, PDF). Al of these download buttons have an id that starts with 'apexir_dl_' but including the suffix of ASD file extention (so the Download CSV link would be "apexir_dl_CSV").

The PL/SQL procedure for the actual record is accurately described in the link Tony posted.

Kind regards

Vincent

Tags: Database

Similar Questions

  • is it possible to save the Office XP for multiple monitors and restore after using the laptop in mobile mode?

    Is it possible to save the Office XP for multiple monitors and restore after using the laptop in mobile mode?

    Hi Kenelms,

    You can follow this link & check if it helps.

    HOW to: Set up hardware profiles for laptop computers in Windows XP

    Hope the helps of information.

    Please post back and we do know.

  • Is it possible to save the shapes drawn with the pen tool?

    Is it possible to save the shapes drawn with the pen for reminder tool later?

    As for example save selections in Photoshop?

    I use Indesign CS2

    Library to use for this. Or extracts.

    Reuse of graphics and text in InDesign

  • When downloading using firefox I should save the download, and then must go to the download file to start the download. When I download using internet explore I can run a download at the time where as it is downloaded. Can I change a setting somewhere?

    I use Windows 7 with firefox as my default browser. When I download a program using firefox, I wonder if I want to save the file, and then must go to the download folder to start the download. When I download using internet explorer, I gives me the ability to run the download at the time where it is downloaded instead of save the download. Is there a setting I can change to allow me to run downloads when using firefox instead of record?

    Hi shortwedge3,

    You can use the OpenDownload2 extension for the run option when downloading files with Firefox

  • How to make a temporary directory on my HARD drive to save the downloaded file?

    I need to download the updated printer drivers and the first thing I need to do is to create a temporary directory on my hard drive to save the downloaded files.  My operating system is Windows 7, the 64-bit version.  My printer is a brother model MFC - 240 c.  (That copy, fax, scan and has Photo Capture).

    I had a stroke and lost my short-term memory and can not remember what whether computers or at least, not a lot.  If you know how to do this, be very specific with your answer as I print it and use it as a guide I'll follow to the letter.  I'm sure that it's the easiest thing, but I just can't remember how to do it.

    Thanks for your help - it is much appreciated.

    Waylin

    I need to download the updated printer drivers and the first thing I need to do is to create a temporary directory on my hard drive to save the downloaded files.  My operating system is Windows 7, the 64-bit version.  My printer is a brother model MFC - 240 c.  (That copy, fax, scan and has Photo Capture).

    I had a stroke and lost my short-term memory and can not remember what whether computers or at least, not a lot.  If you know how to do this, be very specific with your answer as I print it and use it as a guide I'll follow to the letter.  I'm sure that it's the easiest thing, but I just can't remember how to do it.

    Thanks for your help - it is much appreciated.

    Waylin

    You shouldn't really need to create a temporary directory - especially for the Brother printer drivers.  You can download it at any place that you can easily find (like the office).  Then double-click it to run it (run) on it and let it install.
     
    I realize has their instructions (probably the ones found here<-- that="" is="" a="" link)="" say="" to="" download="" the="" file="" to="" a="" temporary="" directory="" -="" but="" i="" just="" downloaded="" the="" file="" you="" need="" (mfc-240c-inst-win7-a2.exe)="" and="" double-clicked="" on="" it="" and="" it="" doesn't="" have="" to="" be="" anywhere="" special. ="" it="" will="" 'extract'="" to="" the="" native="" temporary="" directories="" as="" needed="" (nothing="" to="" be="" concerned="" with)="" and="" then="" ask="" you="" to="" choose="" a="">
     

    Which I suppose you want to English (as shown), and then you click OK.

    He then expand some additional files and then ask you to accept a license agreement (I suggest "Yes" If you want to go further):

    In your case... choose 'Standard' and click Next and continue in this way until it is installed.  Then (once Setup is complete and closed) you can restart the computer (first and foremost) and then delete the original file you downloaded (MFC-240 c-inst-win7 - A2.EXE) on your desktop (or downloads, etc.)

    You should get through it.

  • Add an Extension field to save the last Action of the agent and display this on email

    I am trying to add an extension field to a call to save the last Action Officer tapped on a call.  I do what we want to display (on e-mail alerts, for example) the last 'real' action taken a call, and we don't want to display the text of the generated system which is often recorded in the SOLUTION_DESC column.
    for example, e-mail sent displays like this:
    snip2.png
    I created the extension field and have obtained this update when the call is handled (details of the changes I made are below).


    The problem I have is that the email that is sent to the receiving a transferred call is the latest version of the data from the field to this topic.  It's as if the system did not write data in the database until the logic 'send e-mail' runs.  If I have question registration in SQL immediately after the postponement or the transfer of the call I can see the update is written to the field of the extension of the database, but there after send it an email.

    for example, I change a call and type something in the field of Actions and Solutions.  I transfer the call to a group.  The email that is sent to the groups has the extension defined field to display on this, but it does not display the last typed Action in, it displays the previous Action (there's a).

    Any suggestions on how to make sure that e-mail displays the last Action?

    The changes I've done so far:
    In Custom_InCallDetails.js
    Added the custom function:
    function setLastUserActionText() {}
    var da = document.all;
    var sd = da. SOLUTION_DESC_HTML_EDITOR. Area;
    If ((da. TEMPLATE_IND. Value! = 1) & & (sd! = ") & &! (TF (da. TakeOver.value)))
    {
    var DB = FindNavWindow (). document.all.DB;
    var localRS;
    var OfficerName;
    var CurrentDate = new Date();
    DB. ClearParam();
    DB. AddParam ("REF", da.) OFFICER_REF.value);
    localRS = DB. GetRecordSet ("Get agent Name");
    If (localRS == null | localRS.recordCount == 0)
    OfficerName = '(unknown) ';
    on the other
    OfficerName = (localRS("FULL_NAME").value);
    DB. ClearParam();
    DB. AddParam ("CALL_NUMBER", da.) CALL_NUMBER.value);
    DB. AddParam ("SOLUTION_DESC", (sd + "\r\n (in" + OfficerName + "on" + CurrentDate.toLocaleString () + "" ")" ""));
    localRS = DB. GetRecordSet ("CustomGetLastUserActionText");
    If (localRS == null | localRS.recordCount == 0)
    {
    localRS = DB. GetRecordSet ("CustomAddLastUserActionText");
    localRS = DB. GetRecordSet ("CustomUpdateExtensionDataAllocation");
    }
    on the other
    localRS = DB. GetRecordSet ("CustomSetLastUserActionText");
    }
    }

    Update OnSubmit function call:
    function OnSubmit (s)
    {

    p.Submitted = false;
    Returns false;
    }
    Start personalization
    setLastUserActionText();
    Customization of the end

    SetSubmitValues();

    }

    In infra_custom.sql
    ! CustomUpdateExtensionDataAllocation
    CustomUpdateExtensionDataAllocation
    UPDATE SU_NUMBER_ALLOC SET NUMBER_ALLOC = (SELECT MAX (REF) + 1 SU_EXTENSION_DATA) WHERE TABLE_ALLOC = 'SU_EXTENSION_DATA. '

    ! CustomGetLastUserActionText
    ! 500219 is the Ref of the field "last user action text.
    CustomGetLastUserActionText
    SELECT REF FROM SU_EXTENSION_DATA WHERE REF_NO =: nCALL_NUMBER AND EXTENSION_FIELD_REF = 500219

    ! CustomAddLastUserActionText
    CustomAddLastUserActionText
    INSERT INTO SU_EXTENSION_DATA
    (REF,
    REF_NO,
    EXTENSION_FIELD_REF,
    VALUE_STRING,
    CORE_ENTITY)
    SELECT
    (SELECT MAX (REF) + 1 OF SU_EXTENSION_DATA) + ROW_NUMBER () OVER (ORDER BY: nCALL_NUMBER).
    : nCALL_NUMBER,.
    500219,
    : sSOLUTION_DESC,.
    1

    ! CustomSetLastUserActionText
    CustomSetLastUserActionText
    UPDATE SU_EXTENSION_DATA SET = VALUE_STRING: sSOLUTION_DESC WHERE REF_NO =: nCALL_NUMBER AND EXTENSION_FIELD_REF = 500219

    Why not add the extension field in the call screen. Then update the field on the screen in onsubmit. In this way, it will update the value and be available to the e-mail address.

  • Is it possible to save your project who keeps only files that are used in the order and get rid of files that you do not use?

    my project is at an advanced stage now, a lot of media loaded up and its got to the point where the project keeps "forgetting" his makes (the line goes to yellow when it should be green)

    I assume that this may be due to the face that I have a lot of media loaded upward there now, including many from the effects of exports which should be large enough

    so, I would like to save the project or export the project in such a way so that it retains only the bare minimum of files that im actually... better still, use if she maintained only the part of the files that are used and stripes out of the rest, but maybe it's wishful thinking?

    I also wonder if I could save the project, bringing files in a separate folder, only the files used in the project

    I'd love to, having someone take the time to clear this up for me.  Thank you

    Project Manager in the file Menu

    Backup first carefully!

  • How to determine the user who uses the database object

    Hello
    Currently, we are consolidating our databases. One of the steps is to understand that the user connects to the database at all. It's easy, we have implemented a logon trigger and save the information in a separate table.
    If a user with objects (tables, views, procedures) are - but that this user never connects to the database - which automatically means that these objects are not at all? Needless to say that's not true. But how do know us if a user has selected an object to this user?
    Our problem is that we have a lot of patterns in our database-, but the developers do not know if this schema is not used by an application or not (sad but true).
    To enable the audit would be a choice about whether or not an object is already used.
    Are there other possibilities?
    Any help would be appricated

    Rgds
    Jan

    VivaLaVida wrote:
    Hello
    Currently, we are consolidating our databases. One of the steps is to understand that the user connects to the database at all. It's easy, we have implemented a logon trigger and save the information in a separate table.

    It could be even easier by turning on auditing functionality.

    If a user with objects (tables, views, procedures) are - but that this user never connects to the database - which automatically means that these objects are not at all? Needless to say that's not true. But how do know us if a user has selected an object to this user?

    verification would be a good choice.

    Our problem is that we have a lot of patterns in our database-, but the developers do not know if this schema is not used by an application or not (sad but true).

    Don't know this that developer will be used/not used with the application.

    To enable the audit would be a choice about whether or not an object is already used.

    What is the problem in the audit?
    Even if the audit may have a footprint on the performance, which would be probably cheaper than any customized solution.

    Nicolas.

  • Is it possible to save the screen to a file image using AS3 CS5.5?

    Hello

    I need to save the content of my screen to a picture in the camera, anyone know if it's possible?

    Thank you

    Here is the code

      var cameraRoll:CameraRoll = new CameraRoll();      var bitmapData:BitmapData = new BitmapData(stage.stageWidth, stage.stageHeight);     bitmapData.draw(stage);     cameraRoll.addBitmapData(bitmapData); 
    
  • possible to save the 2 Iphones on one computer

    is it possible to save 2, I phones on the same computer? have 2 old desktop Mac and a laptop to update who will accept only the I phone for back-up... Jim

    Yes you can.

    Make sure that each iPhone has a unique name.

    Settings > general > topic > name > here

  • Is it possible to save the animation preset by script?

    Hello

    I wrote a script called memory, which save any layer of same model of layers for the generation later. https://github.com/Smallpath/memory

    A few days ago, I filled in the preview function and was ready to release it with tag v3.0. However, script can not get or set the value of special plugins like curve, particular and puppets, nor what to do my script Memory.I know these plugins can be saved as animation preset by click in Ae, but who needs the user to click, select the folder, enter a name for the preset and finally click OK, which isn't me.

    I really need to improve my script. So I wonder if there is a way to save the animation preset by script. Perhaps it may be a hidden such as CompItem.saveFrameToPng.Thanks, for any help method

    I work on the same idea and could not find all hidden for creatine presets modes.

    So I came up with this code:

    function newPreset(){
    
        var activeComp = app.project.activeItem;
        if(activeComp == null){ alert("Please, open composition."); return false;   }
        if(activeComp instanceof CompItem){ }else{   alert("Please, open composition."); return false;  } 
    
        var selectedLayers = activeComp.selectedLayers;
        if(selectedLayers.length == 0){   alert("Please, select any layer."); return false;    } 
    
        selectedLayers[0].effect(1).selected = true;
        app.executeCommand(23); // Select All
        try{ selectedLayers[0].layerStyle.selected = true;  }catch(err){}
    
        app.executeCommand(3075);   // Save Animation Preset   
    
    };
    

    Hope that will help you somehow.

  • Is it possible to save the installation &amp; pre scan?

    Hello

    I am new to Thinapp & need to know that, is it possible to save save pre scan & installation post scan & build in a day later?

    Thank you!

    Hello

    You can probably create a virtual machine after a pre scan and installation, snapshot if you use Workstation or ESX (do not close the window of process configuration Capture ThinApp). And then you can go back to the snapshot and you'll get the Setup Capture window open to job analysis and build.

    Thank you

    -Pankaj

  • Is it possible to save the current tabs and groups so that they can be recharged at any time?

    My Firefox crashes sometimes, and when I start it up again, my groups and tabs that I had are lost, so I need to recreate my history window. Is there a way I can save the groups that I have with the tabs on the inside so that I can retrieve them at a later date.
    "I say that Firefox does not save the whenever I close the browser, so I'm güssing there a file somewhere that contains this information, if I know how is called this file I could save it on my regular schedule and retrieve them if I had to, of course the best solution would be to have a ' save the groups ' & 'Support groups' in the menu.

    Thanks in advance
    DayoJ

    (PIN) App tabs and groups of tabs (Panorama) are stored in session data in the sessionstore.js file in the Firefox profile folder.

    You can use this button to go to the Firefox profile folder currently in use:

  • How can I report hotmail users who use their account in an attempt to commit fraud?

    Hi, how to report Hotmail users that use their account in an attempt to commit fraud? Microsoft may suspend the account of these people so that they can't use it to defraud people more?

    Hello

    HotMail has its own Forums, so you can ask your questions there.

    Windows Live Solution Center - HotMail - HotMail Forums Solutions
    http://windowslivehelp.com/

    Hotmail - Forums
    http://windowslivehelp.com/forums.aspx?ProductID=1

    Hotmail - Solutions
    http://windowslivehelp.com/solutions.aspx?ProductID=1

    How to contact Windows Live Hotmail Support
    http://email.about.com/od/hotmailtips/Qt/et_hotmail_supp.htm

    Windows Live Hotmail Top issues and Support information
    http://support.Microsoft.com/kb/316659/en-us

    Compromised account - access unauthorized account - how to recover your account
    http://windowslivehelp.com/solution.aspx?SolutionID=6ea0c7b3-1473-4176-b03f-145b951dcb41

    Hotmail hacked? Take these steps
    http://blogs.msdn.com/b/securitytipstalk/archive/2010/07/07/Hotmail-hacked-take-these-steps.aspx

    I hope this helps.

  • Is it possible to save the document as the channel... mask selection?

    Hello world:

    Is it possible to script.

    1. save the document as the channel... mask selection?

    2. How do we get selection of layermask... ?

    Thank you is advanced.

    -yajiv

    Ad 1)

    If you mean a channel:

    app.activeDocument.selection.store (app.activeDocument.channels.add ())

    Ad 2)

    If the layer is selected it should load the layer as a selection mask:

    // =======================================================

    var idsetd = charIDToTypeID ("setd");

    var desc12 = new ActionDescriptor();

    var idnull = charIDToTypeID ("null");

    var ref8 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idfsel = charIDToTypeID ("FSC");

    Ref8.putProperty (idChnl, idfsel);

    desc12.putReference (idnull, ref8);

    idT var = charIDToTypeID ("T");

    var ref9 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    Ref9.putEnumerated (idChnl, idChnl, idMsk);

    desc12.putReference (idT, ref9);

    executeAction (idsetd, desc12, DialogModes.NO);

Maybe you are looking for

  • Driving directions

    If I ask ' take me home ' to my iPhone6, open maps and everything is ok. If I ask exactly the same thing to my AW, the answer is "I don't know where he is." Don't know if it helps; in any case if I ask my AW to lead me to a person with known address,

  • Siri remote control controls the volume but will not turn on or turn off the tv more

    LLA Siri remote control the TV volume, but does not turn the TV on or off more. My anynet + him Cec is enabled. How can I get this function runs again. Tired of using two remotes

  • Compaq laptop Presario 2200 Window XP Home Edition

    Compaq Presario 2200 computer laptop XP Windows Home Edition - continuous reboot problem - need to restore with service pack disk Error message on blue screen "" "STOP: 0 X 00000024 (0 X 00190203, 0 X 85791008, OXC0000102, OX00000000). Can someone se

  • Start hp pevilion g6 problem

    laptop is not up to scratch or refreshing test drive showing failure ID: 93047-G-6LS723-MFPX0K-60QK03

  • C4180 all in one photo print problem

    Hello I have a c4180 all in one, the photo editor, Paintshop pro X 2. My photo colors and sharpness are perfect on the screen, but totally different once print (colder and not as strong). Any advice? Thank you