Customer part number to be printed on the output

The system shall automatically display/print customer part number or product name on document output.

Hi,
Your document output depends on Output program attached to your output condition type.
So if the field Customer Material Number/ Part Number ( VBAP -  KDMAT) is to be printed for the document output.
Ask your abap consultant to add this field in the output program and form
Field name
VBAP -  KDMAT
regards,
Ashish

Similar Messages

  • Customer PO number to be printed in smartform output

    Hi,
    My requirement is to print customer PO number on the o/p of a smartform based on the delivery number.
    The delivery number is already being printed in the o/p.When I checked in debugging mode,this delivery number is being looped twice.The set of values which are coming in the second loop are being printed in the o/p.These set of values are coming in ls_stages-vbeln field(ls_stages is a work area).
    Now to get customer PO number,I need to loop ls_stages-vbeln field.How can I do that?
    Regards,
    Hema

    Hi,
    Your document output depends on Output program attached to your output condition type.
    So if the field Customer Material Number/ Part Number ( VBAP -  KDMAT) is to be printed for the document output.
    Ask your abap consultant to add this field in the output program and form
    Field name
    VBAP -  KDMAT
    regards,
    Ashish

  • Multiple customer part number in VD51

    Hi we are maintaining customer part number in VD51for our SAP part number. ONE TO ONE for  a particular customer is possible.  but we need to maintain more than one customer part number for the same SAP part number and same customer is it possible is there any other way to achieve this ...b'cos our customer name same part A as X in one project and Y in another project . they gave order by their part numbers only

    As long as the customer code is going to be the same, you cannot maintain multiple customer material codes against one SAP material code.  But you can cheat the system which I would not recommend :-((, by giving some space before the customer material code.
    thanks
    G. Lakshmipathi

  • Text element is not getting printed in the output

    Hi all,
    I'm trying to print address from table KNA1in address window through a text element.
    The corresponding code being :
    In Delivery Prg,
    Data : lv_kna1 type STANDARD TABLE OF kna1,
              lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
       ELEMENT                        = 'DELIVERY_ADDRESS'
       WINDOW                         = 'DELIVADR'
    and calling the same text element 'DELIVERY_ADDRESS' as follows in the Script:
    /E           DELIVERY_ADDRESS
    /:           IF &LV_KNA1-TELF1& <> &SPACE&
    IL           Tel.: &LV_KNA1-TELF1&
    /:           ENDIF
    /:           IF &LV_KNA1-TELFX& <> &SPACE&
    IL           Fax : &LV_KNA1-TELFX&
    /:           ENDIF
    /:           IF &LV_ADR6-SMTP_ADDR& <> &SPACE&
    IL           E-mail : &LV_ADR6-SMTP_ADDR&
    /:           ENDIF
    But,this text element is not printing in the output.
    Any pointer on this would be of great help.
    Regards,
    Vamsee Priya.

    yes, it is.
    I'm trying to get the e-mail address from adr6 table with the corresponding address number  from table kna1.
    so I created two tables as below:
      Data : lv_kna1 type STANDARD TABLE OF kna1,
             lv_adr6 type STANDARD TABLE OF adr6.
    DATA : WA_ADR6 TYPE ADR6.
      SELECT SINGLE * FROM KNA1 WHERE KUNNR = VBPA-KUNNR.
      SELECT SINGLE * FROM ADR6 INTO WA_ADR6 where ADDRNUMBER = kna1-adrnr.
    now, I'm trying to fill e-mail adress from lv_adr6. but the problem is lv_adr6 is not getting filled.
    data is coming to work area wa_adr6.
    SAP is not allowing me to write the below statement:
    SELECT SINGLE * FROM ADR6 INTO LV_ADR6 where ADDRNUMBER = kna1-adrnr.
    Now, will any move-corresponding statement from work area to its table works?? Is that logically correct??

  • T.code FBL5N: a problem with the print of the output list

    Hi All,
    with reference to the t.code FBL5N, I have  a problem with the print of the output list of the report.
    When I execute the print, I obtain one customer for each page printed.
    I wonder if is possible to obtain more customers for each page printed.
    Could anyone help me?
    Thanks
    Gandalf
    Edited by: Umberto Gandalf on Dec 21, 2008 10:36 PM

    Hi,
    Though personally i havent tried this option, check the same
    Go to Menu: Settings >> Switch List
    This will make the value displayed in ALV format and then try taking print outs.
    Regards,
    Sridevi

  • Avoid Image Printing on the output

    Hi all,
    I am printing an image on my selection screen, but I am not able to avoid the same printing on the Output.
    This is my code, please check the code and tell me where I am going wrong.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    PARAMETER : pr_path LIKE ibipparms-path.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_path.
    PERFORM f002-f4_filename CHANGING pr_path.
    AT SELECTION-SCREEN OUTPUT.
    PERFORM show_pic.
    REFRESH query_table.
    START-OF-SELECTION.
    REFRESH query_table.
    PERFORM f003-upload_data .
    FORM f002-f4_filename CHANGING p_pr_path.
    ENDFORM. "f002-f4_filename
    FORM f003-upload_data .
    ENDFORM. "f003-upload_data
    FORM show_pic.
    DATA: repid LIKE sy-repid.
    repid = sy-repid.
    CREATE OBJECT picture_control_1 EXPORTING parent = docking.
    CHECK sy-subrc = 0.
    CALL METHOD picture_control_1->set_3d_border
    EXPORTING
    border = 5.
    CALL METHOD picture_control_1->set_display_mode
    EXPORTING
    display_mode = cl_gui_picture=>display_mode_stretch.
    CALL METHOD picture_control_1->set_position
    EXPORTING
    height = 225
    left = 005
    top = 048
    width = 947.
    break-point.
    IF url IS INITIAL.
    REFRESH query_table.
    query_table-name = '_OBJECT_ID'.
    skip 5.
    query_table-value = 'ZAUROSYS1'.
    APPEND query_table.
    CALL FUNCTION 'WWW_GET_MIME_OBJECT'
    TABLES
    query_string = query_table
    html = html_table
    mime = pic_data
    CHANGING
    return_code = return_code
    content_type = content_type
    content_length = content_length
    EXCEPTIONS
    object_not_found = 1
    parameter_not_found = 2
    OTHERS = 3.
    CALL FUNCTION 'DP_CREATE_URL'
    EXPORTING
    type = 'image'
    subtype = cndp_sap_tab_unknown
    size = pic_size
    lifetime = cndp_lifetime_transaction
    TABLES
    data = pic_data
    CHANGING
    url = url
    EXCEPTIONS
    OTHERS = 1.
    ENDIF.
    CALL METHOD picture_control_1->load_picture_from_url
    EXPORTING
    url = url.
    endform.

    solved by self

  • How to show the dbms_output statements to be printed in the Output box??

    Hi all,
    I am using SQL devoloper 2.1.1.64 version. In earlier versions of the tool, there was a DBMS_OUTPUT screen which prints out the output of the dbms_output utility given inside a script which is run using the devoloper(till version 1.5)
    Now there is no such DBMS_OUTPUT tab in the latest version. I tried to give *"set server output on"* in the worksheet and tried to run some script but still the output is not getting printed in the Output tab.
    Any one knows? please help.

    Hi,
    Output from dbms_output is shown in a different pane.
    Click in the menu on View > Dbms output. Add a tab for your connection and run your script.
    See also the SQL Developer Help: SQL Developer Concepts and Usage > Using the SQL Worksheet > DBMS Ouput Pane.

  • How to update the customer part number in SAP as customer parts.

    Hi MM Gurus,
    Our client has customer parts at their shopfloors and they need to update those parts as customer parts. Please advise how to do it in SAP.
    Thanks and Regards,
    Madelyn

    Hi,
    You can receive Customer provided parts in your Shop Floor in MIGO. Here use movement type 501 and do Goods Receipt > Others.
    Also Create your customer materials as non valuated material, because these materials not effecting the our inventory. And also create a separate storage location (in OX)9) for the Customer and do GR in this location, this will give tracking of Customer's Stock.

  • Customer TIn Number to be printed in our invoice

    Hello evertone,
    I have a end user requirement of printiing the xustomer TIN number to be printed in our invoice....is it possible if we maintain the same in customer master data.
    Thanks in advance

    Hi,
    we maintain the customer excise details in t.code J1ID. We have the PAN no. Just check whether we have TIN no. for customer also and in SAP what is the field name. Now are you using the standard ouput type for printing the invoice - RD00? If RD00 layout has the field for printing the TIN number, then if you maintain the TIN no. for customer then when you take the print out of your invoice the TIN of customer will be diaplayed.
    If the TIN no. field is not there in the standard layout of the output type RD00, then ask your ABAPER to make the required changes in the standard layout and include the required field in the layout. Give the specifications to the ABAPER.
    Reward points if solution helps.
    Regards,
    Allabaqsh G. Patil

  • When we give the print command, the output page is like a disintegrated print; whats the solution to this

    When we given print command, say for any of my email, the print is not proper, every letter of it say 3mm apart.
    Eg. Firefox would look like
    F i r e f o x

    The printer problem has been documented in a number of other entries. It's a bug that's been fixed for the final FF4 roll-out.
    Check here: https://support.mozilla.com/en-US/questions/787654

  • Values not getting printed in the Output

    Hi all,
        Iam facing strange problem.
    In the debug mode iam seeing the values for all variables ( Variable windows) but after printing no value is getting printed. MAIN window is there but no element is being called from the MAIN window.
    Can anyone help me in this regard.
    Rehards,
    Indrajit

    hi Indrajit ,
    check that in print program you have created the element same as using in main program , also declare temporary variables inside loop at table so that **** sign doesnt gets printed ..
    Hope this will help you

  • Po item text to be printed in the output form

    Hi
    How to print the item text of the purchase order in the form output
    Thanks
    Srinivas

    hi
    for this u have to consult ur ABAPer
    also chekc the following settings
    SPRO>Materials Management>Purchasing>Messages>Texts for Messages>Define Texts for Purchase Order
    here check that u have entries for ur document type
    regards
    kunal

  • Customer Part No. on Packing Shipping label doesn't prints???

    Hi Friends,
    I have an issue where Customer Part No. is not printing on Packing/Shipping label, could you please let me know what are the areas i need to check, whether it is a configuration issue or do we need to debug the programme. Appreciate if you could plz let me know how can i able to check the output(Transaction) for packing/shipping. Appreciate your immediate response.
    Thanks.
    MD

    Check in Tcode: OMCF
    have you maintained the settings properly.
    & also check in SPRO- logistics execution - packing - set profile for packing station here the last field which is print profile...
    Hope this helps
    Chers

  • How to get the total number of pages printed in a report?

    Hi All,
    I have a requirement where I need to print a frame of fields only in the last page. Unfortunately I cannot use the 'Print Object On' property as it doesnt work in my case. So, I am planning to write a format trigger on the frame to return TRUE if the page is the last physical page. Now, I need to know how to get the total number of physical pages that will get printed in the report so that I can use this to manipulate the frame. I was planning to use the 'Total Physical Pages' built-in, but it seems like I can just use it to print in a field and I can't use this field's value anywhere in the plsql code (formula column function/format trigger) in the report. Is there anyway to get the total number of pages printed in the report which can be used in the report plsql code?
    Thanks,
    Srini.

    i found the solution, thanks

  • Satellite M50-159: What is the part number of the origanal AC power adapter

    My power adapter has broken and up until now i have been using a universal adapter but the connection is loose and takes a while for the orange light to turn on.
    My question is what is the part number of the original AC adapter that came with this laptop. I have just ordered what i thought was the correct power adapter part number was PA3468E-1AC3 but the connecter did not fit into my laptop even though the toshiba website said this power adapter was compatible.
    Please help
    Alex

    Hi dear friend,
    you had the wrong partnumber. What you need is PA3283U2ACA (K000028790) which is the right one. Heres a link where you can check the connector of the AC-adapter:
    http://www.sparepartswarehouse.com/Toshiba,Laptop,Part,K000028790.aspx
    I hope you will get what you need. :)
    Greets

Maybe you are looking for