Print Event-No of Copies

Hi all,
        can I change no. of copies in Print event? PrinteventInfo.NumberofCopies is readonly.
Please help,
Thanks in advance
BBN

BBN,
As you have stated...the NumberOfCopies is read-only and therefore cannot be manipulated via the API.
Eddy

Similar Messages

  • Month View - Print Events Without Time

    Is there a way to print events in month view without the time? Alternately, is there a way to print all the words in an all-day event in month view? Sometimes I type a paragraph for an event, and as long as it's a timed event, iCal displays all the words. But if it's an all-day event, iCal only shows the first few words, because it wants to keep it on one line. Printing the time in month view gets in the way sometimes.
    This may be an option that doesn't exist yet, so Apple - help me out please!
    Thanks!
    Mac Pro 2.66 GHz Quad Xeon   Mac OS X (10.4.7)   3 GB RAM

    musetta24,
    Sorry to see that no one replied to your post back in October.
    Normally when I notice that someone posted for the first time in Apple Discussions, I open my reply with - "Welcome to Apple Discussions." With my apologies for the lack of responses, please accept a belated welcome and reply to your question.
    Widowwmaker,
    iCal will not print without displaying the times.
    If you are willing to use the Preview application, you could take a screen shot of your preferred iCal window, and print using the Preview print menu.
    ;~)

  • Print Event Details (absorbed into convert to PDF)

    Hi All,
    i want to print events list into a PDF document please help me how to do that.It is very urgent.Please give me reply immediately.
    Anybody have code please send me..
    Thanks in advance.......

    hi
    good
    go through this
    TYPES: l_ty_tab_objbin TYPE solisti1 OCCURS 0.
    data: l_otf TYPE STANDARD TABLE OF itcoo.
    DATA: l_objbin TYPE l_ty_tab_objbin.
    DATA: l_docs TYPE STANDARD TABLE OF docs.
    data: i_line TYPE STANDARD TABLE OF tline.
    CALL FUNCTION 'CONVERT_OTF_2_PDF'
    EXPORTING
    USE_OTF_MC_CMD = 'X'
    ARCHIVE_INDEX =
    IMPORTING
    BIN_FILESIZE =
    TABLES
    otf = l_otf
    doctab_archive = l_docs
    lines = i_line
    EXCEPTIONS
    ERR_CONV_NOT_POSSIBLE = 1
    ERR_OTF_MC_NOENDMARKER = 2
    OTHERS = 3
    thanks
    mrutyun^

  • Want to print event in color, not the dash of color before it

    Why does ical only print a color bar before an event and doesn't print the event in the color assigned to it?? it does on the screen but prints the event in black in white with the little dash of color before it and isn't as easy to have your eye find what you are looking for without the events being printed in color. help!!

    mdems,
    Would love to see if anyone has an answer - or if anyone is listening at Apple HQ --
    This Forum is unfortunately not Apple Support. According to Apple:
    What is Apple Discussions and how can it help me? 
