Trigger point for the quantity

hi all
In routing i have maintained trigger point function . I assigned reference operation set( lot size 0 to  1) . for system status 'pcnf'. My question is with example-
I have to produce 15 pieces .
I assigned trigger point to 2nd operation.
Now while iam 2nd operation( i have to  confirming piece by piece)
while iam  confirming 1st  piece a pop has come for rework operation i said yes. rework operation is triggerd . but it is triggered for all 15 pieces where as it should be only for 1 piece.
I want the operation should be only for 1 piece. how to proceed.
please help me
thanks in advance
anitha

Hi,
I can explain how an rework order is created with
reference op set.
First check in Tcode OPJF for the selection id a
Priority is defined for the Task list type S
with usage 1 and status 4 and then Proceed as
follows.
1. First create a Reference op set in tcode Ca11.
Enter the plant,Description , usage and status
for the ref op set
Enter lotsize and unit of measure.
Enter the op as 0010 / workcenter/op control
key/Description for the op
Enter the standard values and save.
2. Create a Standard trigger point in CO31.(Ex
Production)
Enter the Trigger Point usage /Group as FERT.
3.Tick the Trigger Point Functions.
4. Enable the indicator create order with Reference .
5.Enter the system status as PCNF.
6. Enter change as +.
7. Enable the indicator once.
8 . Now place the cursor on the create order with reference.
9. Goto Parameters.
10. In the Parameter enter in the group the created Reference op set group no.
11. Order type as PP01 and group counter as 1 and save the Trigger Point.
12. Now goto the Routing for your Material.
13. Choose the last op to assign the Trigger point.
14 .Select the OP -
> Goto ---> Trigger Point overview.
15. Enter the Trigger Point usage as FERT.
16.Now choose that line ,select the Details---> Trigger Point
17. The system will says standard trigger point exists from which you can
select the created Trigger Point (EXx Production)and save.
18. MD02/MD04.
19. Convert the Planned Order into Production Order and Release the order.
20 .Now confirm th ops.
21. For the last op enter the yield and rework qty
and set the status as PCNF.
22. If the status of last op is PCNF then in the
system a POP UP will appear as Activited by
Trigger Point /Create order with reference/order
number/sequence and op number which trigger point
works and enter.
22. Now a rework order will be created.
23. In c003 enter the number which is next to the actual prodn order no.Rework
order will be seen.
Regards,
nandha

