Created PDF from MS Access - lines are missing from PDF

I'm using Acrobat 8 (from Adobe CS3) to create PDF files.  When I "print" reports from Microsoft Access 2003, the thin line borders that outline cells are often missing from the PDF. Typically, 1 or 2 of the sides are missing, with the other sides appearing normally.
This appears to happen primarily when the line thickness is set to "hairline".
If I use a non-Adobe PDF writer (PDF Creator), then the lines appear normally.
Any suggestions about what I can do to correct this?
Thanks - Jim

These are the settings.

Similar Messages

  • Few of my amount_cr lines are missing from the query, check GL_JE_LINES_V.

    I have a discover report which have 5 union all, and one of the select statement brings the information about the cr.type like 'MISC'from the table called ar.ar_cash_receipts_all cr.
    This query basically brings the information of amount_dr and amount_Cr from the general ledger table, the navigation for the same is as below.
    Navigation:
    Enter journals
    pick some Batch Name
    Click find button
    Place cursor on the line item from the list that has Journal Name like Miscellaneous receipts
    Click on Review Journal.
    When you check the record history pulls the information as GL_JE_LINES_V.
    I am not able to pick few of my amount_cr values.
    Tables and joints used for my query is as below.
    Please correct me if i am missing any information.
    Thanks in advance.
    Archice
    APPS.ra_customer_trx_all ct
    ,AR.ra_cust_trx_types_all ctt
    ,AR.ar_distributions_all ard
    ,apps.hz_cust_accounts_all cust
    ,AR.hz_parties cust2
    ,AR.ar_adjustments_all adj
    ,GL.gl_sets_of_books books
    where
    adj.set_of_books_id=books.set_of_books_id) and
    nvl(adj.postable,'Y')='Y') and
    adj.adjustment_id=ard.source_id) and
    ard.source_table='ADJ') and
    adj.customer_trx_id=ct.customer_trx_id)
    and ctt.cust_trx_type_id=ct.cust_trx_type_id) and
    cust.cust_account_id=decode(ctt.type,'BR',ct.drawee_id,ct.bill_to_customer_id)) and
    cust2.party_id=cust.party_id and
    ctt.set_of_books_id=books.set_of_books_id(+)

    Hi Blushadow,
    Thanks for responding my query, here is best i can mention further regarding my query problem.
    The code which I have posted earlier, has been coded by some other technical person, I have posted part of the main query which pulls ‘MISC’, the posted query is not pulling all the amount_credit (amount_cr) column information, few of the lines are missing,
    The amount_dr, amount_cr is basically called form GL_JE_LINES_V, I have checked this from record history, I want to know whether, I need any further tables to be added for the existing query, in order to pull the missing amount_cr
    Lines.
    Basically, when we check the description of the view GL_JE_LINES_V
    We have few tables.
    GL_JE_LINES JEL
    , GL_CODE_COMBINATIONS CC
    , GL_JE_LINES_RECON REC
    , GL_SYSTEM_USAGES USE
    I would like to know is there any way to use another table instead of
    GL_JE_LINES_RECON REC, because when I query it, I wont see any data from this table and this have two major joins in the mentioned view called GL_JE_LINES_V.
    Regards
    Archie

  • 2lis_02_scn-AB lines are missing

    HI BW gurus,
      I am haveing the problem in po data  confiramation data souce.in my data source not capture the AB line items,some times picking up the AB lines some times its not picking the AB line.in LA lines are updateing properly. AB line are missing in some cases.how to identify when is AB lines are missing.

    Hi all.
    Did you face any solution on the issue.
    I am having the same problem and I have found out that the missing data is having no change log entries for the line.
    The issue is only related to delta load - full load is doing the extraction fine.
    A solution in my way is to extract data directly from the confirmation-tables, however, I would like to use the 2LIS_02_SCN extractor due the business content ..
    BR Mikkel

  • For all entries : lines are missing in the results

    Hi all,
    I have a problem with my abap code.
    some lines are missing in the results.
    I have check the note 65554 but i use the version 6.40
    TYPES: BEGIN OF wys_bseg,
             bukrs TYPE bsad-bukrs,
             belnr TYPE bsad-belnr,
             gjahr TYPE bsad-gjahr,
             augbl TYPE bseg-augbl,
             augdt type bseg-augdt,
             hkont TYPE bseg-hkont,
             WRBTR type bseg-WRBTR,
             KOART type bseg-KOART,
             SHKZG type bseg-SHKZG,
           END OF wys_bseg.
    TYPES: begin of wys_bsas,
             bukrs TYPE bsas-bukrs,
             hkont TYPE bsas-hkont,
             augbl TYPE bsas-augbl,
             augdt type bseg-augdt,
             gjahr TYPE bsas-gjahr,
             belnr TYPE bsas-belnr,
             waers TYPE bsas-waers,
             blart TYPE bsas-blart,
             gsber TYPE bsas-gsber,
             dmbtr TYPE bsas-dmbtr,
             xblnr TYPE bsas-xblnr,
             SHKZG type bseg-SHKZG,
             zmntfact TYPE bsas-WRBTR,
           end of wys_bsas.
    DATA: wt_bseg_tmp TYPE wys_bseg OCCURS 0 WITH HEADER LINE.
    DATA : wt_bsas type wys_bsas occurs 0 WITH HEADER LINE.
        sort wt_bsas by bukrs belnr gjahr.
        DELETE ADJACENT DUPLICATES FROM wt_bsas COMPARING bukrs belnr gjahr.
    IF NOT wt_bsas[] IS INITIAL.
        select bukrs belnr gjahr augbl augdt hkont WRBTR KOART SHKZG from
    bseg into table wt_bseg_tmp
                  for all entries in wt_bsas
                  where bukrs EQ wt_bsas-bukrs
                    and belnr EQ wt_bsas-belnr
                    and gjahr EQ wt_bsas-gjahr
                    and koart EQ 'D'.
    ENDIF.

    Hi
    Yes Arun is right, INTO TABLE option delete automatically the duplicates lines, so you make sure to insert all keys in order to load all record.
    Insert the field BUZEI in the structure of internal table:
    TYPES: BEGIN OF wys_bseg,
             bukrs TYPE bsad-bukrs,
             belnr TYPE bsad-belnr,
             gjahr TYPE bsad-gjahr,
             buzei type bseg-buzei, <------ New field
             augbl TYPE bseg-augbl,
             augdt type bseg-augdt,
             hkont TYPE bseg-hkont,
             WRBTR type bseg-WRBTR,
             KOART type bseg-KOART,
             SHKZG type bseg-SHKZG,
           END OF wys_bseg.
    Max

  • 2007A PL8 UOMs are missing when creating a document via DI-API

    If a document is created via DI-API the UOMs are missing.
    The behavior till PL8 was that UOMs were taken from the item master when creating a new document.
    Regards

    This is a confirmed Bug. The DI-Api always uses the Inventory UoM. As work around you have to put the Sales UoM into the Inventory UoM.
    I hope they we will fix this soon.
    Regards

  • A/c doc not created and error msg "Business Area Miss-Match Check input"

    Hi,
    After creation of new Plant and Business area create a invoice , But my accounting document does't created and error msg show "Business Area Miss-Match Please Check Your Input". plz suggest me.
    Regards,
    Sohail

    Dear Sohail Rahman,
    Looks like the Business area has not been properly assigned.
    Business area can be created for three combinations:
    1. Business area by sales area
    2. Business area by plant and division
    3. Business area by plant and item division
    In your case, check whether the business area is maintained for the combination of plant/division and plant/item division.
    Hope this helps
    Thanks
    Murtuza

  • SMARTFORMS :lines are not printing.

    Hi all!
       We have a SMARTFORM for outbound delivery.In that items are shown in a table manner with horizontal and vertical lines. Every thing is coming fine while taking print from laser printer but lines are missing when taking print from Dot Matrix printer.Please help where mistake is going on.

    Hi ,
         Go to SPAD and check if ur device type for dot matrix printer( output devices ) is SAPWIN or not, if it is not ask d basis guy to create an output device with SAPWIN or TWSAPWIN
    i think this will solve ur problems
    reward if useful,
    Cheers,
    Deepthee kasal

  • Lines are not generated for holidays and sundays

    Hi
    creating a sale order shcedule lines are not generated for sunday for a particular plant .
    Schedule lines are generated for subsequent monday only.
    the plant calander  is also  correct
    with regards
    partha

    Hi
    I would really double check the factory calendar ans the  of the plant and sales organisation
    regards,
    Sidi

  • Horizons are missing in product view

    Hi Frns,
    In my product view of a KMAT material, the SNP Horizon & PP/DS Horizon lines are missing !! What could be the reason ??
    I have maintained the horizons in the product master (SNP2 & PP/DS tabs)
    Still the horizon lines are not visible in product view...
    Thanks,
    Krishna

    my mistake..
    made the product strategy group 10 in ERP..
    when i made it 40, things are fine..

  • Some pictures are removed while creating pdf from MS word

    Hi
    I have some problems with creating PDF from MS word 2007 file.
    I'm using Acrobat X pro and MS office 2007. My system is windows XP Pro SP3.
    I'm making some documents including many tables and figures. They're created and modified in MS word and when I publish them, I have to convert them in PDF files.
    At first, the body of the document and figures are separated. I converted them individually and insert the figure pdf files to the body pdf files.
    One day, my boss wanted to combine the seperated word file into one file and I did it. There was no problem before I created PDF file.
    There are sample of the PDF.
    This is a part of missing picture. After conversion, another parts are unseen and I can find only this part.
    Sorry that I can't reveal all parts of picture.
    As you see up there, a little part of whole pictures are found (but they are reversed) and another pictures are just missing.
    Any help will be appreciated. Thank you.

    I don't know about the PC version but in the Mac version if you don't have drawing objects checked in Print and
    in the view menus, when you print to PDF, the images won't be there.
    I would assume there are the same settings in PC even if you Print to PDF printer or what other method available to PC.

  • Problem exporting to PDF from ID CS6. Objects are missing in PDF.

    Hello!
    I created a large format poster (24x36 inches) in ID CS6 to be printed. My printer requires PDF files to print from. My problem is that when I export my ID file to PDF, objects are missing. For example, in this file, the company logo in the upper left corner of the poster is incomplete (missing the orange color fill with white text in orange circle.) This object was originally created in AI CS6 then imported to the ID document.
    I am pulling my hair out trying to fix this and have not been able to find like issues online. Any help would be GREATLY appreciated. Thank you!!!!

    The missing object is visible with Overprint Preview turned on.

  • Shopping cart line items are missing while transfering from ITS to EBP

    Hi everyone
    I am Raghu, working on EBP (version 2.0)
    Some shopping cart line items are missing while transferring the shopping cart data from ITS to EBP.
    For example in my shooping cart 4 items are there,during transferring shopping cart data from ITS to EBP all 4 items are getting updated for all the shopping cart related tables except account assignment table.
    In account assignment table for this particular shopping cart only 3 items are updated and usually the first line item gets missed out.Hence the the system fails to create the follow on documents in R/3. 
    This is happening randomly for few of the shopping carts that too most of the cases first item of the shopping cart was not updating reqacct table(this is account assignment table for shooping cart items).
    I have debugged entire scenario,but  couldn't find the cause for this..
    Can any one  please advise me....why this is happening?
    Your immidiate ersponse will surely help me a lot.
    Thanks,
    Raghu

    Hi Yann
    Thanks for your support.
    Yes, we are using EBP2.0/CRM 2.0C & the support pack level is SAPKU20C23.
    Please advice
    Thanks
    Raghu

  • Creating PDF from File, missing Settings

    Acrobat Professional. 6.0.
    I never used Acrobats "Create PDF from file", as in my MS Office 2000 there was "Acrobat - Convert to Adobe PDF" menu item with the possibility to change joboptions settings.
    My current MS Office 2007 now has its own PDF convertor only, so I tried the Acrobats feature "Create PDF from file". It works, but the Settings button is grayed out with all Office file types. I didnt find a way how to access Acrobats settings, so I tried by first opening Distiller and changing the options there. Nothing happened, the output from Acrobat has always the same file size and quality. Of course I could make PDF out from Office by printing to Adobe PDF printer, but how with other file types which are not Office types.
    Thanks for suggestions, i.e. for showing me what I eventually didnt consider.

    As I and Bernd tried to say. AA6 does not support OFFICE 2007. The fact that you have PDF Maker from AA6 working in WORD 2007 is surprising. Since it is not a normal or supported operation, we have no idea what to tell you. It should not even be working. You are the first one I have ever heard say that they have the AA6 PDF Maker (create PDF is the way it shows up) working in OFFICE 2007!
    Thus, I may misunderstand. But I am trying to tell you that none of us have experience with the configuration. Adobe will also tell you to simply upgrade. Unfortunately, that leaves you on your own to experiment. If you have questions along the way based on your observations, we would be glad to try to help, but don't expect too much.

  • Adobe TrueType fonts missing from created PDF

    When I create a PDF file everything comes through perfectly except the Adobe TrueType font text is missing (Adobe Garamond Pro). This used to work. File looks good on screen and prints fine.
    If I switch to Garamond the PDF is created perfectly, now including all missing text.

    Note that Adobe's Garamond Pro fonts are not TrueType fonts. They are OpenType CFF fonts.
    In fact, that may be the key to why they are not embedded in your PDF files.
    First, contrary to the response of Bill@VT, although the Standard joboptions for Adobe's PDF creation tools do not embed all fonts, the fonts that are not embedded are in an exception list. Using those joboptions, members of the Adobe Garamond Pro font family should properly embed in PDF files created either by (a) printing to the Adobe PDF PostScript printer driver instance under Windows, (b) using the native PDF export from Adobe graphic arts applications (Illustrator, InDesign, etc.) as long as you don't use the Smallest Size joboptions, or (c) when using Microsoft Office applications, you use the Adobe PDFMaker option for PDF creation, Save as Adobe PDF again as long as you don't use the Smallest Size joboptions.
    That having been said, the fact that the Garamond fonts (I assume that you are referring to the TrueType Garamond font family that Microsoft bundles with Windows and Office) embeds and Adobe Garamond Pro font don't embed leads me to believe that your real problem is that you are creating PDF by using the fairly defective save as PDF which is native to Microsoft Office on Windows. One of a number of bugs or limitations in Microsoft's PDF creation is that although it embeds TrueType fonts and OpenType TrueType fonts, it fails to embed OpenType CFF fonts. Not only doesn't Microsoft embed those fonts in the PDF file, but it improperly references the fonts in the generated PDF file such that when you display and/or print such PDF files, even if you have Adobe Garamond Pro installed on your system, those fonts are not used for display or print. (We have informed Microsoft of this bug, but they are apparently not interested in fixing their bug!)
    If you already have Acrobat installed on your system, use the Save as Adobe PDF (from the file screen) or Create Adobe PDF from the Acrobat tab on the Office ribbon. Set the preferences to at least Standard, but preferably Hiqh Quality Print joboptions and you will end up with a proper PDF with the Adobe Garamond Pro (or any OpenType fonts) properly embedded)!
              - Dov

  • When I share a pages document as a PDF (via e-mail) all the pictures change from the original document, most are missing with just a few of them repeated in the spots where others had been.  How do I do this without the document changing?

    When I share a pages document as a PDF (via e-mail) all the pictures change from the original document, most are missing with just a few of them repeated in the spots where others had been.  How do I do this without the document changing?
    I need to be able to send it to a PC in order to print it.

    Hard to say what is happening without examining the file.
    If you like click on my blue name and email me both the .pages file and the the .pdf you have made from it.
    Peter
    ps It would help to say what version of Pages you are using and on what you are running it. iOS or Mac and what version.