"Apple Discussions is a user-to-user support forum where experts and other Apple product users get together to discuss Apple products. You'll find a wealth of information about your favorite Apple hardware and software products that will help you get the most out of your purchase. You can participate in discussions about various products and topics, find solutions to help you resolve issues, ask questions, get tips and advice, and more.
    If you have a technical question about an Apple product, be sure to check out Apple's support resources first by consulting the application Help menu on your computer and visiting our Support site to view articles and more on our product support >pages."
    There is no way that I know of to print events in color. That is probably why this question has gone unanswered. One workaround is to use a screen shot to capture and print the calendar with Preview.
    This is a feature we want!!
    I would recommend that you provide iCal Feedback, if you are interested in informing Apple of your desires.
    ;~)

  • Adobe Reader X cannot respond to printer properties number of copies issue

    Hi to all!
    I have an issue using Adobe Reader X 10.0.1, 10.1.0, 10.1.2, when select File > Print > Page Handling: Copies = 1, click Printer Properties > Page Setup, specify eg. Copies : 5, it print 1 copy only instead of 5 on Windows platform.
    Happen to a number of printers, eg. HP, Epson, Xerox, Canon, Brother printer, etc.
    For some reason, Adobe Reader X cannot respond to the No. of copies specified in the printer properties.
    Anyone have any solutions or workarounds to solve this issue besides specifying Adobe Reader X : File>Print>Page Handling: 5 copies?
    Is there any website, forum, supporting documents, with regards to above scenario?
    Please kindly advice, thank you in advance!

    Hi LoriAUC,
    Sorry for the late response!
    The users had a habit of going into the printer properties to specify other printer options eg. 2-sided printing, manual feed printing, heavy paper, etc... besides the number of copies inside the printer properties as well. Therefore, they prefer to do all the various changes in the printer properties instead of changing it at the Adobe Reader dialog.
    The same method were applied by all the users in Adobe Reader 9.4.7 and there were perfectly no issue at all! All the network printers (23 different brands and models in the network) responded to the printer properties "number of copies" accordingly.
    It seems that Adobe Reader X dialog Page Handling: No of copies, cannot synchronise and recognise the "No of copies" specified in the printer properties. This symptom was tested and found to be the same behaviour for different printer manufacturers. Wonder if there is a bug with Adobe Reader X as this issue did not occur for Adobe Reader 8 and 9 versions. The users were using Reader 8 and 9 versions before and there were no complaints until it was eventually all upgraded to Reader X, starting from 10.0.1, 10.1.0 and now 10.1.2.
    What do you think could be the cause?

  • PrePrint event scope affects all other print events?

    A PDF requirement is to have one document print in different versions for different recipients -- e.g., court, DA, public defender ..
    They aren't all allowed to see the same data on people in the system, and in one instance, the form must be secured as read only.
    Sure, there are a few different ways to do this, but the workflow chosen was to complete a PDF form, and then intercept the print or email functions to hide and secure pages.
    The people who fill out the form need the entire document.
    My approach was to offer a standard print button from the tool palette. No problem.
    Then I added another print button from the tool palette, and set the pre-print and post-print events to intercept and change the number of pages output (leaving out pp 4-6). Works fine.
    form1.page1.btnPrintLimited::prePrint - (JavaScript, client)
        TextField1.rawValue = "Secure prePrint";
        page4.presence = "hidden";
        page5.presence = "hidden";
        page6.presence = "hidden";
    Then, returning to the standard print button, it seems that now all jobs are rendered with the same pages missing as were defined in the pre-print and post-print events for the OTHER button.
    What gives? I thought that the scope for control events would be limited  to those events themselves.
    I even tried in the pre-print and click events for the standard report to force the visibility of pages suppressed in the events, e.g.,
    form1.page1.btnPrintNormal::click - (JavaScript, client)
        page4.presence = "visible";
        page5.presence = "visible";
        page6.presence = "visible";
    xfa.host.print(1, "0", (xfa.host.numPages -1).toString(), 0, 0, 0, 0, 0);
    Is my approach a faulty one? Should I be trying something else?
    I'm using LC Designer ES2.
    Would appreciate any guidance.
    Kind regards,
    Brian

    Hi Brian,
    There are three classes or groupings of events:
    Process events.
    Interactive events
    Application events
    See a table and example form here: http://assure.ly/nB0Bvz. Also have a look at this example, as it shows you how often some process and application events fire: http://bit.ly/gW3RNr.
    Okay, so interactive events like mouseEnter and click are restricted to the object that contains the script.
    However process and application (including prePrint and postPrint) fire for all objects that contain script in those objects.
    I hope the examples clear that up for you.
    I think you might have to consider a role based approach to the form. So for example if you can determine who is looking at the form, then using an if/else statement, print the appropriate pages.
    Good luck,
    Niall

  • ALV Print event in Custom Button

    Hi,
    I have requirement to call ALV print event in Custom Button after some condition. Can anyone give me the solution or link to achieve this requirement.
    Thank in advance.

    Hi Mani,
    On that ALV button event, write the following code.
      DATA lo_component TYPE REF TO if_wd_component.
      DATA lo_appl      TYPE REF TO if_wd_application.
      lo_component = wd_comp_controller->wd_get_api( ).
      lo_appl      = lo_component->get_application( ).
      lo_appl->print_page( ).
      DATA lo_app_info TYPE REF TO if_wd_rr_application .
      lo_app_info = lo_appl->get_application_info( ).
      DATA lv_app_name TYPE string .
      lv_app_name = lo_app_info->get_name( ).
    It helps you to print the table contents. Hope this helps you.
    Thanks
    KH

  • How to print more no of copies i.e more than 255 ?

    Dear All,
    ITCPO-TDCOPIES has been defined as type INT1(1 Byte) and it can take upto 255 no of copies. Can someone suggest me if i want to print more no of copies i.e more than 255 how to go about it?
    ITCPO has to be passed to Function Module 'OPEN_FORM' inside where ITCPO is moved to ITCPP.
    Looking forward to your valuable replies.
    Regards

    Depending on the number of copies required, divide that number into groups of 255. Put your print routines within a DO loop for that many times as the number of groups you calculated.
    Srinivas

  • Printed double number of copies (Invoice printing)

    Hi,
    While giving print for invoice from vf03 its printing double number of copies i.e. if i configure 3 copies in
    communication methods then it is printing 6 or 5 or 7 copies.
    Please need information where could be the problem.
    Thanks & Regards,
    Amit

    Hi Amit,
      The extra copies your getting are they blank?
    If you have used page-break option make sure there are no blank lines before it.
    Coz it will result in a blank page.
    Hope it helps!
    Much Regards,
    Amuktha.

  • Determine Printer From Print Event

    Hi,
    I am trying to use the PrintEvent and ReportDataEvent to handle printing of some forms bypassing SAP.
    From the SDK help.
    "You can use this event as an "exit" point for integrating third-party reporting tools instead of the SAP Business One Document Editor."
    Unfortunately I am unable to obtain the printer that the user selects in the print common dialog. It doesn't seem to be exposed by the UIAPI anywhere.
    There is a field in the PrintEventInfo called WithPrinterPreferences but it is useless without more information as to what the print preferences are.
    The print dialog appears before either the print event or the report data event so I can't stop it appearing using Bubble Event.
    My only workaround is to catch the print and print preview menu events and for specific forms stop them from propagating back to SAP. Then show my own printer selection dialog. The problem with that is I have no way of setting the document as "Printed". The printed field on the form is ReadOnly from the DIAPI. The only way of setting the form printed looks to be calling MarkAsPrinted during the print event.
    Regards Jared

    Hi Jared,
    i know this issue:
    it is possible to catch the print common dialog with .NET functionality.
    but very restriced - you can send "OK" to window - thats it.
    but at least the document has than the status "printed".
    the trick is catching the dialog window with searching the "Form Title".
    lg David

  • How to Capture Print Event ??

    Post Author: aarayas
    CA Forum: General
    Hi, I need Capture Print Event(), for report.In the the list to event from  crystal report viewer not have event to print?? sorry for my bat english, i speak spanish; tranks, 

    If there's no error being thrown by this function when you cancel the
    printing, then you can't.
    Edit: Just checked, and there isn't.

  • Capturing print event from PDF viewer

    Hi all,
    I am using class CL_GUI_PDFVIEWER to display and print a document using a SAP dynpro screen & a custom container.  I am successfully able to do this, but would like to capture the print event from the viewer in some way.  I did not see any print events for this class; is there any way to capture the printing of a PDF document from this viewer?  Thanks much,
    Rebecca Levings

    Hi Rebecca,
    I am using class CL_GUI_PDFVIEWER to display PDF, but also want to print the document.
    If I use PRINT Method of this class I am getting a runtime error. Can you please share your print code .. My requirement is to print a PDF File stored in file Client System without manual intervention.
    Thanks in advance!

  • Capturing the Print Event

    Hi Guys,
    A newbie here!
    I have been reading a lot but I can't seem to find the answer I'm looking for.
    See, I have created a report in SAPScript. Basically, I need to create a table (have done that) to record when the document was initially printed, as well as the latest date when it was reprinted.
    For succeeding prints, I have to mark the document with the label "reprint".
    The question is, how do I capture the "print event" so I can record said data.
    I need to capture the event
           1. when the user clicks on the print button of the initial dialog box; 
           2. when the user clicks the print button on the standard menu when he goes on print preview; and
           3. when the user clicks print from the system menu.
    Thanks much!

    Hi,
    Thanks! I know NAST is a message status table, but how would I connect it from there? How would it determine that the output was printed. Is there a way to know the object key that my program would create?

  • Capture print event in adobe reader and show a message

    Hi,
    We have only adobe reader installed on our machines, is it possible to use the sdk to capture the print event in adobe reader? Our goal is to show a message to the users before the print dialog appears and
    as soon as the user prints a document?
    Is it possible?
    Thank you,
    Peter

    You can certainly develop a plugin for Adobe Reader that would do this.
    Plugins are written in C/C++ and, for Reader, you will need to obtain a license & associated key from Adobe to enable that plugin.   Details are all in the SDK.

  • Automatic Print event

    Is there a way to trigger a print event of a custom form/report, based on an update to a UDF?
    Thanks,
    Rob

    I don't think so this is possible even through SDK because, Printing is not exposed to SDK.
    To confirm this, please post this question to the SDK Forum of B1, so that SDK experts can comment.