Similar Messages

  • Trigger points for the first operation

    Hi,
    We want to use triggerpoints on operations in PP. We want to set the status on the first operation to be released when we create an order. The problem is that systemstatus CRTD can not be used. Can someone help out how to get the first operation to be release automatically when the systemstatus is set to CRTD?   Thanks Marie Hillerbo

    Hi Marie,
    I dont know if this would meet your exact need.
    Based on my knowledge what you could do, is flag the order to release when it is created & saved. Assign a trigger point to the first operation, such that only on confirmation of the first operation you release the subsequent operations.
    Hope this is of some help to you.
    Rgrds,
    Vivek

  • Configuring shipping point as Trigger point for posting outbound idoc

    Hello All,
    I have a requirement that on saving an Outbound Delivery(VL02N), an Outbound Idoc should be posted...but the condtion for posting the idoc should be its shipping point. I am not sure how to configure shipping point as the trigger point for the idoc.
    Please suggest.
    Thanks for your co-operation.
    Regards
    Anand

    Hi Anand,
    1. Go to transaction: NACE & select application V2 and click on output types.
    2. change display <->Change mode.
    3. select LAVA and press F6 (to copy Standard output type LAVA to ZLAV).
    4. Give ur Z name for the new custom output type.
    5. change access sequence from 0005 to 0012(shipping point).
    6. Press ENTER and click copy all.
    7. Now goto trasaction VV21, give the created output type name. ENTER
    8. Maintain entries, shipping point, customer#, Medium as '6' ...etc
    Now try VL01N with the given shipping point and check the output ZLAV has been triggered or not?
    Let's see, if we miss any configs still!
    Keep this as reference:
    http://www.erpgenie.com/sapedi/messagecontrol.htm
    Reddy

  • How to increase Decimal Points for the BOM Component Quantity

    Hi All,
    While creating BOM:
    Can anyone help me to know how i can increase the Decimal points for the BOM components quantity.
    I can able to give only upto 3 decimal points, but the requirement is more than that.
    I have increased the Decimal point value to 5 in transaction Code CUNI. but still it is allowing me to enter only upto three decimal places.
    Thanks and Regards
    Khadeer

    Khadeer,
    You would be better off changing the base quantity of the parent part.  Instead of "1 EA  parent contains .00003MG of  component" you could say "100 EA parents contain .003MG of component".
    Alternately, you could use different units of measure for your parent or component parts, which would be more suitable for the 3 place decimal limitation.
    I agree with Anil in that if you elect to change the decimals from standard, you could end up with huge changes that will propagate through every module in the ERP.  In my view, there is no need of this kind of headache.
    Best Regards,
    DB49

  • SSRS 2008 Column Chart with Calculated Series (moving average) "formula error - there are not enough data points for the period" error

    I have a simple column chart grouping on 1 value on the category axis.  For simplicity's sake, we are plotting $ amounts grouping by Month on the category axis.  I right click on the data series and choose "Add calculated series...".  I choose moving average.  I want to move the average over at least 2 periods.
    When I run the report, I get the error "Formula error - there are not enough data points for the period".  The way the report is, I never have a guaranteed number of categories (there could be one or there could be 5).  When there is 2 or more, the chart renders fine, however, when there is only 1 value, instead of suppressing the moving average line, I get that error and the chart shows nothing.
    I don't think this is entirely acceptable for our end users.  At a minimum, I would think the moving average line would be suppressed instead of hiding the entire chart.  Does anyone know of any workarounds or do I have to enter another ms. connect bug/design consideration.
    Thank you,
    Dan

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

  • Can I use the Ethernet Port for a computer when it is also used as a wireless network with an Airport Extreme as the access point for the wireless network

    Can I use the Ethernet Port  of the A1264 Airport Express to connect to the Ethernet port of a computer that does not have wireless capability when the Airport Express is also used on a wireless network with an Airport Extreme 5th generation as the access point for the network?
    I have AE 5th gen
    looking to buy (from ebay) the AEX A1264
    Various computers, printers and hubs for the network
    Is this possible to do?

    Bob, Thanks for the info. I have read different articles that said yes, but I wanted to make sure before I commit to buy. I have an older A1084 which I could not use the Ethernet port. I know at one point I was able to when I was on 10.4. Now that I am on an Intel processor and 10.8 I am going to have to upgrade some of my Apple wireless hardware.
    Thanks Again.

  • Break point for the particular user

    Anybody knows how to set up a break point for the particular user on a particular statement. So I can see this breakpoint on my screen when it happened?

    Hi,
    If the user ID is USERA then set a breakpoint for USERA as :
    BREAK USERA.
    Cheers,
    Aditya

  • Points for the blog created in September 2013

    Hello there
    I posted a blog in September 2013. I do not see the points awarded for it. I did check the profile settings to earn the badge and one of them does state that you need to post a blog, which I already did.
    Kindly do the needful!
    The link to the blog is as follows:
    How to Ensure that BPC Displays Only Uploaded Records for Planning
    Regards
    Gajendra

    Hi Gajendra,
    You posted your blog as personal blog. So no points assigned.
    If you post technical docs/blogs at related forums then only you will get points.
    No points for personal blogs/docs.
    If you posted at BPC 10 NW forum. you may get points for the same. at below forum you need to choose create blog or doc.
    SAP Planning and Consolidation, version for SAP NetWeaver
    Thanks

  • Looking for a good starting point for the HR module

    Hello,
    Can someone please send links to help/blogs which will be a good starting point for the HR module?
    Thanks,
    Roy

    Regarding Payroll configuration
    https://forums.sdn.sap.com/click.jspa?searchID=8283334&messageID=4763364
    follow wht our gurus has said

  • Trigger point for no. of calls of a router

    Hello,
    we would like to limit the number of calls for a router.
    So the first three prototypes should use one router, the following work orders should use another one.
    We would like to inactivate this prototype router and activate the standard router after the prototype router has been called several times.
    It's not enough to reduce the validity period as we do not know befor when the third work order one will be started.
    Can we set a kind of trigger point depending on the no of calls of a router which starts a workflow (like sending a message or does anything else to inform us that a certian no of calls is reached)?
    Thank you!
    Anne Mielke
    Edited by: Anne-Kristin Mielke on Sep 23, 2008 3:38 PM

    Hi,
    A table may not have more than 249 fields. The sum of all field lengths is limited to 1962 (whereby fields with data type LRAW and LCHR are not counted).
    http://help.sap.com/saphelp_webas610/helpdata/en/cf/21eb6e446011d189700000e8322d00/content.htm
    Check the SAP Help Link
    Constraints
    All the key fields of a table must be stored together at the beginning of the table. A non-key field may not occur between two key fields.
    A maximum of 16 key fields per table is permitted. The maximum length of the table key is 255.
    If the key length is greater than 120, there are restrictions when transporting table entries. The key can only be specified up to a maximum of 120 places in a transport. If the key is larger than 120, table entries must be transported generically.
    A table may not have more than 249 fields. The sum of all field lengths is limited to 1962 (whereby fields with data type LRAW and LCHR are not counted).
    Fields of types LRAW or LCHR must be at the end of the table. Only one such field is allowed per table. There must also be a field of type INT2 directly in front of such a field. The actual length of the field can be entered there by the database interface.

  • Require to select atleast 1 point for the question to Publish the CBT

    Hi,
    I am using Adobe Captivate 4.0 version. I have made my CBT AICC compliant to upload to an LMS System.
    In my CBT I have Multiple Choice Questions to test the understanding while taking the training and they are NOT required for posting credit to the LMS System.
    Therefore, I have assigned 0 points to individual questions and unchecked "Report Answers" checkbox.
    However, the publishing bar hangs and I am unable to complete publishing the project.
    Alternatively, if i select 1 point also for only 1 question in the project, the project is able to complete publishing.
    What is the reason for it? Is there a workaround where I can assign 0 points to all questions so that I do not face issue in the LMS system.
    Thanks!

    Hi,
    I can explain how an rework order is created with
    reference op set.
    First check in Tcode OPJF for the selection id a
    Priority is defined for the Task list type S
    with usage 1 and status 4 and then Proceed as
    follows.
    1. First create a Reference op set in tcode Ca11.
    Enter the plant,Description , usage and status
    for the ref op set
    Enter lotsize and unit of measure.
    Enter the op as 0010 / workcenter/op control
    key/Description for the op
    Enter the standard values and save.
    2. Create a Standard trigger point in CO31.(Ex
    Production)
    Enter the Trigger Point usage /Group as FERT.
    3.Tick the Trigger Point Functions.
    4. Enable the indicator create order with Reference .
    5.Enter the system status as PCNF.
    6. Enter change as +.
    7. Enable the indicator once.
    8 . Now place the cursor on the create order with reference.
    9. Goto Parameters.
    10. In the Parameter enter in the group the created Reference op set group no.
    11. Order type as PP01 and group counter as 1 and save the Trigger Point.
    12. Now goto the Routing for your Material.
    13. Choose the last op to assign the Trigger point.
    14 .Select the OP -
    > Goto ---> Trigger Point overview.
    15. Enter the Trigger Point usage as FERT.
    16.Now choose that line ,select the Details---> Trigger Point
    17. The system will says standard trigger point exists from which you can
    select the created Trigger Point (EXx Production)and save.
    18. MD02/MD04.
    19. Convert the Planned Order into Production Order and Release the order.
    20 .Now confirm th ops.
    21. For the last op enter the yield and rework qty
    and set the status as PCNF.
    22. If the status of last op is PCNF then in the
    system a POP UP will appear as Activited by
    Trigger Point /Create order with reference/order
    number/sequence and op number which trigger point
    works and enter.
    22. Now a rework order will be created.
    23. In c003 enter the number which is next to the actual prodn order no.Rework
    order will be seen.
    Regards,
    nandha

  • I am trying to enter a split point for a file going on a dual layer disc. There are chapter markers in the file but the automtic function doesn't see them. Can I insert a point for the layer split in DVD Studio Pro 3 or 4? It doesn't appear that the autom

    I am trying to enter a split point for a file going on a dual layer disc. There are chapter markers in the file but auto function does not see them. Went back and put a small split in the timeline in fcp and exported to mpeg 2 again and auto function does not see that either? Manual msays to manualy enter split poind in DVDSP but can't find any way to enter that split point in DVDSP? How can I manualy enter a split point in DVDSP 3 or 4?
    Elizabeth/Roger Cook Films

    This is definitely not the behavior I see.  When I left click it adds a marker,
    When I right click, I see the following
    Do you have any OS hacks installed on your computer or have you changed the mouse behavior in system preferences:  mouse?  If not, I'd suggest you run digital rebellions preference manager and reset your dvdsp preferences. 
    https://discussions.apple.com/docs/DOC-2491

  • Issue with the change pointer  for the reduced message type ZMATMAS

    Hi All,
    I have created reduced message type ZMATMAS for the MATMAS to create a Idoc when change or insert material master data fields( MARA-LAENG, MARA-BREIT, MARA-HOEHE) . My Problem is that the Idoc is generated with the status (03) but the fields(LAENG, BREIT,HOEHE)  are not getting fill with the values. They are always filling with the values  '/'). I have done the following steps to create idoc for the change pointer. Please check whether i have missed some steps.
    1.     Create reduction maintenance ZMATMAS  (Tcode BD53)
    keep the default selected segments E1MARAM, E1MAKTM
    2.     Add following data to maintain table view for the message type ZMATMAS  (Tcode BD52)
    Object      Table Name     Field Name
    MATERIAL       MARA      KEY
    MATERIAL     MARA     LAENG
    MATERIAL     MARA     BREIT
    MATERIAL     MARA     HOEHE
    3.     Activate particular change pointer in BD50
    Message Type       Active
    ZMATMAS         yes
    4.     Activate change pointers u2013 Generally (Tcode BD61).
    5.     Assign Segment fields to change document fields (Tcode BD66 )
    Segment Type     Field Name     Object     Table Name     Field Name
    E1MARAM     BREIT     MATERIAL     MARA     BREIT
    E1MARAM     HOEHE     MATERIAL     MARA     HOEHE
    E1MARAM     LAENG     MATERIAL     MARA     LAENG
    6. I have done the distribution model settings (BD64) and  the idoc configurations
    1.     Logical System
    2.     RFC destination
    3.     Create port
    4.     Create partner profile
    7. I changed the fields in material master data(Tcode MM02)  and I executed the Tcode BD21.
    Idoc is generated but the fields are not getting fill with the values
    (Note: some fields  are filled with values e. g material number, material description)
    I checked the Idoc data segment E1MARAM (WE02)
    Fld name   Fld cont.
    LAENG       /
    BREIT       /
    HOEHE      /
    Can you please let me know the issue
    Prad

    Issue is solved when I select the segments and the fields in the segments (Tcode :BD53)
    Prad

  • Not able to get RZ points for the Good Maintenance Reward.....

    Tried geek squad support they are telling me the promotion no longer exists. They also said the only eligible amount is the phone purchase with the first payment of the plan. I would say the eligible amount is the entire cost of the plan. 14.99 x 24 months. Any thoughts?

    Good morning Slownas1, and welcome to the Best Buy forum!
    The Good Maintenance Reward is no longer offered with the purchase of a Geek Squad Protection plan; however, it is a benefit we should still be able to honor as long as the protection plan in-question was eligible and qualifies.  A standard protection plan would need to have been purchased between 9/14/2008 - 7/14/2012 to be eligible and the plan could not have been utilized for any services to be eligible.  If both of those terms are met, then a request for the benefit would need to be made within 90 days of the plan officially expiring.
    Based on the information you provided in your post, it appears the protection plan in-question may have been a monthly plan, possibly for a mobile phone.  Is that correct?  If so, then it would not be eligible for the Good Maintenance Reward because mobile plans were not included.  The protection plan would need to have been paid in full at the time of purchase.
    If you have any additional questions about the Good Maintenance Reward, please feel free to send me a private message and I will see what I can do to help.  You can send a private message by clicking on the blue button located within my signature. 
    Thank you for posting.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Easy Points for the Quickest Poster

    Worlds dumbest question, I'm sure, but for the life of me I can't figure this out:
    Video_TS folder .... does DVDSP automatically create one for every project or do I have to export one? I can't find a button to create one and all I see on my hard drive is the project file and MPEG folder.
    PowerMAC G4   Mac OS X (10.4.2)  

    Just 1... I'm feeling stingy today
    Ahhhh... My toolbar was shortened and I never clicked the arrow to reveal the rest! I knew it was a silly thing like that.
    Thanks

