Letter to be stored in pb30

Dear experts,
                        In dialog pool program, i have created one pdf file when i click on push button it will send mail to the particular applicant mail id, at the same time it has to to be uploaded in pb30(at the right top corner one attachment button) how to do this ,
Can some one give me ideas,
Thanks and Reagards,
Thirukumaran. R

adsf

Similar Messages

  • How to use stored script from with Grid Control 10gR2

    HI
    My backup method uses a stored script in the recovery catalog that is separated from Grid Control's repository database.
    In Scheduled Backup, there is no way to connect to recovery catalog; let alone use stored script. Is that true?
    Thanks,
    Kevin

    it works, here is a test case , I use this functionality a lot
    $connected from HOST
    rman target / catalog <mycatalog>
    connected to target database: TOPAZ (DBID=3348250252)
    connected to recovery catalog database
    RMAN> create script testbackup
    2> {backup current controlfile;
    3> }
    created script testbackup
    RMAN> run {execute script testbackup;}
    executing script: testbackup
    Starting backup at 12-JUN-07
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=217 devtype=DISK
    allocated channel: ORA_DISK_2
    channel ORA_DISK_2: sid=251 devtype=DISK
    allocated channel: ORA_DISK_3
    channel ORA_DISK_3: sid=200 devtype=DISK
    allocated channel: ORA_DISK_4
    channel ORA_DISK_4: sid=337 devtype=DISK
    allocated channel: ORA_DISK_5
    channel ORA_DISK_5: sid=182 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current controlfile in backupset
    channel ORA_DISK_1: starting piece 1 at 12-JUN-07
    channel ORA_DISK_1: finished piece 1 at 12-JUN-07
    piece handle=/rman_backup/d_TOPAZ_s_12344_p_1_t_625077001 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    Finished backup at 12-JUN-07
    Starting Control File and SPFILE Autobackup at 12-JUN-07
    piece handle=/rman_backup/c-3348250252-20070612-06 comment=NONE
    Finished Control File and SPFILE Autobackup at 12-JUN-07
    NOW in grid control I have configured my Recovery catalog settings, check for OS username , that should be owner of oracle home for recover catalog
    I schedule a RMAN backup job with these parameters in script
    {execute script testbackup;}
    Status          Running
         Step ID          203585
         Targets          topaz.ucas.ac.uk
         Started          12-Jun-2007 16:34:56 (UTC+01:00)
         Step Elapsed Time          1 minutes, 37 seconds
         Management Service          stardb1:4889_Management_Service
         TIP      Management Service from which the job step was dispatched.
    Output Log
    Recovery Manager: Release 9.2.0.6.0 - 64bit Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    RMAN>
    connected to target database: TOPAZ (DBID=3348250252)
    RMAN>
    connected to recovery catalog database
    RMAN>
    echo set on
    RMAN> {execute script testbackup;}
    2> exit;
    executing script: testbackup
    Starting backup at 12-JUN-07
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=164 devtype=DISK
    allocated channel: ORA_DISK_2
    channel ORA_DISK_2: sid=134 devtype=DISK
    allocated channel: ORA_DISK_3
    channel ORA_DISK_3: sid=22 devtype=DISK
    allocated channel: ORA_DISK_4
    channel ORA_DISK_4: sid=198 devtype=DISK
    allocated channel: ORA_DISK_5
    channel ORA_DISK_5: sid=145 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    including current controlfile in backupset
    channel ORA_DISK_1: starting piece 1 at 12-JUN-07
    channel ORA_DISK_1: finished piece 1 at 12-JUN-07
    piece handle=/rman_backup/d_TOPAZ_s_12346_p_1_t_625077300 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 12-JUN-07
    Starting Control File and SPFILE Autobackup at 12-JUN-07
    piece handle=/rman_backup/c-3348250252-20070612-07 comment=NONE
    Finished Control File and SPFILE Autobackup at 12-JUN-07
    null

  • Actuate 7 PL/SQL Stored Procedure Call Before the Report Run.

    Hi,
    I need a small help to call a pl sql stored procedure in actuate 7.
    I wrote a code a on component content
    Function runProc(procName as String, connection As AcDBConnection )
    ' Insert your code here
    Dim statement As AcDBStatement
    Dim results as string
    ' Prepare statement
    Set statement = connection.Prepare("BEGIN " & procName & "; END;" )
    If statement Is Nothing Then
    results = "Failed to prepare statement."
    results = results & " " & connection.GetSpecificErrorText( )
    results = results & " " & connection.GetGeneralErrorText( )
    Exit sub
    End If
    ' Execute sprocoutparam
    If statement.Execute() = 0 Then
    results = "Stored procedure " & procName & "execution failed."
    results = results & " " & connection.GetSpecificErrorText( )
    results = results & " " & connection.GetGeneralErrorText( )
    Else
    results = "Stored procedure " & procName & " execution success."
    End if
    ShowFactoryStatus(results)
    End FunctionNow this Code I am calling on the Chart Start Method
    Sub Start( )
        Super::Start( )
        ' Insert your code here
        Dim ProcName as String
        Dim connectionObject As AcDBConnection
        ProcName="DELETECUSTOMER(1234)"
        runProc(ProcName, connectionObject )
    End SubNow when i Run the Report i get this Error !
    NewReportApp::Frame::Chart%Start(9): Invalid procedure reference. - (runProc)
    1 Semantic Error(s) found
    Thanks,
    Asif

    hi,
    Finally Figured Out Here....
    Steps to Call the Stored Procedure In Actuate 7
    1 – Right Click on Content – Frame and go to properties and method Tab.
         1 – Click on New Button to you create own custom method.
         2 – Write the following code :
    Sub runProc(procName as String, connection As AcDBConnection )
         Dim statement As AcDBStatement
         Dim results as string
         Set connection = GetConnection()
         'Prepare statement
         Set statement = connection.Prepare("BEGIN " & procName & "; END;" )
              If statement Is Nothing Then
                   results = "Failed to prepare statement."
                   results = results & " " & connection.GetSpecificErrorText( )
                   results = results & " " & connection.GetGeneralErrorText( )
                   MsgBox "Procedure Not Called....Badddddd"
                   Exit sub
              End If
         ' Execute sprocoutparam
              If statement.Execute() = 0 Then
                   results = "Stored procedure " & procName & "execution failed."
                   results = results & " " & connection.GetSpecificErrorText( )
                   results = results & " " & connection.GetGeneralErrorText( )
                   MsgBox "Procedure Not Called....Badddddd" & results
              Else
                   results = "Stored procedure " & procName & " execution success."
                   MsgBox "Procedure Called....Wowwww"
              End if
              ShowFactoryStatus(results)
    End Sub2 – Now let call the stored procedure before our actual report query runs.
         1 - Right Click on Content – Frame and go to properties and method Tab.
         2 - Select the Start Method and Click on Override button.     
         3 - Write the following code:
    Sub Start( )
         Dim ProcName as String
         Dim connectionObject As AcDBConnection
         Set connectionObject = GetConnection()
         ProcName="XXTEST ()"
         runProc( ProcName, connectionObject )
        Super::Start ( )
    End Sub3 – Now design your report as usual using the Textual Query window.

  • Link to URL from column in report

    I still trying to find a way to display a static file on a report page. I have been unsuccessful with using an HTML region using #APP_IMAGES#filename.sh or using the value found in the coulmn: #APP_IMAGES#&P28_SCRIPT.
    Now, I've added a link on the column of the report. The column itself contains the URL that I want to go to. For ex. http://sharepoint.bankofamerica.com/sites/GIM2000upgrade/Shared%20Documents/Supporting%20Documents/Scripts/ds_broker_gim.sh
    The URL for the Link in the Column Attributes is set to : &SCRIPT_SHAREPOINT_HTML..
    When I click on the column, it brings me to the APEX Logon???
    I've used this URL in a List Template in a Region on a page as the Target URL and it works fine??
    I'm thoroughly confused at this point.
    Can anyone offer any assistance with this? It's driving me crazy and holding up any further development I need to get done????
    Thank-You

    Scott,
    Thanks so much and it would be better just to go to the hosted site that i am prototyping. Sorry for the confusion.
    What I want to do is to drill-down to the unix script file. I have upload the file: ds_broker_gim.sh to Static files. I want to be able to display the contents of this file after the drill-down from the ASE_AUTOSYS table.
    If you logon to my workspace: WIM
    UserName: [email protected]
    Password: ireland
    1. From View Application - select the Application name : CGM
    2. Click on the ASE tab bringing you to p.2
    3. Click on AUTOSYS tab ( Go to p.30)
    4. From the AutoSys Search Select Pulldown - 5. Select 'GIM2_D_DS_CREATEBOKER_UX ' (PS is there a way to do a'smart select to scroll the list as you type?)
    6. Click on the column link in Autosys_Script (it should say' /vol01/apps/gim/scripts/ds_broker_gim.sh'
    7. Click on the AUTOSYUS_SCRIPT column
    8. Brings you to p.28 where I'm various things to get the shared file to display.
    Note: I added the field: SCRIPT_FILE to the table AUTOSYS_SCRIPTS as a CLOB. I thought, well If I can't get it via an URL or as a static document- let me try storing the code in a clob field. As you can see, I'm having no success in displaying the ontents of the static file or contents of the column field.
    Also note that on P.2, I have include the URL in a List Tmplate : 'Document's. When i click on this, it does go to the URL. You won't be able to use this as it is located in our firewall but at least it work but not what I want.
    If you could help me with this, I would be very gratefult to you. I'm ploying away doing this on own and certainly I've got a lot to learn but at the same time I've managed to get quite a bit done.
    Thankks so much for your help. I hope I've explained this better.

  • Dynamically generating and printing output from user input on pdf form

    Hi Everyone,
    I am consider the purchase of of Designer with the hopes of doing something really simple (and hopefully in a simple way)
    I would like to present the user with a form which they will fill out. On clicking a "submit button", I would like to generate a letter and have it print out based on the information provided in this form (note, the user doesn't ever really even need to see the letter).
    Would Designer be able to do something like this? I have been messing around with the trial version, so I am somewhat familiar with the scrip language. For instance, I am at the point where I would be able to get all the information, and generate the letter in HTML stored in a string object. But I wouldn't know what to do with this string to render and print it.
    Thanks!
    - Dave

    I have just downloaded the trial version of Acrobat 7. It appears that if you want to create a new form, it pretty much brings you to Designer... which is really fine by me.
    I appreciate everyone telling me that it is doable, I'm still left with the problem of what I should actually do to do it! =)
    - Dave

  • How to assign a default value on a Tabular Report?

    version 3.2.1
    I have a column in a Tabular Report (SQL Query (updateable report) ) that I would like to default to a value every time that the Add Rows button is clicked. This column needs to have the same value for every row.
    How do I set a default value on the column?
    Thanks,
    Joe

    I've run into the same problem. The 'Default' value isn't even appearing in the form, let alone getting stored.
    I'm not 100% certain (I'm still new to Apex too), but I think that the 'Default Type' and 'Default' value fields of the 'Tabular Form Element' might only apply to new records, ie when using the Tabular Form to create new records.
    In my case, I'm displaying existing records and I've been trying to enter a default new value for a particular field, ie change the value in the field for existing records from null to today's date. I couldn't get it to work and the more I think about it the more I realise that it is probably not the right way to do it.
    One alternative would be to put the SYSDATE into the source SQL (noting that changing an existing tabular form definition would cause an error, so I would have to create a new tabular form). But another (and I think preferable for me) option is to create a trigger that will put the SYSDATE into the field as each record is updated.
    Regards,
    Peter

  • To rollback db adapter in bpel

    Hi all,
    I have designed a bpel(2.0) which has 2 scopes.In scope1 it inserts data into 3 tables.If insertion in any of the table fails the rest should get rolled back.
    I have set the properties:
    <property name="bpel.config.transaction" type="xs:string" many="false">required</property>
    <property name="bpel.config.oneWayDeliveryPolicy" type="xs:string" many="false">sync</property>
    But still not working.I don't want to use compensation handler.And if i throw rollback fault it doesn't continue with second scope.
    Any suggestion would be of great help.
    Thanks in advance

    it inserts data into 3 tables.If insertion in any of the table fails the rest should get rolled back.Such use cases should be handled using DB stored procedure or function. Let the DB stored procedure perform all 3 operations and invoke it from SOA. By this way, you will be making only one call to DB (instead of 3) which will improve the performance and you can handle transaction and atomicity within DB itself.
    Regards,
    Anuj

  • Access rights on external usb drives gets reset.

    Hi!
    I use external usb-drivers for backup. I don´t wont other users on my iMac to access this drives, so I have set the access rights for "Everyone" to *"no access"*.
    This works as intended, for a while... But for no reason what so ever, the access rights get´s reset to *"Read & Write"*. This might happen after a day or two..
    Anyone experienced the same? Anyone know why this happens, and maybe have a solution to this problem?
    Best regards
    Geir.

    Other users on your iMac can easily right-click on the external hard drive icon, get info and check the "Ignore ownership on this volume". Then everyone can read and write on the backup drive which probably isn't what you want. Theoretically, only users with admin rights can check that box, but there's plenty of ways to circumvent this.
    If you want to restrict access more, lauch Disk Utility and create a new Read/Write disk image with encryption on the external drive. This will take some time to create and ask you for a password. I'd recommend a strong password (use the password generator that pops up) and let it be stored in your keychain. This way, Time Machine won't ask you to enter the password to back up or enter time machine. You should write down that password though in case the internal hard drive fails or your home folder (including the keychain) gets corrupted. You will be required to enter the password to do a full restore from Time Machine.
    The downside of this is that the other users of your iMac can't use Time Machine at all.
    Per default, the Time Machine rights are so that you can only access your own home folder plus the shared and public folder (and other non-standard folders within anyone's home folder as it has no specific access rights). Try logging in from another account or the guest account and see if you can access your user account's backup files in, say /Documents. It should deny access and not even reveal the folder's contents.

  • Write access blocked on additional drives

    I recently had an issue with my Mac Pro with Leopard where it was stuck in boot loop. I followed the fix of using the disk utility off the Leopard disk to repair permissions and everything seemed to be fixed. Then, for no reason I can think of, after using Compressor to batch process some audio files and copying them to one of my extra internal drives, I lost my write access for all 3 of my extra internal drives. If I try and copy or delete a file on these drives I am prompted that I do not have sufficient access priviliges and I am ask to authenticate. If I choose to do so, and enter my admin password, I receive another error message stating it could not complete.
    If I check my account for admin rights and read/write access for these drives, I don't see my Account under Get Info. If I try and add myself under the Get Info window nothing happens, the account isn't added.
    I read this discussion but the person really didn't explain what they did to fix the issue:
    http://discussions.apple.com/thread.jspa?threadID=1282290
    I was curious if anyone had a quick to do list ofr getting this problem fixed?
    Cheers,
    -E

    Other users on your iMac can easily right-click on the external hard drive icon, get info and check the "Ignore ownership on this volume". Then everyone can read and write on the backup drive which probably isn't what you want. Theoretically, only users with admin rights can check that box, but there's plenty of ways to circumvent this.
    If you want to restrict access more, lauch Disk Utility and create a new Read/Write disk image with encryption on the external drive. This will take some time to create and ask you for a password. I'd recommend a strong password (use the password generator that pops up) and let it be stored in your keychain. This way, Time Machine won't ask you to enter the password to back up or enter time machine. You should write down that password though in case the internal hard drive fails or your home folder (including the keychain) gets corrupted. You will be required to enter the password to do a full restore from Time Machine.
    The downside of this is that the other users of your iMac can't use Time Machine at all.
    Per default, the Time Machine rights are so that you can only access your own home folder plus the shared and public folder (and other non-standard folders within anyone's home folder as it has no specific access rights). Try logging in from another account or the guest account and see if you can access your user account's backup files in, say /Documents. It should deny access and not even reveal the folder's contents.

  • Forte e-mail integration

    Has anyone successfully integrated an external e-mail system with a
    Forte application?
    If you have, was your solution generic or geared to a specific mail
    system?
    If specific, which mail system(s) and operating system(s)?
    Was the integration between a Forte client and an e-mail client, between
    a mail server and Forte server, or other?
    How were the mail API's accessed? C wrappering? ActiveX/OLE? Sockets?
    Operating system command?
    Systems integrators, if you have experience in this area and are
    interested in providing such a solution, please let me know.
    Thanks in advance
    Mike Nelson, Project Leader
    Metrix, Inc.
    [email protected]
    414-798-8560 x1157

    Mike Nelson wrote:
    Has anyone successfully integrated an external e-mail system with a
    Forte application?Yes.
    If you have, was your solution generic or geared to a specific mail
    system?Two interfaces to specific mail systems. We structured it so that
    "clients" of these interfaces didn't know what system they were using.
    If specific, which mail system(s) and operating system(s)?
    Was the integration between a Forte client and an e-mail client, between
    a mail server and Forte server, or other?
    How were the mail API's accessed? C wrappering? ActiveX/OLE? Sockets?
    Operating system command?We integrated (if you can call it that) with sendmail, and also with Lotus
    Notes.
    For the sendmail "interface", we had a class that created a unix command
    line to call sendmail and email the message. I think we even included the
    message text on the command line. A service object based on this class was
    then partitioned out to a Unix box. It was extremely primitive, but got
    the job done. These messages were just being sent to other groups within
    the company, and were probably processed automatically, so they didn't need
    to look nice.
    Our Lotus Notes interface is much more sophisticated. We use Notes to fax
    or email letters to customers. Letter "templates" are stored in a Notes
    database, and can be "customized" (i.e., the customer's name and address
    are included in the letter).
    We are using both OLE and the Notes C++ API. OLE is only used to "Preview"
    the letter the user wants to send (we call out to Notes using OLE, and tell
    it to open the "template" in the database). It works.
    We use the C++ API to retrieve the list of letters which can be sent, and
    also to send the letters via email or fax (fax is easy, you just send the
    letter to a fax gateway). We do not call directly to the Notes C++ API
    from inside Forte. Instead, we call out to a "wrapper", written in C++,
    which then makes the appropriate API calls. We "extern C"'ed the functions
    in tyhe wrapper so that they could be called from inside Forte.
    Gotchas:
    Calling out to this wrapper works well on NT, so long as you don't try to
    call out from the client partition. We had call out from a service object
    in it's own partition. I never figured out why it wouldn't work from
    inside the client partition, but didn't spend a lot of time on it, since we
    were planning to run on the server anyway for salability reasons.
    However, it didn't work at all on HP UX. It turns out that you can't call
    out from Forte to any C++ code that uses exception handling on HP UX. The
    Notes C++ API uses exception handling, so we were SOL.
    We're probably going to end up running this part of the app on an NT
    server, but might also rewrite the API stuff to use the C API instead
    (although we're are entirely sure that this will work on UNIX either). In
    general, Notes is a pain to use on UNIX. We've had all sorts of problems
    installing it and getting it to work correctly there. NT is much nicer in
    this respect.
    If you want to call out to the Notes API (or any other API, for that
    matter) from inside Forte, do a proof of concept on all platforms you need
    to use (our POC proved it could work on NT, but not HP UX). NT will be
    easy, but expect some headaches on UNIX.
    Dan Becker
    Per-Se Technologies
    [email protected]

  • Partitioning new external hard drive

    My Mini internal hard drive is full (photos, etc.) on both sides - Mac OSX and WinXP Pro. I think I should buy an external hard drive, divide it in two and move all the large files there, leaving the internal hard drive for operating systems, etc. Can someone help??

    WinClone http://www.twocanoes.com can backup Windows to OS X HFS+
    I would say you are past due if you don't have a couple backups already, let alone for storing media files and data, and for a 2nd OS X boot volume.
    OS X can write to NTFS with the use of an NTFS driver (MacFuse; Paragon Software).
    Replace the internal hard drive for a larger drive, also.

  • Fetching more than one row from a table after selecting one value from the dropdown

    Hi Experts,
    How can we fetch more than one row from a table after selecting one value from the dropdown.
    The scenario is that I have some entries in the dropdown like below
      A               B               C        
    11256          VID          911256  
    11256          VID          811256
    11256          SONY      11256
    The 'B' values are there in the dropdown. I have removed the duplicate entries from the dropdown so now the dropdownlist has only two values.for eg- 'VID' and'SONY'. So now, after selecting 'VID' from the dropdown I should get all the 'C' values. After this the "C' values are to be passed to other methods to fetch some data from other tables.
    Request your help on this.
    Thanks,
    Preeetam Narkhede.

    Hi Preetam!
    I hope I understand your request proberly, since this is more about Java and less about WebDynpro, but if I'm wrong, just follow up on this.
    Supposed you have some collection of your original table data stored in variable "origin". Populate a Hashtable using the values from column "B" (let's assume it's Strings) as keys and an ArrayList of whatever "C" is (let's assume String instances, too) as value (there's a lot of ways to iterate over whatever your datasource is, and since we do not know what your datasource is, maybe you'll have to follow another approach to get b and c vaues,but the principle should remain the same):
    // Declare a private variable for your Data at the appropriate place in your code
    private Hashtable temp = new Hashtable<String, ArrayList<String>>();
    // Then, in the method you use to retrieve backend data and populate the dropdown,
    // populate the Hashtable, too
    Iterator<TableData> a = origin.iterator();
    while (a.hasNext()) {
         TableData current = a.next();
         String b = current.getB();
         String c = current.getC();
         ArrayList<String> values = this.temp.get(b);
         if (values == null) {
              values = new ArrayList<String>();
         values.add(c);
         this.temp.put(b, values);
    So after this, you'll have a Hashtable with the B values als keys and collections of C values of this particular B as value:
    VID --> (911256, 811256)
    SONY --> (11256)
    Use
    temp.keySet()
    to populate your dropdown.
    After the user selects an entry from the dropdown (let's say stored in variable selectedB), you will be able to retrieve the collection of c's from your Hashtable
    // In the metod you handle the selection event with, get the c value collection
    //and use it to select from your other table
    ArrayList<String> selectedCs = this.temp.get(selectedB);
    // now iterate over the selectedCs items and use each of these
    //to continue retrieving whatever data you need...
    for (String oneC : selectedCs) {
         // Select Data from backend using oneC in the where-Clause or whatever...
    Hope that helps
    Michael

  • How to Load the Master Data for custom defined Z infoobjects?

    Hi Gurus,
    This is the requirement.
    Some screen enhancements has to be made by adding  new Custom fields( like two text boxes,eg Name and city ) in such a way if we enter data into that text box,that data value for both of the Enhancements has to be stored in some table.If this data is a master data,then how would I pull this master data into BW.
    Please someone throw some light on this problem.
    Lets say a Screen is enhanced with NAME and CITY with text text boxes.Let the user enters the value for NAME and CITY.Let them be stored under two different tables ZTAB1 and ZTAB2.How would I load this master data into custom Defined  Z infoobjects ZNAME AND ZCITY in BW.
    Please help me out.
    Thanks is Advance,
    Regards

    you can by creating generic datasources on thoase tables with Full load or delta.
    if the number entries is less.. you can try full load...
    if it is more... along with required fields...put date also as one fields. which needs to get date of execution of program or date of uploading to Tables. this will be useful build Delta Mechanism.
    all the best.
    Nagesh Ganisetti.

  • I have a TBI. Password security is hard for me. How do I find someonne to let me use my own passwords w/o writing them down or storing them on a computer??

    I have always used the same 3 passwords for everything. 3 are too many for me. I forget them and need to reset. Now, I can no longer use passwords I know and can remember. The new requirements for length, types of characters and stuff is really hard. I came up with a good one, but because it was new, I forgot. Then they say you can't reuse your passwords! Everytime I forget, I have to make-up something new to forget.
    I have a request for reasonable accomodation under the ADA.  I need an exception on my account that will let me use a recent password. I do not mind going through security questions.  I can remember the answers to those!  I am disabled.  I need this assistance for account accessibility.  I do not believe accomodating my problems from traumatic brain injury would be unreasonable.
    Apple can't pay for enough peoople to actually do customer assistance, I guess. They just think we all have the same issues, they've heard it all before, and you can hunt and find your answer.  This forum was all I saw that could lead to human interaction about this.
    I'd also love advice for other popular sites, if you have any.
    I put this under physical and motor skills because my brain has been physically damaged.  Notice they don't even have a category for mental and learning disabilities.
    Sorry for the "rant," but I have cried over my keyboard too many times now. Added to all the other stress of a TBI, now my ability to use the Internet is going down the toilet. It is my only interaction with the world beyond my walls and family.

    This is designed to be a user discussion area. To provide feedback directly to Apple you can go to http://www.apple.com/feedback/
    There are a few applications out now that may be able to help you out. 1Password and LastPass are both password vault or lockers. They allow you to save passwords for applications and websites. That way you have a single password you use to keep the vault/locker secure and then all of your other passwords are stored for you so you don't have to write them down or try to remember them all.
    https://agilebits.com/onepassword
    https://lastpass.com/index.php

  • I changed my email address now the pop up has stored my old email address and won't let me log in

    How do I change mly email address when the log in pop up has my old email address stored and won't let me change it?  I already changed it on my account, but the old address is locked in.

    Welcome to the Apple community.
    Empty your browser cache. In Safari you will find this in the Safari menu.

Maybe you are looking for

  • Using pages to create a two-sided brochure and second page prints upside down!

    When using a pages template to create a two-sided brochure, the second page needs to be reversed (upside down) for correct printing when emailing to an outside printer sources.  How do I reverse the page within the pages app?

  • Stateful Session Bean, After remove is called how do I create a new SFSB?

    The application when is deployed creates a new SFSB, after the remove method is called the SFSB does not exist anymore, also the same happens in a timeout. How do I create a new SFSB without restarting the server? I am using EJB 3.0 I don't understan

  • How to hide the LOGO region in Apex

    We are using apex for interactive reports which we want to to integrate with an exist web front end (wicket based). I want to hide the "LOGO" region as the Wicket Front End already takes care of the LOGO. How do I suppress/hide the LOGO region.

  • Determining the subclass calling the superclass

    Need help with following: If I call a super class method from a sub class, how can the super class (from within the called method) determine which subclass made the call?

  • Sound pasue and mute

    i'm trying to pause and/or mute a sound, with little success. i've found out that something like 'sound.play(pausePosition)' might fail on sound-clips with low sampling-rate. however when i try to mute a sound with a 48000Khz sampling rate it simply