Maybe you are looking for

  • I cannot install Lion to a backup drive for my new Mac Mini

    I just bought the new Mac Mini with an i7 processor last week. I wanted to format a backup drive for it. When I tried to use the Lion Recovery partition on the new Mac Mini, I keep getting an error message that says it's incompatoble with the current

  • PNP - Selection scr een

    Hi Friends, I have one doubt on selection screen of logical database PNP. I enter the date in selection screen as 01.06.2006 to 31.12.2006 for both data selection and person selection. In the database table date(begda) is 01.01.2000. When i use provi

  • Recommendations for external monitor in combination with USB 3.0 dock and X1 carbon touch

    Dear Community, I'm waiting for my X1 carbon touch and USB 3.0 dock and keyboard/mouse to arrive any time soon. However, I'd be glad to get some help/recommendations on external monitor choice. For instance, the new HP envy 27" caught my eye, since i

  • What is the importance of "AdobePatchFiles" in my iMac?

    In my Apple iMac under Applications>Adobe I find the folder AdobePatchFiles with hundreds of files in it. A limited number are "documents" the remainder are "Unix Excutable files" They are all modified on the same date 28 november 2011. What is the m

  • Drill - Hierarchy

    We are currently migrating from BO 5.1.4 to BO XIR for Web. I have to build again complexe reports with Drill functions. The hierarchy defined in my universe does not seem to be taken into account on my report. I want to Drill on 4 or 5  different cr