[Report][PDF] Shrink to fit in a page

Hi,
I use the traditional method to output the ABAP spool report as a PDF inside a BSP Page.
But, I encounter a <b>print problem</b> since the report is very large (the LINE-SIZE of the report is 265) and <b>it does not entirely fit into 1 page</b>.
Is this possible to change the parameters ?
For information I use :
CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING
*   layout                 = 'X_PAPER'
    layout                 = 'X_LANDSCAPE'
    line_count             = 65
    line_size              = 265
    no_dialog              = 'X'
  IMPORTING
    out_parameters         = print_parameters
*   out_archive_parameters = arcpar
    valid                  = val
  EXCEPTIONS
    archive_info_not_found = 1
    invalid_print_params   = 2
    invalid_archive_params = 3
    OTHERS                 = 4.
Then:
  SUBMIT (report_name) USING SELECTION-SET variant
                       TO SAP-SPOOL
                       SPOOL PARAMETERS print_parameters
                       WITHOUT SPOOL DYNPRO
                       AND RETURN.
And, finally:
  CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
    EXPORTING
      src_spoolid              = w_spono
    IMPORTING
      pdf_bytecount            = w_bytecount
    TABLES
      pdf                      = wt_pdf.
<b>Which call should I modify, and how ?</b>
Thanks in advance.
Best regards,
Guillaume
Message was edited by: Guillaume Garcia

Hai Check the following Code
REPORT Z_ABAPOUTPUT_PDF.
data: w_ident     like tsp01-rqident,
      w_doctype   like tsp01-rqdoctype,
      w_bytecount type i.
data: itab_pdf    like tline occurs 0 with header line.
parameter spoolnum like tsp01-rqident obligatory.
selection-screen begin of block a2 with frame.
parameters:  to_pc   radiobutton group a2 default 'X',
             pcfile like rlgrap-filename lower case,
             to_unix radiobutton group a2,
             unixfile(255) lower case.
selection-screen end of block a2.
at selection-screen on block a2.
  if to_pc = 'X' and pcfile is initial.
    message e398(00) with 'Enter PC File Name.'.
  elseif to_unix = 'X' and unixfile is initial.
    message e398(00) with 'Enter Unix File Name.'.
  endif.
at selection-screen on spoolnum.
  select single rqident rqdoctype
         into (w_ident, w_doctype)
         from tsp01
         where rqident = spoolnum.
  if sy-subrc ne 0.
    message e398(00) with 'Spool' spoolnum 'not found'.
  endif.
at selection-screen on value-request for pcfile.
  call function 'WS_FILENAME_GET'
       exporting
            mask     = ',.,..'
       importing
            filename = pcfile
       exceptions
            others   = 1.
  if sy-subrc <> 0.
    message id sy-msgid type 'I' number sy-msgno
            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  endif.
start-of-selection.
  if w_doctype = 'LIST'.
    perform get_abap_spool_in_pdf.
  elseif w_doctype = 'OTF'.
    perform get_otf_spool_in_pdf.
  endif.
  if to_pc = 'X'.
    perform write_pdf_spool_to_pc.
  else.
    perform write_pdf_spool_to_unix.
  endif.
  message i398(00) with 'Completed OK'.
form get_abap_spool_in_pdf.
  refresh itab_pdf.
  call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
       exporting
            src_spoolid              = w_ident
       importing
            pdf_bytecount            = w_bytecount
       tables
            pdf                      = itab_pdf
       exceptions
            err_no_abap_spooljob     = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_destdevice       = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            others                   = 12.
  if sy-subrc ne 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
  endif.
endform.
form get_otf_spool_in_pdf.
  refresh itab_pdf.
  call function 'CONVERT_OTFSPOOLJOB_2_PDF'
       exporting
            src_spoolid              = w_ident
       importing
            pdf_bytecount            = w_bytecount
       tables
            pdf                      = itab_pdf
       exceptions
            err_no_otf_spooljob      = 1
            err_no_spooljob          = 2
            err_no_permission        = 3
            err_conv_not_possible    = 4
            err_bad_dstdevice        = 5
            user_cancelled           = 6
            err_spoolerror           = 7
            err_temseerror           = 8
            err_btcjob_open_failed   = 9
            err_btcjob_submit_failed = 10
            err_btcjob_close_failed  = 11
            others                   = 12.
  if sy-subrc <> 0.
    message e398(00) with 'Cannot convert to PDF. Error =' sy-subrc.
  endif.
