Default Mail To value in for apexir_EMAIL_TO and apexir_EMAIL_ADDRESS

I am trying to set the default "To" email address in the Apex 4.0 interactive reports for Email Download and Subscriptions.
I have added the following JavaScript code to the "JavaScript.Function and Global Variable Declaration" section of the page definition:
$("#apexir_EMAIL_TO").val('&[email protected]');But when I choose the Download -> Email option the To address isn't filled in. I am sure there is something silly that I am doing wrong, any tips would be appreciated.
Thanks, Tony

T,
Since that element isn't on the page when it first loads you can't set it that way. The download calls something that gets the download forms via ajax.
Testing shows I can set it via a dynamic action for click the jquery selector a[title="Download"] with a javascript action like yours but wrapped in a setTimeout call.
The question for gurus reading this is whether there is another method. Can we listen for some other type of event rather than setting a timeout?
Greg

Similar Messages

  • Safari will no longer open.  I was using firefox until I could find a fix for safari.  I made the mistake of changing my default search to firebox later for convenience and now I can't open my system preference or many safari or apple linked files.

    Safari will no longer open. It just goes back to my desktop.  When I right click on the safari icon in my dashboard it says it is open.  I was using firefox until I could find a fix for safari.  I made the mistake of changing my default search to firebox later for convenience and now I can't open my system preference or many safari or apple linked files. Some of my emails from trusted sites won't open and does the same thing. 
    I upgraded my original system from 10.4.11 to I believe 10.6. something about a year or so ago.  I thought about re installing my safari app but when I go to open anything connected to safari my screen goes back to the desktop.  I cant open any files that I have on my desktop that I set up through safari, like my banking program. Prior to changing system preference to safari default I was able to open those files and now I can't get into change it back.  Can you guide me through this?
    Thanks,
    Betty

    Try running the 10.6.8 combo update.
    10.6.8 Combo Updater
    System Preferences or Safari Preferences?
    Do a backup.
    Quit the application.
    Go to Finder and select your user/home folder. Select Library. Then go to Preferences/com.apple.Safari.plist. Move the .plist to your desktop.
    Restart the computer, open the application and test. If it works okay, delete the plist from the desktop.
    If the application is the same, return the .plist to where you got it from, overwriting the newer one.

  • Push mail is not working for gmail and hotmail on ...

    i have been using my nokia e72 since february 2011. i had two mailbox configured, gmail and hotmail. Until last week, everything was fine. but suddenly my push mail stopped working for both gmail and hotmail.
    when i noticed this, i removed both of my mailboxes and tried to create a new one. when trying to create a Gmail mailbox, it goes fine upto "downloading terms". after that, when i choose to connect to "nokia messaging service", it creates a mailbox named "HOTMAIL" instead of "GMAIL". it takes only my user name for Gmail and rest of the settings are for HOTMAIL.
    if i choose not to connect to "nokia messaging service" then it works quite well. but thats not real push mail. it will check my email every 5 mins. but when tried to create a "HOTMAIL" mailbox, i had no luck. no matter how i try, hotmail mailbox can't download my mail. and as hotmail don't support IMAP, its very disgusting to use "POP3" if i choose not to connect to nokia messaging.
    i have tried to reset the phone using *#7370# and *#7730#, but no luck. i also tried reinstalling the firmware using ovi suite, but i didn't had any luck either.
    please help me, i am very disappointed with this kind of problem specially from nokia.
    someone please do help. i m in a huge mess.

    delete the account and re-add it.

  • Different Aquisition Value (APC) for group and local depreciation area?

    Hello,
    Is it possible to have different APC/acquisition value in your group and local depreciation area? We want to book the net book value as APC for local depreciation area while gross APC and accumulated depreciation are recorded in group depreciation area.
    Group Depreciation Area
    APC- 100
    Accum Dep- 20
    Local Depreciation Area
    APC-80
    I'd highly appreciate if you can give inputs.

    Hi,
    You did exactly whats required to acheive your requirement.
    There is no more further implications by removing the tick for a while and reverting after go live.
    While doing AS91, if you enter the APC value for 01 area, then that value will be automatically populated to the other dependent areas of 01 area. ( In case, if your other areas are in diff currency also, system will converts the 01 area value in to other area's curr by taking the exch rate).
    Here you can still change the APC values for the all other areas. (The other areas should have been unticked for Identical APC value check box in OABC).
    So while creating AS91, in tkaover values tab, enter APC value 80 in your 01 area and manually change the value in your group area. (REmove 80 and enter 100).
    For accum dep, in takeover values tab, enter accum dep 20 in group area only. (like OABC, in OABD also the other areas should be unticked for the identical value check box).
    This will resolve your issue.
    Thanks,
    Srinu

  • Setting bind variable value programmatically for master and child VO's

    Defined following BC:
    Serv VO - Master VO, has Bind_cNum (bind variable)
    ServDetail VO - Child VO, has Bind_cNum2 (bind variable)
    ServViewLink VL - View link between Serv VO & ServDetail VO
    in AMModule Impl have custom WS:
    public List<ViewRowImpl> getMyServices(String cNum)
    List<ViewRowImpl> result = new ArrayList<ViewRowImpl>();
    ViewObjectImpl vo1 = getServ(); //Master VO
    vo1.setNamedWhereClauseParam("Bind_cNum", cNum);
    vo1.setForwardOnly(true);
    ViewObjectImpl vo2 = getServDetail(); //Child VO
    vo2.setNamedWhereClauseParam("Bind_cNum2", cNum);
    vo1.executeQuery();
    while (vo1.hasNext()) {
    result.add((ViewRowImpl)vo1.next());
    return result;
    I am passing same cNum parameter to both Serv VO (Master VO) and ServDetail VO (child VO) as above. (this is in addition to view link bind variable :Id)
    It shows in the logs that it is setting the values correctly:
    <ViewRowSetImpl> <setNamedWhereClauseParam> [382] Serv ViewRowSetImpl.setNamedWhereClauseParam(Bind_cNum, 11771370)
    <ViewRowSetImpl> <setNamedWhereClauseParam> [383] ServDetail ViewRowSetImpl.setNamedWhereClauseParam(Bind_cNum2, 11771370)
    <ViewRowSetImpl> <doSetWhereClauseParam> [383] Serv ViewRowSetImpl.doSetWhereClause(-1, Bind_cNum, 11771370)
    <ViewRowSetImpl> <execute> [385] Serv ViewRowSetImpl.execute caused params to be "un"changed
    <OracleSQLBuilderImpl> <bindParamValue> [394] Binding param "Bind_cNum": 11771370
    <ADFLogger> <addContextData> Execute query
    -- when executing view link
    <ViewRowSetImpl> <setParamValues> [425] ServViewLink_0 ViewRowSetImpl.setParamValues params changed
    <ViewRowSetImpl> <doSetWhereClauseParam> [426] ServViewLink_0 ViewRowSetImpl.doSetWhereClause(-1, Bind_cNum2, null)
    <ViewObjectImpl> <bindParametersForCollection> [436] For RowSet : ServViewLink_0
    <OracleSQLBuilderImpl> <bindParamValue> [437] Binding null of type 12 for "Bind_cNum2"
    <OracleSQLBuilderImpl> <bindParamValue> [438] Binding param "Bind_Id": 5018
    from above log, when ServViewLink_0 is executed, it is changing Bind_cNum2 bind variable to null.
    how can i pass same bind variable value to both Master and Child view objects from AM Impl.java
    Edited by: bsrao on Oct 11, 2012 6:07 PM
    Edited by: bsrao on Oct 11, 2012 6:10 PM
    Edited by: bsrao on Oct 11, 2012 6:12 PM

    Try executing the vo1 query before setting the bind variable for vo2, then execute the vo2 query (if that's what you want to do).

  • BT Mail is Poor/Unfit for purpose and other issues

    Having been migrated to BT Mail I was dismayed at the considerable increase in spam received in my account.  Taken a while but I now realise why.............BT Mail has not been adding to my blocked sender list.  It says it does, but it does not add the addresses or domains.  So I tried doinf it manually, in 'settings' nope no joy there either.
    So on to help.............
    What a farce.  The nice lady listened to what I told her was happening and what I had done...........
    then promptly got me to do it all again.........................twice, with the inevitable result.  I have been moved to the next level..... wow.
    The second part of the rant.  They managed to 'lose' one of my email addresses in the migration from BTYahoo.  I had what seemed like half of India looking for a solution all through October, November and december.  I think they have now given up.
    I am paying for this 'service'.
    Does anyone have a contact in UK where i can get common sense and knowledge to resolve this issue.  India is poor on tech but JUST acceptable if it is a web chat.  On the phone, I am sorry, but the language barrier is huge.  I am embarrassed having to ask for everything to be repeated as I cant understand.
    Suggestions, on a postcard please, as email probably will have issues..................

    Just out of interest, I tried to log into BT Yahoo (cos its still available) with my 'missing' supplementary email.  Gosh it wanted me to change my password so.......
    i tried and it let me and I can now log into Yahoo mail with my 'missing' supplementary email address.
    Yet, BT India were unable to; a) find it. b) transfer it/migrate it to BT Mail. c) phoned me twice and told me it would happen over time if they could find it. d) Appear to have given up doing anything since November.
    So, now I appear to have a YaHoo mail account with an @btinternet.com address, which I cannot access through BT Mail.
    For those of an older persuasion, Arte Johnson would say, 'Very interesting, but stupid!'
    Help!  Insanity is just around the corner with incandescent rage just in front of him............................
    Did I mention that I was paying for this 'service'?  Yes, I think I did in an earlier post............
    Yes, various people have been contacted, by a number of methods.  Carrier pigeon is next, followed by heliograph and semaphore - hand held, as my tower has not yet been completed.......

  • Creating 2 custome dependent value sets for party_number and customer_numbe

    Hi,
    I want to create 2 custom value sets XX_PARTY_NUMBER and XX_CUSTOMER_NUMBER
    When i select the value for Party_number from XX_PARTY_NUMBER,
    the corresponding customer_number should populate from XX_CUSTOMER_NUMBER
    This is what i tried
    1ST VALUE SET
    VALUE_SET_NAME -- XX_PARTY_NUMBER
    APPLICATION ---RECEIVABLES
    TABLE HZ_PARTIES
    VALUE-- PARTY_NUMBER
    MEANING PARTY_NAME
    ID-- PARTY_ID
    WHERE_CLAUSE -- ORDER BY PARTY_ID ASC
    2ND VALUE SET
    VALUE_SET_NAME
    XX_CUSTOMER_NUMBER
    APPLICATION -- RECEIVABLES
    TABLE --- RA_CUSTOMERS
    VALUE -- CUSTOMER_NAME
    MEANING -- CUSTOMER_NUMBER
    ID ---
    WHERE_CLAUSE-- PARTY_ID IN :$FLEX$.XX_PARTY_NUMBER
    I'm not getting it correctly.
    Can you help me?

    Hello Friends,
    I am new to Oracle Apps,i am finding difficult in writing the query to get the following details -
    Customer Name,
    Customer Number,
    Bill_to_address,
    Ship_to_address
    Kindly share if you have any query related to this.
    Thanks In Advance!
    Ramya Nomula

  • Value input for screen and to apply it to formula in Query Designer

    Hi Gurus !
    How could i input an value for screen in BEx and soon to apply it to formulas resident in cells in Query Designer, the result must be appear for each cell in the report.
    Thank You for your helps.

    create a variable with Manual/user input option.
    use its value to populate the calculated field.

  • Xsl:sort attribute value templates for select and order

    I've tried the xdk_java_9_0_1_0_0.tar.gz update today and for that the reported bugs are still there : one urgent (quite a stopper for us) is this one
    <xsl:template match="/resultlist">
    <xsl:variable name="sortorder">descending</xsl:variable>
    <xsl:variable name="sortfield">name</xsl:variable>
    <xsl:for-each select="result">
    <xsl:sort select="./{$sortfield}" order="{$sortorder}"/>
    <xsl:value-of select="./index"/>,<xsl:value-of select="./name"/>
    </xsl:for-each>
    </xsl:template>
    still it does not replace {$sortfield} and {$sortorder}.

    This is known bug 1798018 in the Oracle XSLT processor.
    The only workaround I can think of is to use <xsl:choose> to optionally use different <xsl:for-each> blocks, one with order="ascending" and one with order="descending" as literal values.

  • DEFAULT values for OUT and IN/OUT parameters in PL/SQL

    Why are OUT and IN OUT parameters not allowed to have DEFAULT values assigned to them? Or is there a way around this?
    thank u

    For IN parameters this makes sense. For OUT parameters... hm... when you don't get anything out you also don't need a default value. I think the cases where you want to overload can't be compared with default values.
    For IN a default value would be like:
    If I don't add this parameter it should use 'DEFAULT' as INPUT value.
    For an out parameter:
    If I don't use a variable for this parameter the output value should be 'DEFAULT'.
    and written into nirvana? it does not make sense to say I output something but I don't output something.
    Message was edited by:
    Sven W.

  • I receive email from a yahoo account and a gmail account. thunderbird always shows a notice when yahoo mail arrives but never for gmail

    I receive email from a yahoo account and a gmail account. thunderbird always shows a notice when yahoo mail arrives but never for gmail and the settings are the same help! TIA

    well turn it off and see if that makes a change. After all IDLE is a server technology. If Google supports it and Yahoo does not then configuring Thunderbird the same means nothing. (I have no idea if Yahoo support it or not)

  • Submit By Email Doesn't Launch Outlook 2010 as Default Mail Client, though Outlook is properly set a

    A form designed in LiveCycle Designer with a Submit By Email button, doesn't launch Outlook 2010 (Standard Edition) when clicked, although Outlook is properly configured as Default Mail Client.  Checked with Microsoft and followed all proper steps yet the button doesn't invoke Outlook onClick.  However, Outlook is launched if a link or html button, set to the mailto syntax is clicked.  Is this a PDF form issue for LiveCycle or is there something I am missing?  Please any ideas?

    I have this problem on Win7 64bit, but it seems to work fine with XP and Vista. Not sure about Win7 32bit.
    I've also seen the problem in the past with programs like Thunderbird set to be the default email client (on XP).
    I've never been able to figure out if it's an Adobe or Microsoft problem. Adobe uses the MAPI settings to find the email client.

  • F4 help for month and Year field in ztable please

    I have created a ztable. 
    The first field in my ztable is a primary key field and it holds MM/YYYY(eg.  08/2011).
    How ever my requirement is when ever we want to see the output, uer wants F4 help on that fields and when he selects the range , the ztable should display the values in that range.
    For eg.
    1). if user selects   01/2011  to 08/2011 using F4 Help,
    2). then the ztables should display all the records in that range.
    Thanks in advance for your help.
    Best regards,Sam
    Moderator message : Spec dumping / Outsourcing is not allowed.  Thread locked.
    Edited by: Vinod Kumar on Aug 8, 2011 11:17 AM

    Hi Sam,
    Create an F4 help using this FM
    l_t_date" has month and date
    l_f_programm = sy-repid.
        l_f_dynnr    = sy-dynnr.
        CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
            retfield         = 'Date'"Field name of coloum of value tab
            dynpprog         = l_f_programm
            dynpnr           = l_f_dynnr
            dynprofield      = <>"Screen field name'
            value_org        = 'S'
            callback_program = l_f_programm
            callback_form    = ''
          TABLES
            value_tab        = l_t_date"Value table for date and month
    *      FIELD_TAB        = L_T_RETURN
            return_tab       = l_t_return_tab
          EXCEPTIONS
            parameter_error  = 1
            no_values_found  = 2
            OTHERS           = 3.
        READ TABLE l_t_return_tab INDEX 1.
        IF  sy-subrc = 0 .
        <fields> = l_t_return_tab-fieldval.
        ENDIF.
    Regards,
    Amit
    then filter the ztable accordingly

  • Need advice on computer for photo and video editing

    I do mostly routine stuff on my home computer (word processing, e-mails, internet, etc), except for photo and video editing (hobby, not professional)
    I'm upgrading my 4 year old set up, as it has 2 GB ram, dual core vs quad core, 256mb video card, etc, etc.  Better to buy a new rig than upgrade several different components.
    Costco has a pretty nice set up in the store (HPE 257 c-b), but for an extra $200, I can order online and get the HPE 170t, which is essentially the same except for 2 upgrades:
    -Radeon HD 5770 video card vs Radeon HD 5570
    -Two 1 TB 7200 hard drives vs one 1 TB 7200 hard drive
    My question is this.....is it worth the extra $200 to get the better graphics card and the dual hard drive set up?  Will it really make that much of a difference in the performance?  I'm thinking it will, especially the ability to set up the 2nd hard drive as my scratch disk.
    For what it's worth, both systems have the i7 860, 8 GB ram, and Windows Home Premium 64 bit.
    Thanks.

    In very general terms, the requirements for Video will exceed those for Photoshop (PS). If you are looking at PrPro CS5, then the video card WILL make a difference, and PS CS5 now takes advantage of the video card, than before.
    For PS, the minimum HDD setup would be a 2x system with physical (not partitions) HDD's. Video has more requirements in this area, and I would say that a 3x setup is the minimum. Do read Harm's linked article, as it is the best that I have ever run across.
    For the PS setup, just locate the Scratch Disks for PS on your extra HDD's, the ones with your Project and PrPro Scratch Disks.
    Enjoy the new computer, and welcome to the forum,
    Hunt

  • To change the defaults headings/parts' values in a FSG Report

    Hi,
    I m making FSG reports in Oracle 11.5.10.2.
    The default headings Like "Corporate set of books" on the top of the reports page or the "no company requested" at the upper left position are required to be removed or changed. But i m not finding a way to do this.
    Is there any idea????
    thanks.

    Yeah Sunil !!
    you can't make reports without columns and column headings are the must in most of the cases. But i m talking about the fix and defaults parts that are there for each and every type of report. So any help in this regard is required.
    Thanks.

