Seperate spool for email  and  fax

Hi ,
    I am using smartfoms conveting this into PDF document , iam send email / fax / print .The scenerio is for customer 1 , send through email, Cust 2 send thru FAX etc . But for both same spool is generated with same number .I need seperate spool for each . Can any one share your thoughts ......
Regards,
Veera

Hi,
Are you calling the smartforma functiona module, separately for each customer? I mean is it inside the loop...endloop.
check the control_parameters, output_options, and other mail related parameters being passed for each customer.
Regards,
Subramanian

Similar Messages

  • Adobe forms - Email and fax

    Hi,
    Does anyone have any idea about how a adobe form(tcode-SFP) can be sent through email and fax?
    I have created an interest form and have to send it accross to the customer maintained in the customer master when i run transaction code FINT.
    Help will be highly appreciated.
    Regards,
    Rasika
    Moderator Message: There is a seperate forum for Adobe Interactive Forms. Please post your question there.
    Edited by: kishan P on Nov 2, 2010 11:26 AM

    Hi,
    Thanks for reply
    The link u mentioned utilises Objects.. but can we send internet mail using this?
    As we cannot change RECIPIENT TYPE in this case in the object.
    I used this format in the program but the attachment is going to EXpress inbox. and goes to my SAP Inbox instead of Email .
    So what changes we need to do for this.
    Alternatively,  can we use FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' for this purpose?
    Edited by: Rohit Pareek on Feb 3, 2009 3:36 PM

  • Email and fax a form

    Hi ,
           how can we send a form output as email and fax ? How to do the config for this? Can you explain the process to be done?
    Rama.

    Hi,
    See following code :
    REPORT zmail_att NO STANDARD PAGE HEADING LINE-SIZE 200.
    DATA : BEGIN OF ITAB OCCURS 0,
    PERNR LIKE PA0001-PERNR,
    ENAME LIKE PA0001-ENAME,
    END OF ITAB.
    DATA: message_content LIKE soli OCCURS 10 WITH HEADER LINE,
    receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
    packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
    listobject LIKE abaplist OCCURS 10,
    compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
    w_object_hd_change LIKE sood1,
    compressed_size LIKE sy-index.
    START-OF-SELECTION.
    SELECT PERNR ENAME
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM PA0001
    WHERE PERNR < 50.
    LOOP AT ITAB.
    WRITE :/02 SY-VLINE , ITAB-PERNR, 15 SY-VLINE , ITAB-ENAME, 50
    SY-VLINE.
    ENDLOOP.
    Receivers
    receiver_list-recextnam = 'XXXXX@X...'. --> EMAIL ADDRESS
    RECEIVER_list-RECESC = 'E'. "<-
    RECEIVER_list-SNDART = 'INT'."<-
    RECEIVER_list-SNDPRI = '1'."<-
    APPEND receiver_list.
    General data
    w_object_hd_change-objla = sy-langu.
    w_object_hd_change-objnam = 'Object name'.
    w_object_hd_change-objsns = 'P'.
    Mail subject
    w_object_hd_change-objdes = 'Message subject'.
    Mail body
    APPEND 'Message content' TO message_content.
    Attachment
    CALL FUNCTION 'SAVE_LIST'
    EXPORTING
    list_index = '0'
    TABLES
    listobject = listobject.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    compressed_size = compressed_size
    TABLES
    in = listobject
    out = compressed_attachment.
    DESCRIBE TABLE compressed_attachment.
    CLEAR packing_list.
    packing_list-transf_bin = 'X'.
    packing_list-head_start = 0.
    packing_list-head_num = 0.
    packing_list-body_start = 1.
    packing_list-body_num = sy-tfill.
    packing_list-objtp = 'ALI'.
    packing_list-objnam = 'Object name'.
    packing_list-objdes = 'Attachment description'.
    packing_list-objlen = compressed_size.
    APPEND packing_list.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = w_object_hd_change
    object_type = 'RAW'
    owner = sy-uname
    TABLES
    objcont = message_content
    receivers = receiver_list
    packing_list = packing_list
    att_cont = compressed_attachment.
    Reward points if helpful.
    Regards.
    Srikanta Gope

  • SAPScript to email and fax

    Hi guys,
    We want to end the sapscript thru email and fax. Can you help us how we can do that?
    The sequence should be, the sapscript will first be converted to PDF file before ending thru mail.
    Thanks a lot for all the help.
    Rgds,
    Mark

    Thanks Eswar,
    I am already successful with my pdf file,,, I am not sure what would I introduce to 'SO_DOCUMENT_SEND_API1' parameters for it to be successful...
    I have the sample code below:
    data: i_otfdata type STANDARD TABLE OF itcoo WITH HEADER LINE,
          i_pdfdata TYPE STANDARD TABLE OF tline WITH HEADER LINE,
          i_itcpp TYPE STANDARD TABLE OF itcpp WITH HEADER LINE.
    data: i_docs type STANDARD TABLE OF docs WITH HEADER LINE,
          v_len type i.
    CALL FUNCTION 'CLOSE_FORM'
       IMPORTING
         RESULT = i_itcpp
        TABLES
          otfdata = i_otfdata
        EXCEPTIONS
          unopened = 1
          OTHERS   = 2.
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
       EXPORTING
         USE_OTF_MC_CMD               = 'X'
        ARCHIVE_INDEX                =
       IMPORTING
         BIN_FILESIZE                 = v_len
        TABLES
          otf                          = i_otfdata
          doctab_archive               = i_docs
          lines                        = i_pdfdata
       EXCEPTIONS
         ERR_CONV_NOT_POSSIBLE        = 1
         ERR_OTF_MC_NOENDMARKER       = 2
         OTHERS                       = 3
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          document_data                    =
        PUT_IN_OUTBOX                    = ' '
        SENDER_ADDRESS                   = SY-UNAME
        SENDER_ADDRESS_TYPE              = 'B'
        COMMIT_WORK                      = ' '
      IMPORTING
        SENT_TO_ALL                      =
        NEW_OBJECT_ID                    =
        SENDER_ID                        =
        tables
          packing_list                     =
        OBJECT_HEADER                    =
        CONTENTS_BIN                     =
        CONTENTS_TXT                     =
        CONTENTS_HEX                     =
        OBJECT_PARA                      =
        OBJECT_PARB                      =
          receivers                        =
       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

  • Send Bid invitation to Email and Fax

    Hi,
    I would like to know if is it possible to send the bid invitation to the vendors via Email and Fax.
    I'm looking in the PPF administration (transaction SPPFCADM) at condition configuration but i'm kidda lost....
    can someone help?
    Thank you,
    Joseph

    Hi,
    Pls see the foll related threads:
    email on  bid invitation publication
    Email on Bid Invitation publication
    Re: Bid Invitation Email Subject
    Re: Bid invitation email content text modification
    Re: email on creation/change of  bid invitation and auction
    Re: Bid invitation email content text modification
    BR,
    Disha.
    Pls reward points for useful answers.

  • My iPhone no longer gives me audible alerts for email and text messages.  Just stopped. Help.

    My iPhone just stopped giving me audible notifications for email and text messages.  It still rings for calls.  I have checked the settings for "Sounds" and they have not changed.  However, in these settings when I try to change the sound I get only the vibration and not the sample sound.  Can anyone help?

    Hi Midwestboy,
    If your iPhone isn't being recognized by iTunes on your Windows machine, you may find the following article helpful:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Regards,
    - Brenden

  • Is there a way to get seprate notifications on Droid Razor m for email and text?

    Is there a way to get seprate notifications on Droid Razor m for email and text?

    For Gmail it is: open Gmail > menu > settings > your gmail address > notifications check box is unchecked.
    There are some additional notification options for labels too.

  • Droid Mini notifications for email and text not working

    I am having a problem with notification sounds not working for email and text messages with my Droid Mini. I took my original phone to the Verizon shop. They did a factory reset. Sound worked for two days. Went back to Verizon and they reset it again. But they did tell me if it happened again to call Verizon and they would send me a new phone. Well it happened again. Got my new phone just last week. Well yesterday and today the sound notifications for text messages and email is not working on the new phone.  Last night I powered the phone off and back on and all was working well until this morning.
    This is very upsetting as I really do like this phone. Would like to know what is going on with it. Have checked all the volumes and they are all up.
    Is there a fix for this.
    Thank you.
    Barbara
    Edited to start new discussion and private info removed as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

    For Gmail it is: open Gmail > menu > settings > your gmail address > notifications check box is unchecked.
    There are some additional notification options for labels too.

  • Why yahoo/gmail retrieval and facebook app so so slow when in WIFI. But using the internet to check for emails and facebook is fast using the same WIFI connection??

    Why yahoo/gmail retrieval and facebook app so so slow when in WIFI. But using the internet to check for emails and facebook is fast using the same WIFI connection??

    Hi SandyS_VZW,
    Yes tried resetting the wifi connection and problem still persist.
    Here it is...to make it clear. Connected thru the same wifi at home...
    -> emails (yahoo/gmail) and facebook WEBSITES are working fine and fast when using/accessing thru a browser (chrome/samsung browser) - no problem with this.
    -> emails (yahoo/gmail) and facebook APP is soooooo sloooww (thru the App). Slow I mean comparing it to using their browser/websites... news feeds/emails refreshing so quickly but not when using the APP installed in Samsung Galaxy Note 4. Slow like - It will take around 5-10minutes just to get your emails and news feed refreshed.
    THIS HAPPENS ONLY WHEN CONNECTED THRU A WIFI which has a speed of 10-20mb. It is not happening when connected to the network data/plan.
    My wife has the same Samsung Galaxy Note 4 (coming from different provider at&t) - same setup (emails, fb app), same wifi connection, but she's not experiencing anything like it.
    Not sure why, I dont want to believe that while connected to a WIFI, Verizon is restricting anything and ******* me off to make me switch to my data plan connection everytime - which is Unfair!
    Was there a known issue similar about this case?
    thanks,

  • HT204074 I have a family Apple ID for iTunes and Apps and then two iPhone 5s each which use a personal Apple ID for email and the family Apple ID for iTunes and Apps. Can I use iTunes Match?

    I have a family Apple ID associated with my iMac and iPad for iTunes and Apps and then two new iPhone 5s each which use a personal Apple ID for email and the family Apple ID for iTunes and Apps. Can I use iTunes Match on the iPhones given there are two Apple IDs "loaded" on the iPhone?

    Hi Monkey_Dawg,
    Welcome to the Support Communities!
    The articles below may be able to help you with this.
    Click on the links to see more details and screenshots. 
    iTunes Store: Subscribing to iTunes Match
    http://support.apple.com/kb/ht4914
    Using your Apple ID for Apple services
    http://support.apple.com/kb/HT4895
    Cheers,
    - Judy

  • I just downloaded an iphoto update and when I tried to share my photos was asked for email and password.  I must have typed in the info wrong because I keep getting an error message.   I don't see how to change the info to the correct mistake..

    I just downloaded an iphoto update and when I tried to share my photos was asked for email and password.  I must have typed in the info wrong because I keep getting an error message.   I don't see how to change the info to the correct mistake..

    I too added 2nd apple ID when I tried to get Free app from apple store just to get to NONE on the credit card needed. It said it sent confirmation email to my new apple ID email that I have to confirm. Problem is I can not get to the new apple ID email account.  On my ipad it logs into my original email account and I see no where to log into another email account.  If I go to my laptop, the new apple ID I created does not let me log into email where apple said it was sent to.  It did not send to back up email account either.
    Can I log into 2 email accounts on my ipad where it says mail at bottom?
    Can I have 2 apple ids?
    If I created a 2nd apple id to get to NONE on credit card needed, can't I log into it also on another laptop in gmail?
    (won't let me)
    If I used my original apple id I created when I got my new ipad, it will not let me get free app without credit card, there is no where it says NONE needed. I am too new to apple to start with credit cards etc until I get use to it.

  • My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for? Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?

    My company loaded profiles onto my iPad for email and calendars.. There is also a signing certificate and a certificate. What are these for?
    Additionally are they able to monitor apps and usage, ie Internet usage when it is not on their wifi?
    I do not have any VPN enabled?

    Do you happen to have an Android?  If so and depending on what version there is a great data usage analyse tool built-in.  See if you can go to Settings -> Data Usage  from there you can pick a current or previous billing cycle and then use the vertical sliders to select a date range and it will filter the usage data per app to show you exactly what app(s) were using data during that time frame.

  • Import dumpfile with seperate tablespaces for table and index

    Hi,
    We have a schema for which the its tables are stored in seperate tablespace and indexes are stored in different tablespace. Now we have take full schema export. Now we want to import it on another schema. Now I want to know if the we have difference in the tablespace name we use REMAP_TABLESPACE clause of the impdp command but what about the seperate tablespace for table and indexes. How would Oracle handle this.
    Regards,
    Abbasi

    Hi,
    I hope you created the same tablespace structure on the target side if not so remap_tablespace option you have to use for specifying different tablespaces.Oracle will take care of putting data and index.Any how if a index is moved from one tablespace to other you have to rebuild them,once you rebuild them than only stattistics are gathered otherwise you
    might face some performance issue.
    Better option is to keep same tablespace structures in source and target environment.
    Best regards,
    Rafi.
    http://rafioracledba.blogspot.com
    Edited by: Rafi (Oracle DBA) on May 9, 2011 7:07 AM

  • Is it possible to play different sounds for emails and instant messages ?

    Hello,
    I was wondering if it was possible to play different sounds for emails and instant messages. I am using Thunderbird quite often with both emails and instant messages imported from Gtalk.
    I think it would be very convenient to be able to distinguish both sounds as they do not imply the same things.
    Thank you very much.
    Olivier Hubert.

    There are only six chat add-ons, three of them are about notifications. Pick one you think will do the job for you. https://addons.mozilla.org/en-US/thunderbird/extensions/chat/?sort=popular

  • In Itunes I cannot chose MS Outlook when syncing contacts. I can only chose Google contacts, Windows contacts and  Yahoo! Address book. The reply for email and calender is email and calender program cannot be found. Although I have MS Outlook installed an

    In Itunes I cannot chose MS Outlook when syncing contacts for Iphone 4. I can only chose Google contacts, Windows contacts and  Yahoo! Address book. The reply for email and calender is email and calender program cannot be found. Although I have MS Outlook installed and fully operational. Have anyone a solution to this issue?

    Which operating system is on your computer?
    and is itunes up to date
    can you tell whether it worked before?
    think as first step i would reinstall itunes

Maybe you are looking for

  • Java version for signed applets

    Hello, I was told I must use jdk 1.3 or 1.4 to sign an applet. We want to use 1.1.8 so that it is not necessary for the client to download a plug-in. I have 2 questions. 1) Is it possible for me to install 1.4 on my machine locally, generate the CSR

  • Cost of order and total standard activity times

    Hi, please let me know from which table i can get the following 1.Planned total cost of a production order  & 2.Total standard activity times of production order. Regards Ramesh

  • Need to add a filter to imported SQL

    I used the File\Import-SQL menu option to import an existing query from another application. The query runs and creates a results table. I do not see an option in the Query\Request section to add a filter so that the user can select a range of values

  • Any Flash CS3 Mac users?

    Where you click something on stage, and it takes what feels like 2 seconds for Flash to respond with the focus selection? The .fla is only 1.5MB, and doesn't have that many assets in the library. Sometimes this goes on for hours. Sometimes an applica

  • HT201269 my new 5s was stuck in recovery state & now dead

    hi can anyone help me? my 5s is stuck in recovery state. Now its gone off it seems and doesnt come on. It's dead.