Production Order Print . table data in print output of order

Hi SAP Buddies
Can any one tell me what are the steps required for setting the SFC print output.
IMG setting for print output.. of SFC papers
Actually my main purpose is to get TABLE : MARD and Field LGPBE to printed on Goods Issue Slip.
Warm Regards
Brijesh Verma

hi
IN iMG settings OPK8 you need to set the Script forms,program name, list contorls,and printer specifications. against the lists
to get your required data you need to edit the program assigend to the Goosde issue slip.
pl check
-ashok
Edited by: Ashok Keerthipati on Dec 24, 2008 10:00 AM

Similar Messages

  • Print Table data

    Hi all,
         I want to print table data. I came up with couple of solutions like export to excel , printversion and adobe forms.
    We do not want to go for Adobe forms.  My concern in case of excel and print version is I want the logo also to be printed as the heading when printing this table data.
    please suggest me a solution where in I can print table data as well as the logo on top of the data.
    Thanks in Advance.

    Hi,
    You can print the Logo with the data using the adobe integrated with u r webdynpro application.In this case you need to create UI element interactive form in your webdynpro application and integrate the form with it.This form can be designed based on your requirement.For eq.logo on the top of the page .
    Thanks and regards,
    Amita Gupta

  • Printing Table data: How to print the row data in 'Western Text' ?

    Hi,
    Scenario:
    I have a table containing, say 5 records. The table is placed in a sub form (Properties: Content - Flowed, Flow direction - Western Text) which is adjusted in a manner to occupy only half of the page (vertically).
    I need the records to be printed adjacent to each other i.e. after printing the first row of the table , the next record should be placed in the other half of the page and so on.
    Issue:
    The problem is that even though I have set the property (flow direction) to Western text, the data is printed one below the other as in the Top to bottom property.
    Am I missing something?
    Kindly advice how to resolve this issue.
    Please let me know if the question is anyway unclear.
    Regards
    s@k

    Hi Otto,
    Thanks a lot for your prompt response.
    yes there is plenty of space.
    I am trying to display the records of a table. I used sub forms to behave like table and body row.
    The body row sub form occupies left half the page (to make it clear, say you divide the page vertically). The other half (i.e. right half ) is blank. I have checked the box to repeat itself for each data item.
    Now after printing the first record on the left hand side, I want the second record to be printed on the right hand side and if there is a 3rd record in the table, it should be printed just below the 1st record.
    Please do let me know if still the issue is not clear.
    Kindly suggest.
    Regards
    s@k

  • Print table data in Web Dynpro

    Hi all,
    I've seen that this topic was already discussed a lot in this forum. We need a print button in our Web Dynpro, when it is pushed all table data will be printed.
    Therefore my question is: Has anyone already implemented a working solution for this? What are the basic steps of your solution?
    Your answer is appreciated.
    Thanks, Carmen

    Carmen,
    Refer "<b><i>Printing a Table</i></b>" section in <a href="/people/sap.user72/blog/2006/05/04/enhancing-tables-in-webdynpro-java-150-custom-built-table-utilities Tables in WebDynpro Java</a>.
    Bala

  • Offline adobe forms using webservices-how to print table data

    HI,
    i have created offline adobe form using webservices which call rfc to pull the data ...to get inspection lot details ...
    iam getting header data....but iam not able to get multiple line items of the table data ..here in scenario there are 4 line items but only 1 line item is getting displayed in the form...
    is there any need to handle seperately to display  tables data in offline adobe forms if we call from webservices
    Tousif
    Moderator message: please have a look in the dedicated forum for "Adobe Interactive Forms".
    Edited by: Thomas Zloch on Jan 18, 2011 3:08 PM
    << Moderator message - New question asked, so this is locked >>
    Edited by: Rob Burbank on Jan 18, 2011 10:19 AM

    This is oofline adobe form which is created throgh webservices
    Edited by: tousif_ig on Jan 18, 2011 3:19 PM

  • Adding a 'sort by' option to table data in webhelp output

    RH8 HTML
    Hi all,
    Just wondering (again) if its possible to add a sort feature to a table?
    currently, I've got multiple topics that look like the following. They are a breakdown of all fields/buttons and their functions
    field name
    description
    example
    customer id
    description of field
    example data to be entered
    name
    description of field
    example data to be entered
    customer order no
    description of field
    example data to be entered
    job title
    description of field
    example data to be entered
    this is the order that the fields appear on the user form, I'm wondering if I could add a 'Sort By A-Z' and 'Sort by Appearance' options so the user can view the fields, descriptions, and examples either by the order it appears, or in alphabetical order - all the while the description and example fields moving with the sort.
    Just gives a bit more functionality for users so they can find a field quickly if the list is a bit bigger by using an alpha sort
    Thanks for any help.

    Hi,
    Normally, the browser shows a pointer over a hyperlink. You might have the script set up slightly different than Peter.
    A quick fix is as following:
    Identify the element you want to see a pointer, probably something like TableHeading. In your css, add:
    P.TableHeading
    Be carefull with this, it may confuse people if they see a mouse cursor they don't expect. Your best bet is still to figure out if you have set the script up exactly as described on Peter's page.
    Greet,
    Willam
    This e-mail is personal. For our full disclaimer, please visit www.centric.eu/disclaimer.

  • How to Convert internal table data into text output and send mail in ABAP

    Hi All,
    Good Morning.
    Taking a glance at a code that converts internal table data to an Excel file in ABAP. also checked how to send this excel to mailing list as attachment.
    But thought of doing it without excel.
    I mean, I have an internal table which contains fields of all types (character,integer,date,time). Since it is only around 4 to 5 rows in it (output),why to convert it to excel. not required!!.  Instead I  want to send this output to User's mails as Normal mail body with No attachments.
    Could anybody please suggest me a way as to how to send internal table data as a mail ( not as an excel or PDF etc).
    as of now my findings are, it is quite complex to convert internal table data to email (Text) format. but i believe if there is some way of doing it.
    Best Regards
    Dileep VT

    here's something I have used in the past where we send out information about failed precalculation settings (which are stored in internal table gt_fail)
    notice we use gt_text as "mail body"
    TRY.
    *     -------- create persistent send request ------------------------
           gv_send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document -------------------------------
    *     create text to be sent
           wa_line = text-001.
           APPEND wa_line TO gt_text.
           CLEAR wa_line.
           APPEND wa_line TO gt_text.
           LOOP AT gt_fail ASSIGNING <fs_fail>.
             MOVE <fs_fail>-retry_count TO gv_count.
             CONCATENATE text-002
                         <fs_fail>-setting_id
                         text-003
                         gv_count
                         INTO wa_line SEPARATED BY space.
             APPEND wa_line TO gt_text.
             CLEAR wa_line.
           ENDLOOP.
           APPEND wa_line TO gt_text.
           wa_line = text-007.
           APPEND wa_line TO gt_text.
    *     create actual document
           gv_document = cl_document_bcs=>create_document(
                           i_type    = 'RAW'
                           i_text    = gt_text
                           i_length  = '12'
                           i_subject = 'Failed Precalculation Settings!' ).
    *     add document to send request
           CALL METHOD gv_send_request->set_document( gv_document ).
    *     --------- set sender -------------------------------------------
           gv_sender = cl_sapuser_bcs=>create( sy-uname ).
           CALL METHOD gv_send_request->set_sender
             EXPORTING
               i_sender = gv_sender.
    *     --------- add recipient (e-mail address) -----------------------
           LOOP AT s_email INTO wa_email.
             MOVE wa_email-low TO gv_email.
             gv_recipient = cl_cam_address_bcs=>create_internet_address(
                                               gv_email ).
             CALL METHOD gv_send_request->add_recipient
               EXPORTING
                 i_recipient = gv_recipient
                 i_express   = 'X'.
           ENDLOOP.
    *     ---------- set to send immediately -----------------------------
           CALL METHOD gv_send_request->set_send_immediately( 'X' ).
    *     ---------- send document ---------------------------------------
           CALL METHOD gv_send_request->send(
             EXPORTING
               i_with_error_screen = 'X'
             RECEIVING
               result              = gv_sent_to_all ).
           IF gv_sent_to_all = 'X'.
             WRITE text-004.
           ENDIF.
           COMMIT WORK.
    *   exception handling
         CATCH cx_bcs INTO gv_bcs_exception.
           WRITE: text-005.
           WRITE: text-006, gv_bcs_exception->error_type.
           EXIT.
       ENDTRY.
    with the following declarations
    * TABLES                                                               *
    TABLES:
       adr6,
       rsr_prec_sett.
    * INTERNAL TABLES & WORK AREAS                                         *
    DATA:
       gt_fail          TYPE SORTED TABLE OF rsr_prec_sett
                             WITH UNIQUE KEY setting_id run_date,
       gt_text          TYPE bcsy_text,
       wa_fail          LIKE LINE OF gt_fail,
       wa_line(90)      TYPE c.
    FIELD-SYMBOLS:
       <fs_fail>        LIKE LINE OF gt_fail.
    * VARIABLES                                                            *
    DATA:
       gv_count(4)      TYPE n,
       gv_send_request  TYPE REF TO cl_bcs,
       gv_document      TYPE REF TO cl_document_bcs,
       gv_sender        TYPE REF TO cl_sapuser_bcs,
       gv_recipient     TYPE REF TO if_recipient_bcs,
       gv_email         TYPE adr6-smtp_addr,
       gv_bcs_exception TYPE REF TO cx_bcs,
       gv_sent_to_all   TYPE os_boolean.
    * SELECTION-SCREEN                                                     *
    SELECT-OPTIONS:
       s_email          FOR adr6-smtp_addr NO INTERVALS MODIF ID sel.
    DATA:
       wa_email         LIKE LINE OF s_email.

  • SAPSCRIPT: Purchase Order Required Delivery Date Not printing

    We have a required delivery date in the PO in the field EEIND. But all of the SAP logic is pointing to doc-xpekko-EINDT. I am only aware of a couple of places the logic can look for EEIND in the PO and the date is there, but again  the SAP logc seems to look at EINDT. Anybody know where else in a PO the SAP logic could be grabbing the Req. Delivery date from?
                       Thank-You

    Hello Tom,
    It should work ,because you said that they are using standard print program.
    just use &PEKPO-EINDT& and see the results.
    Thanks
    Seshu

  • How to print text/data in flex 3 using printer???Plz help...

       Hi,
              plz tell me the way to print text/data using printer in flex.  I tried the FlexPrintJob class. but it takes object of a container to be printed & prints the visible content of that container(along with scrollbars), bt i want to print all contents of the container(including invisible).
          I have tried to print bitmap image through FlexPrintJob but it takes lot of time for spooling... So plz help me out in printing(fast with all content) in flash
    I am using flex 3 (flex Builder 3 IDE).
      Thanks in advance!!!

    Hi Sagar,
    Don't worry You can use the below work around to print all the contents of the Container including the invisible contents under scrolll with out scroll bar..
    So what the idea here is we are seeting the container height to full size with out scrolls before sending the container object to printer and as soon as you print the object you are restoring it to the original height with scrolls...so that you can print the full contents without scrolls...
    You may have doubt that by chnaging and restoring the size the user may see momentary resize of the container but it is not so as it is a fraction of a second and user cannot notice this change... Give it a try ..I had already run into this problem recently and I have found a work around for this which is as below:
    // Here mainContainer is the container or box id the contents of which you want to print
       private function doPrintContainer():void
        var printJob:FlexPrintJob = new FlexPrintJob();
        if(printJob.start() != true) return;
        try
         var mainContainerHeight:int = mainContainer.height;
         //Increasing the height of the desired component to be printed.
         mainContainer.height = mainContainer.measuredMinHeight;
         mainContainer.verticalScrollPolicy = "off";
         //Adding the resized Component to our FlexPrintjob and then sending the print request
         printJob.addObject(this,FlexPrintJobScaleType.MATCH_WIDTH);    
         printJob.send();
         //Resizing the component back to normal size
         mainContainer.height = mainContainerHeight;
         mainContainer.verticalScrollPolicy = "auto";    
        catch(error:Error)
                     trace("Error : " + error.message);
    If this post answers your question or helps, please kindly mark it as such.
    Thanks,
    Bhasker Chari

  • Import table data in right order to avoid violating foreign key constraints

    Gentlemen
    I am trying to import table data into an existing 10g schema using datapump import in table mode.
    However, in order to avoid violating foreign key constraints, the tables must be loaded in a specified order. I tried specifying the order in the TABLES parameter:
    TABLES=table1,table2,table3 etc.
    However, datapump seems to chose its own order leading to errors like the following:
    ORA-31693: Table data object "SCHEMAX"."TABLE3" failed to load/unload and is being skipped due to error:
    ORA-02291: integrity constraint (SCHEMAX.TABLE3_TABLE1#FK) violated - parent key not found
    I want to try to avoid having to disable all foreign keys because there are hundreds of them.
    Any advice?
    Yours
    Claus Jacobsen, Denmark

    Thanks Anantha.
    Since I am only loadding data (the constraints are already defined in the target database), I am not sure whether this approach would work. Meanwhile I have solved the problem of moving data from one system to another using another, tedious and far from elegant approach that I would prefer to not eloborate on:-)
    However, I have also discovered another probable reason why the foreign key constraints were violated, other than wrong order of table data loading. It turns out almost every single table in the schema contains a trigger supposed to generate a unique row ID from a sequence on insert such as:
    CREATE OR REPLACE TRIGGER "SCHEMAX"."TABLEX#B_I_R"
    BEFORE INSERT
    ON TABLEX
    FOR EACH ROW
    DECLARE
    BEGIN
    SELECT tablex_seq.nextval INTO :NEW.ID FROM dual;
    END;
    If the import mechanism fires this trigger, and the sequences in the source and the target systems are not synchronized, then I guess that referred records a more than likely to end up with wrong ID's compared to the row ID's in the referring rows?
    Spooky. Anybody can confirm this theory?
    Yours
    Claus
    Message was edited by:
    user586249

  • Help with Will Print - Current Date to apply to several hundred files

    Hello,
    So I've spent all morning trying to find a solution for my problem, but I know nothing about Javascript, and the more detailed answers I've found are that give step-by-step tips are for older versions of Adobe (I have Adobe Acrobat X Pro).
    My Situation: I have several hundred SOP PDFs that I wanted to add "Printed On: current date" and "Notice: Printed copies of SOPs are only valid for 30 days past "Printed On" date. Printed SOPs must be disposed of by confidential shredding." in the footer. These PDFs are then linked to our intranet where all employees open them to print.
    What I Did: I went to Tools>Pages>Add Header & Footer entered all the information, entered the "Insert Date" then clicked "Apply to multiple files" and thought that I had done everything. However, the date is not changing...it is staying on the date that I did the whole batch of files with the "apply to multiple files"
    What I have found is that evidently i need to do batch processing, with the will print java script to put the following code in (but i'm not sure if this code will put it in the footer?):
    var f = this.getField("Today");
    f.value = util.printd('dddd mmmm dd yyyy h:MM tt   ', new Date())
    but i have no idea where to get to batch processing, will print, etc.
    I can redo the apply to multiple files so that only the "notice" part will be on the right part of the footer, but can some nice forum person give step-by-step for dummies instructions on how to fix this so the date is current on the left part of the footer whenever someone opens the file?
    Thanks!
    Heather

    Right, so I did find the Actions section under tools....So I did Create New Action>More Tools>Execute Javascript
    Then I clicked on the little "Options" box, and all that pops up is an empty javascript window with "/* Put script title here */" Is that were I paste the code I had? Do I leave the /* or erase everything and put the code? Also, i don't see anything about adding a field....
    ...sorry to be dense about this, but this is way beyond anything i've attempted in acrobat. I do appreciate your help though.
    Also, what options will i want selected on the "start with" and "Save to" options...i don't want the end users to have to mess with any prompts or anything, will Start With > a file open in acrobat run the script as soon as that file is opened via the intranet? Also, i'm assuming i then want "don't save changes" so the date will always change? Thanks.

  • Print Table all Line

    Hello:
    I want to use all line printing function to print Table, because the print control function can only print visible, so could you tell me how to realize all the lines of print Table?
    Thank you

    GetNumTableColumns
    SetCtrlAttribute with ATTR_NUM_VISIBLE_COLUMNS attribute
    Generally speaking, when seraching for a function or an attribute of a control you can right-click on the control itself and select Control Attributes of COntrol functions from the context menu: the help will be shown on the correspnding item, for example the list of attributes that can be used on a table
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Getting problem in binding DropDown List with table data in visual JSF

    Hi All,
    I am new to visual JSF.
    I am getting few problems while working over components.
    I have succeeded in binding data of Person table in a drop down list .
    By just drag drop ..it worked.
    But while connecting to external DB this drag drop mechanism didn't work for me .
    1st problem that i faced was by dragging method columns are not visible when i did right click-> bind to Data -> DataProvider window .
    But i am successfully printed table Data in backend ie: by putting
    for(int i=0; i<xn_white_listDataProvider.getAllRows().length;i++){
           System.out.println("  value :"+xn_white_listDataProvider.getValue("SUB_ID",xn_white_listDataProvider.getRowKey(Integer.toString(i))));
    }I am not getting how to set Items in dropdown1
    I tried putting
    HelloSh.xn_white_listDataProvider.options['XNODE.XN_WHITE_LIST.SUB_ID, XNODE.XN_WHITE_LIST.SUB_ID'but it didn't work while for person data table
      items="#{HelloSh.personDataProvider.options['PERSON.PERSONID,PERSON.NAME']}"it is working
    when i am writting items="24,28" in dropdown1 box
    & printing its value in static text Like
    <webuijsf:staticText id="staticText3" style="position: absolute; left: 72px; top: 120px" text="#{HelloSh.dropDown1.items}"/> it is printing fine .
    Plz help me in this regard.
    Any clarification if needed plz let me know.
    Thanks in advance.

    <h:selectOneMenu id="menu1" styleClass="selectOneMenu">
    <f:selectItems value="*#{selectitems.pc_DynamicPortletEdit.regList}*" />
    </h:selectOneMenu>When we bind the list to the h:selectOneMenu the code in the JSP will be as given above.
    My doubts here are
    1) But when i tried to bind the list to a selectonemenu the code in the JSP is looking like this one
    <h:selectOneMenu id="menu1" styleClass="selectOneMenu">
    <f:selectItems value="*#{selectitems.pc_DynamicPortletEdit.regList.regList.toArray}*" />
    </h:selectOneMenu>2) Also in the runtime instead of displaying the values in the dropdown, i am getting the object names (javax.faces.model.SelectItem@680d0ccc) in the drop down.
    What am I doing wrong? Any help here would be usefull for me.
    BTW,
    the code in the backing bean for setting the values is like this
    List dropListValue = new ArrayList();
        for (int x=0; x<result.length; x++){ //where result is array of string values              
            SelectItem tempSelect = new SelectItem();
            tempSelect.setLabel(result[x]);
            tempSelect.setValue(result[x]);
            dropListValue.add(result[x]);                      
    this.setRegList(dropListValue );The bean is in request scope only.

  • Bug when exporting table data

    The exported columns name are still ordered as the table definition and the data are ordered as the table is diplayed in the explorer. If you change the order of the columns in the explorer and export the data in a csv file by example, the data are putted in a wrong column due to the labeling mismatch.
    Table
    +column a
    +column b
    Table data in the explorer
    +column b
    +column a
    Data exported in the csv file
    +Title column a
    +data column b
    +Title column b
    +data column a                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Sure enough - just tested this with Export > Insert and the column headings are in the displayed order but the data is in the db order. I will log a bug now.
    -- Sharon

  • Printing information (date+time) of an order

    Hi experts,
    Do you know where printing information (date + time) of an order is stored?
    Does SAP store also a re-printing information?
    Via configuration OIOE, it triggers the printing information in table JCDS , but in case of re-printing, SAP does not seem to store that information.
    Any suggestion?
    Thanks
    P.

    Hi,
    Several suggestions to find the replied date & time:
    1. We can find related emails in Outlook, then find the replied date & time from the related emails:
    Right click on the message in the list, Select "Find Related" -> "Messages in This Conversation" from the menu that comes up.
    2. View tab -> Conversations -> check "Show as conversations", then we can easily find other emails in the conversation, then find the replied date & time.
    Anyway, both methods above are manual and based on your request description, I don't think the whole process can be performed with the build-in feature automatically. However, the whole process may be realized via VBA, if you can accept a VBA method, I suggest
    you post the detailed request in Outlook for Developers forum:
    http://social.msdn.microsoft.com/Forums/office/en-US/home?forum=outlookdev
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

Maybe you are looking for