Characteristics populated in PI sheet

Hi,
The control recipe destination which has been assigned to recipe contains many Instruction categories. Each of these instruction categories are assigned with multiple characteristics.
When i see PI sheet not all characteristics are seen there. Is there any way to restrict the characteristics in the PI sheet.
regards,
Mohit

Hi..
Charateristics assigned in process intruction category should be assigned in proper sequence...sometime wrong sequence does not allow the characteristics
Also note that only the characteristics which are relevant for display (input..output..etc) will be shown in PI sheet... many charateristics are used for some backend functions/formatting and will not be shown as it is in PI sheet..
Neeraj

Similar Messages

  • CO-PA characteristics population from coding block

    Hi I have defined couple of custom fields in my coding block (GL field extensions).
    Users will be populating these fields while posting the document.
    Is there nay way ( config, substitution or user exit ) thru which we can populate these fields in profitability segment ( CO-PA characteristics )?

    Hi,
    I reckon that you would like to have attributes in those custom fields as COPA characteristic? if so, firstly you would need to add a Characteristic to Operating Concern and Segment.
    Are the values in those custom fields in your coding block being derived from other attribute, for example, material master or customer master? If that is the case, you would be able to use Derivation or Table look up.
    If that is not possible to derive or look up from a table and need to transfer from coding block, you may explore the possibility to activate SAP enhancement COPA0001.
    Hope that helps
    taro

  • Adding new characteristics to cube with data

    Hi Gurus,
    i need to add some characteristics to a cube already in production, this cube is customized version of material stocks/movements cube (0ic_c03).
    i am looking for a way to add the new characteristics without having to do reinitialisation (opening stock,...), i am thinking about a loopback process but how do i manage to get the new characteristics populated for the historical data?
    Thank you.

    Hi,
    If you want to load historial data, you must take ECC down time and re-intialization is required.Becasue you are adding new object in Cube and for that you need to change the Update rules, then need to load historical data, so without down time and reinitialization it is not possible.
    Check like below.
    You have data in PSA, so try to delete data from Cube and then load from PSA. Because you may write code in Update rules on;y I think. So in that case, it may work.
    Thanks
    Reddy

  • Cost Center in populating in GR/IR Clearing Account at MIRO Posting

    Hi,
    I am working in 4.7 EE version. We created one Service Order(purchase order) and gave account assignment as Cost Center and Business area. Then we created service entry sheet wrt to service order and accepted the service enry sheet. System automatically created MIGO document in back end. At the time of posting Invoice Verification wrt service entryshee/service order (purchaseorder), system is populating cost center in GR/IR clearing account.
    Give me some idea how the cost center is populating in Balance Sheet GL A/c (GR/IR Clearing A/c).
    Regards
    Sudhakar

    hi
    i think d havnt tried the tcode i had given
    it is to attach the cost element account to the costcenter
    it  is understandable for a  sap consultant that we can`t  assign gl account to the cost center
    i think u have not tried the solution so plz dont make any comment on any ones experiance
    ur required help and i tried to help u
    this is not the way to talk with anyone
    use ur own logic before asking questions and also replying for answers
    sorry for helping u
    kunal

  • Is there a way to create a list in a new sheet based on a value within an entry on the first sheet?

    I have a list of DVDs in one sheet which are categorised etc. as well as having true/false checkboxes to mark whether they have been watched.
    Is there a way of populating a second sheet only with the rows that are marked "FALSE" in the "Watched" column?

    Yes, but you migth find it just as efficient to filter the first table to show only rows where the checkbox is unchecked.
    Here's a method for showing the list on a second table (whih may be placed o a second sheet).
    Add an Index column ( C ) to the Data table.
    C2, and filled down: =IF(B=FALSE,COUNTIF($B$2:B2,FALSE),"")
    The second table, Not Watched, uses the formula below to retrieve the titles of the indexed (ie. not watched) DVDs.
    A2, and filled down: =IF(ROW()-1>MAX(Data :: $C),"",LOOKUP(ROW()-1,Data :: $C,Data :: $A))
    Th IF part at the beginning acts as a switch to stop LOOKUP when the last unread title has been retrieved.
    Regards,
    Barry

  • Heading line in excel sheet.

    Hi Experts,
               I am working in R/3 4.7 system. I am populating an excel sheet with values from an internal table. Now I want to include a row for heading in the beginning of the excel
    sheet. In ECC 6.0 there is a parameter in GUI_DOWNLOAD for heading. But it is not available
    in 4.7 system. How should i proceed?
    Thanks in advance.

    Hi,
    Refer Below code
    *&      Form  down_desktop_file
          text
    -->  p1        text
    <--  p2        text
    FORM down_desktop_file .
    *--Local Variables
      DATA : l_file   TYPE string.
      SELECT * FROM zsd_ra
          INTO TABLE it_sd_ra.
    *-- for Heading in excel sheet
      st_head-name = text-031.
      APPEND st_head TO it_head.
      st_head-name = text-032.
      APPEND st_head TO it_head.
      st_head-name = text-033.
      APPEND st_head TO it_head.
      st_head-name = text-034.
      APPEND st_head TO it_head.
      st_head-name = text-035.
      APPEND st_head TO it_head.
      st_head-name = text-036.
      APPEND st_head TO it_head.
      st_head-name = text-037.
      APPEND st_head TO it_head.
      st_head-name = text-038.
      APPEND st_head TO it_head.
      LOOP AT it_sd_ra INTO st_ra1.
        st_data-gjahr               = st_ra1-gjahr.
        MOVE st_ra1-monat TO st_data-monat.
        st_data-zzprojectid         = st_ra1-zzprojectid.
        st_data-zwbs                = st_ra1-zwbs.
        st_data-zeac_amount         = st_ra1-zeac_amount.
        st_data-zlabor             = st_ra1-zlabor.
        st_data-zmaterial           = st_ra1-zmaterial.
        st_data-zohead              = st_ra1-zohead.
        APPEND st_data TO it_data.
        CLEAR: st_ra1,
               st_data.
      ENDLOOP.
    Down load TAB delimited file
      l_file = p_filep.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_file
          filetype                = 'ASC'
          write_field_separator   = c_chk
        TABLES
          data_tab                = it_data
          fieldnames              = it_head
        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 <> 0.
        MESSAGE i368(00) WITH 'Error writing file'(m03)  l_file.
      ELSE.
        WRITE:/ 'file downloaded',  l_file.
      ENDIF.
    ENDFORM.                    " down_desktop_file
    Regards,
    Prashant

  • Release strategy for PO and Service Entry Sheet

    Hi
    I maintain characteristics- Plant, Doc Type , Order Value & Purchasing Group for PO release strategy.
    should I maintain the same characteristics for service entry sheet ?
    the approval will be the same for both

    Hi,
    The Po reselase strategy can be set up separately from the entry sheet release strategy, so you can use even different characteristics for your entry sheet release strategy. These are not connected!
    Please read note 672719 question 5 - How can I set up a release procedure for service entry sheets?
    Note: The release strategy must be based on the structure CESSR.
    The PO release strategy is based on the structure CEKKO.
    For the SEs release strategy you must create a different class.
    Regards,
    Edit

  • Best Practices for Service Entry Sheet Approval

    Hi All
    Just like to get some opinion on best practices for external service management - particularly approval process for Service Entry Sheet.
    We have a 2 step approval process using workflow:
    1 Entry Sheet Created (blocked)
    2. Workflow to requisition creator to verify/unblock the Entry Sheet
    3. Workflow to Cost Object owner to approve the Entry Sheet.
    For high volume users (e.g. capital projects) this is cumbersome process - we looking to streamline but still maintain control.
    What do other leaders do in this area?  To me mass release seems to lack control, but perhaps by using a good release strategy we could provide a middle ground? 
    Any ideas or experiences would be greatly appreciated.
    thanks
    AC.

    Hi,
    You can have purchasing group (OME4) as department and link cost center to department (KS02). Use user exit for service entry sheet release and can have two characteristics for service entry sheet release, one is for value (CESSR- LWERT) and another one for department (CESSR-USRC1) .Have one release class for service entry sheet release & then add value characteristics (CESSR- LWERT) and department characteristics (CESSR-USRC1). Now you can design release strategies for service entry sheet based on department & value, so that SES will created and then will be released by users with release code based on department & value assigned to him/her.
    Regards,
    Biju K

  • Populate an excel sheet using the data in the java program

    hi friends,
    want to know the procedure for populating the excel sheet from the program.

    There are several approaches. There's a package called "POI" widely available which will allow you to write XLS workbooks to a file, which Excell will read.
    You can easilly generate data in "CSV" comma separated format, just using standard text file output.
    You can use a COM API like JASPER to communicate with a running instance of Excell on the same machine (this is pretty complicated).

  • Tables for brwoser based PI sheet

    Hi,
    Could you please let me know the tables for browser based PI sheets?

    Hi,
    My requirement is to have the data from external systems populated in SAP tables and same is populated in PI sheet also.
    How can we do this?
    Thats the reason I was asking for the SAP tables where PI sheet data is stored.
    Regards

  • How to populate the last empty row in Excel without using Report Generation Kit

    I wrote  a Labview SUb Vi that uses Report Generation Toolkit that is not loaded on the test stand. I am looking to convert it from Report Generation Vi like New Report,  Append Table to Report, Dispose Report. The tunneling through all the report generation Vis seems extensive. Code is attached. Thanks, Greg
    Greg

    Thank you that was a big help...
    I used the Excel Forum to get a lot of great ideas.  My code is almost working.
    There is a 2-D String Array that represents the String data that I am exporting to the Excel File Sheet 1 - 5.
    I am attempting to determine the last populated row in sheet 1 then populate the next row of Sheet 1.  Since all 5 sheets are populated every time, I should not have to search every sheet for the last row.
    I am getting two row populated on sheet 1 with seeming the same data.
     I found an AXExcelWrite2D ArrayWorksheet.vi that I thought would work.  I think there is a Table  determination that is causing me problems.  The link is http://lavag.org/topic/13324-labview-and-excel-activex-or-ado/.  The Application Invoke Node has a convert formula with "FromReferenceStyle" with R1C1 Attached to it.   I am not sure what this function is doing.  When I try to bring the function help up, there is a missing file.
    I am including both the new active x vi and the report generation vi.   Report Generation VI works.
    I would appreciate any assistance I can get on this.
    Thanks
    Greg
    Greg
    Attachments:
    REPU Test Data Population using Active X Write Save.vi ‏92 KB
    REPU Test Data Population.vi ‏60 KB

  • ERROR while preview the datta in xcelsius.

    HI ALL,
    we are working on query as web services. while calling the services the data is populating in Excel sheet but
    While previewing its giving the following error.
    Kindly give me the solution for this.
    ERROR:Cannot find bundle for base name com.businessobjects.dsws.manage query as a service.messages,local:vpn-US
    kindly give me the solution ,
    Thanks ,
    kapill

    Hi Ychinnari,
    Reporting Services provides a special account that is used for unattended report processing and for sending connection requests across the network. The account is used in the following ways:
    Send connection requests over the network for reports that use database authentication, or connect to external report data sources that do not require or use authentication.
    Retrieve external image files that are used in report. If you want to use an image file and the file cannot be accessed through Anonymous access, you can configure the unattended report processing account and grant the account permission to access the file.
    According to the error message, password of unattended execution account has expired. To troubleshoot the problem, please refer to the following steps:
    Start the Reporting Services Configuration tool and connect to the report server instance you want to configure.
    On the Execution Account page, select Specify an execution account.
    Type the account and password, retype the password, and then click Apply.
    If credentials are passed in the connection string, you need to modify password of the connection string.
    For more information about Configuring the Unattended Execution Account, please refer to the following document:
    https://msdn.microsoft.com/en-us/library/ms156302.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    Wendy Fu
    TechNet Community Support

  • Cumulative Key Figure (Running Total) - how to use in formula?

    We have a scenario where I need to use the cumulative value of a Key Figure in a subsequent formula. The “Cumulated” property setting at the Key Figure level in the query is a “Displayed Data Only” setting, however, so the cumulated values are not available for use in a formula  The individual values are used by BW as opposed to the cumulative values that are displayed in the column.
    I’ve tried using the “Cumulated” property at the characteristic level. I am then able to use the displayed cumulative values in a formula. However, I also need to display the individual (not cumulated) Key Figure values in a column. These individual values are no longer available for display if the “Cumulated” property is set at the Characteristic level.
    I thought that the “Define Cells” functionality could possible be used, but there is only one Structure in the query, so the “Define Cells” functionality is unavailable. I could not think of a way to use a second structure in the rows, as the rows need to be dynamic (two characteristics, populated based on user input variables).
    It may be possible to accomplish this requirement by adding a column using VBA in the SAPBEXonRefresh sub, but use of VBA is not a preferred option, as the query may be run in either the Excel Analyzer or the Web Analyzer.
    The infoprovider does not contain a Key Figure field for Cumulative Volumes.
    The scenario details:
    Rows (Characteristics):
    A: Plant (values based on user input variable)
    B: Calendar day (values based on user input date variables for start & end dates)
    So there is one row for each day within each plant.
    Columns (Key Figures):
    A: Cumulative Volume at Start of Period (uses user input date variable for start date, and “Constant Value” property. Hidden column.)
    B: Daily Volume (for each day in the period defined by the user input variables for start and end dates)
    C: Cumulative Volume at End of Each Day (formula, meant to be equal to the sum of the Cumulative Volume at start of period plus the total so far of the Daily volumes. In other words, equal to the sum of Column A plus the running total of Column B).
    Does anyone out there have any more ideas on how to accomplish the required Cumulative Volume computation?

    Thanks for your reply Jurgen.
    I've created a Global Calculated Key Figure (CKF), and have looked at and tried a number of settings in the Properties of this new CKF.
    I have not yet been able to make this work for me.
    The "Cumulated" property for a Global CKF is also a display-only property. The displayed running total is not used in any formula containing this CKF, only the individual values are used in the formula.
    If I select the 'Enhance' option, where exception aggregation can be done as I think you suggested, I do not see a 'cumulated' option. If I select the 'Summation' option for 'Exception Aggregation', then the 'Reference Characteristic' pull-down is not available.
    Is there a different 'Exception Aggregation' option I should be using for running totals at the calendar day level?
    Or am I unclear on the concept of your suggestion?
    Perhaps you're on a later version of BW that has more Exception Aggregation options? (We're on BW3.5)

  • Need flexibility on using Excel as datasource

    I found this tutorial: http://blogs.oracle.com/dataintegration/2010/03/connecting_to_microsoft_excel.html
    Is it just me or there simply no flexibility if you need to predefine data area (named range) before hand? Most use cases you'd want to automate ETL, and thus data source must support varying number of entries (rows) at the very least.
    Is there any work around for this?
    TIA

    For Excel this are the steps.
    Look into this link -http://odiexperts.com/step-by-step-procedure-to-read-excel-xls
    1. Create a DSN in ODBC
    2. Create a connection in Data server (topology) using sun odbc-jdbc driver
    3. Reverse the Excel using the selective reverse. While handling multiple sheets ODI defines them like a table (datastore) and names are populated based on sheet name say if sheet1 then Sheet1$ ,Sheet2$ and so on.
    Now you can use them as Source Datasource and use it in the interface as we do with other RDBMS datastore.

  • Material Reconciliation report

    SAP offers a standard material reconciliation report MIRCMR. The pre-requisites being a reconciliation class - 50, a few characteristics and a PI sheet.
    I do not have PI sheet implemented. Is it possible to run this report without PI sheets? Moreover, I am unable to assign the reconciliation class to any of the component materials - neither in the BOM nor in the recipe. Is this normal?

    >
    Venkatesh Ramakrishnan Iyer wrote:
    > For instance, I want to compare planned vs actual consumption of components. If I assign the movement types in SPRO, where are the value fields linked to the parameter? There is one field at bottom of parameter configuration, but that is limited to table TC22's fields - which unfortunately does not have the fields that I need.
    >
    If that is all you want to do, then why don't you just use report COOIS - it will give you that.
    If you want to use the material reconciliation to do that, then just create a formula that takes the parameters PC_P01 and PC_P02 into condieration.
    I.e create a formula that does 'PC_P01 - PC_P02' and set the expected value to be 0 (not this is just an example - it is not realistic because it does not take cancellations into consideration)
    in customizing you have three customizing points - check under 'process data documentation / material reconciliation' in the pp-pi section.
    - create formula paramaters - if you need to create some use any of the PC_PXX as a reference - they are all the same - otherwise use the standard ones they should be sufficient
    - assign movement types to parameters - assign the above parameters to a movement type (or multiple)
    - create formulas - this is where you set up the calculation you want to do for your material reconciliation - this formula you will assign to the relevant characteristic in your 050 class
    hope this answers your questions

Maybe you are looking for

  • Error at Releasing Billing Document

    Hi When trying to release a Billing Document to Accounting, i am getting the following error System error: Default TXJCD is not filled in the table T001 Message no. FF799 can anyone please guide me Rukshana

  • A problem with a parameter name.(% causing problems)

    Hello, I wrote a following sql query and it works fine except for parameters like drying%Total, drying%,. The reason is that in the name of parameters there is a wildcard used %. I know that I can use an escape command however I could not figure out

  • I can't find where to download the creative cloud

    so i started out with the free trial and then signed up for the monthly plan. I tried to open photoshop on my desktop and it kept saying my free trial was over. I uninstalled it and illustrator but couldn't download them again. It said in the creativ

  • How to store images in BLOB field in MySql database using java

    Hi.... Currently am able to store character string into BLOB using byte array....in MySql. but i cannot store images or pictures....... to do this.........please help me out............... Thanx..........:)Bye...........

  • Rotating objects in a table

    I have dropped an object (picture) into a pages document. Then I rotated it with 90°. When I copy or drop the picture into the cell of a table, it is rotated back into the original orientation and I cannot rotate it any more. Is there a possibility t