Reg completion of PI sheet

Dear all,
When  should  we complete a PI sheet in a process order.
Thanks in advance

Hi,
You cannot "complete" a PI Sheet if there are open entries i.e. if fields are not locked you cannot "complete" a PI Sheet.
However, even with open entries you can "Technically Complete" a PI Sheet.
You can complete the PI sheet there are no open entries

Similar Messages

  • Report or TCode for Completed Service Entry Sheets

    Hi, I hope someone can help me here.  I want to know the TCode for listing all PO's that have had the Service Entry Sheets completed.  Is there such a report?  I hope so, we are having difficulty matching invoices where no service entry sheets have been completed.  Thanks!

    Hi,
    Use Report ME2S - Here you will get list of all POs with status against PO, SES Completed and Accepted and Invoice posted with Traffic Light.
    Also see report ME2N / ME2M / ME2L with Item Category "D" and Selection Parameter as "WE102" or "WE106".

  • Reporting of completion of PI Sheet

    Hi.
    How to get information about person who has completed PI Sheet?
    Any Function Module existing or table combinations where to get information?
    Thanks,
    BR, Jari

    Ok & thanks.
    Then we have to make own development, Z-program.
    I have found tables related to signatures and PI Sheets, but link between tables is missing. Does anyone know how to link tables together?
    Table COMHR has information about Proc. Order, Process Message and Proc. Message cat.
    Table SIGNS has information about person who has made signature and Signature ID.
    I think that in COMHR Proc. Message cat is telling that pi sheet is completed (status PI_CRST) and process message is key field to find out signature info.
    In SIGNS key field is Signature ID and field signatory will tell who has done the job.
    Missing information is how to connect those two tables together with one or more "link tables" so that we can report printed out.
    BR, Jari

  • Technically completion of PI sheet collectivly

    Hello,
    I would like to know if it is possible to set to tecnically complete PI sheets in a collective way!
    I can only find the individual option in trx CO56 .
    If  this is not posssible, maybe there is another way around to let appear automatically the process message PI_CRST in the list of messages of the Process Order.
    In this way we can treat the message collectively without having to go through the PI-sheets closure one by one.
    Thanks for any answer
    Aart

    Hello Senthilkumar
    I tried CO64, but still I need to enter the Produccion instructions one by one to set them a technical complete.
    Maybe Im doing something wrong?
    Thanks,
    Aart

  • Reg:Headings in Excel sheet

    Hi all,
    How to place headings in Excel sheet when we are downloading
    the item details. Can any one help me to resolve this problem.

    Hi Radhika ,
    Try like this
    PARAMETERS : p_dload TYPE rlgrap-filename.
    DATA : w_dload TYPE string.
    TYPES : BEGIN OF ty_kna1,      " structure
            kunnr TYPE kna1-kunnr,
            name1 TYPE kna1-name1,
            ort01 TYPE kna1-ort01,
            land1 TYPE kna1-land1,
            END OF ty_kna1.
    TYPES : BEGIN OF ty_head,      " structure
            kunnr(20),
            name1(20),
            ort01(20),
            land1(20),
            END OF ty_head.
    DATA :  it_kna1 TYPE TABLE OF ty_kna1.  "table to download records
    DATA : wa_hedtab TYPE ty_head,
           it_hedtab TYPE TABLE OF ty_head. " table for heading
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_dload.
      PERFORM f_dload.
    START-OF-SELECTION.
      PERFORM f_header.
      PERFORM f_extract.
      PERFORM f_download.  " download file to presentation server
    *&      Form  f_dload
    FORM f_dload .
      CALL FUNCTION 'F4_FILENAME'
    * EXPORTING
    *   PROGRAM_NAME        = SYST-CPROG
    *   DYNPRO_NUMBER       = SYST-DYNNR
    *   FIELD_NAME          = ' '
        IMPORTING
          file_name           = p_dload
    ENDFORM.                    " f_dload
    *&      Form  f_extract
    FORM f_extract .
      SELECT kunnr
              name1
              ort01
              land1 FROM kna1 INTO TABLE it_kna1 .
    ENDFORM.                    " f_extract
    *&      Form  f_download
    FORM f_download .
      w_dload = p_dload.
      CALL FUNCTION 'GUI_DOWNLOAD'           " downloading header here
          EXPORTING
    *   BIN_FILESIZE                    =
            filename                        = w_dload
         filetype                        = 'ASC'
    *   APPEND                          = ' '
         write_field_separator           = 'X'
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
          TABLES
            data_tab                        = it_hedtab
    *   FIELDNAMES                      =
       EXCEPTIONS
         file_write_error                = 1
         no_batch                        = 2
         gui_refuse_filetransfer         = 3
         invalid_type                    = 4
         no_authority                    = 5
         unknown_error                   = 6
         header_not_allowed              = 7
         separator_not_allowed           = 8
         filesize_not_allowed            = 9
         header_too_long                 = 10
         dp_error_create                 = 11
         dp_error_send                   = 12
         dp_error_write                  = 13
         unknown_dp_error                = 14
         access_denied                   = 15
         dp_out_of_memory                = 16
         disk_full                       = 17
         dp_timeout                      = 18
         file_not_found                  = 19
         dataprovider_exception          = 20
         control_flush_error             = 21
         OTHERS                          = 22
      IF sy-subrc  NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'     "-----> downloading data here
        EXPORTING
    *   BIN_FILESIZE                    =
          filename                        = w_dload
       filetype                        = 'ASC'
       append                          = 'X'
       write_field_separator           = 'X'
    *   HEADER                          = '00'
    *   TRUNC_TRAILING_BLANKS           = ' '
    *   WRITE_LF                        = 'X'
    *   COL_SELECT                      = ' '
    *   COL_SELECT_MASK                 = ' '
    *   DAT_MODE                        = ' '
    *   CONFIRM_OVERWRITE               = ' '
    *   NO_AUTH_CHECK                   = ' '
    *   CODEPAGE                        = ' '
    *   IGNORE_CERR                     = ABAP_TRUE
    *   REPLACEMENT                     = '#'
    *   WRITE_BOM                       = ' '
    *   TRUNC_TRAILING_BLANKS_EOL       = 'X'
    *   WK1_N_FORMAT                    = ' '
    *   WK1_N_SIZE                      = ' '
    *   WK1_T_FORMAT                    = ' '
    *   WK1_T_SIZE                      = ' '
    * IMPORTING
    *   FILELENGTH                      =
        TABLES
          data_tab                        = it_kna1
    *   FIELDNAMES                      =
    EXCEPTIONS
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       OTHERS                          = 22
      IF sy-subrc  NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " f_download
    *&      Form  f_header
    FORM f_header .
      wa_hedtab-kunnr = 'Customer No'.
      wa_hedtab-name1 = 'Name'.
      wa_hedtab-ort01 = 'city'.
      wa_hedtab-land1 = 'Country'.
      APPEND wa_hedtab TO it_hedtab.
    ENDFORM.                    " f_header
    Thanks & Regards

  • Reg:processing of excel sheet by SAP XI

    Hi all,
    Is it possibel for XI to pick data from an excel sheet.
    If so,can anyone please let me know some useful blogs.
    Thanks in advance.

    hi,
    u can check the below blogs to process the Excel sheet and generate Excel sheet using XI
    /people/sap.user72/blog/2005/07/04/read-excel-instead-of-xml-through-fileadapter (process excel sheet)
    /people/michal.krawczyk2/blog/2005/12/10/xi-generating-excel-files-without-the-java-nor-the-conversion-agent-not-possible (Generate Excel sheet)
    Thank You,
    Madhav.
    Note: Points If useful.

  • Reg download to excel sheet

    Hi
         I have to download table contents to excel sheet for printing purpose,or is there any other facility through which we can directly print the table data?
        please explain in detail.
    thanks
    prajakta

    Hello,
    Try If the following code help you
    //Take This is sample data in table with three records
    String str[][]={{"One ","Hyd","MG","Manager"},{"Two","Chennai","ASM","AsstManager"},{"Three","Chennai","SREX","SrExecutive"},{"Four","Hyd","EX","Executive"}};
    for(int i=0;i<str.length;i++)
         String aa[]=str<i>;
         byte b[]=aa[0].getBytes();
         fos.write(b);
                    fos.write("\t".getBytes());
         b=aa[1].getBytes();
         fos.write(b);
         fos.write("\t".getBytes());
        b=aa[2].getBytes();
                    fos.write(b);
         fos.write("\t".getBytes());
         b=aa[3].getBytes();
         fos.write(b);
                   fos.write("\t".getBytes());
         fos.write("\n".getBytes());
    // Find the URL of this File and bind to Context Using Following Code
    FileInputStream fis = new FileInputStream(f);
               FileChannel fc = fis.getChannel();
               byte[] data = new byte[(int)(fc.size())];
               ByteBuffer bb = ByteBuffer.wrap(data);
               fc.read(bb);
                IWDCachedWebResource objCachedWebResource = null;
               if (data != null)
                   objCachedWebResource = WDWebResource.getWebResource(data,WDWebResourceType.XLS);
                   objCachedWebResource.setResourceName(f.getName());
               wdContext.currentContextElement().setResource(objCachedWebResource.getAbsoluteURL());
    Regards
    LakshmiNarayanaChowdary.N

  • Reg Completion of 57F(4) Challan

    Dear Gurus,
                        In our plant for internal / external job 57f4 challan will be made, and while receiving the stores person doesn't mention the challan no . in the grn so unable to de reconcilation and completion of the challan, the stock provided to vendor also not consumed. Kindly help me to reduce the stock provided to vendor and completion of challan
    Thanks in advance
    Vasant

    Cancel GR,It will reverese,if not post error message here.
    or
    Get a confirmation from subcontractor,stock is not lying with them,then discuss with FI peoples,
    Consult with excise consultants for excise impact.
    Do physical inventory adjustment for special stock - 'O'.
    Do necessary settings for movement 701 along with movement type group.
    Reconcile challan using J1IFQ & complete it.
    Edited by: Jeyakanthan A on Apr 7, 2011 11:44 AM

  • Reg Workflow for Time sheet

    Hi all
    In ESS Work Time , When the approver approves  the employees time, a notification mail has to be triggered and send to the employee. How to achieve this???/
    We have assigned the Task31000007 in the data  entry profile and checked the option using business workflow.
    But when i cheked in swi11 , task is not assigned to any workflow(error message)
    How to proceed with??./
    Waiting for ur valuable Suggestions
    Regards
    Karthik

    Hi,
    Solved.
    Re: How to Configure UWL in Portal
    http://help.sap.com/saphelp_erp2005/helpdata/en/ca/115e4088dc0272e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm
    Thanks,
    Rajani

  • Process order confirmation through PI sheet -reg

    Hi,
    Please tell how to confirm the operation/order through PI sheet.
    I have created the process order with PH_CON as process instruction catagory. after I sent the message thr. CO53 and in CO58 entered the actvity timining and then saved.
    But i am not getting any status in the order,
    Please tell me is there any mistake inthe process.
    Regards
    Karthik

    Hi,
    Process Massage will generate only after Completing the PI sheet.So after maintaining the PI sheet you have to press Complete button then only system will generate Process Massage regarding completion of PI sheet.
    But if you leave the PI sheet only with Save then it means still there are some entries are left or may be change.So in this case system will not generate process massage.
    Now first complete the PI sheet then check in CO54 with correct date , time and plant selection.Send it from here and then check in process order.
    Regards,
    Dhaval

  • REG: PI sheet update and closure.

    Hi Gurus,
    Good day!
    Please show some light on the PI sheet process flow.
    like, creation, sending to destination, updation , record .......?
    I want to know the steps followed for completing the PI sheet and its effect on the process order. ( t-codes also please)
    Thanks in advance.
    Naveen.

    Hello Naveen,
    Process Management itself is a very big topic . I would suggest  to refer the below  link and let us know if you are not clear on any particular point.
    [Process Management (PP-PI-PMA)|http://help.sap.com/saphelp_erp60_sp/helpdata/en/05/603bc6462311d182b50000e829fbfe/frameset.htm]
    Cheers
    Kaushik

  • Not able to complete PI sheet

    Hi Everyone,
    I am not able to close the PI sheet.Getting the below messages as shown.
    Diagnosis:
    You have attempted to complete a process step.This is not possible since dependent process steps are still being processed or have not been processed.
    Procedure:
    To be able to complete this process step,you must first process all dependent and subordinate process steps.
    Can anyone help on this or provide relevant  SAP note to fix the above problem.
    Also to complete the PI sheet , we need to use Tcode:CO64, am I right in this...?
    Thanks in advance.
    Regards,
    Ameya Khanwalkar.

    HI,
      Please refer below link.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/12/627b38180fee45e10000009b38f8cf/frameset.htm
    Rgd,
    Chetan
    Edited by: chetan_sdn on Jun 25, 2010 10:59 AM

  • PI sheet completion

    Hai gurus,
    After creating the PI sheets how to give input characteristics and complete the PI sheet.
    Currently I can view the PI sheet using T.C = CO60.
    After this how to go about to record the inspected or observed value in the shift for a sample and close
    the PI sheet.
    waiting for the positive results.
    with regards,
    sekar chand

    Hi,
    Run CO60,
    Select PI Sheet which you need to maintain
    Press push button maintain PI Sheet , system takes you PI Sheet : maintain view
    Now push on Record inspection results, system takes you result recording screen
    result recording and save it then systen takes you again PI Sheet maintain screen
    Now click on report data , sytem takes you another screen
    select all and click on report then you will see detail here
    Hope this will help you
    Regards

  • Program error when Making Contact Sheet from Bridge

    I had been making contact sheet from the bridge using CS3 with no problem till a week ago when after completing the contact sheet, I get an error message saying that there was a program error, and photoshop locks up. I have to force quit. I am using a G5 dual 2.5 and 2 Gigs of RAM. I tried reinstalling without any luck.
    Any ideas?

    Does it work in a new User Account?
    Have you tried cleaning-out your Caches (use Cocktail); or trashing Prefs.?

  • Why do I have two CSS sheets? Should I merge them? How?

    As I've been working on this site, I simply copied pages by 'saving as' to make the next page, since they are very similar and use the same text sizing (except for one which has become the 'black sheep.')
    Now, after the fact, when the site is basically done, I see there are two CSS files associated with this site, I only made one to start with 'base.css'. Now there is also a file called 'base_sample_pgs.css' which I did not, knowingly, make.
    I want to clean up the site and resolve type font sizing issues on one of the pages, and while I've heard of designers using separate CSS files for fonts, colors, etc., which is a great idea for very large sites, I'm thinking it would be best if I had only one CSS file for a small site like mine with only a dozen or so pages. I'm thinking two CSS files are the cause of some conflict already with font sizing on one of the pages.
    What do you think? Should I merge the CSS into one file? Would it help diagnosing problems? If so, what is the best way to do this?
    TIA,
    Ken
    The site:
    http://www.kgngroup.net

    OK, I'm looking at your capabilities.html page and there is a reference to only one CSS style sheet:
    <link href="base.css" rel="stylesheet" type="text/css" />
    Then you have some page-specific CSS that follows.
    If what you are asking is whether or not you ought to pull the page-specific stuff into your base.css file, that only matters if you are using exactly the same styles in all pages. You can define different types of pages in 1 CSS style sheet, like a three-colum and a two-column layout and that works just fine. But you can also choose to have one stylesheet for the three-column pages and another for the two-column pages. Additionally, you may have a completely separate style sheet for just your menu (I have that on lots of my work).
    The question for your question is, which is easier for you to manage?
    In the case of many of my menu stylesheets, it is much more sensible to keep those style sheets separate from the main page. I think in terms of navigation when I am in them, I think in terms of general styles when I am in the other style sheets.
    I have also seen some professionals use one style sheet to define text styles, another to define page layouts and a third to define menus. All that is completely dependent on thought process.
    So this is "answering a question with a question," but what I am trying to do is get you to realize the answer in your own thought process.

Maybe you are looking for