Number of different copies to be printed in smartform

Hello,
I have developed a smartform with 3 different pages, now when i give a print command , the first page should print 2 number of copies , second page should print 3 number of copies and the third page should print 4 number of copies.
Is it possible in smartform, if so how?
Thanks and Regards
A

hi,
for printing different copies u have to use loop in main window and check for the condition for number of page.
and den after printing all the values in mainwindow put command node and mention page no say page1 in urcase there put condition fr watever amount of repeated copies u want ex 2 in ur case.
then once 2 times page 1 has been printed put a commad for goto page 2 and loop accordingly for the no of time u want
then for the third page.
hope this will help u .
regards,
prashanti

Similar Messages

  • Two different table to be printed in smartform

    Hi Abapers,
                          I am having a requirement of printing the data from two internal table in the smarform. Since there is only one main window in the smartform. The data present in the first table is taken in to the main window. The data of the other table should be printed at the specifed place in the smartform . If the data is more in which cannot be printed in single page It should automatically get extended into the next page in the specified place. Since I can able to use only one main window I am using the other table entry in the secondary window. but if there is more data, the data is getting truncated and not displaying in the next page.Can you please give me the solution to this problem.
    Points will be rewarded for the fruitful answers.
    Thanks & Regards
    Nagaraj S.

    Hi
    In the general attributes of the page,check if it is given adjactent to "Next",the name of the next page.
    If it is given then in the conditions tab of the second table,just select the additional event you require there.
    Hope this resolves the issue. Reward points if helpful.
    Thanks and Regards,
    Vishwa.

  • Printing different/selective files with different copies

    Hi everyone,
    I've been working on finding a solution, on how to print different pdf files with different copies, without opening the pdf-files.
    Task:
    I have a folder, with 25 pdf files
    I want to make a php overview, of the folder
    At the end of each line/file - i would like to add a number for the copies
    In the end, I would like to simply press print - and every document ive added a number/copies to - are being printet...
    I guess I need to use PrintPDF - but does anyone know any pre-made program/function - that could handle the "copies" part...?
    I hope someone can help me out,
    Thanks
    Jan

    Well, i had hoped that the acrobat could open silent - eventhough they've removed that feature in the newer versions.
    Even though the program would open - if the amount of copies was added - and i just hat to press print - it would ease the job alot.

  • Setting the number of copies to be printed through crystal reports?

    I posted this in another section and got redirected to this one. 
    So I'm working with some software that utilizes Crystal Reports 10, and am looking for a method where through Crystal Reports I can take a user entered parameter value and set that as the number of copies for the printer to print. This isn't an option in Crystal Reports itself, so I understand I may need to dig a little deeper and write some customization to accomplish this.
    I've been building Crystal Reports for about two years now, all self taught, but have never had to go this far, where/how would I start on this? And I tried searching for a similar question in these forums to see if it's come up before but couldn't find anything. I'm kind of stuck at the moment because I can't alter the software that's using Crystal Reports to set number of copies, so I want to see if I can do anything in Crystal.

    Really, this is actually more of a report design question, though I understand why they's ask you to post here also.
    Anyhow, I think what you are asking is; can I design a report such that it will internally hold how many copies it should print(?).
    Answer to that is no.
    Only way to do multiple copies would be to modify the app you are working with. E.g.; go to the authors of the app and ask them for an enhancement to their product so that you can print multiple copies.
    - Ludek

  • Unable to print number of copies on label printer

    Hi Everyone,
    I am able to print smartform any number of copies on standard printer.
    But when I change from standard printer name to Label printer name and execute the smartform with number of copies ( greater than 1 ).
    For label printer I am able to print only one copy, irrespective of number of copies specified. However I can able to number of copies specified for standard printer.
    Can anyone help me what could be the reason? Is that any settings should be done for label printer ?
    Thanks.
    From
    Reddy

    Paddy,
    Welcome to Apple Discussions.
    The problem might be a corrupt preference. Does this problem occur with all applications? If not, which application?
    Try Repair Disk Permissions using Disk Utility.

  • Printing a smartform to a different printer than my default

    I have a function module that gets passes a delivery number and the short-name of a printer.  The function module is supposed to print a smartform (pick list) for that delivery to the specified printer.  The problem is that no matter what I put in for the printer, it prints to my default printer.  If I change it, it will go there.  I'm sure I'm just missing some kind of setting.  Here is what I got:
    printer is the shortname for the printer i want, type RSPOPTYPE
    *Print Smartfomr picklist for  delivery
      data: ls_ctrl_prnt type ssfctrlop,
            ls_outp_opts type ssfcompop.
      ls_ctrl_prnt-no_dialog = 'X'.        " Suppres dialog
      ls_ctrl_prnt-device    = 'PRINTER'.
      ls_outp_opts-tddest    = printer.
      ls_outp_opts-tdprinter = printer.    " Specify required printer
      call function gv_func
        exporting
          control_parameters = ls_ctrl_prnt
          output_options = ls_outp_opts
          pk_hdr               = sf_info
          pk_orders            = sf_odrs
          pk_items             = sf_item
          pk_pgbk              = sf_pgbk
        exceptions
          formatting_error   = 1
          internal_error     = 2
          send_error         = 3
          user_canceled      = 4.
    Am I missing something here?  Any help would be greatly appreciated.
    Thanks,
    Curtis

    I was able to solve my issue. The field TDIMMED (print immediate) in the parameter OUTPUT_OPTION need to be passed with the value 'X'.
    The code is pasted below.
    DATA: l_ssfctrlop TYPE ssfctrlop,
            l_ssfcompop TYPE ssfcompop,
            l_formname  TYPE tdsfname,
            l_fm_name   TYPE rs38l_fnam.
      CLEAR l_formname.
    Get the smartform name based on the output type
      SELECT SINGLE sform FROM tnapr INTO l_formname
        WHERE kschl = ysdt_dynlayout-auart
          AND nacha = '1'
          AND kappl = 'V2'.
      Get the smartform function module name
        CLEAR l_fm_name.
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = l_formname
          IMPORTING
            fm_name            = l_fm_name
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
        IF sy-subrc EQ 0.
          l_ssfctrlop-no_dialog = 'X'.                        " print popup dialog box is suppressed
          l_ssfcompop-tddest    = usr01-spld.         " the printer name is passed from screen to this field
          l_ssfcompop-tdimmed   = 'X'.                    " print immediate option is set
          l_ssfcompop-tdcopies  = copies_in.         " number of copies of output required
        Call the smartform
          CALL FUNCTION l_fm_name
            EXPORTING
              control_parameters = l_ssfctrlop
              output_options     = l_ssfcompop
              user_settings      = ' '                            "manual override of user settings            
              i_del_head         = likp
              i_dyn_layout       = ysdt_dynlayout
            TABLES
              t_del_item         = ig_lips
              t_home_address     = ig_home_address
              t_header_text1     = ig_header_text1
              t_footer_text1     = ig_footer_text1
              t_footer_text2     = ig_footer_text2
              t_footer_text3     = ig_footer_text3
              t_text4            = ig_text4
              t_text5            = ig_text5
            EXCEPTIONS
              formatting_error   = 1
              internal_error     = 2
              send_error         = 3
              user_canceled      = 4
              OTHERS             = 5.
        ENDIF.

  • Because I have imported from a number of different sources into Aperture (3.2) over the years, I now have many duplicates in my library.  Is there any way in which these can be identified and lated deleted?

    Because I have imported photos from a number of different sources into Aperture (3.2), I now have many unwanted duplicates.  Some of these are in the same "file/folder", others are not.  Additionally, some of the duplicates may have different file names.
    Can anyone advise me if there is a way of identifying such duplicates in Aperture so that I may later delete them?  If this cannot be achieved within Aperture 3, does anyone know of a proven second-party app?
    Before ending I should mention that I am reasonable competent on a computer but I am not in any way an expert.  (So simple answers would be appreciated if this is possible!)
    Hopefully yours,     Jeremy

    Jeremy -- I suggest making a complete separate copy of your Library and any Referenced Masters and keeping it for a year.  "Duplicate" is, to humans, relative rather than absolute.  My use of Duplicate Annihilator turned up many useful near duplicates, most of which I couldn't quickly distinguish.  With a complete copy nearby, you can be slightly aggressive in your pruning, knowing that should you turn up something in ten months that you need (as an example: the full-size color file for a black & white printed shot that you thought was based on a full-size color Master but which is not), you'll have it.
    IME, it was much more effective to get rid of things I didn't need, than to figure out which of several possible duplicates of an Image I did need.

  • Installing multiple copies of one printer (HP1102W) on the same computer

    OK here is the setup, we have an activity that needs, useing multiple computers, to support 2 different locations with the same physical printer, in this case the HP1102w.
    Our computers are running Window 7.
    We will move the printer between the locations for use on different days of the week and want to avoid reinstalling the print driver each time we change sites.
    Each site has its own wireless network with the same basic wireless network setup (ip address etc , open network). Fortunately the same IP subnet 192.168.1.0 but with different SSIDs.
    We have setup the printer at both locations but we have to make configuration changes to the setup to support the different SSIDs which is a pain that is subject to errors.
    What I am thinking of doing is to install the printer at each location using the smart install. This will create two different instances of the printer on each machine.  Is this possible or will they get in each others way?
    Can I do this and then just change which printer is the default machine at that site? 
    Will this work???
    If not what alternatives do I  have.
    Thanks
    Marty K

    I think theoretically that will work.  You will just have to reconnect the printer to the router each time.
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    When I click "about this mac" to check on my storage, I get a number of different sections music, movies, etc. but also I get a section called backups, where can I find the files in this section?

    Welcome to Apple Support Communities
    All the storage in "Backups" is taken up by local snapshots, which are made automatically in all MacBooks, MacBooks Pro and MacBooks Air with OS X Lion or newer and Time Machine turned on.
    See > http://pondini.org/TM/30.html I recommend you to leave them there, because they will be removed automatically. However, if you want, you can disable or remove them manually if you want, even if there's no reason to do this. Have a look at the link above for more information

  • Same Batch Number with different characteristics value

    Dear Gurus,
    I have the following scenerio:
    The finished goods should be maintain in batch with external number  and at the time of confirming the finished goods in co11n the client want to capture the finished goods value like length, width and diameter.
    So we propose the batch characteristics with class type of 022 for finished good and we maintain the character as length, width and diameter under the batch class 022 and assign the batch class in finished good classification view.
    Now the requirement is we want to capture the batch characteristics value length width and diameter with same batch number for multiple confirmation.
    Example:
    Confirmation      Batch number               batch Class               Length     width     Diameter
    1                        1000                              022                              100        50             20
    2                        1000                              022                              120        25             10
    3                        1000                              022                              150        70             30  
    Now at present we are trying to capture the batch characteristics with same batch number but our standard system will not allow to maintain the different batch characteristics value under same batch number. If we overrite the batch characteristics in msc2n transaction the last value maintained be copied to all batch number. but we want same batch number with different batch characteristics value.
    Please share your idea and try to solve..
    Regards,
    Vimal

    Dear Vimal,
    It is not possible to maintain multiple batch characteristics in one batch.
    Work around is to create original batches and assign to your production order.  During CO11N, generate one batch per confirmation.  There is a report in batch information cockpit to link between original batch and batch per confirmation. 
    Rgrds,

  • How to Use Same Asset Number with Different Sub-number

    Hi
    We want to sell some assets and buy them back on lease. We want to use same Asset number with different sub-number under the same company code. This new asset will be under different Depreciation Area (Statistical).
    We use external numbes for assets . And same asset number range is used by all compnay codes.
    Please suggest whether this is possible & how.
    With Regards,
    Nitin

    Hi,
    Go to field status for asset master data section and change the field status to optional for field Deactivation date, then follow the below steps.
    You can create an sub asset number to an asset, which is already deactivated by retirement as like normal sub asset creation with AS11.(While creating sub number, you need to remove cap date and deactivate dcate field manually from asset master)
    With this you can get new asset number as same as your old retired asset main number and but sub number will be different.
    To post to diff dep area, other than 01, then you first create an acq transaction type, which will post only to specific areas and then use the new asset number in ABSO to post acq with your custom TTY.
    I have tested and found working well in my system............Try now in your test client
    Thanks,
    Srinu

  • Catalog vendor having different vendor number in different R/3 system

    Hello Experts,
    We are in SRM 7.0 classic scenario and we are facing an issue as described below:-
    We are using a punched out catalog which has different venor number in different backend system.We have 2 R/3 backend system say R/3 sys1 & R/3 sys2.
    Vendor No for the Catalog vendor is say:-
    Vendor No     R/3 sys
    V123              R/3 sys1
    V567              R/3 sys2
    We have connected the R/3 sys2 just a week back.We have replicated the catalog vendor number V567 from R/3 sys2 into SRM system and we are able to successfully create a Shopping cart in R/3 sys2 using catalog.
    However,we are facing a problem and the problem is that,
    When we create a shopping cart in R/3 sys2 using catalog,by  default we get a message that "Vendor V123 is not intended for plant"
    We are able to change the vendor from V123 to V567  in the portal,but we are unable to understand why the vendor V123 is picked up as a default catalog vendor.
    Can you all experts,plz help us understand why this vendor V123 is picked up as default vendor and how we can ensure that Vendor V123 is picked up when we are creating SHC is system R/3 sys1 & vendor V567 is picked up as default vendor when we are creating SHC in system R/3 sys2?
    Any pointers will be highly appreciated.
    Thanks & Regards,
    RKS

    Hello RKS,
    >
    RKS_Jsr wrote:
    > (...)
    > Can you all experts,plz help us understand why this vendor V123 is picked up as default vendor and how we can ensure that Vendor V123 is picked up when we are creating SHC is system R/3 sys1 & vendor V567 is picked up as default vendor when we are creating SHC in system R/3 sys2?
    >(...)
    This means for same Product Category (and same material ID) coming from your Punch-Out catalog, you can create a Purchase Requisition in R/3 sys1 OR R/3 sys2 ?
    If i am correct, how can you manage in your catalog two vendor numbers for same Product Category (and material ID) ?
    I guess only one vendor number (V123) is maintained in your catalog. That's why, even if your management rule is to send your SC to R/3 sys2, you will have always vendor V123 as the default one, as it is the only one in your catalog...
    Regards.
    Laurent.

  • Same batch number for different order materials

    Hi, pls advise can we assign same batch no's for different production order finished products?

    Yadav,
    Yes, it is possible to assign the same batch number to different production orders in the Order Goods Reciept tab.  If you are not maintaining any batch in this field then you can manually create a batch in MSC1N and use the same when making GR using MB31 or MIGO.
    Regards,
    Prasobh

  • Error: The number of configured copies for database 'DB-1' (1) is less than the required redundancy count (2).

    Hello , I think the below event alert 4113 is very common and is due to that only one database copy is present in DAG but is there any way we can stop this alert for the
    specific database.  
    The message tells that there is only one copy of the database - create another copy and the warning message will go away but
    we do not want to create another copy. So is there any way we can stop this event getting generated.
    Database redundancy health check failed.
    Database copy: DB-1
    Redundancy count: 1
    Error: The number of configured copies for database 'DB-1' (1) is less than the required redundancy count (2).
    Name                 Status RealCopyQueu InspectorQue  ReplayQueue      CIState
                                           e          
    ue                          
    DB-1\       Mounted            0            0            0     
    Healthy
    MAILSRV2
    ===============
     Full Status
    ===============
    Identity                         : DB-1\MAILSRV2
    Name                             : DB-1\MAILSRV2
    DatabaseName                     : DB-1
    Status                           : Mounted
    MailboxServer                    : MAILSRV2
    ActiveDatabaseCopy               : MAILSRV2
    ActivationSuspended              : False
    ActionInitiator                  : Unknown
    ErrorMessage                     :
    ErrorEventId                     :
    ExtendedErrorInfo                :
    SuspendComment                   :
    SinglePageRestore                : 0
    ContentIndexState                : Healthy
    ContentIndexErrorMessage         :
    CopyQueueLength                  : 0
    ReplayQueueLength                : 0
    LatestAvailableLogTime           :
    LastCopyNotificationedLogTime    :
    LastCopiedLogTime                :
    LastInspectedLogTime             :
    LastReplayedLogTime              :
    LastLogGenerated                 : 0
    LastLogCopyNotified              : 0
    LastLogCopied                    : 0
    LastLogInspected                 : 0
    LastLogReplayed                  : 0
    LogsReplayedSinceInstanceStart   : 0
    LogsCopiedSinceInstanceStart     : 0
    LatestFullBackupTime             :
    LatestIncrementalBackupTime      :
    LatestDifferentialBackupTime     :
    LatestCopyBackupTime             :
    SnapshotBackup                   :
    SnapshotLatestFullBackup         :
    SnapshotLatestIncrementalBackup  :
    SnapshotLatestDifferentialBackup :
    SnapshotLatestCopyBackup         :
    LogReplayQueueIncreasing         : False
    LogCopyQueueIncreasing           : False
    OutstandingDumpsterRequests      : {}
    OutgoingConnections              :
    IncomingLogCopyingNetwork        :
    SeedingNetwork                   :
    ActiveCopy                       : True
    Thanks

    That regex looks odd to me.  I assume you have databases with names like "Mailbox Database <ten digit number>" (standard Exchange default name, in other words), "ABC-DB" and "HOME-DB".  If this is the case, wouldn't
    you want "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"?  THis works if I run it from a prompt:
    [PS] C:\Scripts>"Mailbox Database 0123456789" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    True
    [PS] C:\Scripts>"Mailbox Database 123456789" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    False
    [PS] C:\Scripts>"Mailbox Database 12345678910" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    False
    [PS] C:\Scripts>"HOME-DB" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    True
    [PS] C:\Scripts>"ABC-DB" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    True
    [PS] C:\Scripts>"ABCD-DB" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    False
    [PS] C:\Scripts>"HOM-DB" -match "(?:Mailbox Database \d{10}$|^ABC-DB$|^HOME-DB$)"
    False
    I find it's easiest to test RegEx's from the prompt this way.  If the above isn't your goal, let us know, and we'll see if we can come up with something better.

  • How to limit the number of pages a PDF can print?

    Hi,
    Does anyone know how to lime the number of pages a PDF can print? For example, if a PDF has 100 pages, it only allow the user to print no more than 100 pages.
    Any software can achieve this ?

    But once I purchased a ebook, which required be opened with Adobe digital edition, the ebook only allow to print 57 pages out of 300+ pages total. 
    Are there any way to convert a PDF to a ebook and encrypted by the printing limits?

Maybe you are looking for