Maybe you are looking for

  • MessageTransformationBean Problem

    Hi Guys, I have a .txt file with below structure Plant|Contact_ID|Contact_Name 017S|96630|GIL1 017S|96630|GILami 017S|96630|ssss 017S|96630|ffff The first line is Header Value and Rest of the lines are Item values. and I dont want the Header Value in

  • Remote: Albums sortet by album names and not by "Interpret"

    Hi, Why Remote sort the albums by album name? this is the second bug which is not "fixed" with the new version 2.0 of Remote. Again with the "Compilation" problem in my previous post I'm wondering why nobody is asking for that "bug"? The best solutio

  • AP question:  PAYR table

    Good Morning I am not seeing any of my electronic payments on this table.  I see all my checks but not my eft or wires.  I understand the process is the check run and once the checks are cut, then there is the posting.  We are in testing phase and my

  • HELP!! -- Solaris 8 10/01 (Intel) Installation Hangs My PC!!

    I downloaded the Solaris 8 for x86 yesterday and burned them into CDs. I have the following hardware configuration. - Intel i815E mainboard - Intel PIII 733 - KingMax 256M 133MHz - Maxtor 30G hard disk - Acer 50X CDROM The inistallation initially gav

  • Creative cloud error

    I can't download creative cloud. I keep getting an error that says cc failed to initialize. Does anyone know how to fix this?