Business Connector email listener: some mails are processed twice

Hi,
we set up an email listener in Business Connector Administration to receive small xml orders via mail. The listener works fine. The xml files are transferred to the flow service specified in the mail subject. So most of the time we don't have any problems. But once in a month or so one of these orders (maybe sometimes some more) is processed twice. And it's processed simultaneously. The flow service seems to be called two times at the same time. We log every step in the flow service and they occur twice in the logfiles. Sometimes even with the same log index. When this error happens it always happens for the first order of the day. But it doesn't happen every day. So it's quite strange.
What could be the reason for this? Do you have any ideas?
Regards,
Robert

These are the settings:
Send reply email with service output..........................................No
Send reply email on error..........................................................No
Delete valid messages (IMAP only)............................................Yes
Delete invalid messages (IMAP only)..........................................No
Reprocess invalid messages (IMAP only)...................................Yes
Set processed messages to be unseen (IMAP only)....................Yes
Multithreaded processing (IMAP only).........................................No
Number of threads if multithreading turned on...............................0
Invoke service for each part of multipart message.........................Yes
Include email headers when passing message to content handler..No
Email body contains URL encoded input parameters....................Yes
Are there any differences for the listener whether the messages in the mailbox are unseen or not? Even if this can't be the problem if the messages are set to unseen after it has been processed.
The 10 second interval was requested in this case but I guess we will increase it a little bit. Just to be sure. Even if this in my opinion can't explain the simultaneous processing logs for the same message. Well, at least I wasn't able to reproduce the error.
There aren't two listeners for the same mail user but in fact there are some strange listeners. I'll check them to be sure that there are really not two listeners doing the same thing.
Thanks so far,
Robert

