Dunning email and print both at a time

Hi all,
My client need to send Dunning document as email to the customer, at the same time they want to generate
printout also for the same. I have successfully send an email to customer email address.
But i am unable to generate print out for the same.
They need to generate email and print out out for the dunning..
My question is: can we generate both email and print out at the same time for the single run of F150 for one customer.
If it is possible please let me know how can we do it.
Thanks,

No,
  I have by pass the dunning doc to generate the email instead of printing using BTE concept.
  but my client need to print and email both at time at the time transaction F150 triggering.
  Hope there is no way to change dunning standard print program to create in SAP. since it wont take any customer program to print
  dunning documnets..
  So, is there any way to get the print and email for the same dunning document.
Thanks,

Similar Messages

  • Dunning email and print at same time.

    Hi all,
      My client need to send Dunning document as email to the customer, at the same time they want to generate
      printout also for the same.   I have successfully send an email to customer email address.
      But i am unable to generate print out for the same.
      They need to generate email and print out out for the dunning..
    My question is:  can we generate both email and print out at the same time for the single run of F150 for one customer.
                             If it is possible please let me know how can we do it.
    Thanks,
    Raghav

    it's not possible.
    rohit

  • F110 - program RFFOAVIS_FPAYM email and print at the same time

    Hello all,
    we are using program RFFOAVIS_FPAYM program for print and email paymnet advice. but the current scenario at a time only one process is woking email or print payment advice.  but the user want to get the print and email adivce at the same time, but current only one thing is working.
    kidly advice how to get email and print payment advice at the same time.
    Thanks in Advance.
    Abhilash

    I Have the same problem
    Any help is welcome

  • I noticed yesterday my Iphone 4s does not say verizon at the top anymore. I tried calling *228 and did both options mutiple times and it hasnt changed. Also when i go to settings general about the network tab says unavailable. how can i fix this

    I noticed yesterday my Iphone 4s does not say verizon at the top anymore. I tried calling *228 and did both options mutiple times and it hasnt changed. Also when i go to settings>general>about the network tab says unavailable. how can i fix this

    Can you make and receive calls and texts? If you can, I wouldn't worry about it. If you can't, you may need to call Verizon. However, try this first. The 4S has a Vodafone SIM card in it for foreign travel. Try taking the SIM out and doing the *228 again. Once it activates properly, you should be able to put the SIM back for safe keeping. It's not used in the U.S.

  • HT1338 I use  Outlook for my email, and about 90% of the time when I wont to attach a pdf or jpg file it failes and the email masage crashs. The only was I can get my Outlook to work is if I swich to Firefox.

    I use  Outlook for my email, and about 90% of the time when I want to attach a pdf or jpg file it failes and andout 50% of the time when I'm trying to send a standered text email I also failes and the email masage crashs. The only way I can get my Outlook to work is if I switch to Firefox. I would rater not have to swich all my bookmarks over to Firefox.
    Has any one eals had this problem?

    That's an Outlook issue. You'll probably get better responses posting on the Office for Mac forums.

  • Unable to schedule a report to email and print

    I have been working on a task to both print and email a report to recipients whose email addresses are obtained at runtime.  So far I am able to email the report as a PDF attachment, however, I am not able to get the report to print.  I have three thoughts as to why the report is not printing.
    1. The printer is in a subdomain under the domain where InfoView and the Enterprise server reside.
    2. It is not possible to schedule a report for both an SMTP and print destination simultaneously.
    3. The format is causing an issue in printing - the SDK API states "Printer is a report format specific destination and can only be used when the report object is a Crystal Report."
    I have looked at the scheduled report in InfoView and can see that the print settings I am passing are correctly set for the scheduled instance.  Does anyone know if there is a problem with trying to schedule printing and email at the same time, or if the report format must be .rpt?
    Below is my code. Thank you for your time.
    String query = "Select SI_ID, SI_NAME, SI_PROCESSINFO, SI_SCHEDULEINFO, SI_SCHEDULE_STATUS From CI_INFOOBJECTS Where SI_ID=" + reportId;
            IInfoObjects results = null;
            ISchedulingInfo schedulingInfo = null;
            try {       
               results = iStore.query(query);           
            } catch( SDKException sdke ){
               logger.error(sdke);
            if( !results.isEmpty() ){
                // get the actual report object from collection and set scheduling information
                IInfoObject report = (IInfoObject)results.get(0);
                schedulingInfo = report.getSchedulingInfo();
                schedulingInfo.setType(CeScheduleType.ONCE);
                schedulingInfo.setRightNow(true);
                schedulingInfo.setRetriesAllowed(3);           
                try {
                    Set<String> keys = destinations.keySet();
                    Iterator i = keys.iterator();
                    while( i.hasNext() ){
                        String dest = (String) i.next();
                        if(dest.equals(CrystalDestinations.EMAIL)){
                            // get the destination object and set it to SMTP plugin
                            List emailAddress = destinations.get(CrystalDestinations.EMAIL);
                            IDestination destinationObject = schedulingInfo.getDestination();
                            destinationObject.setName("CrystalEnterprise.SMTP");    
                            IDestinationPlugin smtpPlugin = (IDestinationPlugin) iStore.query("SELECT * FROM CI_SYSTEMOBJECTS WHERE SI_PARENTID = 29 AND SI_NAME='CrystalEnterprise.SMTP'").get(0);
                            ISMTPOptions smtpOptions = (ISMTPOptions) smtpPlugin.getScheduleOptions();
                            smtpOptions.setDomainName( emailDomain );
                            smtpOptions.setServerName( smtpHost );
                            smtpOptions.setSMTPUserName( smtpUser );
                            smtpOptions.setSMTPPassword( smtpPass );
                            smtpOptions.setSubject( "Email for report " + report.getTitle() );
                            smtpOptions.setMessage( "This is the message body" );
                            smtpOptions.setSenderAddress( smtpUser + "@cdrh.fda.gov" );
                            smtpOptions.setSMTPAuthenticationType( ISMTPOptions.CeSMTPAuthentication.LOGIN );
                            for(int j = 0; j < emailAddress.size(); j++ ){
                                smtpOptions.getToAddresses().add( emailAddress.get(j) );
                            destinationObject.setFromPlugin( smtpPlugin );                                                                               
    } else if ( dest.equals(CrystalDestinations.PRINT) ){
                            List printers = destinations.get( CrystalDestinations.PRINT );                   
                            IReportPrinterOptions printerOptions = ((IReport)report).getReportPrinterOptions();
                            printerOptions.setCopies(1);
                            printerOptions.setEnabled(false);
                            printerOptions.setPrinterName( (String)printers.get(0) );                   
                            printerOptions.setPageLayout(IReportPrinterOptions.CeReportLayout.USE_SPECIFIED_PRINTER_SETTING);
                    List reportPrompts = ((IReport)report).getReportParameters();
                    for(int j = 0; j < reportPrompts.size(); j++){
                        IReportParameter prompt = (IReportParameter) reportPrompts.get(j);                   
                        if(prompt.getParameterName().equals(mdrParamName)){
                          IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                          v.setValue(reportParameters.get(mdrParamName));
                        } else if(prompt.getParameterName().equals(addressParamName)){
                            IReportParameterSingleValue v = prompt.getCurrentValues().addSingleValue();
                            v.setValue(reportParameters.get(addressParamName)); 
                    IReportFormatOptions format = ( (IReport) report).getReportFormatOptions();
                    format.setFormat(IReportFormatOptions.CeReportFormat.PDF);
                    iStore.schedule( results );

    Hi Jason,
    Based on your code, I could not tell if you were scheduling a Crystal Report or a WebI document.
    Regardless, what I would suggest is you try scheduling the report/document on InfoView.
    Once you schedule it on InfoView, you can retrieve the instance on Query Builder (or through code) and compare the properties that are being set through InfoView and the one you set through your code.
    This should indicate if you are missing some properies or have set some properties incorrectly.
    Hope this helps.
    Regards,
    Dan

  • Email and Printing Campaigns

    Hi All,
    We have specific requirement, where my cleint wants to create a campaign, like email or mailer campaign in CRM, But as per System Landscape of our project Email and Letter composition is sent through  system called Streamserve, where stream serve will compose the letters and emails based on the template created in CRM with the Target Group attached.
    Now how i can send the campaign details to streamserve, we have an issue because letter and email templates will eb created in CRM and streamserve can only recieve XML files.
    I am lost how i can achieve thsi solution.
    Regards
    Arun Kumar

    Hi Guys!
    Sorry for a late reply but anyhow...
    Which version of StreamServe are you using? And which version of CRM?
    Some background/general points:
    When it comes to integrating StreamServe with SAP you have a number of basic options/interfaces supported by StreamServe:
    - IDocs
    - XML (generic)
    - RDI ([Raw Data from SAPScript|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/fd07c590-0201-0010-9a82-c767532203a6]:
    - XSF ([XML Output for SmartForms|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d763c290-0201-0010-95ae-985957613e90])
    - XFP ([XML Output for PDF-based forms|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80dd00f9-7671-2910-99bb-e5a004a8e1c9])
    - XFA support (formatted PDF-based print forms)
    - SAPGOF ([OTF from SapScripts and SmartForms and ABAP List|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f036ff36-b6d4-2b10-978c-e78131dce2db])
    Additionally you could set up StreamServe as an External Output Management system in SAP Spool Administration (SPAD) (since we have support for the [XOM|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c8feb390-0201-0010-27ae-fbf9a2684cec] interface) which would let you track status of spool requests sent from SAP to StreamServe .
    The availablility of all that depends on which version of StreamServe you are using, license etc...
    Now to your specific problem....
    What I've seen some StreamServe & SAP customers do when using StreamServe with CRM is that they:
    1) Do the layout of the document/form in StreamServe
    2) Set up CRM to output generic campaign data as XML or CSV to StreamServe (or using Idocs).
    In this scenario you could, e.g. if end-users/business users are designing the documents from within CRM Web UI, use either StreamServe Composer och CompositionCenter (which are web based applications) to let end-users have an easy way of updating some sections of the marketing/campaign documents. To add new campaign messaging, images etc. You could also add a direct link to those applications from withing the CRM Web UI by doing some customizing - to let the users have an integrated view.
    1') Alternatively if you are using the Marketing/Mail Forms which is a kind of SmartForm (transaction CRMD_EMAIL) then you can set up them for print output using OTF/SAPGOF which would let StreamServe handle that data pre-formatted.
    Post back again if unclear.
    Rgds,
    Christian

  • HT3771 How do I get my computer to recognize my printer and print both Windows7 and Safari?

    I added Parallel software to my MacBook Pro 10.6.8.It was printing fine then asked me to connect usb.  I was just choosing esc.  I think I chose connect Windows.  Now won't print some things.  How do I get it to print all things on both sides?  Thanks for your time

    You need to connect your printer to your WiFi router wirelessly - maybe by using the printer's front panel (if it has one) or maybe by using a Windows (usually) PC connected to the printer with a USB cable.
    Once that's done, you can disconnect the USB cable, and print wirelessly.  From your description, I'm not sure you've done this required first step.

  • Remittance advice through email and printing

    Hi Experts,
    Our requirement is that email needs to be triggered for all remittance advices and simultaneously printing needs to carried out for those vendors with no email address or invalid email address. We have activated BTE 2040 to trigger the email and it triggered the email(for vendors wth email addr only) and sent it to the spool( for vendors with and without email addr) . Now our requirement is to select only few vendors from the spool for printing. How do we go about it please guide .
    Thanks and regards,
    Ashwin G

    Hi,
    For this first you have to maintain the respective email ids for the vendors/payees in your vendor master
    Secondly, create a zmail program wherein once the ACH payments are executed, the z program should trigger an email to the respective payees. You have to co ordinate with your abaper and provide him the FS and requirements so that he can develop the required program. Assign a Tcode to the program which should have selection parameters Run date and identification ) to trigger email to respective payee in ACH payment list.
    Hope this clarifies.
    regards,
    radhika

  • After many emails and letter that is was time to upgrade we went into verizon to upgrade.. after 2 hours of picking phones etc. we are charged $30 per phone to upgrade. Nowhere was this advertised.. want my money back!!!!

    After many messages and letters that is was time to upgrade our phone we went to the verizon store.. After 2 more hours of picking phones (not the flip one I so wanted) we get to the pay part and find out we are now charged $30 per phone to upgrade???  What???  No where on any advertisements or anywhere in the store is this stated...I have called, texted, emailed and complained to everyone and have been promised a refund time after time yet nothing has been credited to my account yet.  I have been with Verizon for 15 years and this will be my last upgrade with them... and just try to get a real person on the phone!!!

    tedcath wrote:
    No I didn't choose not to see it...in the Verizon store it was NOT posted anywhere it was on the contract but again after 2 hours I signed it my fault I know... however I won't be going to any of the phone companies..my smarter son has NO contract pays $35 per month but did have to buy his phone...but it would only take 3 months of bills to make up for the "FREE" phones I didn't get....
    A) it IS posted this has been proven. Tell you what go back to that store take your camera and take pictures of the price tags on the phones then post them here showing us that the fee isn't on the price tags.
    B) READ your contract before signing. Why people don't do this is beyond me.
    C) What cruddy service does he have? No way he has a smartphone. Sorry didn't get a 100% free phone. Seriously that sounds really entitled. My son upgraded his phone to a LG Lucid. It was 97 cents plus the upgrade fee with taxes and all came to $35. Do I feel "ripped off" because he got a phone that retails for $450 for $35? Nope. Why should I feel ripped off for a 92% discount?

  • Using Applescript to open a link in an email and printing out the result

    This may have been answered before but I can't find it. Does anyone have a script that can read an email to find a link contained within it, open said link and then print it?

    Tried that. Unfortunately it did not work.

  • Email and Printing would be nice

    The two things (so far) that I find myself wishing Bridge would do is to let me print a file directly and to send something by email with a keyboard shortcut or a right-click menu. Two things that I do often.

    It would be great that Bridge prints thumbnails in different arrangements and with or without selected info.
    I have used before Acedesee and Extensis Portfolio and I wold like Bridge to be better than this two aplications, that wold be cool... including the ability to see previews for non adobe file types, like CDR, or Word.... an address line to write or paste the folder where I want to see.. sort like the opperating system too please.... well...

  • Work email and gmail both on BB w/separate outlook icons. Gmail emails go into both.

    My work gave me a blackberry that was already set up with outlook for my work email.  I installed facebook on my BB.  I also went thru set up wizard and set up a 2nd email address for my gmail account.  This installed a 2nd outlook icon where my gmails go into.  However, all of my gmail emails also go into the outlook icon where my work emails go.  They go into both.  How can I get it so that gmail emails go into the gmail account outlook icon only, and not the work one?
    Also, my facebook notifications go into my work email on BB, not the gmail account on BB, even though my facebook account has my gmail email as the associated email address.  How do I resolve this?

    Hi and Welcome to the Forums!
    For the BES vs BIS issue, please see this post:
    http://supportforums.blackberry.com/rim/board/message?board.id=9500&message.id=30149#M30149
    For the FB issue, I believe that FB integrates to the Messages application on the BB rather than to the specific GMail BIS icon.
    Your Messages icon is not your work icon, btw -- it is the Messages app on your BB, which handles all messaging on your BB.
    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

  • Email and print says not enough storage

    MMy email does not display and I canot print. An box appears and says dele songs apps videos etc for more storage. I just backed everything up in I cloploud and purchased for 99 cents a month more storage but the problem still exists. Help p,ease thank you

    If you have done basic troubleshooting
    Reset
    Restore etc ,
    or cannot because of the buttons issue take it to an Apple retail store Genius bar for them to check it
    You have 12 months warranty from date of original purchase for manufacturing faults
    Have look here first
    http://support.apple.com/kb/TS3281

  • I'm trying to verify my email and keep getting a session time out

    I have an ipod touch and need to verify my email address but keep getting a session time out message

    Does Safari work?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings

Maybe you are looking for