How to perform Data Collection on single SFC with QTY = 1 with material lot size 1?

Dear experts,
We are working with SFC qty>1 on a relaxed routing. At a given operation we want to collect the data on single quantity; i.e. SFC qty on that operation, where the collection will happen, will be 1.The corresponding material lot size is for ex 10. The operator must be able to collect data on SFC with qty=1 multiple times until the quantities will be consumed. He must be also able to collect other values on the remaining quantities on the same operation with the same DC group or other DC groups. How many times the data must be collected is dependent on the shop order build quantity. The data may be collected several time but not more than the build qty. In other words some specific data will be collected on a qty of a product while others will be collected against remaining quantity. The data collection must be also done in a serialized manner.
Here's what we have set up so far:
1) 3 DC groups, each DC group has 3 data fields.
2) Each data field has the following restrictions:  Required Data Entries = 0 and Optional Data Entries = 1
3) All DC groups are attached on the same combination of operation\material\routing
4) we are using relaxed routing
Process description:
The operator must be able to collect any data field on single product. For that he will enter the operation where the data collect are attached, he will enter the SFC with qty=1 then he will run the data collection after selecting the appropriate DC Group and entering the needed information. The operator will complete the SFC with qty=1.
The operator will pick the next product, select the same SFC and enter qty 1 and collect other value against this product.
Problem is:
Once the first collection is done on a given SFC with entered qty=1, the system is not allowing the operator to do further collects on the same SFC with qty=1 or any other quantity. He cannot select any DC group from the DC group list. We tried also with the table selection menu on the DC Group list but nothing can be selected.
So we tried to play around with the DC group definitions as follows:
A) we set Required Data Entries = 0 and Optional Data Entries = 10. Still the operator was not able to select any DC group after collecting data the first time. We tried to reopen the pod and list again. But we get the same blocking behavior.
B) we set Required Data Entries = 10 and Optional Data Entries = 1. The operator was able to select the DC group after collecting data the first time. BUT operator must enter the data fields 10 times on one SFC quantity, which is not what we want. Besides again he cannot collect other information on remaining quantities on the same operation.
C) There's an option to serialize the SFC before reaching the operation where the collection is happening, then merging ofter complete. Automation is needed here; hence customization. We are highly avoiding customization now, since we expect the data collect to work well on single quantities even when the main SFC has qty>1
Questions:
1) Are we missing any kind of further configuration\setup?
2) Or the current system design does not allow collecting data on single quantities of an SFC which main quantity is greater than 1?
3) Looking at this link Approaches to Collection of Data - SAP Manufacturing Execution (SAP ME) - SAP Library, there's nothing mentioned about same SFC number with multiple quantities!!!
We are using SAP ME 15.0.3.0.
Thanks in advance for your help
Ali

Ali
to collect data for the same SFC multiple times, your system rule "Allow Multiple Data Collection" needs to be set to true for the site.
Stuart

