Sample testing with routing

Hi,
Is there a possibility to have 2 next steps in the router and force example 10% of the products to go through the other operation and rest 90% through the other (sample testing). Or every 10th product to the other and rest to the other?
Br,
Pete

We are currently doing this to one of our boards.  The key differences in our route that does this and ones that don't are this:
         1.  On the previous step (the step right before this happens) we have the queue decsion as next operator.
         2.  One of the steps where the option is mark for rework option.
There is no routing scripts written here.
For example:  op_assembly - router step properties - queue decision is next operator
            then you have two steps leading from this position - there is no router scripts
            op_packing - router step properties - rework is checked, queue decision is completeing operator
            op_board_assembly - router step properties - is listed as normal, queue decision is completeing operator

Similar Messages

  • J2EE CTS sample tests with J2EE RI with PointBase DB

    Hi Friends,
    How to do the J2EE CTS 1.4.1 sample tests with the J2EE RI 1.4.1 and with J2SE SDK 1.4.2 its included PointBase database on Microsoft Windows XP.
    What are the precautions we need to take while doing this testing.
    Thanks in advance,
    Maruthi

    CTS is only available to J2EE licensees. Are you a J2EE licensee? If so you have other support chanels available to you.

  • Where can i get sample tests for sun certification(programmer level)??

    where can i get sample tests for sun certification(programmer level)??
    advanced thanks
    anu

    Hi,
    Check this link.
    www.javaranch.com/maha
    Goto the Mock Exams section. There is a table with links to free and paid Mock exams
    on net. They are also rated for being close to the real exams and helping you learn.
    Even the resources here is very good. They are also rated by users.
    This is one of the best sites I have visited to prepare for the SJCP exam.
    Hope this info helps.
    Regards,
    Roopasri Vittal
    Developer Technical Support
    Sun Microsystems
    http://sun.com/developers/support

  • Query on Topology for working with Routing Server

    Hi,
    We have just started working with Routing Engine. We have a sample street data. For working with routing server, whether we need the topology to be built?
    If we have a topology can we use with routing server?
    In this request for un-geocoded addresses
    <start_location>
    <input_location id="1">
    <input_address>
    <us_form1 street="4001 E Bay Dr" lastline="largo, fl" />
    </input_address>
    </input_location>
    </start_location>
    What does this street and lastline mean. Which table its referring?
    Can you help me out in this problem?
    Thanks and regards
    Aravindan

    The routing engine requires data in a particular form. It does require a node and edge table as well as oher information.
    In appendix c of the 10g Release 2 documentation is a description of the tables and the XML elements (such as us_form1, street, lastline, etc) required for the routing engine. If you have data that can be massaged into this format then you can do the massaging and load and use it.
    Hope this helps,
    d

  • JDBC Sample Test Scenario

    Hi All,
           Could any one guide us to some successfully working Sample Test Scenario Documents for SAP XI 3.0 using JDBC Adapter which we need to work on asap.
    Thanks in advance,
    Venkat!.

    Hi All,
    I am working on a jdbc to file scenario, Now that I am trying to connect to MSaccess, I have provided the following driver and connection parameters.
    Database is in my local machine
    Driver: jdbc.odbc.JdbcOdbcDriver
    Connection url: jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=D:/database_emp/EMP_Details.mdb
    with table as EMPLOYEE
    select query as SELECT * FROM EMPLOYEE WHERE FLAG='No'
    Update as UPDATE EMPLOYEE SET FLAG='Yes' WHERE FLAG='No'
    Having given that, when i m executing the scenario I am getting the following error
    Error during database connection to the database URL 'jdbc:odbc:Driver={Microsoft Access Driver (.mdb)};DBQ=D:/database_emp/EMP_Details.mdb' using the JDBC driver 'jdbc.odbc.JdbcOdbcDriver': 'com.sap.aii.adapter.jdbc.sql.DriverManagerException: Cannot establish connection to URL 'jdbc:odbc:Driver={Microsoft Access Driver (.mdb)};DBQ=D:/database_emp/EMP_Details.mdb': SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified'
    in the sender CC.
    Please help.
    Regards,
    Nithiyanandam
    Edited by: Nithiyanandam A.U. on Jan 19, 2009 11:02 AM

  • Unit tests with ant (FB4 beta)?

    Since flexunit is integrated with FB4, I was wondering how to run unit tests with ant on FB4 (using 3.4 sdk). In my current ant build file, the <mxmlc> and <compc> tags both work but the tag <flexunit> does not seem to work anymore (it worked on FB3 with flexunit download). So is there anyway currently to run unit tests on FB4 using ant?

    Hi,
    Let us take your requirements as separate two requriements.
    1. Using the flexunit ant task - I think for this you needed a separate ant library to support this. So this may be missing in the ant available with FB. May be you can analyse this and add on your own and try out.
    2. Debuggin the results.
    Now FlexBuilder has the feature inbuilt as part of the IDE which provides more featuers like , source naviagation, rerunnig , saving results loading results etc.FlexBuilder uses its own set up to show the results details in IDE.
    Currently other than using the feature in FB, there is no way to debug the results of the tests. However if you would like to get the tests to be run by ant task, and analyse the results, the following can be used.
    Option 1 : Run outside FB, show and analyse results in FB
    a. Use the FB, create some sample testCases in FB.
    b. Use 'Execute FlexUnit tests' from the run,  or debug launcher
    c. Use the option Save configuration. This will get the configuration as xml or mxml file. You can use this file template and generate your test cases (may be you will configure your tests in a testSuite class and always use that as the input to the application, so that application syntax never changes). If you run the mxml created swf  (whch you can do by the simple ant tasks which does not use the flexunit task ) out side FlexBuilder and if the FlexBuilder is open, you can still see the results in the FB and analyse the results. (You need the library which is used by the FB to use the classes. You can get the location of swc file by inspecting the library path of a project in which you have added the testCase or testSuite class using the FB IDE)
    Option2:Run outside FB and  Analyse the results in FB.
    If you have the project for which you have run the tests, and you have the XML results of the run, you can still analyse the results in the FlexBuilder.
    a. Ensure that the report is in the required syntax of FB. (we have tried to use the similar syntax as that of the JUnit resutl report)
    b. Use FB, load your project, open the FlexUnit result view, use the open result option in the FB. This should load the XML in FB (we have only ensured to open the result files which were created using FB ,back in the result view. So if you are facing some issue in opening your XML, you can refer the required syntax by saving a sample run result from FB)
    Option 3: Run and analyse the results in FB.
    a. Have the input setup mentioned to FB. (If you would like to integrate changes, have a suite class which will take care of this and mention in the Execute FlexUnit tests to use this suite class. But there is no way to specify to run the FB commands outside FB.)
    b. So whenever you would like to anlyse the tests, you need to run your test in FB and then analyse the results shown in result view.
    Please let me know whether this is what you are looking for.
    Thanks,
    Rani

  • Could anyone provide your experience in cdma testing with LabView??

    CDMA testing with LabView is a project I am involved with now. I would like to hear from anyone who has had experience and can provide whitepapers, sample code, etc., on this subject. What about interfacing TestStand with TTCN-3??

    There is also example code demonstrating Successive Interference Cancellation with CDMA that you may be interested in.
    Attachments:
    README.txt ‏4 KB
    UPLINK_CDMA_WITH_SIC.llb ‏2474 KB

  • Use of Impact Test with SW Trigger(DAQmx) vi

    Hello,
    I working on modal analysis (with hammer) and so I am trying to use Impact Test with SW Trigger(DAQmx) vi but I don't get signal of the acceleration (should be acquire as voltage), whereas I get the impact. And when I impact the beam I have an error message which says the sampling frequency should be more than 0.
    thanks for your help

    Hi,
    Can you check the "physical channels (stimulus and response)" input to ensure that you have at least 2 signals? I get this error when I am selecting only one channel.
    Hope this helps,
    Charlotte F. | CLAD
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> "Du 11 octobre au 17 novembre, 2 sessions en parallèle : bien démarrer - approfondir vos connais...

  • Sample test questions?

    I've been learning FCP6 on my own (combination from Apple's book and lynda.com) and need to take the level-1 certification class so that I can take the FCP300 course.
    Not having taken any of the intro classes (FCP101, 200, etc.), I don't know what to expect with regard to the exam. Is there a sample test out there that I can look at to get a sense of what to be ready for?
    Jason

    No, but if you memorize the Peachpit Apple book, you should have no problem.

  • Sample Test Paper required for DP, GATP, SNP & PPDS

    Dear Friends,
    Please help me with sample test papers for SAP-APO in the area of DP, GATP, SNP & PPDS
    Thanks & regards in advance,
    Rajesh Banka

    Yes, I understand it is difficult to provide SAP certification related sample test question.
    I am not looking at questions from certification point of view, but for general testing of understanding level.
    It would be really helpful, if someone can provide some information.
    Regards,
    Rajesh Banka
    [email protected]

  • Help with router for new imac???!!!!!

    I just bumped my cable internet speed up to the max I can get. I did a speed test with and without my router hooked up and my old Linksys router is really slowing it down. I have a Linksys Wireless-G router with speed booster.
    My question is, Are there routers that are a lot faster??? And what one should I get to be compatible with my Imac. My Linksys one was a pain in the butt to hook up b/c Linksys does not have support for a Mac. Also, don't the setup discs they all come with only work on PCs????
    Help please !!!
    Thank you.

    The current 802.1N specification is significantly faster than your G and has better robustness and range besides. Except for Apple's Airport basestations, all routers are configured via web-browser. In fact, just last week I set up a base for a colleague (don't remember offhand what brand) and all the so-called installation disk had on it was Adobe Acrobat and PDF files of the printed Quick Start Guide and manual that came in box.
    It really isn't that big a deal setting up a new basestation but if you really want ease of operation, you can't beat Apple's Airport = and I'm looking forward to getting my hands on a TimeCapsule.

  • ACE 4710 server load balancing on ACE with routed model.

    Hi experts,
    Pls help me...i need server laod balance on ACE4710 with routed model sample configuration or configuration guide....thanks in advance....

    Here you go

  • VQY sample withdrawals with account assignment

    Hello,
    I have a problem PM FI MM related.
    In TRX QA12 when I want to move some material as sample for testing there is a message that says " Determination of account not posible for entry CODK GBB 1020 VQY 3001".
    But I only want to use VQP = sample withdrawals without account assignment  instead of VQY for sample withdrawals with account assignment for sample withdrawals.
    Please could you help and tell me where do I have to change this ???
    Thanks and Regards.
    Elena Cornejo.

    I guess you need to write the code under one of the user exits,you can use simple logic to get list of purchase order ,i think no need to have BAPI or BDC.
    Thanks
    Seshu

  • Calculation of goods issue date in scheduling agreements with routes

    Hello together,
    i have a problem with the calculation of goods issue date in scheduling agreements when we use route, because the system ignore the days of transit.
    Example:
    We had customized the route 4711 with a transit time of 3 days. This route would be related to a scheduling agreement. But this setting has no influence to the calculation of the goods issue date for the schedules. The same happens with loading date and so on.
    Can anyone give me a tip, which setting is additional necessary?
    Regards
    Andreas Walter

    Hi,
    check the following settings
    1, Route determination Path : IMG>sales and distribution>Basic function>Routes>Route determination
    2, Activate the route Determination for your sales document type in following path :IMG>sales and distribution>Basic function>Routes>Route Schedule Determination-->Schedule with route schedule for sales document type
    3, Maintain Delivery scheduling and transportation scheduling in the following path:IMG>sales and distribution>Basic function>Delivery scheduling and transportation scheduling>Maintain Duration
    Regards
    Senya

  • Unit Testing with Microsoft Sharepoint Emulators and Fakes with Visual Studio 2013

    Hi All,
    I have created Test Project and now creating Test cases for Sharepoint. I found a link on MSDN which suggests using Fakes framework but it supports VS2012 and I am using Visual Studio 2013.
    So how can I use it with VS2013 or is there any other way with which I can implement the Test cases with VS2013.
    Please suggest.
    Thanks in advance.
    Himanshu Nigam

    Hi HimanshuNigam,
    According to your descrition, my understanding is that you want to use Fakes framework to create test case for SharePoint project in Visual Studio 2013.
    If you want to test using Fakes Framework, you can use the codeplex extension to achieve it. It supports Visual Studio 2013.
    Here is a detailed article for your reference:
    Better Unit Testing with Microsoft Fakes
    About how to include the Nuget package, you can use the package with the link below:
    NuGet Package Manager for Visual Studio 2013
    Installing NuGet
    If you still have question about this issue, I suggest you can create a post in Visual Studio, more experts will help you and you can get more detailed information from there:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Best Regards
    Zhengyu Guo
    TechNet Community Support

