Need to send entire Username

My internet provider just changed and I'm unable to synch it with my Blackberry with POP3.  I can get Outlook to synch using POP3.  The only difference is the "Username".   With Outlook I needed to make it [email protected], but when I set up the BBerry, it automatically truncates it to just xxx.  Is there a way to get it to include the whole thing as my username?  Thanks ...
Message Edited by sflanders on 05-21-2009 07:12 PM
Solved!
Go to Solution.

Try setting it up from a PC via the BIS web interface rather than direct on your BB. Here's some instructions:
http://www.blackberryfaq.com/index.php/Where_can_I_log_into_my_BIS_account%3F
http://www.blackberry.com/btsc/microsites/search.do?cmd=displayKC&docType=kc&externalId=KB10154&slic...
And yes, do remove the personal information...
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • I need to send the output of report as a mial

    hi all,
    how can i send the output of an ALV GRID as a mail ...
    the visibilty of this GRID is good.
    and at the same time if i use the FM 'SO_DOCUMENT_SEND_API1'
    its being sent as an attachment,which i need to send jus a mail...not as an attachment.
    kindly reply me ASAP

    REPORT  YMS_SENDMAILREPORT NO STANDARD PAGE HEADING.
    TABLES: DRAD,
            QINF,
            DRAW,
            SOUC,
            SOFD,
            DRAP.
    DATA: P_RETURN_CODE LIKE SY-SUBRC.
    data: d_username LIKE DRAP-PRNAM.
    * mail declarations
    DATA : BEGIN OF NEW_OBJECT_ID.         " the newly created email object
            INCLUDE STRUCTURE SOODK.
    DATA : END OF NEW_OBJECT_ID.
    DATA : BEGIN OF FOLDER_ID.             " the folder id of the outbox
            INCLUDE STRUCTURE SOODK.
    DATA : END OF FOLDER_ID.
    DATA : BEGIN OF REC_TAB OCCURS 5.     " the table which will contain the
            INCLUDE STRUCTURE SOOS1.       " information on the destination
    DATA : END OF REC_TAB.
    DATA : BEGIN OF OBJECT_HD_CHANGE.      " the table which contains the
            INCLUDE STRUCTURE SOOD1.       " info for the object we will be
    DATA : END OF OBJECT_HD_CHANGE.        " creating
    DATA : OBJECT_TYPE LIKE SOOD-OBJTP.    " the type of object
    DATA : BEGIN OF OBJHEAD OCCURS 5.      " the header of the object
            INCLUDE STRUCTURE SOLI.
    DATA : END OF OBJHEAD.
    DATA : BEGIN OF OBJCONT OCCURS 0.      " the contents of the object
            INCLUDE STRUCTURE SOLI.        " i.e. the text etc
    DATA : END OF OBJCONT.
    DATA : BEGIN OF OBJPARA OCCURS 5.      " formatting options
            INCLUDE STRUCTURE SELC.
    DATA : END OF OBJPARA.
    DATA : BEGIN OF OBJPARB OCCURS 5.      " formatting options
            INCLUDE STRUCTURE SOOP1.
    DATA : END OF OBJPARB.
    DATA : BEGIN OF T_MAIL_TEXT OCCURS 0,  "Message table for messages to
            STRING(255),                   "user via mailbox
           END OF T_MAIL_TEXT.
    Parameter: p_uname like sy-uname.
    **START-OF-SELECTION
    START-OF-SELECTION.
        d_username = p_uname.
        PERFORM POPULATE_EMAIL_TEXT.
        PERFORM SETUP_TRX_AND_RTX_MAILBOXES USING P_RETURN_CODE.
        PERFORM CREATE_AND_SEND_MAIL_OBJECT.
    *       FORM POPULATE_EMAIL_TEXT                                      *
    *       Inserts text for email message                                *
    FORM POPULATE_EMAIL_TEXT.
      CLEAR T_MAIL_TEXT-STRING.            "puts a blank line in
      APPEND T_MAIL_TEXT.
      APPEND T_MAIL_TEXT.
    *  adds failed list  on to end of success list.
      T_MAIL_TEXT-STRING = 'Test email message line 1'.
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = 'Test email message line 1'.
      APPEND T_MAIL_TEXT.
      CLEAR T_MAIL_TEXT-STRING.            "puts a blank line in
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = 'Header1    Header2    Header3'.
      APPEND T_MAIL_TEXT.
      T_MAIL_TEXT-STRING = '------------    ------------    ------------'.
      APPEND T_MAIL_TEXT.
    ENDFORM.
    *&      Form  SETUP_TRX_&_RTX_MAILBOXES
    *   Ensure that the mailboxes of the sender (INTMGR) are set up OK
    FORM SETUP_TRX_AND_RTX_MAILBOXES USING P_RETURN_CODE.
    * get the user no of the sender in order to add the mail to the
    * user name's outbox for future reference
      SELECT SINGLE * FROM SOUC
               WHERE SAPNAM = SY-UNAME.    "SAP name of a SAPoffice user
      IF SY-SUBRC NE 0.
        "Error finding the SAPoffice user info for the user
        MESSAGE E064(ZR53) WITH SY-UNAME.
        P_RETURN_CODE = 1.
        EXIT.
      ENDIF.
    *Get the outbox No for the sender from the user No where the folder
                                           " type is an outbox
      SELECT * FROM SOFD WHERE OWNTP = SOUC-USRTP   "Owner type from ID
                           AND OWNYR = SOUC-USRYR   "Owner year from the ID
                           AND OWNNO = SOUC-USRNO   "Owner number from the I
                           AND FOLRG = 'O'."Output box
      ENDSELECT.
      IF SY-SUBRC NE 0.
        " Error getting folder information for the user
        MESSAGE E065(ZR53) WITH SY-UNAME.
        P_RETURN_CODE = 1.
        EXIT.
      ENDIF.
    ENDFORM.                               " SETUP_TRX_&_RTX_MAILBOXES
    *&      Form  CREATE_AND_SEND_MAIL_OBJECT
    FORM CREATE_AND_SEND_MAIL_OBJECT.
      FOLDER_ID-OBJTP = SOFD-FOLTP.        " the folder type ( usually FOL )
      FOLDER_ID-OBJYR = SOFD-FOLYR.        " the folder year ( usually 22 )
      FOLDER_ID-OBJNO = SOFD-FOLNO.        " the folder no.
      OBJECT_TYPE     = 'RAW'.             " the type of object being added
    * build up the object information for creating the object
      OBJECT_HD_CHANGE-OBJLA  = SY-LANGU.  " the language of the email
      OBJECT_HD_CHANGE-OBJNAM = 'PS to DM Interface'. " the object name
    * mail subject 'Mass Linking of QA, pass/fail'
      MOVE TEXT-002 TO OBJECT_HD_CHANGE-OBJDES.
      OBJECT_HD_CHANGE-DLDAT = SY-DATUM.   " the date of the email
      OBJECT_HD_CHANGE-DLTIM = SY-UZEIT.   " the time of the email
      OBJECT_HD_CHANGE-OBJPRI = '1'.       " the priority ( highest )
      OBJECT_HD_CHANGE-OBJSNS = 'F'.       " the object sensitivity
    * F is functional, C - company sensitive
    * object_hd_change-skips  = ' '.       " Skip first screen
    * object_hd_change-acnam  = 'SM35'.    " Batch imput transaction
    * object_hd_change-vmtyp  = 'T'.       " Transaction type
    * add the text lines into the contents of the email
      CLEAR OBJCONT.
      REFRESH OBJCONT.
    *  free objcont.      " added this to delete the mail contents records
      LOOP AT T_MAIL_TEXT.
        OBJCONT-LINE = T_MAIL_TEXT-STRING.
        APPEND OBJCONT.
      ENDLOOP.
      CLEAR OBJCONT.
    * build up the table of receivers for the email
      REC_TAB-RCDAT = SY-DATUM.            " the date to send the email
      REC_TAB-RCTIM = SY-UZEIT.            " the time to send the email
    * the SAP username of the person who will receive the email
      REC_TAB-RECNAM = D_USERNAME.
    * the user type of the person who will send the email ( USR )
      REC_TAB-SNDTP = SOUC-USRTP.
    * the user year of the person who will send the email ( 22 )
      REC_TAB-SNDYR = SOUC-USRYR.
    * the user number of the person who will send the email
      REC_TAB-SNDNO = SOUC-USRNO.
    * the sap username of the person who will send the email
      REC_TAB-SNDNAM = SY-UNAME.
    * get the user info for the receiver of the document
      SELECT SINGLE * FROM SOUC WHERE SAPNAM = D_USERNAME.
      IF SY-SUBRC NE 0.
        WRITE : / TEXT-001, D_USERNAME.    "usnam.
        EXIT.
      ENDIF.
    * the user number of the person who will receive the email ( USR )
      REC_TAB-RECNO = SOUC-USRNO.
    * the user type of the person who will receive the email ( USR )
      REC_TAB-RECTP = SOUC-USRTP.
    * the user year of the person who will receive the email ( USR )
      REC_TAB-RECYR = SOUC-USRYR.
    * the priority of the email ( highest )
      REC_TAB-SNDPRI = '1'.
    * check for delivery on the email
      REC_TAB-DELIVER = 'X'.
    * send express so recipient knows there is a problem
      REC_TAB-SNDEX = 'X'.
    * check for a return receipt
      REC_TAB-READ = 'X'.
    * the sap username of the person receiving the email
      REC_TAB-ADR_NAME = D_USERNAME.       "usnam.
    * add this receiver to the internal table
      APPEND REC_TAB.
      CLEAR REC_TAB.
    * call the function to create the object in the outbox of the sender
      CALL FUNCTION 'SO_OBJECT_INSERT'
           EXPORTING
                FOLDER_ID                  = FOLDER_ID
                OBJECT_HD_CHANGE           = OBJECT_HD_CHANGE
                OBJECT_TYPE                = OBJECT_TYPE
                OWNER                      = SY-UNAME
           IMPORTING
                OBJECT_ID                  = NEW_OBJECT_ID
           TABLES
                OBJCONT                    = OBJCONT
                OBJHEAD                    = OBJHEAD
                OBJPARA                    = OBJPARA
                OBJPARB                    = OBJPARB
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                DL_NAME_EXIST              = 4
                FOLDER_NOT_EXIST           = 5
                FOLDER_NO_AUTHORIZATION    = 6
                OBJECT_TYPE_NOT_EXIST      = 7
                OPERATION_NO_AUTHORIZATION = 8
                OWNER_NOT_EXIST            = 9
                PARAMETER_ERROR            = 10
                SUBSTITUTE_NOT_ACTIVE      = 11
                SUBSTITUTE_NOT_DEFINED     = 12
                SYSTEM_FAILURE             = 13
                X_ERROR                    = 14
                OTHERS                     = 15.
      IF SY-SUBRC NE 0.
        MESSAGE A063(ZR53) WITH SY-SUBRC.
        EXIT.
      ENDIF.
    * call the function to send the already created email to the receivers
      CALL FUNCTION 'SO_OBJECT_SEND'
           EXPORTING
                FOLDER_ID                  = FOLDER_ID
                OBJECT_ID                  = NEW_OBJECT_ID
                OUTBOX_FLAG                = 'X'
                OWNER                      = SY-UNAME
           TABLES
                RECEIVERS                  = REC_TAB
           EXCEPTIONS
                ACTIVE_USER_NOT_EXIST      = 1
                COMMUNICATION_FAILURE      = 2
                COMPONENT_NOT_AVAILABLE    = 3
                FOLDER_NOT_EXIST           = 4
                FOLDER_NO_AUTHORIZATION    = 5
                FORWARDER_NOT_EXIST        = 6
                NOTE_NOT_EXIST             = 7
                OBJECT_NOT_EXIST           = 8
                OBJECT_NOT_SENT            = 9
                OBJECT_NO_AUTHORIZATION    = 10
                OBJECT_TYPE_NOT_EXIST      = 11
                OPERATION_NO_AUTHORIZATION = 12
                OWNER_NOT_EXIST            = 13
                PARAMETER_ERROR            = 14
                SUBSTITUTE_NOT_ACTIVE      = 15
                SUBSTITUTE_NOT_DEFINED     = 16
                SYSTEM_FAILURE             = 17
                TOO_MUCH_RECEIVERS         = 18
                USER_NOT_EXIST             = 19
                X_ERROR                    = 20
                OTHERS                     = 21.
      IF SY-SUBRC EQ 0.
        MESSAGE I035(ZR53) WITH NEW_OBJECT_ID D_USERNAME. "usnam.
      ELSE.
        MESSAGE I036(ZR53) WITH D_USERNAME."      sy-subrc.
      ENDIF.
    ENDFORM.                               " CREATE_AND_SEND_MAIL_OBJECT

  • All Line Items need to send  in the PO Change EDI IDoC - ORDCHG

    Hi EDI Experts ,
    We have ECC 6.04.
    We are sending PO Change Message Tyep by using Message Type ORDCHG ( Basic Type ORDERS05)
    If PO Changes system trigger IDoc  and in Std IDoc it displays only that Line Item who had been changed .
    Requierment is that  if there is change in any single item, then  sytem should send entire/whole PO document ( all Line Items) .
    I think we need to write some code in teh routine /requierment ...etc.
    Can anyone suggest what I need to do to acehive the above ?
    Thanks
    NAP

    Hello NAP ,
         I have the same problem that you. I ´m using  the message type ORDCHG  with basic type ORDERS05.    when sending change order through Idoc only show me the updete/delete Item in segnment E1EDP01. 
    What object did you use for the message type ORDCHG ?
    What settings should I consider for this?
    Thanks in advance,
    Luis.-

  • Why does the iPhone 4 need to send an SMS to activate FaceTime when the iPad 2 doesn't?

    Hi there.
    I keep wondering why iPhone 4 need to send a international SMS to activate FaceTime when the iPad 2 doesn't?
    It cost's 2,50 dkr ($0.48) every time it does that.
    I have a mobile subscription where i get 5 hours talk time, Free SMS, Free MMS, Free talk to all with same subscription and 5GB data for 129 dkr/month ($24.77).
    But the internation SMS is not free.
    And it really bugs me that my danish iPhone has to send an SMS to England to acticate FaceTime that i only can use on WiFi.
    I also have a iPad 2 (WiFi model), and it can activate FaceTime fine via WiFi. So why can't the iPhone 4 do that?
    I really really need a good explanation to why i have to pay to activate FaceTime.
    Why can't you make local numbers to send the SMS too, or do it via WiFi just like the iPad 2.
    The strangest this is that you have to be on WiFi to use FaceTime, so why use the mobile network to activate FaceTime?

    Where are you, what network are you on and where did you get your phone?
    The fact that it uses SMS isn't really the issue here and no-one on this forum can answer the "why" question. We are end users, not Apple. The accepted answer is if it's going to tie facetime to your phone number (which it does) then that's the way it's got to work.
    The puzzling part is why it would be sending one to England... unless of course, you purchased the phone in the UK and actually live in another region entirely.

  • Sending an username and a password with SSL but without Authentication

    Hi,
    I've read several threads about this topic but I'm still confused. I need to send a login and a password in a more or less secure way (not sending it in the get/post and not using a base64 encoding), but I don't want authentication, just to send the info from the browser to the server without everyone in a firewall/proxy being able to read it. I don't want the popup window annoying the user. Buying a certificate from a certification entity would be the last option.
    Could anyone confirm that is impossible to do without including the authentication?
    Thanks in advance,
    - Juan

    HTTP Authentication works via a glorified GET anyway.
    You can only (generally) send stuff via GET or POST.
    SSL encryption takes place outside (or around) the request and response of HTTP, so using an https URL to a server that supports it will make sure that the data in the request including the name & password are encrypted.
    I don't want the popup window annoying the user. Not that you need a popup... a simple form would do, but you need to get the username from the user somehow. You can't get it from the browser otherwise.
    A certificate is not normally needed on the client side, but it is needed on the server.

  • Sending prixy username and pass

    this code works fine without a proxy, however i can figuer out how to get it to work when behind a proxy, i tried some different things to pass the proxy username and password(the commented out code) but those did work, can anyone help with this? cause im lost as to how to send the proxy credentials to get outside to the net
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class ReadServerFile extends JFrame {
    private JTextField enter;
    private JEditorPane contents;
    public ReadServerFile(){
    super ("Rage");
    System.getProperties().put("proxySet","true");
    System.getProperties().put("proxyPort","80");
    System.getProperties().put("proxyHost","90.8.0.5");
    //need to set the username and password
    //System.setProperty("http.proxyUser","sservices/proglab30");
    //System.setProperty("http.proxyPassword","proglab30");
    //Authenticator.setDefault(new Authenticator()
    // protected PasswordAuthentication getPasswordAuthentication()
    //   return new PasswordAuthentication("proglab30","proglab30".toCharArray());
    Container c = getContentPane();
    enter = new JTextField("http://www.google.com/");
    enter.addActionListener(new ActionListener()
    {public void actionPerformed (ActionEvent e)
    {getThePage(e.getActionCommand());}});
    c.add( enter, BorderLayout.NORTH);
    contents = new JEditorPane();
    contents.setEditable(false);
    contents.addHyperlinkListener(
    new HyperlinkListener(){
    public void hyperlinkUpdate(HyperlinkEvent e)
        if (e.getEventType()==
        HyperlinkEvent.EventType.ACTIVATED)
        getThePage(e.getURL().toString());}});
    c.add(new JScrollPane(contents), BorderLayout.CENTER);
    setSize(400,300);
    show();
    private void getThePage(String location)
    setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    try {
    contents.setPage(location);
    enter.setText(location);
    catch(IOException io)
      JOptionPane.showMessageDialog(this,"Error getting URL","Bad URL",JOptionPane.ERROR_MESSAGE);
    setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    public static void main (String args[])
      ReadServerFile app= new ReadServerFile();
      app.addWindowListener(new WindowAdapter(){
        public void windowClosing(WindowEvent e)
          System.exit(0);
    }

    hi
    Here is an example of a typical WEB.SHOW_DOCUMENT call with a hard-coded URL:
    WEB.SHOW_DOCUMENT ('http://www.oracle.com', '_blank');
    Here is an example of a WEB.SHOW_DOCUMENT call with a hard-coded URL, but
    launched with Java Script. The resulting browser will have its menu,
    toolbar, and status bar hidden:
    WEB.SHOW_DOCUMENT ('javascript:window.open("'TARGET=_blank>
    http://www.startwithoracle.com","", "fullscreen=no,titlebar=no,location=no,
    toolbar=no,menubar=no, status=no,resizable=yes");self.close()','_blank');
    Here is an example of a WEB.SHOW_DOCUMENT call which uses a variable t
    o create the URL. It will be launched with Java Script and the resulting
    browser will have its menu, toolbar, and status bar hidden:
    Declare
    v_URLin varchar2(255);
    v_URLout varchar2(255);
    Begin
    v_URLin := :block.item;
    v_URLout := 'javascript:window.open("'|| v_URLin || '","","fullscreen=no,
    titlebar=no,location=no,toolbar=no,menubar=no, status=no, resizable=yes");self.close()';
    WEB.SHOW_DOCUMENT (v_URLout, '_blank');
    End;
    Rizwan

  • How do i send the username and password to yahoo web page through url

    how do i send the username and password to yahoo web page through url i.e as Query string so that my account in yahoo will open...

    If you don't mind using a library, then download and use the Apache HttpClient library. It takes care of all these details for you.

  • HR: Need to Send the Paysilp as a PDF file through Mail to Employees

    Dear All ,
           Need to Send the Paysilp as a PDF file through Mail to Employees.
           can anyone please suggest any Standard Function Modules which takes the Payslip Form as input and convert it into PDF and can send it through mail to the concern employees.
          Can anyone please explain the procedure in detail.
    Thanks in Advance,
    Regards.

    venu,
    below is code which helps to generate pdf ,,,,hope u know how to use the mail sending function
    data:
    fm_name TYPE RS38L_FNAM, "Smart Forms: FM Name
    sf_name TYPE TDSFNAME
    value 'YOUR_FORM_NAME', "Smart Forms: Form Name
    P_OUTPUT_OPTIONS TYPE SSFCOMPOP,
    P_JOB_OUTPUT_INFO TYPE SSFCRESCL,
    P_CONTROL_PARAMETERS TYPE SSFCTRLOP,
    P_LANGUAGE TYPE SFLANGU value 'E',
    P_E_DEVTYPE TYPE RSPOPTYPE.
    data:
    P_BIN_FILESIZE TYPE I,
    P_BIN_FILE TYPE XSTRING,
    P_OTF type table of ITCOO,
    P_DOCS type table of DOCS,
    P_LINES type table of TLINE,
    name type string,
    path type string,
    fullpath type string,
    filter type string,
    guiobj type ref to cl_gui_frontend_services,
    uact type i,
    filename(128).
    GET SMARTFORM FUNCTION MODULE NAME ---
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = sf_name
    IMPORTING
    FM_NAME = fm_name
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
    EXPORTING
    I_LANGUAGE = P_LANGUAGE
    I_APPLICATION = 'SAPDEFAULT'
    IMPORTING
    E_DEVTYPE = P_E_DEVTYPE.
    P_OUTPUT_OPTIONS-XSFCMODE = 'X'.
    P_OUTPUT_OPTIONS-XSF = SPACE.
    P_OUTPUT_OPTIONS-XDFCMODE = 'X'.
    P_OUTPUT_OPTIONS-XDF = SPACE.
    P_OUTPUT_OPTIONS-TDPRINTER = P_E_DEVTYPE.
    P_CONTROL_PARAMETERS-NO_DIALOG = 'X'.
    P_CONTROL_PARAMETERS-GETOTF = 'X'.
    ****...................................PRINTING.........................
    CALL FUNCTION fm_name
    EXPORTING
    CONTROL_PARAMETERS = P_CONTROL_PARAMETERS
    OUTPUT_OPTIONS = P_OUTPUT_OPTIONS
    (....) <--- your form import parameters
    IMPORTING
    JOB_OUTPUT_INFO = P_JOB_OUTPUT_INFO.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    P_OTF[] = P_JOB_OUTPUT_INFO-OTFDATA.
    ****...................................CONVERT TO PDF...............
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
    IMPORTING
    BIN_FILESIZE = P_BIN_FILESIZE
    TABLES
    OTF = P_OTF
    DOCTAB_ARCHIVE = P_DOCS
    LINES = P_LINES
    EXCEPTIONS
    ERR_CONV_NOT_POSSIBLE = 1
    ERR_OTF_MC_NOENDMARKER = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    now you can mail the pdf.
    Reward points if helpful
    Regards,
    jinesh

  • Have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency     When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.     Do I combine them and then copy

    I have Windows XP and Adobe 9 Reader and need to send a series of large documents to clients as a matter of urgency When I convert 10 pages a MS-Word file to Pdf this results in file of 6.7 MB which can't be emailed.  Do I combine them and then copy to JPEG 2000 or do I have to save each page separately which is very time consuming Please advise me how to reduce the size and send 10 pages plus quickly by Adobe without the huge hassles I am enduring

    What kind of software do you use for the conversion to pdf? Adobe Reader can't create pdf files.

  • TS2755 I used to get iMessages on my iPad 2 and iPhone 4 now it goes to one or the other, not both.  Icloud is not working for this and iMessage texting doesn't work I need to send it as a regular text. How do I fix this issue.

    Icloud doesn't work between my iPad 2 and iPhone 4. And when I try to iMessage from my iphone 4 it doesn't send. I need to send it as a regular text message. Any ideas why they won't sync and iMessage won't send?

    To delete, tap "Edit" (tap to enlarge image)

  • I need to send this email now!

    My story starts wih me trying to scan a picture from the printer to my computer. The printer scans: Photo to email. After ten minutes a new message window pops up with the scanned picture in it. I tried to copy it and paste it into my other email so that I could send it from there and thats when I started having problems. The computer started freezing up with the rainbow swirl. I tried to just send it from the origanal pop up email window, although it kept buffering and wouldn't let me send it. After at least 9 hours now I still can't send it! My computer is not buffering as much after I restarted it, but it still won't send the email with the picture! The email is in is in my outbox and each time I try to send it it just ends up in my outbox again! I've tried this multiple times already! I tried to just send an email to my iPod that just says: "Hi." ,but that won't work either! I need to send the email by the end of today because the contest ends today! It is for an art contest! Please help! I am only thirteen so if you try to explain and help me please don't try to use complicated words!
    Thank you so much!

    Welcome to Apple Support Communities.
    This will take a while to read.
    A very VERY long while.
    That's good, because in the meantime, your computer MIGHT fix itself and the email MIGHT send successfully.
    I know, I know you have this contest deadline...
    I. First things first.
    If there is an adult (parent, grandparent, teacher, nanny, caregiver, or college student) nearby, ask them for help.
    Now.
    Even if they CLAIM to know nothing about computers.
    They probably know a little SOMETHING about computers.
    That might even be helpful.
    Ask them.
    Now.
    II. Second, IF POSSIBLE print this whole message thread before continuing.
    Now.
    WHY?
    At some point you're probably going to turn your computer off, or at least quit the Safari browser app, (the one you're using right now to read this information), and then you won't be able to read these instructions to know what to do next until you turn the computer back on and re-open the Safari browser and return to Apple Support Communities and find this message again.
    If it doesn't print, don't panic.
    If there is another computer or iPad or iPod touch or iPhone or other smartphone nearby, locate this message thread Apple Support Communities in the browser: https://discussions.apple.com/thread/4165033?tstart=0
    If not, don't panic. You will probably be able to print later.
    III. So what is the problem?
    A. The 'rainbow swirl' as you call it (I call it a 'beachball'), most often happens when the computer gets really REALLY low on free RAM memory. RAM is the electronic memory chips located inside your computer. Those computer chips lose all their information when the computer power is turned off, IF the information isn't saved onto the hard disk first.
    To make more RAM memory available the first thing is to quit any other running apps that you don't need right now in your system Dock at the bottom of the screen.
    For example, if you have iChat or iMessage running, and Mail, and iTunes, and Safari, and iPhoto and your printer/scanner app, all you really need in order to scan and send your picture is your printer/scanner app, and Mail. So you can 'quit' all the other apps running.
    Command+click-ing (also known as 'right-clicking' if that option is enabled on your mouse or trackpad) on the running App icon in the dock will bring up the option to Quit.
    If the app is open on your screen, Command+Q will 'Quit' any app. If the app asks if you want to save unsaved information, choose 'Yes' to be certain that you're not deleting important information.
    If an app is 'stuck' (spinning rainbow swirly thing), the option MIGHT be available to 'Force Quit'.
    Quit all the other apps you don't need first.
    Do NOT Force Quit any apps just yet.
    B. It's possible that you are (also) very VERY short of hard disk space. That's the mechanical drive inside your computer that stores your Apps and your music and your pictures and emails and lots of other 'computer stuff' important to how your computer runs, magnetically, so you can bring it back later. It is where your apps are stored and your 'stuff' is saved.
    You think you MIGHT be able to erase some files to make more space available, but that's very VERY risky if you don't know what you're doing, so I don't recommend THAT.
    First, see how much free hard disk space you DO have available. Open Finder (the 'face' icon probably located in the system Dock at the lower left corner of your screen, and click on your hard disk drive name in the upper left column. (It's probably called 'Macintosh HD')
    At the very bottom of the Finder window there should be two numbers, one showing some number of items (not important) and another number showing how much hard disk space is available (important!):
    If you have less that 15.00 GB available, you are very short of hard disk space.
    That makes your system run slow or very slow, and can cause 'rainbow swirls' even if everything else is working correctly. We cannot do much about that right now if you're almost out of hard disk space.
    You will need some adult help to decide what could be erased to make more space available.
    If you share the computer with a parent or sibling, it's very risky to start deleting stuff.
    So don't delete anything now.
    C. It's possible that the file size of your scan exceeds the allowable maximum file size your email account can handle and has things all jammed up. On Hotmail.com, for example, the upper limit is 2.0MB (megabytes). Apple Mail (iCloud, .me or .mac) seem not to have that limitation.
    You said it took '10 minutes' to scan your picture. That sounds like your picture is scanned at a very VERY high resolution: 1200 or 2400 or 4800 or even 9600 dpi (dots per inch).
    That's great for working at home and for retouching photographs and for professional artists, but most likely, it is much MUCH too large to email to your contest.
    300dpi is probably a good maximum number for email. Check the contest instructions. They might want some other smaller number like 72dpi (internet web images) or 96dpi (Windows on-screen displays)
    A high dpi number means the scanned image takes up a LOT of space in RAM memory and when stored on your hard disk.
    That also means that it would take a very VERY long time to send that scanned file in email, although 9 hours is probably way WAY longer than it should take.
    D. READ THIS ONLY IF YOU ARE USING A "DIAL-UP TELEPHONE MODEM" to connect to the Internet.
    (Your adult should be able to help you determine this):
    A dial-up connection typically sends and receives information at up to 56Kbits per second. 
    Most people have something faster today.
    On my DSL internet account (pardon a bit of technical jargon, it's 3.0Mbit downloading (me downloading a music file from iTunes) and 512Kbit uploading (me sending a picture via email), sending one 2.0MB file can take 5 to 15 minutes. Sending the same 2.0GB file on a 56Kbps dial-up modem could easily take almost 10 times longer, or 50 minutes, up to maybe 2.5 hours. But that's still nowhere close to 9 hours.
    IV. OK. Got it. But my computer is still sitting there with spinning rainbow swirlies, and I have this contest deadline quickly approaching...
    What do I do to SOLVE this problem and get my picture emailed today???
    A. You've 'Quit' every unnecessary application?
    The only ones left should be the printer/scanner app, and Mail.
    Sometimes, that frees enough memory for things to begin working 'normally' again.
    So,while reading all of this, has your spinning rainbow swirly stopped and the computer returned to somewhat 'normal' function?
    YES - Check your Mail, Sent folder to see that your message finally got sent.
    Is your message with the picture in there?
    YES - Great. Problem solved. Have a great day. And next time, don't wait until the last minute to submit contest entries!
    NO? Check Mail, Outbox folder (Outbox is only visible and has a number showing IF there is something in the process of being sent, but not completed yet.)
    Is it in the Outbox?
    YES - It could be 'stuck'. You'll probably have to Force Quit the Mail program. That still MIGHT NOT clear your 'stuck' email with the email provider program though.
    B. Were you able to Force Quit all remaining programs?
    YES - Great. Now it's time to click , Restart.
    That will clear memory and reset things to get ready to try again.
    NO - If Force Quit doesn't work, then it's time for more drastic action:
    C. It's time turn the computer OFF.
    Why?
    Because there's likely other no way available to you to 'fix' what's still 'stuck'.
    WARNING: Turning the computer OFF shuts down EVERYTHING, and throws away ALL unsaved information in all apps that are still running but 'stuck'.
    THAT DOES SOUND DRASTIC!!!
    It is. But you have this contest deadline...
    D. If the adult you have nearby is NOT comfortable with you doing this, then STOP!!!
    You're going to miss your contest deadline.
    It isn't the end of the world.
    You're thirteen.
    There will be other contests and other opportunities.
    You're done until someone who IS comfortable helping you is there with you.
    Sorry.
    E. With your Adult's permission to turn off the computer, and with them standing or sitting next to you, hold down the computer power button for up to 10 seconds, until the computer screen goes black and the computer shuts off completely.
    WHEW!
    Take a deep breath.
    Tell your adult to start breathing again, too.
    (Blue adults passed out on the floor from a lack of oxygen aren't nearly as helpful as breathing ones.)
    V. OK. Now what? I still have this contest deadline and now I have XX minutes less because I've been following your long drawn-out instructions.
    HELP!
    A. Turn the computer back on.
    B. Wait for everything to come back up, and then log back in as you usually do.
    C. If you have a lot of programs set to start automatically, like iMessage or FaceTime or iChat or Safari or Mail...
    Use Command+Q to 'Quit' all of them NOW.
    Why?
    They all take available memory from the two programs you probably REALLY need at this point:
    1. Your printer/scanner and
    2. Mail, and
    3. maybe Safari, if you need to refer to these instructions again. Now you should be able to PRINT them, if you couldn't do that before
    If Safari normally opens with a WHOLE BUNCH (3 or more) of Tabs opening things like Twitter and Facebook and Instagram and Google and...
    Close EVERY open Safari tab except 1.
    D. Next, check to see if your printer/scanner app has saved your previous scan.
    I can't tell you how to do this, because I don't know what software you're running. Sorry.
    E. If you KNOW the filename**, locate your saved scanned image and open it using Preview and refer to the ADDENDUM below
    F. If you DON'T KNOW the filename, try re-opening the printer/scanner app.
    G. If you CAN'T FIND the file in three minutes or less, it's probably quicker to re-scan your picture than to spend more minutes looking for the last scan.
    H. Use your printer/scanner software to scan the file AT 300 dpi
    AND
    I. SAVE THE FILE TO YOUR DESKTOP, because it's MUCH easier and MUCH FASTER to find a new scan at the right resolution saved to your desktop than to 'fix' some huge image saved at the wrong resolution* in some file directory called My Computer/My Documents/My Printer/My Scanner/My Scanner App/2012/Aug/1/jpg/miscellaneous/Image_2952.png
    J. Don't let the scanner program TRY to automatically send it via email again.
    Do it yourself:
    K. Open Mail (assuming it's all set up). If not, open Safari, and navigate to your email site like Yahoo, Hotmail, GMail...)
    L. Select New Message or equivalent
    M. Enter the email address you're sending your contest entry to.
    N. Enter the Subject name the contest rules tell you to use.
    O. Enter all the information you're required to submit for the contest.
    P. NOW, attach the scanned image you just saved
    Q. You saved the scan to the Desktop.
    W. You might need to click Desktop icon in the left column to get the list.
    X. Click on your image filename and click the blue Choose File button to attach it.
    Y. Double-check everything to be certain you've included all the needed information AND your scanned picture.
    Z. Click 'Send'
    Check to be sure the message goes. On my MacBook, I hear the 'jet flyover' sound when mail goes out successfully.
    You can start breathing again.
    (And nearby your Adult helper can too.)
    You're welcome!
    ADDENDUM:
    ** THE "YES, I DO KNOW THE FILENAME AND DID FIND THE FILE AND OPENED IT WITH Preview..." instructions
    THIS is how to 'FIX' your huge picture file scan so it will be smaller, and send faster, and not get 'stuck' because your email account cannot handle a huge file, so 'OK, I'M REALLY DESPERATE HERE', BUT LIKELY TO CAUSE A LOWER-QUALITY IMAGE:
    A. Find the scanned filename in Finder.
    B. Double click on the filename.
    C. That should automatically open the file in Preview.
    D. Select Tools, Adjust Size.
    E. Scroll down to the bottom of the menu and select the Fit Into to largest size image available.
    On my computer it is 1920 x 1280 pixels.
    F. Now set the Resolution to 300 dpi.
    You'll have to type in the numbers.
    G. At the bottom left of the Resulting Size box, you should see two numbers, the 'was   MB' (original scan file size to the right), and the new   KB to the left, in both pixels and KB/MB.
    H. Your goal is to adjust the size to make the new resulting file size listed at the bottom left about 1.0MB or LESS. In my example, I reduced a 5.7MB photograph to 615KB (nearly a 90% reduction in file size, but with some loss of image quality).
    I. Then, click the OK button to make the change.
    J. Now in the top menubar, click File, Save As. That saves your changes, but still keeps the original file unchanged, so you can go back to it and try resizing it again without scanning it again, if you don't like the results.
    K. Now another screen pops up, asking you the name of the file
    L. Add 'resized' to the name of your file, so you know which one is the original and which has been changed.
    M. Notice that there is a slider labeled Quality.  Right now, it is probably about 3/4 of the way to the right.
    Sliding it all the way to the right will increase quality AND increase the file size.
    N. Try moving the slider to the right, and release it to see the change in file size.
    O. Remember, our ultimate goal is a modified scan file SMALLER THAN 2.0MB.
    P. When you're satisifed with the file size and the quality slider, click the blue Save button.
    Q. Now, try emailing the 'filename'-resized image you just saved.

  • What information do I need to send in my IPod touch to be replaced and how do i get the box to ship it in

    What info do i need to send in my ipod touch to be replaced (i still have the 1 year warranty) and how do i get the box to ship it in also I have no clue what the address is please help

    The instructions on how to obtain warranty work is covered here:
    Apple - Support - iPod - Service FAQ

  • I need to send my iphone in for a repair, a box to do so was sent to me but it has expired, how do i request a new one or at least the sticker?

    I need to send my iphone in for a repair, a box to do so was sent to me but it has expired, how do i request a new one or at least the sticker?

    Repeat the process you used to obtain the first box.

  • InDesign CC no longer packages fonts when I need to send a project to the printer

      Hey Adobe team: Long-time user from when Photoshop was but a sprout. I recently upgraded from Creative Suite 6 to Creative Cloud and have run into a troubling problem. InDesign CC no longer packages fonts when I need to send a project to the printer. This meant that I had to completely redo a project on deadline for a problem that I’ve never had before. How is this possibly helping your users? And is there a solution in the works or do I need to cancel Creative Cloud and go back to CS6?

    @OurPlace
    First of all, you are not addressing any Adobe team. These forums are primarily supported by volunteers who are not Adobe employees and don't officially represent Adobe Technical Support.
    That having been said ...
    There was nothing done specifically with InDesign 9 or 10 (the CC and CC 2014) versions of InDesign to change or disable packaging of fonts when packaging a document. It should be absolutely no different from InDesign 8 (the CS6 version).
    Troubleshooting hints:
    (1)     Make sure you check the Copy Fonts (Except CJK and TypeKit) option in the package dialog.
    (2)     Make sure that you are not using any CJK (Chinese, Japanese, and Korean) complex fonts that we specifically will never put into a package.
    (3)     TypeKit fonts won't package.
    (4)     Make sure that your file system permissions are such that InDesign can create all the necessary directories and subdirectories for the packaging operation.
    (5)     If on MacOS, exit InDesign and try forcing a clearing of your system font cache and then reboot.
    (6)     Exit InDesign and then find and delete all files on your system with filenames of the form AdobeFnt##.lst where ## is a two digit number; don't delete any other files that start with AdobeFnt. Then reboot and restart InDesign.
    (7)     Reset InDesign's preferences that may have become corrupted. For Windows, start InDesign, and then press Shift+Ctrl+Alt. Click Yes when asked if you want to delete preference files. For MacOS, while pressing Shift+Option+Command+Control, start InDesign. Click Yes when asked if you want to delete preference files.
    One of these should either address or resolve your problem. Again, we at Adobe are not aware of any generic issue with packing fonts with InDesign.
              - Dov

  • I am looking for an simple app to do invoices. I only need to send around 6 invoices per week and they are usually paid by cheque. I need to be able to tick these as paid and keep a list of unpaid invoices so I can send reminders. Any suggestions please?

    I am looking for an simple app to do invoices. I only need to send around 6 invoices per week and they are usually paid by cheque. I need to be able to tick these as paid and keep a list of unpaid invoices so I can send reminders. Any suggestions please?

    I am looking for an simple app to do invoices. I only need to send around 6 invoices per week and they are usually paid by cheque. I need to be able to tick these as paid and keep a list of unpaid invoices so I can send reminders. Any suggestions please?

Maybe you are looking for

  • BAPI_PO_CHANGE Sub-contracting PO

    Hello experts, we are using BAPI_PO_CHANGE to change the Item Category of a material in a purchase order to L (sub-contracting) when we do we receive the error message in the BAPI u201CNot possible to determine any componentsu201D due to the fact the

  • Can't use Terminus font

    I'm trying to change Awesome's font to Terminus, but it just shows the sans font instead. I've installed terminus-font and added the directory containing its files in my fontpath through .xinitrc: xset +fp /usr/share/fonts/local xset fp rehash I then

  • Aperture won't locate referenced files

    I get I dialoge box that says there are no referenced files associated with this picure but I spotlight finds it in a split second. Half of my pictures look blank after importing my Apeture library into my new iMac. Any suggestions would be deeply ap

  • What is a facility number in ABAP HR.

    what is a facility number in ABAP HR. - please let me know the business definition.

  • Extra bars in score set -- looks like a bug

    I've been working on some tunes and wanted to display both the bass track and the track with lyrics. Logic Pro 8 seems to have some trouble with this. A bug seems to add additional portions of a bar. Check out this screen shot and note the extra bar