Similar Messages

  • Log files/troubleshooting performance data collection

    Hello: 
    Trying to use MAP 9.0, 
    When doing performance data collection, getting errors.  Is there a log file or event log that captures why the errors are occurring?
    One posting said to look in bin\log - but there is no log directory under BIN for this version it seems.  
    Thank you, 
    Mustafa Hamid, System Center Consultant

    Hi Mark,
    There's no CLEANER_ADJUST_UTILIZATION in EnvironmentConfig for BDB JE 5.0.43 which I'm currently using, I also tried
       envConfig.setConfigParam("je.cleaner.adjustUtilization",
              "false");
    it fails to start up with below error
    Caused by: java.lang.IllegalArgumentException: je.cleaner.adjustUtilization is not a valid BDBJE environment parameter
        at com.sleepycat.je.dbi.DbConfigManager.setConfigParam(DbConfigManager.java:412) ~[je-5.0.43.jar:5.0.43]
        at com.sleepycat.je.EnvironmentConfig.setConfigParam(EnvironmentConfig.java:3153) ~[je-5.0.43.jar:5.0.43]

  • How to enforce data collection

    Hi everybody,
    how can I enforce data collection at a specific operation? I am using the integrated POD showing the data to be collected in one part of the window. The data collection itself works fine, but it is merely optional. I can complete the operation without a warning.
    So, where is the hook or rule that I need to set up in order to check whether data collection has been done before completion of the operation?
    Georg

    Hello,
    Please chec k the link below:
    http://help.sap.com/saphelp_me52/helpdata/EN/d7/f7f0be3fec4a31bec083a035eb2423/content.htm
    this explains activity CT500,
    This activity deals with the checking of component, making them as mandatory to assembly etc.
    you can change for the CT500 and CT500_RICH activities in Activity Maintenance:
    On POD you have to use these activities.
    Note: The system executes all code associated with a hook point in the same database transaction. For hook points within POD pushbutton activities, the transaction includes a single pushbutton activity, such as Start (PR500). If the hook point activity fails, the system rolls back, or cancels, the entire transaction. For example, in the figure in Site Level Hook Points, if you associate Check Configuration (CT520) with the POST_START hook point and the components have not been assembled, the system rolls back the Start as well. This is true for all hook points
    br,
    Pushkar

  • Performance data collection issue

    Hi,
    We are using SCOM 2007 r2.We have some servers not collecting performance data.These servers are up and running fine and generating alerts (Monitoring Working fine). Can any one please suggest us what is the work arround for this.
    Thanks&Regards,
    Padmaja M.

    Try to clear management server health service cache by stopping the system center management service, renaming the health service state folder and starting the service.
    Juke Chou
    TechNet Community Support

  • [JAVA] How to input data collected in a table

    Hello!
    I'm writing a program that monitors the signal of a sensor in a chart. Now I want to insert into a table of data collected by the sensor using a JTable.The problem is that if I run the program, data are not included in the table.
    Where did I go wrong?
    Here's part of the source code.
    ArrayList<Data> datiArray = new ArrayList<Data>();
    DataTableModel dtm= new DataTableModel(datiArray);
    public class DataTableModel extends AbstractTableModel {
        private ArrayList<Data> datiArray;    // <---- Il table model ha la collezione
        public DataTableModel(ArrayList<Data> datiArray) {
            this.datiArray=datiArray;
        public void addData(Data d) {
            datiArray.add(d);
    int row = datiArray.size()-1;
    fireTableRowsInserted(row,row);
             private String colName[] = {"Time", "G-value" };
            public String getColumnName(int col) {
                return colName[col];
            public int getRowCount() {
                return datiArray.size();
            public int getColumnCount() {
                return 2;
            public boolean isCellEditable(int row, int col) {
                return false;
              public Class getColumnClass(int c) {
              return (c == 0) ? Long.class : Double.class;
    public Object getValueAt(int row, int column) {
            Data d = datiArray.get(row);
            switch (column) {
                case 0: return dati.getTime();
                case 1: return dati.getGvalue();
            return null;
        private class Data  {
            public long time;
            public double gvalue;
            public Data(long time, double gvalue) {
                this.tempo = tempo;
                          this.gvalue = gvalue;
    public long getTime() { return time; }
        public double getGvalue() { return gvalue; }
    RecordButtonAction
        private void recordButtonActionPerformed(java.awt.event.ActionEvent evt) {                                            
            int i=0;
    int j= graphView.getSampleTime();
    int k=graphView.getIndexMax();
    System.out.println(j);
    System.out.println(k);
            while(i<k){
    Data dr= new Data(graphView.getTime(i),graphView.getGvalue(i));
    //datiArray.add(dr);
    dtm.addData(dr);
    //these System.out.println are served to me to check if the values were actually included in the class Data and DataTableModel
    System.out.print(graphView.getTime(i));
    System.out.println("/t"+graphView.getGvalue(i));
    System.out.println(dr.getTime());
    System.out.println(dtm.getValueAt(i ,1 ));
            i=i+j;
            readyRecord = false;
    Sorry for my bad English.

    Please don't cross-post the same question in multiple forums. Especially since you've already been given directions as to how to ask the question smartly.

  • How to do data migration between single node and multi node HANA systems ?

    Data migration between single node and multi node HANA systems ?
    What are limitations ?
    What should be the best practices ?

    Data migration between single node and multi node HANA systems ?
    What are limitations ?
    What should be the best practices ?

  • Booking NC-Codes on single SFC in POD Layout for Process lots

    Hi
    We work with MES 6.0 and work with Process Lots with different amount of SFC in one Process Lot.
    We would like to work with the POD-Layout showing the Process Lots in work-list.
    But on the other side, we need to book NC-Codes on single SFC, but we don't use Standalone-NCcode-Booking.
    Now, what we would like to do, is to Change the jop from the actual POD-Layout to an other one,showing SFC instead of PL, to be able to book NC-Codes. I can do this with an activity, but Operation and Resource stay empty on POD.
    Is there any possiblity to place placeholder in the Activity-Link "com/sap/me/wpmf/Client/template.jsf?WORKSTATION="BLABLA"&OPERATION=value"
    Thanks in advance for an answer
    Kind regards
    Y. Zurbuchen

    Hi Konstantin
    Because I have different operations and resources, and therefore, I'd have lots of different activities and different POD's as I link the "subPOD" at the Operation.
    Regards
    Yvonne

  • How to know if a MRP run element is using Quota Arrangement and lot size?

    Hi all,
    Two questions:
    A) How to determine if a source is actually pulled from Quota Arrangement?
    I am wondering if there is anyway from ABAP table or from Transaction (i.e. Purchasing Order) in which the source is pulled from a Quota Arrangement?
    We use scheduling agreement, PIR and source list, and as well as Quota Arrangement for our purchasing.
    I just want to know how, from system (table and transaction), to find out the source is from quota, not from PIR or others.
    B) Quota Arrangement still can work properly if lot-size procedure's splitting quota indicator not Checked?
    If my the lot-size procedure which I am using for a material does not activate the splitting quota indicator, it means split quota will not work during MRP run.
    But does this also mean that quota arrangement will not be working for this particular material even if I have create a a quota arrangement object (via MEQ1) for this material?
    Thanks
    Daniel

    Tomek,
    If I want to use the split quota, it seems there is some pre-requisite.
    If you go to MEQ1 and press F1's on the "Minimum qty split" column, and you will notice the following message.
    Allocation by quota using splitting quotas is only carried out via a requirement planning run, subject to the following preconditions:
    Through the appropriate entry in the field Quota arrangement usage (on the MRP data screen 2 or Purchasing screen) it must have been specified that a quota arrangement is to be applied in the planning run.
    The indicator for the splitting quota must be set for the the lot-sizing procedure used for materials planning purposes in Customizing.
    Hence, the quota arrangmeent still workable even if the lot-size does not have the spliting quota box checked?
    Indicator: Splitting quota in short-term horizon
    The indicator for splitting is used to determine that in the case of the selected lot size, the quota arrangement is to be applied using the splitting logic.
    Use
    If this indicator has been set, the lot is split up in the planning run according to the following formula:
                                quota for source X
    Quantity for source  X = --------------------- * requirement
                               sum of all quotas

  • How to display data collected in main vi to indicators in another vi

    Hi,
    I am collecting data using NI 6251 USB DAQ
    in the main vi but as i have too many controls and indicators on the
    main vi front panel. so i want to display the indicators(graphs) in another vi. i also
    want the vi with the graphs to open automatically. Does any one know how
    i can do this? I would
    really appreciate any help.
    Thanks,
     ygupta
    Solved!
    Go to Solution.

    Hi,
    Search forum for the sub vi concept.
    For your reference i have attached a example.
    you can see procedure for the same on the net.
    regards,
    Shrek
    Attachments:
    graph.zip ‏11 KB

  • How the Performance data depends on Number of CPU/ RAM size/ Hard Disk size

    Hi,
    I have started Performance testing (web test and Load tests) using VSTS 2012. I was analysing the VSTS results summary page.
    I could not find a way by which we can find a co-relation between the Performance Result data Impacted by Server's Configuration such as
    1- # of CPUs /Cores
    2- RAM size
    3- Hard Disk capacity
    Could you help me out if we can reach to a point, through which we can say that, For eg - the Server Performance can be improved if we increase any of the dependent hardware configuration and Also, How the Hardware configuration impacts the Performance.
    Thanks.
    Thanks, Anoop Singh

    The results show the performance with the hardware and software configuration
    when the test is run. The results may show that some parts of the configuration are lightly loaded (and hence have plenty of spare capacity) whereas other parts are heavily loaded (and hence may be limiting the system performance).
    To see the effect of changing the hardware or software configuration would need running exactly the same test with that changed configuration. Then the results of the two (or more) different runs can be compared. Microsoft has some details on how
    to compare load test results. See
    https://msdn.microsoft.com/en-us/library/dd728091(v=vs.120).aspx
    Regards
    Adrian

  • How to average data collected in a loop

    Hey everyone,
    I am using an interface card to read voltage across a resistor to measure the current through a photodiode.  The VI I made slowly increases the voltage applied across the sample. It takes a starting voltage, increases it by a specified increment, and then takes a series of measurements at that voltage (usually around 200 or 300). I had the program just save all of this data to an external measurement file, where I would then average it in excel.  I had to change the program to measure three variables, and I want to the VI to average the data and then save the average current at each voltage in a measurement file. 
    Ex. 
    It used to export the data as...
    -1     .90
    -1     .80
    -1     .85
    Im trying to get the program to average all of these values and then save it as one data point.
    -1     .85
    I would like the program to take the 200 or so data points, average them, and then save just the average in a file. 
    I usually have about 300 different applied voltages to measure, and with 200 current readings at each it becomes a huge amount of data.
    Right now I have the part of the VI that takes the measurements in a while loop, and once the number of loop iterations reaches the specified number of measurements it stops running.  The program would then increase the voltage, and run the measurement loop again.  I got everything else working, I just can't figure out a way to average all the data.
    Any help would be greatly appreciated

    Alright, I just started using labview last week and i knew that i would have to use shift registers, but when i tried to create one the add shift register option was grayed out.  All i had to do was click on the right or left side of the loop instead of the bottom which is what i had been trying before. 
    Thanks for the fast response

  • How to compare data in a single table by month and year

    Hello Please.,
    i would like to see the 2014-06 matched results (3rd query),
    if the same ssn and acctno is exist in 2012-06 and 2013-06 and 2014-06 then eliminate from results, otherwise show it
    select ssn, acctno From jnj.drgSamples where Channel ='KM' and TrailMonth ='2012-06'
    select ssn, acctno From jnj.drgSamples where Channel ='KM' and TrailMonth ='2013-06'
    select ssn, acctno From jnj.drgSamples where Channel ='KM' and TrailMonth ='2014-06'
    i have written the below query but it shows only matched across three queries, but i want to display / delete from 2014-06 records if the ssn and acctno is exist in 2012-06 and 2013-06
    select c.*  from (
    (select * From jnj.drgSamples where Channel ='KM' and TrailMonth ='2012-06' ) a join
    (select * From jnj.drgSamples where Channel ='KM' and TrailMonth ='2013-06' ) b on a.SSN = b.SSN  and a.acctno = b.acctno  join
    (select * From jnj.drgSamples where Channel ='KM' and TrailMonth ='2014-06' ) C on a.SSN = c.SSN  and a.acctno = c.acctno  join
    Please Help me with this
    Thank you very much in Advance
    Asitti

    This is a relational division problem T-SQL:
    Relational Division
    Try:
    ;with cte as (select ssn, acctno, count (distinct(TrailMonth)) as cntMonths
    from jnj.drgSamples WHERE Channel = 'KM' AND TrailMonth IN ('2012-06','2013-06',2014-06'))
    GROUP BY ssn, acctno)
    delete from jnj.drgSamples S where exists (select 1 from cte where S.ssn = cte.ssn and S.acctno = cte.acctno and cte.cntMonths = 3)
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • I'd like to know how much performance difference there is in the 15 in MBP with Retina display?

    Hi:
    I have a legacy (2007) MBP that needs to be replaced. It still runs, but not well, given that the HD is nearly full.  The headphone out jack is "hit or miss" in terms of working properly.....you get the picture.
    I'll replace it with a 15 MBP with retina display, and also go with the 1 TB drive rather than the 512 as its actually cheaper (I think) to have Apple put the larger drive in than upgrade after the fact.
    My question relates to the available processor speeds:
    2.5GHz Quad-core Intel Core i7, Turbo Boost up to 3.7GHz   
      2.8GHz Quad-core Intel Core i7, Turbo Boost up to 4.0GHz
    Is there any discernible difference between these processors, and if so,  under what conditions do they manifest themselves, and how significant, generally speaking are the differences.
    I'm sure it depends on the software being run and tasks being performed....video rendering, gaming, etc.
    I should also mention that I'm not the most patient person (serious understatement) when it comes to the speed of even basic tasks....word processing, itunes, youtube videos, and the like.
    I generally work with multiple windows open and with my current computer's age and remaining HD space get the "spinning pinwheel of death" with great frequency.
    One last bit of information. I'm a musician and composer, who needs to get into the 21st century and actually use the notation software I've got (Sibelius).  Any computer I have needs to be able to play back scores well, which means playing/processing multiple instrumental parts at the same time,
    Thanks in advance for your advice,
    Michael

    The only way you can get a valid estimate is by someone examining the MBP directly.  Since no one on these forums can see or examine your MBP, you will need to get this infomation from a qualified repair shop.  It seems that you already have secured one estimate.  You can also bring the MBP to an Apple store and have a genius bar examine it for FREE.
    Ciao.

  • How to export data to 2 tabs in excel from form with two tabs

    Hi friends
    i am now faceing a prbs of exporting data to excel to different tabs.
    ex:- i have a multiple records form with two tab . i want to export data corresponding to excel as two tabs.
    can anyone suggest me how can i export data to 2nd tab.. is any functions or procedure to help me .

    Hello,
    at Re: How to save a query result and export it to, say excell? you can find links to different solutions. At least the packages behind second and fourth link support more than one worksheet. And both describe how to do it.
    Regards
    Marcus

  • Perform AR Adjust and Single Payment Remittance in SAP?

    Hi All,
    This is my First time can someone help me to understand. How to Perform AR Adjust and Single Payment Remittance in SAP?
    Cheers,
    Sathish

    Hi,
    I think you are asking how to adjust AR balances against AP balances while making payment in SAP and net amount should be paid. If so then you first need to assign the vendor number in the customer master and vice versa and then you check the field "Clearing with Customer" in Vendor master data and "Clearing with Vendor" in Customer Master data.
    This will help in adjusting AR balances while making AP payment.
    Regards,
    Sanjay

Maybe you are looking for

  • Which registry setting to change for long running reports

    Hi, We are on BOXI R2 SP3 on IIS 6.0. We have web servers in DMZ and have ports opened. We have reports running longer than 25 mins in production and business is facing issue as reports are timedout  ( Errors ;oke The request timed out because there

  • Scroll bars in i-web

    Is there a way to add a scroll bar to the right side of an i-web page layout? I would like to put several large images onto the page but whenever I do the bottom image gets truncated pretty quickly. Is it possible to put several large format images o

  • How high of a resolution can Iphone 3G play on a TV?

    I would like to buy the AV cables that connect my iphone 3g to my 37" LG 720P television. I am wondering what the video quality will look like and if buying the 50 dollar cables will be worth the purchase. What is the maximum resolution the Iphone wi

  • Auto-increment and MySQL

    I posted this in JDBC also but here too since I know many of you have probably dealt with this. I have a database that looks like this (simplified) idnum seqno 1234 1 1231 1 2342 1 2342 2 2342 3 3452 1 5676 1 3425 1 3425 2 I want the column "seqno" t

  • New B590 says not genuine battery

    My husband just received his new computer from Lenovo online and keeps getting the notification that there is not a genuine Lenovo battery attached.  Power Manager 6 says battery condition is "good" but has the warning and Status as "no activity."  B