endform.
form write_pdf_spool_to_unix.
  open dataset unixfile for output in binary mode.
  if sy-subrc ne 0 .
    message e398(00) with 'Cannot open unix file for output:' unixfile.
  endif.
  loop at itab_pdf.
    transfer itab_pdf to unixfile.
    if sy-subrc ne 0 .
      message e398(00) with 'Cannot write to unix file:' unixfile.
    endif.
  endloop.
  close dataset unixfile.
endform.
form write_pdf_spool_to_pc.
  call function 'WS_DOWNLOAD'
       exporting
            bin_filesize            = w_bytecount
            filename                = pcfile
            filetype                = 'BIN'
       tables
            data_tab                = itab_pdf
       exceptions
            file_open_error         = 1
            file_write_error        = 2
            invalid_filesize        = 3
            invalid_type            = 4
            no_batch                = 5
            unknown_error           = 6
            invalid_table_width     = 7
            gui_refuse_filetransfer = 8
            customer_error          = 9
            others                  = 10.
  if sy-subrc <> 0.
    message e398(00) with 'Cannot download to PC. Error =' sy-subrc.
  endif.
endform.
Thanks & regards
Sreenivasulu P

Similar Messages

  • How can I make my PDF open to "Fit One Full Page to Window" by default regardless of who is opening it?

    Hi, everyone. I am currently creating PDFs that have different page sizes (2 pages at 8.5" x 11" and other pages that range from 40"w x 80"h to 150"w x 150"h). I'm trying to package some artwork templates and artwork guidelines together for my clients to make it easier for them to access this information.
    The current issue I am running into is that I cannot figure out how to make these PDFs open with a default view of "Fit One Full Page to Window". I know how to set the default on my Acrobat Reader but I need it to default to this view when someone else opens it on their computer to view. (PDF currently opens the first page correctly but the rest of the pages are not previewing to fit page based on their page size. The only thing that reacts the way I want these documents to be viewed is the "Fit One Full Page In Window" option but I need to know how to default the PDF to view this way every time.)
    Any help is appreciated! I'm under a deadline so the sooner I can resolve this the better!
    Thanks in advance!
    Jenny

    There is an option for the Initial View that is "Magnification:" "Fit Page".  And this works for the initial page when the PDF is opened and it does not matter what the page size it, Acrobat/Reader will automatically fill the screen with the page. If you want the zoom type to change with each page then you need  add a page open script to each page to set the pages zoom type to "zoomtype.fitP"
    this.zoomType = zoomtype.fitP;

  • BIP Report PDF layout not extending to next page

    Hi,
    I am using BI Publisher Report.
    I need to show the data in columns. Ex: Plan Name. Each plan name should be shown in separate column. While doing so, when the paper size is completed, data is not printing in next page.
    I need to merge the cells above the Plan Name along with the heading on the first column. But merging is not happening.
    But the merging is not happening as expected. Merging is happening as below
    Is there any thing which I am missing. Could any one help me in this regard.
    Thanks!
    Regards,
    Kishore Nerella

    Hi Vaibhav,
    Is there any error displayed for this issue? If you can debug the ASP.NET application in VS, can you try to set breakpoint at the event
    protected
    void
    Application_Error(object
    sender,
    EventArgs
    e)
    in Global.asax.cs to see whether the breakpoint would be hit and what kind of error it is when clicking next page.
    Thanks,
    Wynn

  • Shrink to  fit page doesn't work

    Hi. I have a complex program which is doing the following.
    Java program calling c++ executable by using "Process" object which is using Win API interface to start new process eg: "c:\PathTo Adobe executable /p /h c:\myPdf.pdf". The document's margins are very close to document's edges, so if I want to print this document normally I use "shrink to page". But the documet printed without shrinking!!!
    When I an opening the same document just inside Acrobat and send it to print, it is printed normally, when I am executing only c++ executable it is printed shinked.
    I tryed it in Acrobat 7,8,9 with the same result.
    Moreover on other PC it is printed shrinked, when executing the whole process I described above!!!
    What can be a problem. It seems to be that Adobe loosing "shrink to fit" settings

    Try disabling the "resume from crash" option.
    # Type '''about:config''' into the locaiton bar and press enter
    # Accept the warning message that appears, this will take you to a list of preferences
    # In the filter box type '''crash'''
    # Double-click on the preference browser.sessionstore.resume_from_crash to change its value to false
    If you are always getting this message, it indicates Firefox may be crashing when you close it, this may be caused by a problematic add-on, for help twith that see [[Troubleshooting extensions and themes]] and [[Firefox crashes]].

  • How do I make the form/pdf fit to one page?

    I designed my first form today and it's two pages long.  How do I get it all to fit on one page?  It will be saved as a pdf.

    While designing the form it will help to be in Page View.  This gives a very close approximation to how your fields will appear in the resulting pdf.  In the Design tab use menu View-> Page View.  All page breaks will now appear as dotted lines.  To aid in fitting more fields you can place forms side by side or reduce the font size.  Eliminating the Header also helps.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • Report with more columns than will fit on a page

    <p>I&#39;m just beginning to use Crystal Reports (30-day Developer eval). I&#39;m trying to create a report with more fields than will fit across one page. The "extra" fields seem to wrap on the first page. I&#39;d really like to print the report across two pages, like Excel does with its "Fit to 2 pages wide" option.</p><p>Is this possible in Crytal? What do folks do when their report is "wider" than the width of the page? </p><p>&#160;</p>

    This is a relatively easy fix. Basically you need to make a huge default page for your printer, and use that layout when printing.
    1. On Windows, go to Start -> Printers & Faxes
    2. Click on File -> Server Properties
    3. Check 'Create a new form'
    4. Change the form name field to something you can remember... I called mine GIGANTIC CRYSTAL LAYOUT
    5. At the bottom change the units to the size you would like. I use 100" wide x 14" tall.Â
    6. Click Save Form when you are done.
    7. Then click 'Close'
    In crystal start your report (or create a new one) and change your printer settings to use this new form. If it doesn't show up under your default printer, try changing the printer crystal is looking at, and selecting your new form.
    Â Hope that helps.

  • Unable to set "Fit one full page to window" as scrolling default for every PDF

    I am trying to retain "Fit one full page to window" as default for every PDF so that when I open a document and scroll down once, it scrolls to the next full page, rather than chunks.  I then need to manually select the option from the menu bar, after which it functions properly. When I change the Default Layout and Zoom to "Fit Page", it merely changes the zoom factor; it doesn't enable the scrolling setting.  Is this no longer an option with Acrobat X? I recall being able to do so with previous versions.
    I've even tried doing this manually for each PDF by going to File>Properties and setting the initial view similarly.  This didn't work, though even if it did it would be too impractical based on how many PDFs I read on a given day.

    I've been hoping for an answer to this for awhile.  There's really annoying, since one would logically think "Default Layout and Zoom" under the page display contains that setting.  Yes, it will affect the zoom, but it has no effect on whether or not the "Fit one full page to window" option is actually selected.
    Every time I open a PDF, I have to click that icon, which gets super frustrating since I work with dozens of user manuals every day looking for spare parts, etc.
    I really hope someone can answer this.

  • Need to generate a Index xml file for corresponding Report PDF file.

    Need to generate a Index xml file for corresponding Report PDF file.
    Currently in fusion we are generating a pdf file using given Rtf template and dataModal source through Ess BIPJobType.xml .
    This is generating pdf successfully.
    As per requirement from Oracle GSI team, they need index xml file of corresponding generated pdf file for their own business scenario.
    Please see the following attached sample file .
    PDf file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/BPA_Print_Trx-_output.pdf
    Index file : https://kix.oraclecorp.com/KIX/uploads1/Jan-2013/354962/docs/o39861053.out.idx.txt
    In R12 ,
         We are doing this through java API call to FOProcessor and build the pdf. Here is sample snapshot :
         xmlStream = PrintInvoiceThread.generateXML(pCpContext, logFile, outFile, dbCon, list, aLog, debugFlag);
         OADocumentProcessor docProc = new OADocumentProcessor(xmlStream, tmpDir);
         docProc.process();
         PrintInvoiceThread :
              out.println("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");
                   out.print("<xapi:requestset ");
                   out.println("<xapi:filesystem output=\"" + outFile.getFileName() + "\"/>");
                   out.println("<xapi:indexfile output=\"" + outFile.getFileName() + ".idx\">");
                   out.println(" <totalpages>${VAR_TOTAL_PAGES}</totalpages>");
                   out.println(" <totaldocuments>${VAR_TOTAL_DOCS}</totaldocuments>");
                   out.println("</xapi:indexfile>");
                   out.println("<xapi:document output-type=\"pdf\">");
    out.println("<xapi:customcontents>");
    XMLDocument idxDoc = new XMLDocument();
    idxDoc.setEncoding("UTF-8");
    ((XMLElement)(generator.buildIndexItems(idxDoc, am, row)).getDocumentElement()).print(out);
    idxDoc = null;
    out.println("</xapi:customcontents>");
         In r12 we have a privilege to use page number variable through oracle.apps.xdo.batch.ControlFile
              public static final String VAR_BEGIN_PAGE = "${VAR_BEGIN_PAGE}";
              public static final String VAR_END_PAGE = "${VAR_END_PAGE}";
              public static final String VAR_TOTAL_DOCS = "${VAR_TOTAL_DOCS}";
              public static final String VAR_TOTAL_PAGES = "${VAR_TOTAL_PAGES}";
    Is there any similar java library which do the same thing in fusion .
    Note: I checked in the BIP doc http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/javaapis.htm#CIHHDDEH
              Section 7.11.3.2 Invoking Processors with InputStream .
    But this is not helping much to me. Is there any other document/view-let which covers these thing .
    Appreciate any help/suggestions.
    -anjani prasad
    I have attached these java file in kixs : https://kix.oraclecorp.com/KIX/display.php?labelId=3755&articleId=354962
    PrintInvoiceThread
    InvoiceXmlBuilder
    Control.java

    You can find the steps here.
    http://weblogic-wonders.com/weblogic/2009/11/29/plan-xml-usage-for-message-driven-bean/
    http://weblogic-wonders.com/weblogic/2009/12/16/invalidation-interval-secs/

  • Barcode printing in XML report PDF output

    Hi All,
            I want to print barcode of invoice number / purchase order number in the XML report PDF output.
            Anyone please suggest me with your ideas and experience.

    Hi Bogdan,
    The steps mentioned in the doc is what i did in order.
    I couldn't understand the step # 13 & 14.
    Log in as XML Publisher Administrator
    Navigate to Administration --> Font Files --> Create Font File
    Available fields are Font Name and File
    --> for Font Name, choose any descriptive name
    --> file will browse your PC to locate the font file
    Navigate to Font Mappings -->Create Font Mapping Set
    Mapping name is the name you will give to a set of fonts.
    Mapping code is the internal name you will give to this set
    Type: 'PDF Form' for PDF templates. 'FO to PDF' for all other template types.
    Create Font Mapping (this allows you to add fonts to a set)
    Font Family is the exact same name you see in MS Word under Font. If you don't use the same name the font will not be picked up at runtime.
    Style and weight must also match how you use the font in the RTF or PDF layout template. Normal and Normal are good defaults.
    Language and Territory should remain blank (NULL) unless you have a strong business reason, as these fields can cause the font not to be picked up at runtime.
    Navigate to Configuration General -> FO Processing -->Font Mapping Set. This can also be done at Data Definition and Template level, via the corresponding Edit Configuration button on those pages. The hierarchy is Site-> Data Def -> Template.
    Select your new mapping set.
    Make sure the font is not referenced under File --> Properties --> Custom in the RTF template file.
    Under General, set a Temporary Directory. The font will be stored under a /fonts directory at runtime, initially created the first time the font is used.
    Upload a template that uses your special font and test using preview or by submitting a concurrent request.

  • Generated Crystal Report PDFs are different on Windows server

    Post Author: present
    CA Forum: .NET
    Hi,
    I created Crystal Report template (with two columns on one
    page) inside VS 2005 on my Windows XP Professional machine.
    But there are formating problems on both XP and Windows
    Server machines:
    1) On Windows XP machine, I have to overlap the two columns
    on the page inside VS 2005 editor in order to generate
    correct PDF file (without overlap). How to fix the the
    overlapping problem in editor?
    2) On Windows 2003 server: After I put the template on
    Windows 2003 server that has no VS 2005 installed (only
    CRRedist2005_x86.msi was installed), the generated PDF has
    different font size and layout (such as page size, column
    overlap, etc).
    Do I have to install VS 2005 on server too? It is really
    frustrating that I have to print document generated on the
    server before I know if the template works fine or not.
    Any help is highly appreciated!

    Typically when you are seeing page formatting issues on different machines, it could be because of printer drivers (or lack of).  The reporting engine relies on the printer driver configured on the machine to provide information so that a page can be properly rendered.  If you designed the report on your dev machine which is using PrinterA and then deploy to another machine using PrinterB, the formatting could be off.  So make sure that the exact same printer driver is being used on these machines.  If your deployments are expected to go to different machines where you don't know what printer will be installed, then you will need to design the report such that it can be rendered as best as possible.  Another option is to check the "No Printer" option and this should render the report the same on any machine with any printer, but then you'll need to make sure you handle any scenarios where the user wants to print to the printer.
    If this is an ASP.NET application then permissions could play a part if the printer drivers cannot be accessed.  There are whitepapers on the BOBJ support site that have information on to configure CR to print reports in ASP.NET apps.
    -MJ

  • How do I make a long table fit on one page?

    I do a community newsletter, one page of which is a directory of residents. On this page, I have a table with 3 columns: name, address, and phone. There are 61 rows, which is too big to fit on an 8 ½ x 11 page. As people move in and out, I need to be able to change the name for the particular address and re-sort by name. Retaining this ability, how can I make this fit on one page? Ideally, I would be able to "break" the table into two parts of 30/31 rows each, with each part side by side on the 8 ½ x 11 page. I can't find a way to do this. Any help would be appreciated. I am working in Yosemite 10.10.1, and Pages 5.5.1. I have also created a Numbers 3.5 version of this table, but still cannot find a way to do what I want to do.

    Hi Saundra,
    Do you have to print it, or are you sending this out via E-mail/PDF?
    The fix below, should work, either way:
    If you are actually not printing it, and are E-mailing/posting online, Export as PDF, and E-mail address will still be active...
    If it must fit on a smaller page, for printing or for whatever reason, drag the aforementioned PDF into a 8.5 x 11 document, open Inspecter to Metrics, click to not constrain proportions, resize to fit then Export again as a PDF. The E-mail addresses will remain active. Here's screenshot of one with 61 rows, I made in less that 2 minutes as a mock-up. Links/E-mail still works.
    Luck!
    Lena

  • I have an 10x14" InDesign image that I'd like to shrink to fit within a 8.5x11 printed document.

    I have an 10"x14" InDesign image that I'd like to shrink to fit within a 8.5"x11" printed document (using InDesign) without losing the quality of the image (especially on print). What is the correct/least destructive process to do this?
    And how is it that you can view different image sizes on Flickr (of the same image) and it doesn't seem to effect the quality of the image?
    I have tried saving/exporting the InDesign image as an EPS file, then opening the file in Photoshop, adjusting the size to my liking, saving it as a Photoshop file, then placing that file in a new InDesign document, and the image comes up distorted looking/pixelated even with my screen zoomed at 100%. I've also tried this same process with exporting it as a PDF file instead of an EPS file with the same distorted/pixelated results.
    Help!?!?!  Thank you in advance!!
    Linds10m

    I am assuming you are in InDesign CS5:
    Change your InDesign Document Size, but before you do this you must make sure the "Enable Layout Adustment" is on.
    Under: Layout/Layout Adjustment/Check the "Enable Layout Adjustment" box is checked and adjust Snap Zone.
    ALSO: Make sure your horizontal and vertical margins touches your live area.
    Then you can change size of document

  • REP-3131: Parameter form boilerplate text cannot fit on the page

    Dear members,
    I am getting the following error while running the report :
    REP-3131: Parameter form boilerplate text cannot fit on the page
    can any body tell me how to correct it. I need to add a extra field in the standard oracle report "RECEIPT TRAVELER". when i was trying to run it in report builder 6i i got the above mentioned error. please give ur quick replies.
    thanks
    regards
    sandeep

    When you add your new field into the parameter mask, please check, if the value is too
    long for your parameter mask site. Make a double click on the master attributes of your
    report in the object navigator and look at the size of the parameter mask window.
    Make it bigger, if you want (vertically und horizontally size).
    Check the length of the text of your parameter mask title, too.

  • How to split table in the report so it shows on the next page?

    Hi,
    How to split table in the report so it shows on the next page? Im trying to fit long (many columns) table into my report page. It is too long however. I want it to wrap and show the rest on the next page. What I get now is table cut at the page end and rest is not visible.

    Yes, this might be that the amount of data will cause table to grow and exceed 1, 2, 3.. pages. In that case I would probably want to have, lets say , one half of columns on 1st page then the other on the 2nd page and then repeatedly the same sequence down across all pages. Is there a way to achieve this?

  • Dante font used in manuscript - when I try to save as a pdf document in Microsoft Word whole pages change their look, with wide gaps forming between certain paragraphs or sections. This does not happen with other fonts.

    Dante font used in manuscript … when I try to save as a pdf document in Microsoft Word whole pages change their look, with wide gaps forming between certain paragraphs or sections. This does not happen with other fonts.

    OK, we've got it!
    What is happening is that when you use Microsoft's save as PDF in Word, the font isn't embedded even though the font is tagged to allow embedding. Furthermore, Microsoft doesn't properly put the font name into the PDF file such that Acrobat or Reader can readily find the font installed on your system such that the text can be properly displayed and/or printed. Acrobat and Reader attempt to display and/or print the text using a “substitution font” and of course, as they say, YMMV (“your mileage may vary”)!
    I personally submitted the report of this problem (both the embedding and the font name problem) to Microsoft. They acknowledge the bug, tried a fix and provided me a build with it, but it wasn't right. Maybe they will ultimately fix it, maybe they won't. We don't know yet. We do know that if it is fixed, it will be fixed only for Office 2013 (problem occurs with all Office applications since they use the same PDF generation code) and thus such a fix won't help you.
    Adobe Acrobat Standard and Acrobat Pro  both provide an Adobe PDFMaker plug-in to Office applications (including full support for Office 2010) that adds an Acrobat Toolbar as well as a Save as Adobe PDF menu item. The resultant PDF file fully supports embedding of OpenType CFF, TrueType, and Type 1 fonts and in many other ways produces much superior PDF with a full range of PDF generation options not available with the Microsoft PDF. (Note that beginning with Office 2013, Microsoft does not support Type 1 fonts in Office documents at all, even for existing documents!) The Acrobat Office functions are widely used and respected in the end user community and whatever “issues” there are (all software has “issues” of some type - it is a matter of how many and how severe), you should be in much better shape for PDF production that with what you currently are using.
    Good luck and let us know if this resolves your problems. (Note that you can download and install a free fully-functional 30 trial of Acrobat Pro to assure that it meets your needs! You can then buy a license and activate what you already have installed.)
              - Dov

Maybe you are looking for

  • Amount not getting displayed in the cube

    Hi, I have a ZTable which has got an Amount field declared like this. AMOUNT     WAERS     CUKY     5     0     Currency Key And I declared a ZAMOUNT as Amount in the cube and provided 0CURRENCY. Initially there was no value in the Amount column in t

  • Variable not initializing

    I have a class that is parsing the standard date string to extract each discrete element using StringTokenizer. There is two loops with a switch. The first loop looks for tokens separated by spaces; the second loop looks for the colons in the time pa

  • Phone call from woman saying our Internet will be disconnected tomorrow.

    We had a phone call tonight from a woman who claimed to be from Telstra, saying that our Internet was going to be disconnected tomorrow because our downloads were interfering with Telstra computers. When I claimed "[Bleep]" she said thank you and hun

  • H.264 default setting

    Does anyone now what bit rate setting will work to produce a DVD in H.264 single pass non default that will not give me a "Muxer Bit rate error". I have just finished a one hour H.264 Video and compressor took 99hours on the IMAC.... far to long. Als

  • Configuration in SRM

    Hi , We have many configurations where in we need to maintain the Logical Backend system . For example in Config " Define G/L Account  for Product Category and Account Assignment Category" , We need to maintain the Source system in this configuration