Print probelm in po

when i use po message print,the function below,
call function 'ME_READ_PO_FOR_PRINTING'
       exporting
            ix_nast        = nast
            ix_screen      = ent_screen
       importing
            ex_retco       = ent_retco
            ex_nast        = l_nast
            doc            = l_doc
       changing
            cx_druvo       = l_druvo
            cx_from_memory = l_from_memory.
data:ekko like ekko.
       ekko = l_doc-xekko.
but i cann't extract data like this:w_ebeln = ekko-ebeln,
there is a error:the data object "ekko" has no structure therefore no component called "ebeln".
would anybody tell me how can i do?

At the top mention :
Tables : EKKO.
Best regards,
Prashant

Similar Messages

  • Smartform Printing Probelm

    Dear Experts,
    I faced a probelm while i am trying to take print the smartform. It's shows Graphic is not displayed message shows.
    what is the probelm please guide me.
    Thanks in Advance
    purnaneelu

    check there is no mismatch in black n white and color..
    may be this is the possiblity. that u uploaded graphiv in B&W andusing colour.
    had u check window size problem ?

  • Printing Probelm

    Hi,
        We have developed a smartform for Voucher document printing. In print preview displaying line items only 1 time. When taking print its coming every line items  2 times. Whats the problem for that. Kindly suggest .

    when printing it directly without previous print preview, do your line items come 2 times as well?
    If not, you got a clear problem.

  • DMS - printing probelm

    DEar All,
    I am working in the PPPI industyr and we are having DMS in our company.
    We have a document type i.e BPR which we upload at CV01n transaction in MS documnet format that document under goes through 3 approval process after finaly apprval i.e QM release" we can assigne that Document in the recipe as a PRT .
    We have one Z transaction with help of that Aurhtorised user can able to take the print. BUt now a days we are facing problem ralated to printing of the MS document-
    1. some times page number are not printed correctly on the document.
    2. Some times out 40 pages only four page got printed.
    3. As we upload the documnet of 40 pages after printing it could be 60.
    We are fade up these issue .....please reply .
    Regards,
    PRERNA

    Hi PRERNA,
    does this only happen in combination with your Z transaction or also in the DMS standard transaction CV02N or CV03N if you print the attached original files?
    Best regards,
    Christoph

  • PO Printing Probelm

    Hi All,
    I am facing promble with mexxn Transaction code. When I generate a PO and try to print preniew but stop message appear "Company Code is not Defined". I had checked all tax code and its company and calculation schema. but cant find the solution. This message is even generate in me9f and me23n too.
    Regards,
    Syed Tayab Shah

    Thanks Raja for your reply. I had compare ox18 company assignment with QAS server and modified it as define in QAS. but message is still appear. Exact message is :.
    output    output
    company code is not defined
    STOP
    EXIT
    |     |                                                                    |                                           |
    Hope you understant the error.
    Syed Tayab Shah

  • Outlook live msn email print probelm

    until 2 days ago everything was fine
    automatic updates on my computer, so no clue which update created problem
    when I attempt to print an email the log in screen for live.com shows up and says it cannot connect right now

    Hello northshorecap,
    Please explain a bit about the following question for better analyzation:
    1. What are the Windows and Internet Explorer Editions?
    2. Could you please provide the whole error message and a screenshot to avoid misunderstanding?
    3. Please list the update you installed 2 days ago for better analyzation.
    Please take the following steps for troubleshooting:
    1. Check if you can printer other email or doc file.
    2. Run the printer troubleshooter.
    For more information, please refer to the following article.
    http://windows.microsoft.com/en-us/windows/printer-problems-in-windows-help#fix-printer-problems=windows-8&v1h=win8tab1&v2h=win7tab1&v3h=winvistatab1&v4h=winxptab1
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • IText Printing Probelm in unicode stiring

    hello !!
    Pls try to solve my problem...
    i have wirte the following code ..
    it will generate pdf and write text in that pdf file using two different methods for the same input text...just try to run and see output..
    pls prove me the solution to priont the same result...
    code is..
    import com.lowagie.text.Document;
    import com.lowagie.text.Font;
    import com.lowagie.text.PageSize;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.BaseFont;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.FileOutputStream;
    public class GujaratiPDF
    public static void main( String[] args )
    try
    // step 1
    Document document = new Document( PageSize.A4, 50, 50, 50, 50 );
    // step 2
    PdfWriter writer = PdfWriter.getInstance(
    document,
    new FileOutputStream( "gujarati.pdf" ) );
    writer.setPdfVersion( PdfWriter.VERSION_1_6 );
    // step 3
    document.open( );
    // step 4
    // NOTE: change the font file path if different on your PC
    BaseFont bf_arial = BaseFont.createFont( "C:/WINDOWS/Fonts/arialuni.ttf",
    BaseFont.IDENTITY_H, BaseFont.EMBEDDED );
    String text = "\u0A9C\u0AA8\u0ACD\u0AAE\u0AA6\u0AC0\u0AA8\u0AA8\u0AC0\u0020\u0AB6\u0AC1\u0AAD\u0AC7\u0A9A\u0ACD\u0A9B\u0ABE";
    String arial_font = " [Font: Arial Unicode MS";
          String add_method = ", Method: document.add(...)]";
    String drawString_method = ", Method: graphics.drawString(...)]";
    // step 5
    document.add(
    new Paragraph(
    text + arial_font + add_method,
    new Font( bf_arial ) ) );
    // write using the Graphics object
    java.awt.Font font = new java.awt.Font( "arial unicode ms", 0, 11 );
    PdfContentByte cb = writer.getDirectContent( );
    java.awt.Graphics2D g2 = cb.createGraphicsShapes(
    PageSize.A4.width( ),
    PageSize.A4.height( ) );
    g2.setFont( font );
    g2.drawString( text + arial_font + drawString_method, 50, 200 );
    g2.dispose( );
    // step 6
    document.close( );
    catch( Exception de )
    de.printStackTrace( );
    }

    hello !!
    Pls try to solve my problem...
    i have wirte the following code ..
    it will generate pdf and write text in that pdf file using two different methods for the same input text...just try to run and see output..
    pls prove me the solution to priont the same result...
    code is..
    import com.lowagie.text.Document;
    import com.lowagie.text.Font;
    import com.lowagie.text.PageSize;
    import com.lowagie.text.Paragraph;
    import com.lowagie.text.pdf.BaseFont;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfWriter;
    import java.io.FileOutputStream;
    public class GujaratiPDF
    public static void main( String[] args )
    try
    // step 1
    Document document = new Document( PageSize.A4, 50, 50, 50, 50 );
    // step 2
    PdfWriter writer = PdfWriter.getInstance(
    document,
    new FileOutputStream( "gujarati.pdf" ) );
    writer.setPdfVersion( PdfWriter.VERSION_1_6 );
    // step 3
    document.open( );
    // step 4
    // NOTE: change the font file path if different on your PC
    BaseFont bf_arial = BaseFont.createFont( "C:/WINDOWS/Fonts/arialuni.ttf",
    BaseFont.IDENTITY_H, BaseFont.EMBEDDED );
    String text = "\u0A9C\u0AA8\u0ACD\u0AAE\u0AA6\u0AC0\u0AA8\u0AA8\u0AC0\u0020\u0AB6\u0AC1\u0AAD\u0AC7\u0A9A\u0ACD\u0A9B\u0ABE";
    String arial_font = " [Font: Arial Unicode MS";
          String add_method = ", Method: document.add(...)]";
    String drawString_method = ", Method: graphics.drawString(...)]";
    // step 5
    document.add(
    new Paragraph(
    text + arial_font + add_method,
    new Font( bf_arial ) ) );
    // write using the Graphics object
    java.awt.Font font = new java.awt.Font( "arial unicode ms", 0, 11 );
    PdfContentByte cb = writer.getDirectContent( );
    java.awt.Graphics2D g2 = cb.createGraphicsShapes(
    PageSize.A4.width( ),
    PageSize.A4.height( ) );
    g2.setFont( font );
    g2.drawString( text + arial_font + drawString_method, 50, 200 );
    g2.dispose( );
    // step 6
    document.close( );
    catch( Exception de )
    de.printStackTrace( );
    }

  • Probelms printing email messages in Outlook Express

    After an automatic Firefox update I can no longer print the message part for Outlook Express 6 email. Only the header (e.g. To/From) prints. I have an HP Office Jet all-in-one printer. I updated my Firefox version and the problem remained.

    You might try looking/posting here.
    Microsoft Support – Office for Mac
    Microsoft Support – Office for Mac (2)

  • Probelm with email quality and printing

    Why is it that when I receive a photo via email I cannot print it out without receiving an exclamation point in a yellow triangle and then when I do print it out it's all pixilated? The image I receive is also smaller than the others in my photo album even though the photo was emailed to me in large format, highest quality.
    I tried to make a book using photos I emailed myself from my moms macbook and I had a problem with every one of them. However, if I upload them through a card reader then there isn't a problem. Why is this and what am I doing wrong?
    Thanks in advance,
    ellen

    ellen:
    As aubiem pointed out Mail will resize them. Be sure to select actual size at the bottom of the Mail window before sending.
    Or, you can zip the original file, drag to the desktop, Control-click on the photo or group of selected photos and select the "Make archive of...." menu in the contextual menu. That will insure the full image file is included in the email.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Probelm with Printing FP image

    i want to print the FP of a VI multiple times and generate a PDF document.
    Before:
    i have used the following options.
    VI Properties >> Print Options >> Print with Execution     => this creates 3 pdf documents (on printing 3 times) instead of one.
    VI Properties >> Print Options >> Scale printed front panel to fit page.     => this option scales the FP to fit the page.
    with these options the FP image really fits on the page.
    Now:
    i need a single PDF document with all the 3 pages.
    Problem: If i use Append image to report VI, then i cannot scale the image on the page.
    by saving the image to disk and then appending it to a standard report, the Image is not really fitted with the page in the PDF.
    Please help
    thanks
    Renn
    Kudos always welcome for helpful posts

    i'm attaching an example vi which uses the method 'Print. Panel To Printer' and the created pdf. see page3.pdf. The quality of the pdf is really good.
    PanelPrint.vi prints a page each time it executes. i need a single pdf (or single print job) with multiple pages.
    but if i am using the report generation VIs, i am appending images to report and not getting the desired quality.
    any suggestions??
    attachments:
    CallerVI_Lv9.vi
    PanelPrint.vi
    Kudos always welcome for helpful posts
    Attachments:
    CallerVI_Lv9.vi ‏9 KB
    PanelPrint.vi ‏14 KB
    Page3.pdf ‏17 KB

  • Probelm in printing tabspace in barcode thro smartforms

    Hi Friends,
    I want to print the Barcode label thro smartforms. My code is as follows,
    I want to use TABSPACE separation in between fields instead of SPACE how do i do this pls guide me for the same. I  am using SAP ECC 5.0 version. So i tried using SEPARATED BY cl_abap_char_utilities=>HORIZONTAL_TAB but i am getting ' # ' sign in it. so pls help how to do it?
    DATA: GT_LINES  TYPE STANDARD TABLE OF TLINE,
    GS_LINES  LIKE LINE OF GT_LINES,
    NAME      LIKE THEAD-TDNAME.
    GS_HD_GEN = IS_BIL_INVOICE-HD_GEN.
    NAME = GS_HD_GEN-BIL_NUMBER.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
        CLIENT   = SY-MANDT
        ID       = 'ZFOR'
        LANGUAGE = 'E'
        NAME     = NAME
        OBJECT   = 'VBBK'
      TABLES
        LINES    = GT_LINES.
    IF SY-SUBRC = 0.
      LOOP AT GT_LINES INTO GS_LINES.
        IF SY-TABIX = 1.
          TDLINE = GS_LINES-TDLINE.
          G_STR4 = TDLINE."GS_LINES-TDLINE.
        ELSEIF SY-TABIX = 2.
          G_STR4 = TDLINE."GS_LINES-TDLINE.
        ELSEIF SY-TABIX = 3.
          G_STR4 = TDLINE."GS_LINES-TDLINE.
        ELSEIF SY-TABIX = 4.
          G_STR4 = TDLINE."GS_LINES-TDLINE.
        ENDIF.
        CLEAR GS_LINES.
      ENDLOOP.
    ENDIF.
    DATA  LV_DEPEXNUM LIKE J_1IRG23D-DEPEXNUM.
    GS_HD_REF = IS_BIL_INVOICE-HD_REF.
    SELECT SINGLE DEPEXNUM FROM
    J_1IRG23D INTO LV_DEPEXNUM
    WHERE VBELN EQ GS_HD_REF-DELIV_NUMB.
    DATA: GV_DATE(10).
    WRITE GS_HD_GEN-BIL_DATE TO GV_DATE mm/dd/yyyy.
    DATA : LV_STR(15)." LIKE IS_BIL_INVOICE-HD_GEN-DPEND.
    read condition header data
    gs_hd_kond = is_bil_invoice-hd_kond.
    *reading excise data
    CLEAR: GS_HD_REF, GS_HD_GEN.
    READ TABLE gs_hd_kond INTO gs_hd_kond_w WITH KEY kschl = 'JEXT'.
    LV_STR = IS_BIL_INVOICE-HD_GEN-DPEND.
    read ref data
    GS_HD_REF = IS_BIL_INVOICE-HD_REF.
    read gen data
    GS_HD_GEN = IS_BIL_INVOICE-HD_GEN.
    clear: g_str, g_str1, g_str2, g_str3.
    concatenate
    IS_BIL_INVOICE-HD_REF-PURCH_NO
    LV_DEPEXNUM
    *GS_HD_GEN-BIL_DATE
    GV_DATE
    G_STR4
    LV_STR
    into g_str SEPARATED BY SPACE.
    clear: g_str1, g_str2, g_str3.
    LOOP AT IS_BIL_INVOICE-IT_GEN INTO GS_IT_GEN.
      IF SY-TABIX < 10.
        CLEAR G_STR1.
        g_str1 = GS_IT_GEN-FKIMG.
        concatenate g_str
        GS_IT_GEN-CUST_MAT   " AR ++ 29.07
                  GS_IT_GEN-SHORT_TEXT " AR -- 29.07
        g_str1
        into g_str separated by SPACE.
      ELSEIF SY-TABIX < 9.
        CLEAR G_STR1.
        g_str1 = GS_IT_GEN-FKIMG.
        concatenate g_str
        GS_IT_GEN-CUST_MAT    " AR ++ 29.07
                  GS_IT_GEN-SHORT_TEXT  " AR -- 29.07
        g_str1
        into g_str separated by SPACE.
      ELSE.
        CLEAR G_STR1.
        g_str1 = GS_IT_GEN-FKIMG.
        concatenate g_str
        GS_IT_GEN-CUST_MAT    " AR ++ 29.07
                  GS_IT_GEN-SHORT_TEXT  " AR -- 29.07
        g_str1
        into g_str separated by SPACE.
      ENDIF.
    ENDLOOP.

    Hi,
    There are two types are barcode existing in sap like system barcode and printer barcode. Use Tcode SE73 to create any of those.
    If you want to create your own customized barcode then you have to opt system barcode. Here while creating barcode it will ask whether to create new barocde or copy of existing barcode.
    However by taking into consideration your requirement, you have to create system bar code.
    Goto SE73->System barcode->change-> create new barcode->New barcode technology.
    Here you have to mention barcode name and short text. then supported barcode symbology like C39,C128, code93 etc.
    After selecting any of the symbology, you have to choose Bar Code Alignment: like normal. inverted, etc. Then specify other barcode parameters like height,width, barcode ratio etc.
    Then try to print any text element with this customized barcode as per your requirement.
    Like you can print text element with smartform style, here you can include your customized created barcode in character format. While creating charactor format, give name of your customized barcode in standard setting->name.
    Then print text element by using smartform style.
    Hope this works for you.
    Thanks.......

  • My printer does not print pdf files

    All my word doc print fine, just seems to be PDF files.

    Hi, MsFran.
    Have you ever fixed your problem? I wonder whether you have installed any PDF printing SDKs? Did it work well? Is that because of its probelm? Whatever, I hope you success. Good luck.
    Best regards,
    Arron

  • We are facing some probelms with reports6i

    hai,
    I am facing some probelms with reports6i.
    1.when i try to mail one report it is coming in the 'eps' format.how
    can i open this format.
    2.we are calling the report using the command line method not
    run_product.for these reports 'Generate to File' menu is not working.It say
    an error like Umimplemented Error (rep-0999)
    3.In one report we are using clob field.but when we take the print output of
    this field some of the characters are missing in paper.the problem what we
    think is that, there is no entre key padding when a word wrap is
    occuring.We have to give it manually which is not applicable in all
    cases.Please give some methods to solve these probelms.
    Please treat this as an urgent matter.
    thanking you,
    dilip

    If you have not set desformat you will get a file format determined by the driver of your default printer (even though you are not printing !). The file extension always seems to be .eps regardless of whether it is actually an eps (postscript) file.
    You can get other formats eg. pdf by setting desformat.
    If you do want to work with eps files you can download 'Ghostscript and GSView' which can display and convert them.

  • Print Sizing and Quality Issues

    When I print PDF documents I have issues with sizing and quality. I only have this issue with my Mac. Windows prints the files as they should be. I've tried two different printers, both over network. It doesn't matter whether I am in Adobe or in a browser. Basically it oversizes the documents and cuts off the edges. The quality on images and logos is severly degraded. This probelm existed in Lion and now in Mountain Lion. Any help?

    What we need are the clip properties & sequence settings in Final Cut Express.  Your screenshot is from a Finder window.
    It would appear you have a clip with nonstandard frame size (1366x768) in an H.264 file.  FCE cannot edit this material.  FCE is limited to specific codecs and frame sizes.  You need to convert your clip to QuickTime/Apple Intermediate Codec. If it's highdef widescreen then convert it to QT/AIC 1920x1080i.  Try using MPEG Streamclip to convert the source clip.
    You also need to be using a matching Easy Setup in Final Cut Express.  If your source media file is QT/AIC 1920x1080i then you should select the AVCHD Apple Intermediate Codec 1920x1080i60 Easy Setup in FCE -AND- then create a new sequence before importing your clip into FCE and placing it in your sequence (timeline)

  • Multiple Copy to Print on Oracle 9iAS Report

    Dear Friends
    When I an Trying to Print a Report on Oracle 9iAS, and Pass the Parameter More than One in Numbers of Copies it returns error wirh Error Code 1
    Report Error Code REP-50157,
    After Each Page One Blank Page Printed, On some documenttaion they mentioned that pass BACKGROUND = NO in URL, I did the same but probelm remains
    Can you Help me ?

    You should post this question in the general application server forum for an appropriate response: Oracle Application Server - General
    OTN

Maybe you are looking for