Maybe you are looking for

  • I have 2 different ipods, how do I make two totally different libraries?

    My brother just got an ipod nano, and ive had an ipod mini for about a year. I want to know if I can make two different libraries with different music, and if I can, how do I do it?

  • Call transaction in Portal using  if_wd_portal_integrati- navigate_absolute

    Hi Guys,               I am calling a transaction in portal using the following code.   CALL METHOD l_portal_manager->navigate_absolute     EXPORTING       navigation_target   = 'pcd:portal_content/com.csa.Prototype/com.csiro.Page/SAPWebGUI/sap_trans

  • PO form font problem

    Hi,       I have an issue with font with PO form. The form is prinitng coming up correctly but the font is different for different documents. Can anybody has some idea on this? plz clarify. Thanks bpr <MOVED BY MODERATOR TO THE CORRECT FORUM> Edited

  • File.renameTo(File dest)

    I have to rename the file. File f1 is the existing file I created the instance of the file File f2 = new File(file name with path) now iam trying to rename f1 to f2,I used f1.renameTo(f2) It's working fine on w2k but failing in UNIX. when I check can

  • EJBGen Exception --- java.lang.RuntimeException

    hi, If i use the 2.16 version of the ejbgen.jar , the ejbgen is working fine but the following mdb variables are cannot be set in the bean class. the variables are * jms-polling-interval-seconds=4 * dispatch-policy=JMSDispatcher But these variables c