Process Control 2.5 - Cannot find controls and control rule assignments

Dear expert,
I am trying to set up  Process Control 2.5 and am currently trying to set up controls as well as schedules for control monitoring.  I am, however, having the following basic problems:
-I cannot find most of the controls which I have created when I search for them in Evaluation Setup u2013> Automated Test rules u2013> Control Rule Assignment.  Therefore, I cannot assign a rule to those controls. 
-For those controls that I did manage to find and assign to rules, I was in turn not able to find these in Evaluation Setup u2013> Scheduling u2013> Monitoring Scheduler when trying to create a schedule.  I get the error message u201CControl Rule Assignment not foundu201D, even though I do not delimit my search options. 
-I cannot see the processes which I have assigned to my user under My Home u2013> My Process.
Thanks for any hints!
Regards,
Felix

Hi Felix,
Is your user the owner of objects you wish to see in the My Process. Your user should either be Organization Owner or Process Owner. If you are an organization owner but not an owner of lower-level objects within your organization (such as controls or subprocesses), you will still see those objects listed within My Processes because you are responsible for them, although not the direct owner.
Thanks & Regards,
Venky.

Similar Messages

  • I cannot find airdrop in control centre of my Iphone 6 plus iOS 8.1.3

    i cannot find airdrop in control centre of my Iphone 6 plus iOS 8.1.3
    Please help!

    See http://help.apple.com/iphone/8/#/iphb658714b9 - AirDrop access instructions start under the image - ÇÇÇ

  • Sales Order VA01 - "No control data for checking group 04 and checking rule

    Dear Gurus,
    When saving a sales order in VA01, I get the following message: "No control data for checking group 04 and checking rule A"
    Can anyone explain to me what that means?
    How can I correct this error?
    Regards
    Chris

    Check this thread
    [Re: Process Order Material availability check error|Re: Process Order Material availability check error;
    thanks
    G. Lakshmipathi

  • Windows Vista cannot find bonjour and it won't allow me access to my ipad.

    For some reason my Windows Vista cannot find bonjour and it won't allow me to do anything on my ipad. If I reinstall itunes will that work? If I update itunes will that work?
    Please Help....
    Thanking You in advance,
    Frankie

    Hi Frankie,
    This article covers how to check if Bonjour is installed correctly and how to reinstall if it's not:
    Bonjour for Windows: How to tell if it successfully installed
    http://support.apple.com/kb/HT2703
    Cheers!
    - Ari

  • Cannot change command and control button

    in the past I've been able to switch the command and control buttons from system preferences. I recently connected a new Microsoft keyboard to my mac mini, and when I change the command and control button the same way I did before, it has no affect. The command and control keys have their default action. Is there a way to over ride this?

    I did on Lenono brand windows keyboard and it works, but when I try a Microsoft brand windows keyboard, it doesnt work.

  • Cannot find symbol and streams

    I am making some progress with implimenting the icaste jar file to control the serial port. My code is below. I have a problem with the statement osOut.write(bData,0,0); at the bottom of the code. cannot find symbol
    I am trying to write one byte to the serial port, I don't understand the use of the outputStream being used here from java.io , If I knew how the access worked on a lower level perhaps I could figure it out.
    In an AVR microcontroller for example, you set up the hardware on the chip to output a byte you place in a buffer, when there is data to read you have an interrupt set to jump to an isr routine that receives a byte and puts it in your own memory space or array. The hardware has a buffer it uses to hold some number of bytes and error flags to find out if you have a buffer overrun.
    Not sure if that concept is what is going on here or not.
    import com.icaste.JCommSerial.*;
    import java.io.*;
    public class newtest {
         * @param args
        public static void main(String[] args) {
            byte[] baData = new byte[1];
            baData[0]= (byte)255;
            String Errorstring = "None";
            System.out.println("Testing Serial port");
            SerialPort myPort = new SerialPort();
            try {
                myPort.openPort("COM1:", 2000, 2000);
            } catch(SerialPortNotFoundException e) {
                Errorstring="Serial port not Found";
            } catch(SerialPortInUseException e) {
                Errorstring="Serial port in use";
            } catch(SerialPortException e) {
                Errorstring="Serial port unable to complete operation";
            } catch(Throwable e) {
                Errorstring="unknown error";
            try {
                myPort.setBaudRate(9600);
            } catch(SerialPortException e) {
                Errorstring="Unable to set baud rate";
            try {
                myPort.setDataBits((byte)8);
            } catch(SerialPortException e) {
                Errorstring="Unable to set data bits";
            try {
                myPort.setStopBits(SerialPort.ONESTOPBIT);
            } catch(SerialPortException e) {
                Errorstring="Unable to set stop bit";
            try {
                myPort.setParityMode(SerialPort.NOPARITY);
            } catch(SerialPortException e) {
                Errorstring="Unable to set parity";
            try {
                OutputStream osOut = myPort.getOutputStream();
            } catch(IOException e) {
            try {
                osOut.write(baData, 0, 0);
            } catch(IOException e) {
                Errorstring="write byte failed";
            System.out.println("Error = "+Errorstring);
       

    Ok, I can finally put this question to bed. My main error was not knowing what the line of code actually was. After 4 hours of reading http://www.yu.edu/faculty/arosnfld/java/javanotes-3.1/c5/s3.html and a nice email from the tech at icaste, I finally understand what is going on and what it all means.
    If you would like to see what I am up too you can check out the DMX light prototype moveie I made a few weeka ago. It is using a program called freescale and a DMX controller connected to a USB port. The serial port can be configured to operate a USB port from windows point of view and that is my next quest to study how a USB port connection works on the hardware side.
    Thanks for the help and links, I wish there was more time in the day, and night to cram all this stuff in my head.
    Quicktime Movie (kind of big) http://www.acousticlights.com/ledmovie.m1v
    import com.icaste.JCommSerial.*;
    import java.io.*;
    public class newtest {
         * @param args
        public static void main(String[] args) {
            SerialPort myPort = new SerialPort();
            String Errorstring = "None";
            System.out.println("Testing Serial port ");
            try {
                myPort.openPort("COM1:", 2000, 2000);
            } catch(SerialPortNotFoundException e) {
                Errorstring="Serial port not Found";
            } catch(SerialPortInUseException e) {
                Errorstring="Serial port in use";
            } catch(SerialPortException e) {
                Errorstring="Serial port unable to complete operation";
            } catch(Throwable e) {
                Errorstring="unknown error";
            try {
                myPort.setBaudRate(9600);
            } catch(SerialPortException e) {
                Errorstring="Unable to set baud rate";
            try {
                myPort.setDataBits((byte)8);
            } catch(SerialPortException e) {
                Errorstring="Unable to set data bits";
            try {
                myPort.setStopBits(SerialPort.ONESTOPBIT);
            } catch(SerialPortException e) {
                Errorstring="Unable to set stop bit";
            try {
                myPort.setParityMode(SerialPort.NOPARITY);
            } catch(SerialPortException e) {
                Errorstring="Unable to set parity";
            try {
    //Get an OutputStream from JCommSerial and reference it by the name osOut.
    //assuming you already created a JCommSerial object called spPort
    // and opened it!
                OutputStream osOut = myPort.getOutputStream();
    //Write your byte to the port
    // the write() function takes an int that is then converted
    // to a byte for transmission.
                int iData = 255;
    // Send 254 bytes of data to the serial port
                while (iData >0) {
                    osOut.write(iData);
                    iData--;             
            } catch(Exception e){
                System.out.println(e.toString());
            System.out.println("Error = "+Errorstring);
    }

  • Cannot find dashboard and reports after upgrading rdp from 10g to 11g OBIEE

    Hi all
    I am trying to upgrade from OBIEE 10g to 11g. These two products are installed on different servers. I have followed the guide: http://www.oracle.com/technetwork/issue-archive/2011/11-jul/o41bi-402913.html and everything seems to work fine.
    So i have taken a copy of rdp from the server where was installed OBIEE 10g and took it in the server where OBIEE 11g is installed.
    Ran the upgrade tool and upgrade finished successfully. Restarted the BI Servers in core application on Enterprise Manager.
    Now when i access the upgraded rpd, the layers and the fields are fine but I cannot find all the reports and dashboards that i had created.
    Am I missing any upgrade steps?
    Please suggest
    Thank you and best regards

    Hi Deepak,
    Thanks for your response.
    Oracle also came back to me and looks like my method is not valid:
    Hi Jim,
    Thanks a lot for the information. First of all I would like to inform you that upgrade CANNOT be performed across two machine. So, if 10g installation is on Host A, then upgrade to 11g will be on Host A.
    So, in your scenario this is what you can do:
    1. On Host A running Forms/Discoverer 10g on Windows 2003, install Forms/Discoverer/Reports 11g (11.1.1.6.0)
    2. Run the upgrade Assistant to perform the upgrade from 10g to 11g.
    3. Now upgrade OS of Host A to Windows 2008
    In short, I would like to inform you that upgrades across machines does not work. Source instance which is 10g and destination instance which is 11g must exist on same box.
    Here is the documentation which you can follow:
    http://docs.oracle.com/cd/E23943_01/upgrade.1111/e10130/toc.htm
    (Oracle® Fusion Middleware Upgrade Guide for Oracle Portal, Forms, Reports, and Discoverer)
    11g Release 1 (11.1.1)
    Let me know if you have any further questions.
    Thanks,
    Rishi

  • What are the hours of operation for phone support? I cannot find them and the phone system just says between regular hours?

    My patience has been pushed to its  limit with this iPod and I cannot find hours of operation for customer service and tech support and the phone system just tells you no one is available and call back during regular hours, but nothing saying what those hours are. Does anyone know?

    Looking at the Apple's website and previous posts, Apple does not publish the hours.  Did you can in the USA during the times that corresponsd to about 9AM to 4PM Pacific time?

  • Cannot find JDK and JRE?

    I am configuration Hyperion, and it pops up an information say: Cannot find JDK or JRE, I have set the JAVA_HOME environment variable to c:\Program Files\Java\Jdk.1.6, but still get this error, what's wrong with me?

    Hi,
    It does not use the JAVA_HOME environment variable, it will try to use the JRE installed with hyperion, if it can't find it then you receive the error message.
    The JRE's should be in the \Hyperion\common directory e.g. \Hyperion\common\JRE or \Hyperion\common\JRE-64
    If you don't have these directories then something has gone wrong with the installation.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • CANNOT FIND VARIABLE AND CONTRUCT

    I get cannot find symbol textio and symbol romanconverter
    I need help to fix this and understand what i did wrong or did not do.
    Im trying to write a program that has the user input numbers and the the program outputs roman numbers
    I hope that i am close to getting there!
    public class RomanConverter{
    public static void main(String[] args){
    System.out.println("Enter a Roman numeral and I will convert it to an ordinary");
    System.out.println("arabic integer. Enter an integer in the range 1 to 3999");
    System.out.println("and I will convert it to a Roman numeral. Press return when");
    System.out.println("you want to quit.");
    while (true) {
    System.out.println();
    System.out.print("? ");
    /* Skip past any blanks at the beginning of the input line.
    Break out of the loop if there is nothing else on the line. */
    while (TextIO.peek() == ' ' || TextIO.peek() == '\t')
    TextIO.getAnyChar();
    if ( TextIO.peek() == '\n' )
    break;
    /* If the first non-blank character is a digit, read an arabic
    numeral and convert it to a Roman numeral. Otherwise, read
    a Roman numeral and convert it to an arabic numeral. */
    if ( Character.isDigit(TextIO.peek()) ) {
    int arabic = TextIO.getlnInt();
    try {
    RomanConverter N = new RomanConverter (arabic);
    TextIO.println(N.Int() + " = " + N.String());
    catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    System.out.println(e.getMessage());
    else {
    String roman = TextIO.getln();
    try {
    RomanConverter N = new RomanConverter(roman);
    System.out.println(N.String() + " = " + N.Int());
    catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    System.out.println(e.getMessage());
    } // end while
    System.out.println("OK. Bye for now.");
    } // end main()
    } // end class RomanConverter

    Here, let me do it!
    I get cannot find symbol textio and symbol
    romanconverter
    I need help to fix this and understand what i did
    wrong or did not do.
    Im trying to write a program that has the user input
    numbers and the the program outputs roman numbers
    I hope that i am close to getting there!
    public class RomanConverter{
        public static void main(String[] args){
    System.out.println("Enter a Roman numeral and I will convert it to an ordinary");
    System.out.println("arabic integer.  Enter an integer in the range 1 to 3999");
    System.out.println("and I will convert it to a Roman numeral.  Press return when");
              System.out.println("you want to quit.");
              while (true) {
               System.out.println();
        System.out.print("? ");
    /* Skip past any blanks at the beginning of the
      input line.
    Break out of the loop if there is
      nothing else on the line. */
    while (TextIO.peek() == ' ' || TextIO.peek() ==
      '\t')
                    TextIO.getAnyChar();
      ( TextIO.peek() == '\n' )
                    break;
    /* If the first non-blank character is a
      digit, read an arabic
    numeral and convert it to a Roman
      numeral.  Otherwise, read
    a Roman numeral and convert it to an
      arabic numeral. */
      ( Character.isDigit(TextIO.peek()) ) {
                    int arabic = TextIO.getlnInt();
      try {
    RomanConverter N = new
      RomanConverter (arabic);
    TextIO.println(N.Int() + " = " +
      N.String());
      catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    ystem.out.println(e.getMessage());
                  else {
        String roman = TextIO.getln();
                  try {
            RomanConverter N = new RomanConverter(roman);
    System.out.println(N.String() + " = " +
      N.Int());
      catch (NumberFormatException e) {
    System.out.println("Invalid input.");
    ystem.out.println(e.getMessage());
           }  // end while
           System.out.println("OK.  Bye for now.");
            }  // end main()
         } // end class RomanConverterHave you added the import statement for TextIO?

  • My photos are not working, any recently taken photos won't show, they're just like blank grey pictures & all my photos cannot be uploaded or loaded into an editing tap, it says error, cannot find photo, and the last photo I take ends up being repeated!

    someone please help me! I just traveled to hong long and the minute I arrived something wrong was happening with my photos, I can't take any new photos because if I did they either get repeated or just be shown as grey pictures and when I try to upload one to a photo editing app it says "error cannot Load photo" and the same happens in twitter and Facebook! this has been found on for Like more than a week now, even when I want to set a picture as my profile picture in man it ends up zooming the picture way more than how I chose it in the border,, I would like to be able to take good photos again, any help?

    1. You did not get an error message telling you that your iPhoto library was getting full. You got a message telling you that your HD was getting full, right?
    OS X needs about 10 gigs of hard drive space for normal OS operations - things like virtual memory, temporary files and so on.
    Without this space your Mac will slow down as the OS hunts for space on the disk, files will be fragmented, also slowing things down, apps will crash and the risk of data corruption - that is damage to your files, photos, music - increases exponentially.
    Your first priority is to make more space on that HD. Nothing else can be done until you do.
    Purchase an external HD and move your Photos and Music to it. Both iPhoto and iTunes can run perfectly well with the Library on an external disk.
    Your Library has been damaged from being run on an overfull disk.
    How much free space on it now?

  • Macbook Pro lost, and cannot find, TC and AEs

    Ok - I've never had an issue backing up to the Time Capsule or streaming iTunes to my two Airport Expresses. Out of the blue today, my Airport utility cannot find my TC or my AEs. However, I still have wireless internet access through the Time Capsule. I have no idea what is happening or why? There appears to be many people having this issue but I cannot find a solution. Can anyone help?

    One other thing - lights are green on all devices.

  • I cannot find the Java Control Panel.

    I looked under System Preferences, and in the Utilities Folders, I did a soplight search, it is nowhere to be found. I installed JRE-7u21-macosx-x64, and it says it installed, but there's no evidence of it anywhere. I am unable to use a web start program (a ROES program) becuase it keeps telling my I need to install the JRE. The vendor I use that supplys the ROES program told me to look at the Java settings in "system preferences" but alas, it's not there.
    I am running OSX 10.8.3
    HELP!
    Greg

    Thanks Eric.. I found some terminal script that simply removed or disabled Java 7 and re-enabled Apple's Version 6, and that allowed me to launch the "Web Start" application I needed. But I will try to do the uninstall as suggested and see if that corrects things. Interestingly enough, there was an OSX update yesterday that listed Java as one of the patches, and yet it did nothing to fix the problem.

  • I bought music on my ipod touch from my account, but it was stolen. I wanted to know if the music that I bought on my ipod will show up on my itunes account on my pc? as of now I cannot find it, and i want to add the music I bought on my ipod to my ipad

    So my ipod was stolen, but I bought music on it from my account a couple days ago. I went on my pc and clicked on itunes and its not on there. I want to add my new music to my ipad now but i can't find the music.. well it doesnt show up on my purchased playlist.... Someone help me, pleaseee!!!!

    If you sync your iPod to iTunes, it should be there, if not...
    You can re-download all your iTunes purchases by logging into your iTunes Store account and selecting Purchases from the right-hand sidebar.

  • How do i control my music from the lock and control screen?

    I Dont know if theres a setting i have to change, but i cant control my music from the control screen nor can i control it on the lock screen while the music is already playing. Is this a settings problem or is it just not working for my iphone 5?

    I'm having this same issue on the 4s.

Maybe you are looking for