Bulk Printing?

Hi
I'm developing an application that requires a bulk print of all customer records. Each customer should have their own page that lists all of their orders. I have a database view that lists this information, ordered by customer then order, but I'm struggling with printing it off.
Using a vertical report template and breaking at the customer ID (which is the first column) I can kind of display the information one after the other, but it's not really what I want as some fields repeat that I don't want to.
What I really need is to have the first 9 columns to show once per page (customer details) then the remaining 5 columns to show that refer to the orders. Then this to repeat on the next page for the next customer and so on.
e.g.
PAGE 1
customer1 name
customer 1 address
customer1 order1
customer1 order2
customer1 order3
PAGE 2
customer2 name
customer2 address
customer2 order1
PAGE 3
etc
Is this even possible with apex?
Thanks
Chris

Chris,
What I wound up doing is creating a package, so each data table basically had it's own procedure, and everything was kept all together.
The first procedure in my package just sets up all of the initial HTML and css code as follows:
PROCEDURE doc_start IS
BEGIN
htp.print('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
htp.print('<html>');
htp.print('<head>');
htp.print('  <title>New Mineral Resource Data System (NewMRDS)</title>');
htp.print('  <META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">');
htp.print('  <STYLE TYPE="text/css" MEDIA="screen, print">');
htp.print('<!--');
htp.print('  BODY  { background: white; color: black; white-space: pre; font-size: 10pt; font-family: monospace }');
htp.print('  .pagedate  { background: white; color: black; white-space: pre }');
htp.print('  .depositnum  { background: white; color: black; white-space: pre }');
htp.print('  H2 { font-size: 12pt; font-weight: bold }');
htp.print('  TABLE.common { border="0"; font-size: 10pt; font-family: monospace }');
htp.print('  TABLE.bord { border="3"; font-size: 10pt; font-family: monospace }');
htp.print('  TD.col-right { font-weight: bold; text-align: right; float: right; border="0" }');
htp.print('  TD.col-left { font-weight: normal; text-align: left; float: left; border="0" }');
htp.print('  TD.col-right-bord { font-weight: normal; text-align: right; float: right; border="2" }');
htp.print('  TD.col-left-bord { font-weight: normal; text-align: left; float: left; border="2" }');
htp.print('  TD.col-center { font-weight: normal; text-align: center; float: left; border="0" }');
htp.print('  TD.col-buffer { white-space: pre; border="0" }');
htp.print('-->');
htp.print('</STYLE>');
htp.print('</head>');
htp.print('<body>');
END doc_start;Nothing fancy, so it's easy (if you have a good css reference around) to modify it suit your needs.
The next prodecure simply grabs the data I need/want from my 'master/parent' data table, and then creates a HTML table, and then wraps the data values with the appropriate html table tags, as follows:
PROCEDURE deposit_info(dep_id_in IN NUMBER) IS
TYPE depc IS REF CURSOR;
v_cursor depc;
v_rec    deposits%ROWTYPE;
v_sql    VARCHAR2(1000);
BEGIN
v_sql := 'SELECT DEP_ID, NAME, REC_TP, DEV_ST, DEP_TP, '
      || 'PLANT_TP, PLANT_IDENT, OPER_TP, MIN_METH, MILL_METH, '
      || 'YFP_BA, YR_FST_PRD, YLP_BA, YR_LST_PRD, DISC_METH, '
      || 'DY_BA, DISC_YR, PROD_YRS, DISCR, SITE_COMMOD_TYPE, '
      || 'SIG, PROD_SIZE, INSERTED_BY, INSERT_DATE, UPDATED_BY, '
      || 'UPDATE_DATE, LAST_DEP_MOD, LAST_DEP_ACTION, LAST_DEP_TABLE, MAS_ID, '
      || 'MRDS_ID '
      || 'FROM deposits WHERE 1=1';
IF dep_id_in IS NOT NULL THEN
dbms_session.set_context('THIS_CONTEXT', 'DEP_ID', dep_id_in);
v_sql := v_sql || ' and dep_id = sys_context(''THIS_CONTEXT'', ''DEP_ID'')';
END IF;
OPEN v_cursor FOR v_sql;
LOOP
  FETCH v_cursor INTO v_rec;
  EXIT WHEN v_cursor%NOTFOUND;
  htp.print('<p>');
  htp.print('<pre><tt>');
  htp.print('<h2>General Site Information:</h2>');
  htp.print('<table CLASS=common>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Record Type:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.REC_TP||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Deposit Type:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.DEP_TP||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Development Status:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.DEV_ST||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Operation Type:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.OPER_TP||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Plant Type:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.PLANT_TP||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Plant Identifier:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.PLANT_IDENT||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Mining Method:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.MIN_METH||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Milling Method:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.MILL_METH||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Year of First Production:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.YFP_BA||v_rec.YR_FST_PRD||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Year of Last Production:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.YLP_BA||v_rec.YR_LST_PRD||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Years of Production:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.PROD_YRS||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Year of Discovery:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.DY_BA||v_rec.DISC_YR||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Discovery Method:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.DISC_METH||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Discoverer:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.DISCR||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Site Commodity Types:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.SITE_COMMOD_TYPE||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Significant:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.SIG||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Record added:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.INSERT_DATE||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Added By:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.INSERTED_BY||'</td>');
  htp.print('</tr>');
  htp.print('<tr>');
  htp.print('<td CLASS=col-right>Last Deposit Modification:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.LAST_DEP_MOD||'</td>');
  htp.print('<td CLASS=col-buffer>      </td>');
  htp.print('<td CLASS=col-right>Last Table Modified:</td> ');
  htp.print('<td CLASS=col-left>'||v_rec.LAST_DEP_TABLE||' - '||v_rec.LAST_DEP_ACTION||'</td>');
  htp.print('</tr>');
  htp.print('</table>');
  htp.print('</tt></pre>');
  htp.print('<hr>');
END LOOP;
END deposit_info;Again, nothing fancy or convoluted. I then just simply loop through all of my child (and grand-child) tables to get all the data for each of them as well, and handle each of them similarly. It did get a little more convoluted with the child/grand-child relations, but that wasn't anything major, I just had to define the procedure for the grand-child before the child, since the child table had to loop through the grand-child table for each child record.
For your case, in each table's procedure, you can add some checks to see if the current value of a field is the same as the previous value, and not print it if it's same, so you can achieve the break formatting you want.
I ended the package with two other procedures, one that ensures I print all of the code needed to close a HTML document, and the last one simply call all of the procedure in the order I want, as follows:
PROCEDURE doc_end IS
BEGIN
htp.print('</body>');
htp.print('</html>');
END doc_end;
PROCEDURE print_doc(dep_id_in IN NUMBER) IS
BEGIN
doc_start;
Page_Header(dep_id_in);
deposit_info(dep_id_in);
name_info(dep_id_in);
reporter_info(dep_id_in);
location_info(dep_id_in);
geoc_info(dep_id_in);
plss_info(dep_id_in);
commod_info(dep_id_in);
owner_info(dep_id_in);
holdings_info(dep_id_in);
anl_data_info(dep_id_in);
districts_info(dep_id_in);
drainage_info(dep_id_in);
land_st_info(dep_id_in);
physio_info(dep_id_in);
map_info(dep_id_in);
non_stand_map_info(dep_id_in);
model_info(dep_id_in);
orebody_info(dep_id_in);
rock_age_info(dep_id_in);
material_info(dep_id_in);
structures_info(dep_id_in);
tectonic_info(dep_id_in);
concentration_info(dep_id_in);
alteration_info(dep_id_in);
ore_info(dep_id_in);
resource_info(dep_id_in);
production_info(dep_id_in);
workings_info(dep_id_in);
other_dbs_info(dep_id_in);
comments_info(dep_id_in);
bib_references_info(dep_id_in);
doc_end;
END print_doc;It's fairly straightforward, and shouldn't be that difficult to adapt to your needs and data structure, if you know PL/SQL.
The 'stuff' in the deposit_info procedure about 'context' I ran across on a previous thread on here that had a link to the asktom site.
Hope this helps and gets you pointed in the right direction. Feel free to ask any questions.
Bill Ferguson

Similar Messages

  • Sale Order Bulk Print

    Hi Friends,
    Thanks in Advance.
    Is there any Report Program for the Sale order To Take Bulk Print .
    Please Tell the T.Codes Other Than VA05N, and the Report Program RSNAST0D.
    We had tried with the Report Program RSNAST0D. but no use.
    Regards:
    Sridhar.J

    Is ur requirement like triggering multiple sales order output types for printing u can write ur own program for it.
    if ur requirement is as i have understood let me know, i'll tell u how to proceed further
    кu03B1ятu03B9к

  • Firefox prints only every other page on a bulk print run, why?

    I use Firefox to bulk print Ebay invoices. It's been just fine for years. But 2 days ago it started printing just every other page in full. Intervening pages had only the top 20% printed (headers and footers are set to blank), and it prints one extra blank sheet at the end of the print run. 'Fit to page width' is enabled. I print at A5 size. When I check print preview it shows the problem exactly. The preview confirms 80% of every second page is missing, and there is an extra blank page at the end. Anyone else have this problem?

    Hi ashura,
    When you print, check to see which presets and defaults are selected. It could be a stored preference to only print every other.
    In order to reset these preferences in Firefox:
    *[[Fix printing problems in Firefox]]
    Did this help?

  • Problem with Bulk printing of invoices using VF31.

    Hi,
    I tried to give bulk print of invoices using VF31, for around 200+ copies. Printing was going on but suddenly stopped after 50 copies get printed.
    Situation is the same even after i retry it.
    Can someone advice on the reason please.
    Thanks.
    Best regards,
    Srikrishhna13

    Issue identified and there was a problem with Network.

  • Problem in Bulk Printing

    Hi Experts,
    Please Help in this :
    I have 2 Pages on my Smartform, while printing the Single copy of FORM Print is coming OK but if i am printing the form in BULK after 1st copy every copy of the form is coming with the top margins shifted below. (Note : IN Print Preview even for BULK Printing everything is coming OK, margins are shifting only at the time of Printing for every copy other than 1st).
    Regards,
    Rahul

    I guess, below steps may help you to close the thread.
    1) Go to transaction code SPAD
    2) Select Full administration
    3) goto Device Type (tab), click display
    4) Double click on the device type that is linked to your output device.
    5) Click on Formats
    6) Double click on the page format(Ex: DINA4)
    7) In Format (tab), make sure
        Printer initialization:
    # reset
    \eE
    # LaserJet Series II  ECMA-94 Latin 1 character set
    \e(0N
    # disable perforation skip mode
    \e&l0L
    Reset After Exit
    # reset
    \eE
    End of Line
    \r\n
    Rest all as blank.
    Regards,
    SaiRam

  • Bulk Printing on Windows 7 64 bit

    Hi
    My Name is Terrick and i am a computer Operator for the cold chain.
    We recently gave new Windows 7 64 bit machines to our user's, and since the new machines have been installed our user's cannot do bulk printing.
    They are Bulk printing TIFF format files.
    They can print a maximum of 30 jobs, and cant go further than 40.
    I increased the Virtual memory so that the machine can locate more memory to the printing client but that failed.
    Installed 64 bit printer drivers which are compatible for the systems but that also is not coming right.
    My last option was to get software that could convert the TIFF Files to PDF, and with that all seems fine.
    So the issue is basically printing this format of images.
    Can someone advise please.

    Please try the following link for a solution and let me know if it works.
    http://social.technet.microsoft.com/Forums/windows/en-US/d212762e-d64c-438e-b647-ab7c61ff61a0/explorer-crashes-when-rightclick-printing-selected-images-as-contact-sheet?forum=w7itprogeneral
    Thanks

  • Adobe forms-Bulk Printing

    Hello Gurus,
    Can you please send me the documentation on bulk printing of forms .
    Can you even send me about digital signatures also.
    Thanks,
    Indra Karan

    Hi all,
    Regarding the digital signatures:
    You can add a signature field to your form from the standard library in Adobe Designer.
    You can then check the details when the form is submitted using the <a href="https://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/clientserver/adobe/pdfdocument/api/IWDPDFDocumentSignature.html">IWDPDFDocumentSignature interface</a> which is part of the PDFDocument API.
    Hope that helps.

  • Bulk Printing of PM order operations

    How do you do bulk printing of orders where you only select the operations you want. I tried IW37N, and it prints the whole order. Some of our orders have over 10 operations with long text and we don't want to print the whole orders.
    Thanks

    Hi Naseer,
    Please find below link for your reference.
    Service Management - Define Shop Papers, Forms and Output Programs
    Service Management - Define Printer
    Service Management - Basic Settings - Print Control - Define Shop Papers, Forms and Output Programs
    In case if you still have doubts, please create a new thread with your query.
    Regards
    Terence

  • Photoshop Batch Bulk Print Action Printing Out of Order

    I have 900 files I need to print out. I created an action that simply prints the current document, then closes it. The problem is, photoshop is printing the files out in random order. The files are numerically ordered, it should print in order.
    I go to File -> Automate -> Batch and select the printing action that I recorded and set the folder that contains the image files. The image files are all labeled numerically from the data set merge I did within photoshop.
    The problem is, even though this list is in numerical order, photoshop will print these out in random order. For example, the file folder containing the image files is listed below in correct order.
    Instead photoshop printed them in this order: CustomMailer_Data Set 1, CustomMailer_Data Set 10, CustomMailer_Data Set 11, CustomMailer_Data Set 12, CustomMailer_Data Set 13, CustomMailer_Data Set 14, CustomMailer_Data Set 16
    Please help, I really need this bulk action to print them out in order, I have no idea what the program is doing.

    @Paul Riggott,
    Thanks for taking the time to write the script, I really appreciate it. However, I seem to be using it incorrectly since its not renaming my files.
    here is what I did.
    1. Launched Adobe ExtendScript & Pasted your code in
    2. Saved out script file to desktop
    3. Launch Photoshop, file ->script->browse to locate where script was saved to
    5. Select source file containing PSDs to rename
    Below shows the results.
    Tried running it directly within extend script as well with no luck.

  • Bulk printing of invoices

    Hi friends,
    I hv a requirement of printing numerous invoices at one go, instead of printing one by one through VF03.Pls suggest, how it could be done.
    Regards
    Anand

    Hi Santhosh,
    Thanks a lot for ur suggestion.Can u pls explain me in details the complete process, how should I go abt it.
    Thanks in advance.
    Anand

  • FIM CM Bulk Smart Card Issuance Client and Printing Smart Cards

    Hi,
    From what we are reading, the Bulk Smart Card Issuance Client can be used to Issue and Print Smart Cards - what does MS mean by 'print smart cards'?
    Do they mean 'print on smart cards' like for instance users photo's?
    Or would we still need to utilize something like ID Works Software?
    Thanks

    With FIM-CM you are limited to which software Middleware and printers you can use (at least the version I am running FIM 2010).
    We are running ID Works Enterprise Edition 5.1 on a windows 7 x32 workstation.
    CM now supports ID Works Enterprise Edition 6.51 which supposedly can work on an x64 system but we haven’t tried it.
    One thing to note is the cm software patch.  The CM Update allows the bulk client to be installed on windows 7.  But you can't install the client on windows 7 to apply the patch that lets it run on 7.  The work around is the Microsoft released
    a copy of the bulk client with the patch already applied.  This worked fine for the install.  But we got errors when we tried to connect to the CM Servers.  It couldn't find the templates.  Turns out the dlls in the patched bulk client
    were newer than the .dlls on the CM server, and this was breaking the notification.  We patched the CM server, and everything was good. 
    For Printers we got 2 SP75 plus Datacard printers.  We wanted the higher capacity, and the ability to laminate both sides of the card.  We got two for coverage so we will have one when we have to send one in for repair.  (Not saying that the
    printers are "bad” but they take a lot of abuse printing, and need a lot of care).
    Although the Plus printers aren’t listed in the supported printers, we got confirmation from MS that the Plus worked (they replaced the older ones), but that the newer 95's probably wouldn't.  (I think they are a different kind of printer).
    One more data point to add.  Work out your Pin Policy before you buy your cards.
    We got our cards first, and then figured out our PIN policy.  If we knew our PIN Policy at purchase time, the manufacture (Gemalto) could have set it.   We have been working on ways to set it using CM.  But have finally given up. 
    We figured out how to set the PIN policy using APDU commands, and CM can do application management via APDU commands.  But it looks like it can only do that for Java Cards, and not the .net cards (yet, we keep hoping).  So we are going to set the
    Pin Policy before we bulk print.  And when we order our next set of cards, we will order them with the PIN policy set.
    Over all I am very happy with CM.  and there is a lot more information on setting it up now than there was a two years ago (thanks a lot to Paul Adare and Brian Komar,  who I am beginning to think are the same person.  Has anyone actually
    seen both of them at the same time? 

  • Hp Laserjet Enterprises M806dn Printer

    I have the above printer and recently purchased , after installtion this printer , i am not getting proper speed from this printer , as per manual it will print 55 pages /minulte , i am giving bulk printing , it is printing around 15 to 20 pages only , it is taking more time for spooling.
    My operating system is windows xp 2002 service pack 2.
    I have connected the printer is through LAN.
    I have used this driver for installation HP LaserJet Enterprise M806 Printer Series PCL6 Print Driver
    Please send me the solution.

    Hello @jksathish,
    I understand your concerns. Unfortunately, for this type of printer, I need to direct you to our Enterprise Business Community Forums. This will be the right section to troubleshoot this issue. Good luck.
    I worked on behalf of HP.

  • How can I make Address Book print labels how I want, or export to Word?

    I have found a number of serious problems with Address Book, which unless I can overcome them mean it is entirely useless for me. Almost all are to do with creating mailing labels or envelopes:
    1.I can't find any way of defining a sheet format for labels different from those on the pre-defined list. My labels are in 2 columns of 8, on a sheet 12” long by 8” wide, margins 0.5mm top and bottom, and ½” left and right. The labels themselves are 3½” x1½”. Address Book can't do it. It is odd that this is so restrictive, whereas with envelopes one has total flexibility.
    2.Although I can define which address I want to print on each label or envelope, I can't find a way of defining which field should be used for the first (name) line. It always consists of the First and Last names as recorded on each card. This is not what I want. For different mailings, I want to use different first lines, as in many cases each card is the address of a family group, the First and Last names simply recording the names of the parents e.g., John and Mary Smith. But for my Christmas mailing I want to print 'The Smith Family', whereas for my charity mailshots I want to print 'Mrs Mary Smith', as she is the charity supporter, not her husband or children.
    3.The address layout seems to be fixed, with each element on a separate line. This is not how I want to print, as in some cases it makes for too many lines, particularly on labels. I want to put the zip/post-code on the same line as the county or state, separated by about ½”. But I can't see how to dictate the layout at all. On labels there is a further problem, in that I can't define a vertical and/or horizontal off-set for the text.
    4.The Country does not print at all on labels, making the application quite useless for foreign mailings, and I can't find a way of overcoming this. Over half our mailing addresses are affected by this.
    5. And another problem really puts the final cherry on the icing of this cake: There is no way I can find of exporting the data from the address book in a format, e.g. a csv file, that I can bring into a word processor where I could do these mailings how I want them. Not only does the box fail to do what I need, it is also locked.
    I don't understand why, having set up Address Book on the database principle that one should have have to record each contact only once no matter how many ways one needs to use the data, it seems it has then been implemented in a way that prevents it being used in one of the most obvious ways, to print addresses in a format of the user's choice.
    The Applecare adviser tells me the problems I have can't be overcome. Is that right, or is she, and I missing something? Please help.

    noondaywitch wrote:
    "It's Christmas card time again and the fact that Address Book is useless for this purpose is really frustrating."
    While I sympathise with the functionality of Address Book, I'm old-fashioned enough to write my cards and envelopes by hand (shock! horror!) and get quite p***-off to receive bulk-printed stuff.
    Just a thought, peeps.
    It'd be all too easy to follow that up with a cheapshot making reference to how many Christmas cards you have to send, but I'll rise above that and explain that some of us might want to use this for business contacts and have 300+ cards to address.
    It is a shame that the printing feature from Address Book is so close, yet so far from performing this simple task. It is a shame that Pages can run mail merge, but only for one record per page (which is useless for label printing). It is also a shame that MS Word for Mac does proper labels but doesn't recognise Address Book as a datasource.
    These things are all a shame because with Apple's software, you rather expect things to "just work", as per their advertising, and when very simple things don't "just work", it difficult not to feel cheated.

  • Mass printing of excise invoices

    hi sap gurus,
    i want to go for mass printing of excise invoice in the order of 40-50 invoices.
    is there any report or any transaction code which can help me do mass printing of excise invoices on fortnight basis.
    please do help me on this issue.
    j1ip only enables me to print one excise invoice at a time.
    wat i want is multiple printing of excise invoices.
    regards,
    Siddharth.

    Dear Siddharth
    For information, in j1ip itself, you have the option of giving multiple excise invoices.  Assume you have some 30 excise invoices to be printed out from sl.no.1 to 30, in j1ip, against the field "Excise Invoice", in the first box enter 1 next to "to" tab, enter 30.  If you execute now, you will get bulk print outs.
    Alternatively, you can also select the "Excise Invoice Date" field where also you define "From - To" date.
    thanks
    G. Lakshmipathi

  • Multiple Documents Print functionality in IFS

    Have anyone deployed in iFS a functionality permitting to select a set of document and then print them selecting a particular printer (like in a bulk-print)?
    Do you know if it is possible in iFS, and if there are some samples? (My client is a web only client)
    I know that som document management tools do this, but I don't know how to replicate it in iFS...
    Thanks in advance,
    Laura

    Hi Srinivas,
    You can do this but it will be combination of ECMA and JS. First you need to get selected file name by ECMA script then call a java script function to print documents.
    Here is script to print all docs: http://stackoverflow.com/questions/7187400/printing-multiple-pdf-files-using-javascript
    Hope it could help
    Hemendra: "Yesterday is just a memory,Tomorrow we may never see"
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

Maybe you are looking for

  • Album says purchased but can't redownload it and not in cloud or purchased

    A long time ago I purchased Talk That Talk (Deluxe Edition) by Rihanna on my itunes on my mac. My computer crashed and I had to get a new one. I signed back on to my account on itunes and I was able to redownload my music to my new computer, except f

  • RUEI  javascript custom cookie added to $OA_HTML/Appslocallogin.jsp does no

    Hi All, We are trying to create a persistent javascript cookie in $OA_HTML/Appslocallogin.jsp to monitor EBS sessions through Oracle RUEI. 1. we are not sure that the custom javascript cookie cookie creation code to be added in $OA_HTML/Appslocallogi

  • The SAP Network Forum message?

    Hi, I am getting frequently this message " The SAP Network Forum is currently down", whenever i access to this forum, I like to know to is because of my connection speed or something else? Thanks Sa_R

  • I0S6 email problems

    Has Apple responded to anybody regarding a fix for the problems that the upgrade has caused many of us using wifi?  I can get emails but cannot reply.  SOMETIMES I can send a new email but only if it feels like it.  I can do web searches but can only

  • Photoshop Import Clipboard Memory Error

    HI, I'm trying to import a graph from excel into photoshop via copy in excel, then new doc in photoshop and paste. However, I now get a 'not enough memory to import clipboard' error in Photoshop. This is on a macbook pro with 2GB memory, no other app