Similar Messages

  • Some mails are not collected by Thunderbird

    Hi,
    I am facing a very strange behavior with Thunderbird (v 24.3.0) . I am in POP3. I have configured all my mails readers (actually my PC and my Android Smartphone) to leave the messages on the server.
    My Smartphone is configured to remove the mail from the server when I delete it on the phone.
    When I retrieve the mails on my computer, using Thunderbird, I get most of the mails, but not all of them.
    The missing ones are not arriving in a junk folder, this looks like they are simply not collected from the server. How is this possible ?
    I can see the mails are still on the server, but they are not grabbed by Thunderbird ... even if I forced them unread on the server.
    This is really a problem as my computer is the golden depository for my mails so if some are missing this is definitely bad :-(
    Have any of you already faced this issue ?
    How could I debug this ?
    thanks in advanced for your help.

    my first suggestion would be turn off the phone and see if the issue continues.

  • Since moving from POP to Imap, my send mail are shown twice

    HI,
    I have an hotmail account which I changed from Pop to Imap. Receiving, deleting and archiving mail work fine. But the send box in TB shows my mails twice. However mails which I send from outlook on line are shown only once.
    Is it so that by having twice my send mails is taking twice the size? How can I make it back to normal?
    Note that the addressees receive my mails normally , e.g. once . I have checked the account settings but did not find anything strange.
    In going server : imap-mail.outlook.com
    Out going server : smtp-mail.outlook.com
    Thanks in advance for your support.

    Hotmail/live/outlook.com accounts automatically copy a sent message to the Sent folder, so to avoid duplicates, uncheck "Place a copy in" under Tools/Account Settings/<i>hotmailaccount</i>/Copies & Folders.

  • Want to Send smartform as pdf attachment with a Email to some mail id

    Hi ,
    I want to send a smartform as a PDF attachment with a mail to a mail id. And I can send a mail with the PDF attachment.
    But I am not able to open the PDF. It is throwing some error (Adobe reader could not open u2018fileu2019 because it is either not a supported file type or because the file has been damaged (for example , it was sent as an email attachment and was not correctly decoded)).
    By debugging I come to know that the file which is generating is in some encoding format.
    Please help me regard this. This is very urgent.
    here is the code,
    Main Program :
    REPORT Ztest_report.
    *--Top Include for Global Data Declarations.
    INCLUDE ztest_report_top.
    *--Form Include for Form Routines.
    INCLUDE ztest_report_form.
    START-OF-SELECTION.
    START-OF-SELECTION.
    *--Display data
      Perform display_data.
    END-OF-SELECTION.
    Top declaration :
    Internal table
    DATA :  i_otfdata TYPE tsfotf,          " Smart Forms: Table OTF
            i_tline TYPE TABLE OF tline WITH HEADER LINE,
            i_receivers TYPE TABLE OF somlreci1 WITH HEADER LINE,
            i_record LIKE solisti1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
            i_objpack LIKE sopcklsti1 OCCURS 0 WITH HEADER LINE,
            i_objtxt LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            i_objbin LIKE solisti1 OCCURS 0 WITH HEADER LINE,
            i_reclist LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
            w_mailaddr TYPE ppfdmailad,
            w_mailtype TYPE so_escape,
            w_mailrecipient TYPE swotobjid,
            w_control TYPE ssfctrlop,
            w_compop TYPE ssfcompop,
            w_return TYPE ssfcrescl,
            wa_doc_chng TYPE sodocchgi1,
            w_data TYPE sodocchgi1,
            wa_buffer TYPE string, "To convert from 132 to 255
            wa_objhead TYPE soli_tab,
    Variables declarations
            v_form_name TYPE rs38l_fnam,
            v_len_in LIKE sood-objlen,
            v_len_out LIKE sood-objlen,
            v_len_outn TYPE i,
            v_lines_txt TYPE i,
            v_lines_bin TYPE i.
    Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-009.
    PARAMETER:      p_bukrs TYPE bukrs OBLIGATORY,            "Company Code
                    p_belnr TYPE belnr_d OBLIGATORY,          "Document No
                    p_gjahr TYPE gjahr OBLIGATORY,            "document type
                    p_mailid(50) TYPE c OBLIGATORY.
    "Mail Id
    SELECTION-SCREEN END OF BLOCK blk1.
    Form Logic :
    FORM display_data.
    *Local Variable declaration
      DATA: lc_fm TYPE rs38l_fnam,       "local variable to store the
            l_i_document_output_info TYPE ssfcrespd,
            l_i_struc_job_output_info TYPE ssfcrescl,
            l_i_struc_job_output_options TYPE ssfcrescl,
            i_lines TYPE TABLE OF tline WITH HEADER LINE,
            lv_job_output_info      TYPE ssfcrescl,
            lv_document_output_info TYPE ssfcrespd,
            lv_job_output_options   TYPE ssfcresop,
            lv_bin_filesize         LIKE sood-objlen.
    Determine the smartform name
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
                formname           = 'ZTEST_SMARTFORM'
           IMPORTING
                fm_name            = lc_fm
           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.
      w_control-getotf = 'X'.
      w_control-no_dialog = 'X'.
      w_control-preview = space.
    w_control-device = 'MAIL'.
    Call the smartform and pass the selection screen parameter
      CALL FUNCTION lc_fm
           EXPORTING
                control_parameters = w_control
                output_options     = w_compop
                user_settings      = 'X'
                t_bukrs            = p_bukrs
                t_belnr            = p_belnr
                t_gjahr            = p_gjahr
           IMPORTING
                job_output_info    = l_i_struc_job_output_info
           EXCEPTIONS
                formatting_error   = 1
                internal_error     = 2
                send_error         = 3
                user_canceled      = 4
                OTHERS             = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Moving the Smart Forms: Table OTF into an internal table
      i_otfdata[] = l_i_struc_job_output_info-otfdata[].
    CONVERT TO OTF TO PDF.
      CALL FUNCTION 'CONVERT_OTF'
           EXPORTING
                format                = 'PDF'
                max_linewidth         = 132
           IMPORTING
                bin_filesize          = lv_bin_filesize
           TABLES
                otf                   = i_otfdata
                lines                 = i_lines
           EXCEPTIONS
                err_max_linewidth     = 1
                err_format            = 2
                err_conv_not_possible = 3
                err_bad_otf           = 4
                OTHERS                = 5.
    IF sy-batch EQ l_c_no.
    To directly view the print-preview in PDF format
      CALL FUNCTION 'SSFCOMP_PDF_PREVIEW'
           EXPORTING
                i_otf                    = i_otfdata
           EXCEPTIONS
                convert_otf_to_pdf_error = 1
                cntl_error               = 2
                OTHERS                   = 3.
    For Sending the PDF file to a Mail ID.
    LOOP AT i_lines.
       TRANSLATE i_lines USING '~'.
       CONCATENATE wa_buffer i_lines INTO wa_buffer.
    ENDLOOP.
    TRANSLATE wa_buffer USING '~'.
    DO.
       i_record = wa_buffer.
       APPEND i_record.
       SHIFT wa_buffer LEFT BY 255 PLACES.
       IF wa_buffer IS INITIAL.
         EXIT.
       ENDIF.
    ENDDO.
      DATA: BEGIN OF zlines OCCURS 0,
      tline TYPE char255,
      END OF zlines.
    *Change the PDF format from 132 to 255.
      CALL FUNCTION 'SX_TABLE_LINE_WIDTH_CHANGE'
           EXPORTING
                transfer_bin                = 'X'
           TABLES
                content_in                  = i_lines
                content_out                 = zlines
           EXCEPTIONS
                err_line_width_src_too_long = 1
                err_line_width_dst_too_long = 2
                err_conv_failed             = 3
                OTHERS                      = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
        WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Attachment
      REFRESH: i_reclist,
      i_objtxt,
      i_objbin,
      i_objpack.
      CLEAR wa_objhead.
      i_objbin[] = zlines[].
    Create Message Body Title and Description
      i_objtxt = 'test with pdf-Attachment!'.
      APPEND i_objtxt.
      DESCRIBE TABLE i_objtxt LINES v_lines_txt.
      READ TABLE i_objtxt INDEX v_lines_txt.
      wa_doc_chng-obj_name = 'smartform'.
      wa_doc_chng-expiry_dat = sy-datum + 10.
      wa_doc_chng-obj_descr = 'smartform'.
      wa_doc_chng-sensitivty = 'F'.
      wa_doc_chng-doc_size = v_lines_txt * 255.
    Main Text
      CLEAR i_objpack-transf_bin.
      i_objpack-head_start = 1.
      i_objpack-head_num = 1.
      i_objpack-body_start = 2.
      i_objpack-body_num = v_lines_txt.
      i_objpack-doc_type = 'RAW'.
      APPEND i_objpack.
    Attachment (pdf-Attachment)
      i_objpack-transf_bin = 'X'.
      i_objpack-head_start = 1.
      i_objpack-head_num = 1.
      i_objpack-body_start = 2.
    I_OBJPACK-DOC_TYPE = 'RAW'.
      DESCRIBE TABLE i_objbin LINES v_lines_bin.
      READ TABLE i_objbin INDEX v_lines_bin.
      i_objpack-doc_size = v_lines_bin * 255 .
      i_objpack-body_num = v_lines_bin.
      i_objpack-doc_type = 'PDF'.
      i_objpack-obj_name = 'smart'.
      i_objpack-obj_descr = 'test'.
      APPEND i_objpack.
      CLEAR i_reclist.
      i_reclist-receiver = p_mailid.
      i_reclist-rec_type = 'U'.
      APPEND i_reclist.
    Send new document with attachments via RFC
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                document_data              = wa_doc_chng
                put_in_outbox              = 'X'
                commit_work                = 'X'
           TABLES
                packing_list               = i_objpack
                object_header              = wa_objhead
                contents_bin               = i_objbin
                contents_txt               = i_objtxt
                receivers                  = i_reclist
           EXCEPTIONS
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                OTHERS                     = 8.
      IF sy-subrc <> 0.
        WRITE:/ 'Error When Sending the File', sy-subrc.
      ELSE.
        WRITE:/ 'Mail sent'.
      ENDIF.
    ENDFORM.                    " display_data

    hi,
    i wrote a programm.for me it is working.i think it will help for u.
    DATA: t_otfdata TYPE ssfcrescl,
          t_lines LIKE tline OCCURS 0 WITH HEADER LINE,
          t_otf TYPE itcoo OCCURS 0 WITH HEADER LINE,
          t_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    Objects to send mail.
    DATA:T_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
         T_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE.
    DATA: w_filesize TYPE i,
          w_bin_filesize TYPE i,
          wa_ctrlop TYPE ssfctrlop,
          wa_outopt TYPE ssfcompop,
          WA_BUFFER TYPE STRING,          "To convert from 132 to 255
          WA_OBJHEAD TYPE SOLI_TAB,
          WA_DOC_CHNG TYPE SODOCCHGI1,
          W_DATA TYPE SODOCCHGI1.
    DATA: form_name TYPE rs38l_fnam,
          V_LINES_TXT TYPE I,
          V_LINES_BIN TYPE I,
          nast-spras type sy-langu value 'DE'.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME                 = 'ZSR_DEMO1'
      VARIANT                  = ' '
      DIRECT_CALL              = ' '
    IMPORTING
       FM_NAME                  = form_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.
    wa_ctrlop-LANGU = nast-spras.
    wa_ctrlop-getotf = 'X'.
    wa_ctrlop-no_dialog = 'X'.
    wa_outopt-tdnoprev = 'X'.
    CALL FUNCTION form_name
      EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
       CONTROL_PARAMETERS         = wa_ctrlop
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
       OUTPUT_OPTIONS             = wa_outopt
       USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
       JOB_OUTPUT_INFO            = t_otfdata
      JOB_OUTPUT_OPTIONS         =
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    t_otf[] = t_otfdata-otfdata[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
       FORMAT                      = 'PDF'
       MAX_LINEWIDTH               = 132
      ARCHIVE_INDEX               = ' '
      COPYNUMBER                  = 0
      ASCII_BIDI_VIS2LOG          = ' '
      PDF_DELETE_OTFTAB           = ' '
    IMPORTING
       BIN_FILESIZE                = w_bin_filesize
      BIN_FILE                    =
      TABLES
        OTF                         = t_otf
        LINES                       = t_lines
    EXCEPTIONS
       ERR_MAX_LINEWIDTH           = 1
       ERR_FORMAT                  = 2
       ERR_CONV_NOT_POSSIBLE       = 3
       ERR_BAD_OTF                 = 4
       OTHERS                      = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    loop at t_lines.
    TRANSLATE t_lines USING '~'.
      CONCATENATE WA_BUFFER T_LINES INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
      t_RECORD = WA_BUFFER.
      APPEND t_RECORD.
      SHIFT WA_BUFFER LEFT BY 255 PLACES.
      IF WA_BUFFER IS INITIAL.
        EXIT.
      ENDIF.
    ENDDO.
    Attachment
    REFRESH: T_RECLIST,
    T_OBJTXT,
    T_OBJBIN,
    T_OBJPACK.
    CLEAR WA_OBJHEAD.
    T_OBJBIN[] = T_RECORD[].
    Create Message Body Title and Description
    T_OBJTXT = 'test with pdf-Attachment!'.
    APPEND T_OBJTXT.
    DESCRIBE TABLE T_OBJTXT LINES V_LINES_TXT.
    READ TABLE T_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR T_OBJPACK-TRANSF_BIN.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    T_OBJPACK-BODY_NUM = V_LINES_TXT.
    T_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND T_OBJPACK.
    Attachment (pdf-Attachment)
    T_OBJPACK-TRANSF_BIN = 'X'.
    T_OBJPACK-HEAD_START = 1.
    T_OBJPACK-HEAD_NUM = 0.
    T_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE T_OBJBIN LINES V_LINES_BIN.
    READ TABLE T_OBJBIN INDEX V_LINES_BIN.
    T_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    T_OBJPACK-BODY_NUM = V_LINES_BIN.
    T_OBJPACK-DOC_TYPE = 'PDF'.
    T_OBJPACK-OBJ_NAME = 'smart'.
    T_OBJPACK-OBJ_DESCR = 'test'.
    APPEND T_OBJPACK.
    CLEAR T_RECLIST.
    T_RECLIST-RECEIVER = 'mail id'.
    T_RECLIST-REC_TYPE = 'U'.
    APPEND T_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
      EXPORTING
        DOCUMENT_DATA              = WA_DOC_CHNG
        PUT_IN_OUTBOX              = 'X'
        COMMIT_WORK                = 'X'
      TABLES
        PACKING_LIST               = T_OBJPACK
        OBJECT_HEADER              = WA_OBJHEAD
        CONTENTS_BIN               = T_OBJBIN
        CONTENTS_TXT               = T_OBJTXT
        RECEIVERS                  = T_RECLIST
      EXCEPTIONS
        TOO_MANY_RECEIVERS         = 1
        DOCUMENT_NOT_SENT          = 2
        DOCUMENT_TYPE_NOT_EXIST    = 3
        OPERATION_NO_AUTHORIZATION = 4
        PARAMETER_ERROR            = 5
        X_ERROR                    = 6
        ENQUEUE_ERROR              = 7
        OTHERS                     = 8.
    IF SY-SUBRC <> 0.
      WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
      WRITE:/ 'Mail sent'.
    ENDIF.
    please reward me if helpful.

  • Mail continually re-downloading emails, and some mails have incorrect dates

    I've been having this issue for a few weeks now. This is only happening on my .Mac account (I have other IMAP accts and they work fine).
    Every so often, Mail decides to re-download all of my emails. And recently, mail completely bugged out and changed the sent date of large portion of my old sent emails to the 23rd of April. So now emails that I sent a long time ago, are all showing up as being sent this week!
    I've tried rebuilding the mailbox etc. No change. Any ideas?
    Thanks.

    I used to find this happening with older version of OSX after I did my usual 6 month clean, wipe, re-install and resume.
    It's possible that the file which keeps a track of message downloaded from the server is corrupt. Goto ~/Library/Mail where "~" is your home folder and then delete these files
    Envelope Index
    LSMMap2
    DefaultCounts
    Next goto each account ".mbox"
    This is in ~/Library/Mail then a folder which contains your email address example "Mac-steve.jobs"
    inside there should be a folder list something similar to this:
    Junk.imapmbox
    Sent Messages.imapmbox
    INBOX.imapmbox
    Drafts.imapmbox
    Deleted Messages.imapmbox
    Inside each of them is a folder, called "Messages" and also some files, delete the files but not the "Messages" folder.
    When you reopen Mail it will be as if you opened it for the first time. See if the emails come in, if they do then it's more likely to be a setting in Mail or even possibly something that's happening at the remote email server.
    In Mail Right or Control Click in the left hand panel and select "Get Info" a box will come up with a drop down selection at the top showing active email accounts, select the one you are having problems with, either a list of folders will come up or a big long list of email messages, depending on how many you have will depend on how long it takes for the list to update. Once it has, select all the emails and Select "Remove From Server" this will delete them all from the server so at least when you re-open Mail they don't all come in again.
    Hope something in here helps
    Mark

  • Some mails are not arrive in my inbox

    I forward all my mails to my icloud, so i am using only icloud anymore,
    but now i discoverd that i dont receive a newsletter from a friend, it goes to my googlemail but not further to my icloud me adress, also my girlfriend, we tried with her icloud adress and it didnt arrive
    did anybody else discovered such kind of problems,
    of course its also not in spam not in junk not by rules, also in my fathers me adress it is not arriving
    so it must be an me.com issue.
    thanks for help

    Hello Acer-Tommy, This looks like a very common issue with most of the Acer laptops. It is not that all the Acer laptops having the keyboard issue have problems with the same keys. But this is a huge problem!! And can render any keys dead, not some specific. I have the same problem on my Acer Aspire 8943G, which I had purchased for a hefty price. But the support for your products is as bad as the hardware of the Acer Aspire laptops. In my case, my Aspire 8943G's keys, "S", "D", "G", "H", "M",  (Including the main "Return" key) and "7" and "8" on the Number-pad are dead. I have to use the Virtual Keyboard in windows OS to type. This is very frustrating as one cannot even type simple comments (I am using another PC from HP to write this comment).  When I tried to contact the Support, they want me to send the laptop to them on my own cost, and if there is a hardware issue found, I will have to pay additional charges for service and replacement of the keyboard. And this is unacceptable as I have already paid a huge sum for buying this product, and I use it daily for work. Sending it to Acer support just for verification would take weeks and it will create problems for me and my work. So first of all, please realize and agree to the fact that this is a huge problem which many of the Acer laptops are facing. And try to provide a better option and service support to the customers who have purchased these products. Keyboard is a part of the PC without which the PC is useless... Please get hold of this fact and improve your products. A very frustrated customer.  /Kiran

  • How to send emails to some mail ids in Pro*c program

    Hi all,
    I am using the pro*c code.I just need to send some messages through mail to some email id's.How can i achieve this?Can i get the source code for this?
    Thanks in advance!!!
    Ramya.

    Salut Yacson, et un accueil chaleureux dans les forums!
    Your question might get a better answer in one of the Server forums, like this one...
    http://discussions.apple.com/forum.jspa?forumID=711
    But might see these 3 for clues...
    http://discussions.apple.com/thread.jspa?messageID=6847070
    http://discussions.apple.com/thread.jspa?threadID=1430961
    http://discussions.apple.com/thread.jspa?threadID=2165968&tstart=30

  • VIP email when some contacts are not in bold

    When I try to set up VIP List in my email mailboxes, most of the contacts are not available.  The bold print are available for VIP not the rest.  Any ideas what is wrong?

    You can change the location of where your media is stored on your computer's iTunes via the Advanced tab in Edit > Preferences, but I'm not sure whether that applies to apps as music. You can't change the location of where the device's backup is stored (which includes your apps content and settings, but not the actual apps themselves or your iPad's music/films/synced photos etc), that will be stored on your main drive.
    In terms of the apps that appear on your iPad, have you used any age ratings in Settings > General > Restrictions that might have hidden some until you then removed the restriction ?
    On your computer's iTunes, if you select Apps part of your iTunes Library how many apps is shown as being in there (the total should be shown on the bar at the bottom of the screen) ? And how many on the iPad in Settings > General > About > Applications ?

  • Business Connector 4.8 - Problems while creating listener - Unicode

    Hello,
    we have a problem with the creation of the listener in the business connector 4.8.
    We are sure that our system parameters are correct.
    But we are missing the unicode button on the BC configuration page.
    Our ERP is unicode, so the listener should support unicode as well.
    Is this now by default in the new version 4.8 ?
    Kind Regards
    Tanja

    I think BC 4.8 recognizes that automatically correctly.
    If the button is not there anymore, you dont have to care about it.
    Just give it a try...
    CSY

  • Business connector help

    Guy's
    i am new to business connector and need some help
    file which are easy to understand ,pls
    forward such file to my mail-id [email protected]
    ,point's will be rewarded

    Hi Sanju,
    <u><b>SAP BC:</b></u>
    The SAP Business Connector is a middleware product based on webMethods’ B2B Integration Server. It allows you to integrate with R/3 using open and non proprietary technology. SAP BC uses the Internet as communication platform and XML/HTML as data format. Thus it seamlessly integrates different IT architectures with R/3.
    SAP BC allows for full bi-directional communication to and from R/3. On the one hand all SAP functionality accessible using BAPIs and IDocs can be made available to business partners over the Internet as secure XML-based services. On the other hand applications and information running on a remote web site can be instantly invoked by a simple SAP function call thus making the information of the Web available to an R/3 System.
    SAP BC provides an XML layer on top of R/3 functionality so that other applications do not need any understanding of R/3 internal data structures or protocols. You can deploy SAP BC to simply but effectively achieve business-to-business integration between trading partners, thereby extending the reach of your SAP infrastructure to customers, partners and suppliers. Examples for applications may include real-time integration between supplier inventories and your SAP System or multi-vendor product, price and availability information and your purchasing application.
    For further Information on the same see <a href="http://www.sapgenie.com/mysap/bus_connector.htm">WHAT IS SAP BC ?</a>
    <u><b>
    SAP XI:</b></u>
    SAP Exchange Infrastructure (XI) enables you to implement cross-system business processes. The aim of the Exchange Infrastructure is to integrate different versions of SAP and non-SAP systems implemented on different platforms (Java, ABAP, and so on). The Exchange Infrastructure is based on an open architecture, makes uses of open standards (in particular those from the XML and Java environments) and offers services that are essential in a heterogeneous and complex system landscape: Namely a runtime infrastructure for message exchange; configuration options for managing business processes and message flow; and options for transforming message contents between the sender and receiver systems.
    For more information on the same see <a href="http://help.sap.com/saphelp_srm30/helpdata/en/0f/80243b4a66ae0ce10000000a11402f/content.htm">SAP Exchange Infrastructure</a>
    I hope your doubt is clear now.
    <u>Also go through the following links:</u>
    http://www.sapgenie.com/mysap/bus_connector.htm
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/3f93404f673028e10000000a1550b0/content.htm
    Regards,
    abhy

  • Business connector  and BAPI ,java code

    Guy's
    we are having development project based on <b>Business
    connector and bapi</b> for sales order creation,we are
    going for function module /TECCOM/SALESORDER_SIMULATE
    for Availability request ,i am not aware of using business
    connector and bapi before,they are going for some java code,now i have to create java code and use this particualr BAPI,pls if somebody already worked on such issue,then help me with some material which will guide
    me and help me in finishing this task easily,
    <b>mail me at [email protected]</b>

    This is a very usefull link:
    http://www.henrikfrank.dk/abapexamples/Java/

  • Query Related to Business Connector

    Hi,
    I'm currently working on Business Connector, which is new to me. I am going through the reference documents to understand the working of the same. However, the requirements have started pouring in.
    As of now, I have the follwoing requirement.
    I've a SAP Function Module say "Z1234" which is RFC enabled. To this FM, all export paramets which are passed are FIELDS, none are table(s).
    Now what i require is to fetch this data into Business Connector by writing some code in Business Connector whose FRONT END is JAVA.
    Can anyone in here help me to achieve this requirement?
    Suggestions welcomed.
    Thanks & Regards,
    Rajesh

    HI,
    I think Scenario based is better
    1)  It's more reasonable to manage your documentation with the business process since they are quite related
    2)  I suggest that you use the check out /check in functionnality to prevent the modification from multiple users at the same time
    3)  As the changes happen some time, which means you have to maintain the related document often, it would be a good idea to use the link but not the copy of document
    4)  In most case, i would insert documents of various types in different tabs like Trainning materials, project documentation, test in SOLAR02
    5) What's more, if all your user guides are uploaded to the Trainning material tab, you will be able to use the existant documents to supply the SOLAR_LEARNING_MAP, which in my opinion, simplifies a lot the tranning session of any global-rollout
    Jiamin Pan

  • How do we Integratet SAP to Non-SAP Using Business Connector

    Hi Experts,
    I am new to SAP Business Connector !!
    and what are the Forms ? for SAP Business Connector Related Postings ??
    !! I have a requirement to integrate sap to non-sap with Business Connector !!
    We need to Generate the SAP Data In xml Format ? and the Non-sap System can Understand Only XML Formated data.
    Is there any way Business Connector Box can Pull the XML file from R/3 Application Server and store the file in the Business Connector Server. from  that How do we Sent XML file to Non-sap. How do we Integrate ??
    what transaction code will trigger this event ? I mean is ther any SAP Transaction Code to Integrate Business Connector?
    For Eg. like in R/3  SD to FICO and MM Integration.
    Please Give your Valuable Suggests..
    Thanks .
    Upender.

    Hi,
    It is not an issue, It will be a separate project :-).
    The right forums for this,
    Expert Forums » SAP NetWeaver » Process Integration
    www.wmusers.com
    Also go through the following links:
    http://www.sapgenie.com/interfaces/businessconnector.htm
    http://www.sapgenie.com/mysap/bus_connector.htm
    /people/bla.suranyi/blog/2006/07/10/xi--sap-business-connector-integration-using-the-http-adapter
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/3f93404f673028e10000000a1550b0/frameset.htm
    http://www.thespot4sap.com/Articles/SAP_XML_Business_Integration.asp
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/b4f3755a-0401-0010-b6b3-9b65bb7d4503
    https://websmp104.sap-ag.de/connectors
    Thanks and Regards,
    Chandra Madapati

  • Business Connector 4.6 VS CRM 4.0

    I have to modify through Business Connector 4.6 some data related to SalesOrders on CRM 3.0. The fields to be modified are:
    - Partner code;
    - The reference date;
    - User Status at Item level;
    I have tried to resolve the problem through a BAPI (but it doesn't exist), with a classical Batch Input (it produces a DUMP), analyzing the standard code but it is very complicated.
    Can you HELP ME. Do you have any suggestion about how to modify the fields?

    Hi Ganimede,
    I'm not sure if 4.6 is (should be) but 4.8 is definitely UC compatible.
    Please follow these links:
    [Connectors @ SAP overview page|http://service.sap.com/connectors]
    [SAP Business Connector (SAP BC) Documentation|http://service.sap.com/~form/sapnet?_SHORTKEY=01100035870000719330]
    Regards,
    Martin Fuchs
    SAP AG

  • E2k10SP1 | Mails are backing up in MAPI Delivery queue - Restarting the transport service flushes the queue

    Hello,
    Need assistance on Transport issue.
    Setup:
    Windows 2008 R2
    Exchange 2010 SP1. Three member DAG and two HUB & CAS combined role servers configured with Hardware load balancer.
    Issue: Randomly some mails are getting stuck in MAPI delivery queue. Restarting Transport service for couple ot times, flushes the queues.
    Troubleshooting done so far
    1. Disabled  - TCP Chimney Offload, Receive Side Scaling (RSS).
    2. No DNS issue.
    3. EXBPA report is clear.
    Any help would be highly appreciated.
    Regards,
    Ghouse

    All are internal mails and 70 GB free space is there on the disk.
    If we dont clear the queue then after three days queue expires and sender receive below NDR.
    Delivery has failed to these recipients or groups:
     [email protected] 
    The server has tried to deliver this message, without success, and has stopped trying. Please try sending this message again. If the problem continues,
    contact your helpdesk.
     Diagnostic information for administrators:
     Generating server:
    [email protected]
     [email protected] 
    #550 4.4.7 QUEUE.Expired; message expired ##

Maybe you are looking for