Maybe you are looking for

  • Excise materials given by customer

    Is it possible to take the customer material (Exciseable) for doing value addition. thru MB1C for which our company should take the credit of Rawmaterials(Exciseable) . Taxes paid on this RM should be given credit on FERT. If i use MB1C how the %'s o

  • Color cast with Huey Pro

    I am using a Huey Pro to calibrate my monitors for use with Aperture. After calibration both my MacBook Pro and iMac have a very red color cast. Thanks, Ken

  • Archive Utility Crashes

    It doesn't matter what ZIP file I'm trying to open Archive Utility will lock up and I'll get the "Application Not Responding" notification. Any solutions? OSX 10.10.3 MacBook Pro (15-inch, Early 2011)

  • Upload Material Master using LSMW BAPI BUS1001006-SaveData

    Hi Gurus, I'm working with material master upload using the BAPI BUS1001006-SaveData. I'm wondering on how can I know what structure should I populate on step 4 of LSMW "Maintain Field Mapping and Conversion Rules". Seen some tutorials on material ma

  • Wildly varying speed on a WRT610N

    I have a WRT610N bridged through a ZyXEL P-2601HN provided by my ISP. The Zyxel is new and after intallation, The internet speed of my WRT610N has started to vary a lot (mostly being untolerably low). Any idea what is going on here and what I can do