Maybe you are looking for

  • External hard drive will not show up on my desktop?!?!

    I have a 2 TB G-Technology G-Drive) external hard drive and when I plug it in to my macbook pro via firewire and turn it on, nothing happens. The light on the HD is on but no HD shows up on my desktop? Any help would be great! Thanks!

  • Direct Rendering doesn't works with radeon

    Hi everybody, I have a Radeon 7000. Then, I want to use the open-source driver. But it doesn't works... [nicolas@SonyVaio ~]$ glxinfo name of display: :0.0 display: :0 screen: 0 direct rendering: No server glx vendor string: SGI server glx version st

  • Ipod touch Safari not syncing Safari bookmarks with my MBP over Mobile me

    Hi - Just got a 16 GB Second Gen iPod Touch yesterday. I also opted to try out the free 60 day trial of Mobile me. For some reason the Safari on my iPod will not sync with and show all of the bookmarks I have on Safari on my MacBook pro. I went back

  • How to I reset a second hand i phone

    I have bought a second hand I Phone 4 and want to know how t reset it and clear all previous data, thanks Mel

  • USkip / uInfo Logging

    Hi there, Question, when using either of these two functions with the JAVA engine, have you been able to get the output to the log file? Where does this info appear. uWarning info does go in, but of course it's coded Yellow and I don't always want th