Print Date issue in Dunning Correspondence

Hi,
I have an issue with Print Date in Dunning correspondence. The dunning proposal and activity run has happened. The correspondence printing will fetch the accounts from the database as per the print date.
1. I would like to know where and how the dunning activity data stored?
2. Where and How the Print date assigned for accounts which helps FPCOPARA to retrieve accounts on that particular date?
Please HELP

Hello Joe,
I still have the issue with this print date.
I have given only cores type and as u said the real print.
when i checked the corrhist for a particular CA, different times different future date has come.
For eg: date is issue: 12/01/2009 (mmddyyyy) printdate is 12/20/2009.
                                   10/01/2009                                         10/15/2009
like this, many cust have this issue.
why this prind date for some CAs are different or future dates?
where the settings for this print date will be?
Because of this, on a particular day all the dunned CAs are not picking up for Correspondence printing. these excepted CAs will come on another future day printing.
please share some ideas to solve this issue
Regards,
Sunitha

Similar Messages

  • No printing date is printed while running the dunning activity?

    Hi SAP Experts,
    The dunning proposal is created successfully but when I run the  dunning activity the dunning level is updated with issue date but the printing date is not printed. Can any one let me know the root cause of this issue.
    Thanks

    Hi Moin,
    You are right in saying, that the print date field in the dunning history gets updated after the dunning activity is executed successfully.
    This is a standard SAP functionality and if the dunning level is getting incremented, then the print date field should also get updated in the Dunning History.
    Is this happening for all accounts or some of them?
    As a starting point, I would recommend you to start seeing the application logs for the Dunning Activity, once it gets completed. 
    Hope it helps...
    Thanks,
    Amlan

  • 'unable to send print data' on HP Laserjet 1536dnf MFP

    Hi there,
    I'm running an iMac with OSX 10.6.8. Via an USB cable I have attached a HP Laserjet 1536dnf MFP to the iMac.
    I also use this printer to print via wifi (i.e. through the iMac) with my MacBook Pro (with OSX 10.7.3).
    Suddenly today the printer stopped working via my MacBook Pro. I get an error message: 'unable to send print data'.
    I have checked my antivirus etc., but that does not appear to be the problem. I have also updated the firmware of the printer, without success.
    Can somebody help me out? Is the OS difference the problem? But until today that hasn't been a problem.
    Thank you very much! Regards, Luc.

    Hi jemenake
    I understand you lost connection with the network for the Laserjet 1536 through ethernet connection.
    Disconnect the routers power cable, wait 10 seconds, then reconnect the power cable. Wait till it's ready. The router might not be finding the printer on the network.
    If this doesn't resolve the issue continue to the next steps.
    Print a  configuration report from the  LaserJet 1536dnf.
    Press the Setup button, (the one with the wrench on it)
    reports, press OK, Config Report, press OK.
    Check to see if the ip address is valid.
    If you have a valid ip address then delete and add the printer on the mac, the driver might have become corrupted.
    Delete printer on mac.
    Click on the Apple, click System & Preferences,then click the Print & Scan icon (on some systems this may be displayed as Print & Fax),highlight your printer name and click the  button on the bottom left corner of the screen.
    Add printer on the mac.
    Click on the Apple, click System & Preferences, and then click the Print & Scan icon (on some systems this may be displayed as Print & Fax),click add a printer, then select the printer from the list, make sure the printer listed beside use or print: shows proper printer name and not airprint, (airprint is a preinstalled apple driver with basic funtionality if on 10.8) add it in.
    If the ip address is not valid please let me know.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Javascript to print print date and time on scanned documents

    I'm using the following code to print a message, time/date stamp, and expiry date along the right hand side of printed documents. It works fine on word docs that were printed to pdf, but when a document it scanned, it mysteriously prints the the correct line of text, but also prints an additional, identical line perpendicular to the original line.
    Any help would be most appreciated!
    // Add field to each page of form
    var inch = 72;
    for (var p = 0; p < this.numPages ; p++) {
    // create rectangle quads for field
    var aRect = this.getPageBox( {nPage: p} );
    aRect[0] = 540.0;
    aRect[1] = 0.0;
    aRect[2] = 576.0;
    aRect[3] = 792;
    var f = this.addField("PrintField" + p, "text", p, aRect)
    f.delay = false;
    f.print = true;
    f.hidden = true;
    f.delay = false;
    f.rotation = 90;
    f.textSize = 10;
    f.textFont = font.HelvB;
    f.textColor = color.red;
    f.alignment = "center";
    f.readonly = true;
    f.value = "";
    var myWillPrintScript =
    'for (var p = 0; p < this.numPages ; p++) { ' +
    'var f = this.getField("PrintField" + p); '
    + 'f.hidden = false; '
    + 'var d = new Date(); '
    + 'var expiryd = new Date(); '
    + 'var ThursdayArray = new Array(7); '
    + 'ThursdayArray[0] = 4; '
    + 'ThursdayArray[1] = 3; '
    + 'ThursdayArray[2] = 2; '
    + 'ThursdayArray[3] = 1; '
    + 'ThursdayArray[4] = 0; '
    + 'ThursdayArray[5] = 6; '
    + 'ThursdayArray[6] = 5; '
    + 'var currentday = 0;'
    + 'currentday = d.getDay(); '
    + 'expiryd.setDate(expiryd.getDate() + ThursdayArray[currentday]);'
    + 'f.value = "This is an unofficial copy of a controlled document. Print date/time: " + util.printd("dd mmm yyyy HH:MM ", d) + " Expires: "+ util.printd("dd mmm yyyy ", expiryd) + " 23:59 EST.";'
    + '}'
    var myDidPrintScript =
    'this.resetForm();'
    + 'this.dirty = false;'
    // Now set the scripts to execute on the Will/Did Print events.
    this.setAction("WillPrint", myWillPrintScript);
    this.setAction("DidPrint", myDidPrintScript);

    Very unusual, Here are some more questions to help nail down the issue.
    Are both date text lines in form fields? What are the form field names? i.e. is this an exact copy of the existing form field? What are the settings that differentiate the two fields, i.e. Rotation, etc.?
    Could the script be somehow getting run twice?
    On another note, why are you naming all of the fields differently. It looks like they all get the same info. If this is true then you could simplify the script by making them all the same name. You would not need the loop to apply the date text.
    Thom Parker
    The source for PDF Scripting Info
    www.pdfScripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/

  • Print date in PDF without opening Acrobat

    I have a little issue that needs assistance.
    Is it possible to get print date (e.g. todays date) automatically without opening the PDF in Acrobat. My plans are to use a hot folder / drop folder which directs the PDF to the printer. The form or script must be applicable anywhere on the layout. I'm working with quite heavy files for commercial printing, and nowadays spends lots of time just waiting for the file to load, add todays date into a form field, print and close the document. The time gained would be massive! I've tried some small scripts but none seems to work out for me.
    Thanks in advance!

    Thanks for the input Geo. I think I've got it working now. I actually found a script on Adobeforum, so apologies for making a post. Regarding what you've written in your reply, it's actually possible to print a PDF without opening the application. I'm using a folder which is automatically scanned for files (must be PDF, PS or EPS). This is really good, I'm quite sure that you have the function in the new Distiller as well.

  • Printing dates on photos

    I posted a question about the ability to use IPhoto to print dates on pictures in July of 2008.
    I received one reply that shareware called Acorn was available to do this.
    I cannot find any such shareware and the suggestion that I make a book to get a date printed on a picture is not a solution, not even close.
    I know that some people think that printing dates on pictures is ugly, but there are also many people like myself that happen to think the ability to put dates on pictures is really nice. Matter of fact, when I bought my Sony HI Def Camcorder last year, software for doing this was included for doing this on Windows. Now I dont like to go there and I am having a hard time trying to figure out why its so horrible for Apple to not include the ability to print dates on pictures in IPhoto. No one is making anyone print the dates, just give us the ability to do it if we want to. In looking at the forums, I see several who are also struggling with this problem with no solution in sight.
    Can't someone please help out on this issue. Perhaps taking the windows software and making a Mac version. Thanks so mulch for your help. This is really a frustrating issue and will not go away.

    In order of price here are some suggestions - and links:
    Seashore (free)
    _[The Gimp|http://www.gimp.org/macintosh>_ also free
    Graphic Coverter ($45 approx)
    Acorn ($50 approx)
    [Pixelmator|http://www.pixelmator.com> ($60 approx.)
    Photoshop Elements ($75 approx)
    There are many, many other options. Search on MacUpdate.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Regards
    TD

  • F110 Status - Printing data and log have been deleted

    Hi All,
    We have an issue with F110 transaction. In the status a message is being displayed as 'Printing data and log have been deleted'. As I am new to Finance, I could not get what that message mean. Can you please explain what could be the reason for this message.
    Thank you,

    Hi Guru's,
    I have a similiar issue. Created a check run yesterday and went through all the steps...
    - Parameters have been entered
    - Payment proposal created
    - Payment run has been carried out
    - Posting orders 77, generated, 77 completed.
    *- Printing Data and log have been deleted *
    I can not remember what I click on and it cause this.
    Please can someone help and tell me know how can I either re-run this check run I mean the physical checks or how can I go about this and delete this run and re-run from Scratch.
    Best Regards,
    Yassmen

  • Sending print data..... Epson printing woes

    Connected to my Macbook Pro 17" (10.6.2) is my relatively (Important bit) Epson R285 printer. The other day it started to refusing printing full stop. I would send a print job, and get the external 'Sending print data....' and that would be it. I thought I was going mad, I reinstalled the drivers, deleted loads of preferences, ran Onyx a few times and nothing.
    At the same time, the 'low ink' light was flashing but like everyone else i just ignored this. I was ready to reinstall the OS and all my apps I was so desperate! I have VMWare Fusion running XP so I thought, worst case I can always print from there. Time to put the new ink in. Since it was a new printer it had those 'test, half-empty/half full cartridges' installed so €45 later, 3 new inks were installed.
    On a whim, I tried printing again from 10.6 and low and behold..... it printed! Now this raises a couple of questions:
    1. Why doesn't the print dialogue be more explicit in this situation: Hey 'I am not going to print unless you top me up' Granted there is a 'low ink' light and icon but not a 'bugger off, I'm not gonna print icon'
    2. Is this Epson forcing the user to buy new ink? I always use to print regardless what ink was missing, invariably I just needed to print and could handle an odd colour. Now, low ink means, 'go buy more ink and I shall print!'
    Anyway, anybody who has similar 'Sending print data...' print issues with an Epson printer, check you ink as it may just solve your printing problems!
    regards, chris

    Chris§ wrote:
    1. Why doesn't the print dialogue be more explicit in this situation: Hey 'I am not going to print unless you top me up' Granted there is a 'low ink' light and icon but not a 'bugger off, I'm not gonna print icon'
    By any chance are you using the "Gutenprint" driver for your printer? A poster in another thread noted that switching from a Gutenprint driver to a driver from Epson enabled the ink status capability.

  • OTF Module: Failed to output print data

    hi all,
    while seeing output on the screen i am getting this error on the status bar:
    "OTF Module: Failed to output print data"
    any one can help me in this regard why this error is coming i am  working on ECC.6

    Check this may give you some idea to solve your issue...
    Rough idea
    **Set printer parameters
    control_param-no_dialog = 'X'.
          control_param-preview = ''.
          control_param-getotf = 'X'.
          output_opt-tddest = 'LOCL'.
          output_opt-tdimmed = ''.
          output_opt-tdnewid = ''.
          output_opt-tdnoprint = ''.
          output_opt-tdnoprev = 'X'.
    Get smartform name
    call function 'SSF_FUNCTION_MODULE_NAME'
           EXPORTING
                formname           = formname
                variant            = ' '
                direct_call        = ' '
           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 smartform
    call function fm_name
               EXPORTING
                    control_parameters = control_param
                    output_options     = output_opt
                    user_settings      = ' '
                    wa_head            = wa_head
               IMPORTING
                    job_output_info    = job_info
               TABLES
                    int_detail         = int_detail
               EXCEPTIONS
                    formatting_error   = 1
                    internal_error     = 2
                    send_error         = 3
                    user_canceled      = 4
                    others             = 5.
    Note pass the job info file you got from above function module
    data: int_docs type standard table of docs,
            int_line type standard table of tline.
    call function 'CONVERT_OTF_2_PDF'
             IMPORTING
                  bin_filesize           = filesize
             TABLES
                  otf                    = job_info-otfdata
                  doctab_archive         = int_docs
                  lines                  = int_line
             EXCEPTIONS
                  err_conv_not_possible  = 1
                  err_otf_mc_noendmarker = 2
                  others                 = 3.
    USE below function module
    all method cl_gui_frontend_services=>gui_download
            exporting
              bin_filesize            = filesize
              filename                = filename
              filetype                = 'BIN'
            changing
              data_tab                = int_line
    Regards,
    SaiRam

  • Printing data in  two colums

    Hi Friends,
    I got a scenario  like. Printing data in Two Colums.
    Ex:
    1        6
    2        7
    3        8
    4        9
    5       10
    Please help me to solve.
    thanks in advance.
    Regards,
    Kumar.

    Hi Nivas,
    Try this logic!!!
    Create a line type with 2 columns in table in your main window. I hope the no of rows has to be fixed for the 1st column (i.e. if data overflows from 1st column than only it has to print in 2nd column). Create 2 text elements for 2 columns respectively & pass same value in both the text elements( ex: &number&).
    Now set your condition accordingly in both the text elements condition tab. Create a program line inside your table loop and set a counter for every item. each time divide the counter by no of your max line items that can b printed in 1 column.
    I hope you got the logic now how to resolve this issue.
    Do appreciate if found helpful.
    BR,
    Vinit

  • Data Issue

    Hi All ..
               We are facing one data issue DSO.  One record is worngly loaded with some project iD ( Ex record is having ID GE1234 insted of having LE4423) remaining details are same . we are loading the data furtherly to master data table from the DSO. if i try  for reporting for project id LE4423 ,information not avilable because it is heaving wrong ID,it is key also.But in the Source system (CFG) side Data is correct with ID LE4423.
             In update rule we are following one to one mapping for all infoobjects.My requirement is i need to have in my DSo LE4423 . I need to overwrite the record id GE1234 with LE4423 without affecting other fields in the record.
            Shall i load till PSA with the ID LE4423 ..then if load this single record to DSO will overwrite the GE1234 by choosing other field as key field.  but we are following one to one mapping in update rule.
    Please help me on this. i need to hev a correct id for record.
    Thanks ,
    Prem.

    You can use selective deletion to delete the record with Project ID = GE1234
    Load the data till PSA
    Load the data to DSO using selection Project ID = LE4423 in DTP from PSA.
    check in further data targets also for mismatch of data
    Hope it helps,
    Naveen Vytla
    Edited by: Naveen Vytla on Nov 18, 2008 10:49 AM

  • Custom report -Mb51 -EBELN,AUFNR,KDAUF & KUNNR -Data issues

    Hi,
    This custom report is related to material document list (MB51).
    I was trying to retrieve Purchase Order(EBELN),Order number(AUFNR),Sales order(KDAUF) & Ship-to-party( KUNNR) from MSEG & MKPF.
    Unfortunately
    It looks like for Sales Orders, it picks up the Customer Number but no Order Number. For STO’s, it looks like it picks up the STO # but no Customer #.
    How to over come this?
    FYI..I also tried adding fields to standard report(MB51) and it is also doing the same manner .
    Am I pulling it from Wrong tables? or is it related to DATA issues?
    Regards
    Praveen
    Message was edited by:
            PRAVEEN s

    Hi,
    This custom report is related to material document list (MB51).
    I was trying to retrieve Purchase Order(EBELN),Order number(AUFNR),Sales order(KDAUF) & Ship-to-party( KUNNR) from MSEG & MKPF.
    Unfortunately
    It looks like for Sales Orders, it picks up the Customer Number but no Order Number. For STO’s, it looks like it picks up the STO # but no Customer #.
    How to over come this?
    FYI..I also tried adding fields to standard report(MB51) and it is also doing the same manner .
    Am I pulling it from Wrong tables? or is it related to DATA issues?
    Regards
    Praveen
    Message was edited by:
            PRAVEEN s

  • Print Layout Desigener print date

    Dear all,
    In our Balance Report we want to fill in the Print Layout the Print Date.
    is there a possibility for filling this?
    The path of  balance report is :
    Financials__ Financial Reports__ Financial__ Trial Balance
    Thank you and best regards to all!!
    Serkan

    Hi Nat,
    thank you for your fast and helpfull support.
    it works
    regards
    Serkan

  • How to print Data Model in Report??

    Do anyone know how to print Data Model??
    Thanks your help.
    - Frank

    Hi Venkat,
    Thanks alot.... i am checking the appendix k.
    I want to know that if i want to customize the report as per the client requirement,
    can you please let me know which template i will use if i required remittence advice as well as check print data on the layout.
    The following is the list of field i required:
    Vendor ID
    Check Date
    Check number
    invoice date
    invoice/ CR memo number
    invoice description
    invoice gross amount
    invoice discount amount
    invoice net amount
    total gross amount
    total discount amount
    total net amount
    logo
    company name and info
    bank name and info
    check number
    check amount spelled out
    check date
    check amount numeric
    payee name
    CEO signature
    MICR check number
    MICR routing number
    MICR bank account number
    mailing return address
    mailing address
    Venkat it would be great help if you please let me know the exact process to be follow for check printing report.
    I worked on bi publisher report in 11i, but in 12i the process is bit different.
    also if you have any template ready can you please send me on my mail id ... i forwarded you the test mail from my official id or on [email protected]
    Looking forward to your kind response.
    Regards
    Ratnesh

  • Print quality issues

    Hello
    We are having print quality issue when printing PDF's to our Canon iR C2880/C3380 UFR II.  This was the most recent print driver from canons website which was download about 6 weeks ago. version 2.9.  At one time we were having other pring quality issues and we changed from the post script driver to the ufr ii which solved the problem at the time. 
    This past saturday we upgrade the operating systems on the systems in question and they are now running windows 7 64 bit with service pack 1 installed. image 1 is the orignal pdf that was printed with a 3rd party pdf printer(PDF Xchange view version 2.5)  image 2 is the same document that was printed using acrobat reader 10.1.2
    the options for the print were pretty much identical between the program.  Print as image was not selected.  1 thing to note with the acrobat when  print as image was selected there was a slight improvement in the print quality.
    Any help would greatly be appreciated.
    image 1
    image2

    Hi, nd a warm welcome to the forums!
    Off the bat, it looks like maybe bad RAM/ROM in the Printer, or corrupt Font.
    Can you have another Computer jook to it and print for a test?
    Can you try Printing from Adobe Reader...
    http://www.adobe.com/products/acrobat/readstep2.html
    Can you in Preview, Save As a picture format for a test?

Maybe you are looking for

  • Turbo K7 Limited & XP 1800+ issue

    All,  I have the K7T Turbo limited edition board with bios upgraded to the latest version (3.6) and AMD 1.4GHz. I would like to upgrade the CPU to XP 1800+ but the system will not boot, it hung before POST. Would some kind souls give me a pointer how

  • Can I install PC3-8500 DDR3 RAM in my Macbook Pro Mid-2012?

    I have two 4GB sticks of PC3-8500 DDR3 memory which I bought some time ago for a Mac Mini I had. Can I safely install it in the 13-inch Macbook Pro model I just bought? According to this Apple support article (http://support.apple.com/kb/HT1270?viewl

  • Software required is not installed correctly, please reinstall Itunes

    I've been at my Dad's house helping build some tables in the past couple of months. I've turned on my pc last sunday and had 15 updates from windows update., so i let it download and install them as i was unpacking. I started up iTunes and it said th

  • Error Message when trying to Sync Calendar - (won't sync)

    11:26:32.199 An unexpected error has occurred [Note: this exception originated in the server]  Invalid parameter not satisfying: flush count> 0  Anyone have this issue and has it resolved?  Thanks

  • Alter database recover to logical standby is hanging

    Hi, when I try to convert my physical standby to logical standby using alter database recover to logical standby STANDBYL; the command just hangs I have seen the usual hit on this which is to create the Redo Dictionary on the Primary using execute db