Visibility of the agents Affairs and Screenflows project Variables

There is a way to retrieve the value of a parameter to a business or a project Variable in a Screenflow?

I think the visibility of these variables is just at the level of the project.

Hello

Sorry - I'm a bit slow today. When you say "retrieve the value of a variable in an automated task" do you mean you want to recover it's current setting?

If this is the case, you can do that with any business setting using the logic:

object as Object
object = BusinessParameter.getValue(name : "MIN_CREDIT_SCORE")

creditParameter = Int(object)

In this logic, I retrieve the value of the parameter MIN_CREDIT_SCORE business and put it in the instance variable 'creditParameter' inside a Screenflow. Note that the setting of the company has quotation marks that surround it and note that the object is cast in "Int", since the variable I'm assigning is an int. Similarly, if you receive the value of a parameter of business channel, your cast instead would be «...» String (Object) ".

If you do this already and that you get syntax errors in the method editor, close the project and reopen the project - you have a cooling problem.

HTH,
Dan

Tags: Fusion Middleware

Similar Questions

  • LR3: anyway to increase the visibility of the overlays culture and its grid?

    Hi all

    I use LR3 on a resolution of 2048 x 1152 and find that the grid (printing Module) and overlays of harvest are very difficult to see, that is, the lines are very thin.

    Is it possible to increase the visibility of these LR3 (.2 RC)?

    Thanks in advance

    Kevin

    It is requested, but unfortunately has not yet made its way to the top of the task list. So the answer to your question is - not at this time

  • Best audio levels for the web, broadcast and live projection?

    I've seen conflicting information about it.  One source suggests hovering around 9 db and sometimes with a peak at-6 db.  This seems a little high for me. Other sources suggest to stay around 12 db.

    I just finished a picture/dialogue cut and starts adding sound and set levels. A longer version will be planned and posted on the web. A shorter version will be published for the public television broadcasting.  I don't have the budget for a pro mixer, so I have to do the best I can myself.

    I add a dynamic effect on the master output attenuator in the track mixer, there is a gain of makeup on the compressor that will add volume, you can just pull back the main knob in order to reduce the volume. You can also set the limiter in the dynamic effect to stop the surcharges.

  • Regulator PID very slow to reach the value Point and zeros process Variable when it should not

    Hello

    I am using a PID controller to regulate the emission of a filament current in an ion gauge, but I'm running into several problems.

    The first and less important, are the controller of PID VI takes at least 5 minutes to get the current where it needs to be.  Is it possible to speed this up?

    The second and more important, are that the PID controller tends to zero the process variable before you start the process of getting the close process of the target value variable.  This can be seen in the attached VI: I write 5.8 volts voltage filament - something I did at the beginning to try to get the controller PID for the process close to the target faster - value variable but when the PID controller starts to do his thing, he kills the tension before anything, rather than rise of 5.8 V.

    The attached VI is a single which has these problems.  VI actual ion gauge controller I've written has the same problems, but in a form even more frustrating.  I have a while loop set up for the filament voltage to where it should be (using a PID controller) first and foremost, then a loop of data acquisition, which also includes a feedback loop in the form of a PID regulator to maintain the filament voltage.  When the second PID controller starts to run, it concentrates the tension that the earlier had set, taking another 5 + minutes to reach the point where we can take data and giving us 5 minutes of false data in the process!

    Does anyone know why PID controllers are behaving like this, and what can I do to fix/work with this behavior?

    Hello

    It seems that PID VI will always be 0 for the first iteration. You can, however, use the advanced PID VI and set up the first iteration in manual mode. After subsequent iterations, you could then define this automatic mode and there will be a transition smoothly. I think this will give you the desired behavior.

    -Zach

  • Calculate days a year in the current year/CDA days in the previous year and store in Variables to repository

    Hello peers - how can we calculate CDA days in the current year, CDA days in the previous year using SQL Timestampadd/Timestampdiff works and store them as variables to repository? Appreciate any inputs.

    Thank you.

    Regarding the answer to your other question (How to use the functions Timestampadd/Timestampdiff in the repository Variables) you don't need to use timestampadd / timestampdiff for a block init but real SQL, to verify the features in charge of your database.

    PS: Days CDA? If you just want to know the day number based on the year?

  • Question on the PL/SQL and substitution of variables

    Good evening

    I just started studying the PL/SQL (currently at page 13 of the book), I typed the following example from the book:
    declare
      v_student_id          number          := &sv_student_id;
      v_first_name          varchar2(35);
      v_last_name           varchar2(35);
    
    begin
      select first_name,
             last_name,
        into v_first_name,
             v_last_name
        from student
       where student_id = v_student_id;
    
    
      dbms_output.put_line('Student name : ' || v_first_name || ' ' v_last_name);
    
      exception
        when no_data_found then
          dbms_output.put_line('There is no such student');
    end;
    /
    that gets me the following error:
    SP2-0552: Bind variable "SV_STUDENT_ID" not declared.
    I thought that SQL * more would invite me for a value to be substituted for SV_STUDENT_ID but it does not, that caused the error. Why has no SQL * more invite me for the value of SV_STUDENT_ID and what is the correct way to do it than the code above?

    Thank you for your help,

    John.

    As a result, DDL for STUDENT table:
    CREATE TABLE STUDENT
     (STUDENT_ID NUMBER(8,0)
     ,SALUTATION VARCHAR2(5)
     ,FIRST_NAME VARCHAR2(25)
     ,LAST_NAME VARCHAR2(25)
     ,STREET_ADDRESS VARCHAR2(50)
     ,ZIP VARCHAR2(5)
     ,PHONE VARCHAR2(15)
     ,EMPLOYER VARCHAR2(50)
     ,REGISTRATION_DATE DATE
     ,CREATED_BY VARCHAR2(30)
     ,CREATED_DATE DATE
     ,MODIFIED_BY VARCHAR2(30)
     ,MODIFIED_DATE DATE
     )
    /

    You had a few syntax errors (lines 7 and 12), but after their attachment, your code worked for me:

    SQL> ed
    Wrote file afiedt.buf
    
      1  declare
      2    v_student_id          number          := &sv_student_id;
      3    v_first_name          varchar2(35);
      4    v_last_name           varchar2(35);
      5  begin
      6    select first_name,
      7           last_name
      8      into v_first_name,
      9           v_last_name
     10      from student
     11     where student_id = v_student_id;
     12    dbms_output.put_line('Student name : ' || v_first_name || ' ' || v_last_n
    ame);
     13    exception
     14      when no_data_found then
     15        dbms_output.put_line('There is no such student');
     16* end;
    SQL> /
    Enter value for sv_student_id: 1
    old   2:   v_student_id          number          := &sv_student_id;
    new   2:   v_student_id          number          := 1;
    
    PL/SQL procedure successfully completed.
    

    Did you happen to define set off?

    SQL> show define
    define "&" (hex 26)
    
    SQL> set define off
    SQL> /
    SP2-0552: Bind variable "SV_STUDENT_ID" not declared.
    SQL> set define on
    SQL> /
    Enter value for sv_student_id: 1
    old   2:   v_student_id          number          := &sv_student_id;
    new   2:   v_student_id          number          := 1;
    
    PL/SQL procedure successfully completed.
    

    Published by: Andy Klock on August 11, 2010 18:13 (sorry, line 7 means there was an error not 9...)

  • Appellant the package with the cursor type and registration type variables

    Hello
    I tried the following package, which is similar to my requriement, the package has been successfully created, when you call it gives me error, the number of false arguments
    CREATE OR REPLACE PACKAGE Pkg_test1
    IS
      ----- Record Variable ----
      TYPE rec_job IS RECORD
       ( job varchar2(50),
         ename varchar2(50),
         sal number
       );
      TYPE typ_job IS TABLE OF rec_job;
      
      -- cursor declaration
      cursor emp_cur is select empno from  emp;
      TYPE emp_ttyp IS TABLE OF emp_cur%ROWTYPE INDEX BY PLS_INTEGER;
      ---- Procedure Declaration ----
    PROCEDURE proc_job ( p_cur IN   emp_ttyp,
                         o_Rat     OUT  typ_job );
     
    END Pkg_test1;
    /
    
    CREATE OR REPLACE PACKAGE BODY Pkg_test1
    IS
     
     PROCEDURE proc_job ( p_cur IN   emp_ttyp, o_Rat     OUT  typ_job )
      IS 
        -- Declare collection variable 
        l_typ_job typ_job; 
     
    BEGIN
       for i  in 1..p_cur.count loop
        select job,ename,sal bulk collect into l_typ_job
          from emp
          where empno=p_cur(i).empno ; 
    o_Rat:= l_typ_job;
    end loop;
    --Output
    for i in 1..o_rat.count loop
     DBMS_OUTPUT.PUT_LINE ( 'Output :'||o_rat(i).job||','||o_rat(i).ename||','||o_rat(i).sal );
      end loop;
    
    EXCEPTION
      WHEN OTHERS THEN 
           DBMS_OUTPUT.put_line('Procedure proc_job  - '|| SQLCODE|| '-'|| SQLERRM);
     END proc_job;
      end pkg_test1;
    /
    The package is created without errors
    But during the call, it gives me errors
    DECLARE 
      P_CUR PKG_TEST1.emp_ttyp;
      O_RAT PKG_TEST1.rec_job;
    BEGIN 
      PKG_TEST1.PROC_JOB ( P_CUR, O_RAT );
      COMMIT; 
    END; 
    Error is:
    PLS-00306: wrong number or types of arguments in call to 'PROC_JOB'
    Can you let me see how to overcome this error...

    Thank you..

    Published by: Smile on 9 may 2012 07:27
    SQL> DECLARE
      2  P_CUR PKG_TEST1.emp_ttyp;
      3  O_RAT PKG_TEST1.typ_job := PKG_TEST1.typ_job(null);
      4  BEGIN
      5  PKG_TEST1.PROC_JOB ( P_CUR, O_RAT );
      6  END;
      7  /
    Procedure proc_job  - -6531-ORA-06531: Reference to uninitialized collection
    
    PL/SQL procedure successfully completed.
    
    SQL> CREATE OR REPLACE PACKAGE BODY Pkg_test1
      2  IS
      3
      4   PROCEDURE proc_job ( p_cur IN   emp_ttyp, o_Rat     OUT  typ_job )
      5    IS
      6      -- Declare collection variable
      7      l_typ_job typ_job := typ_job();
      8
      9  BEGIN
     10     for i  in 1..p_cur.count loop
     11      select job,ename,sal bulk collect into l_typ_job
     12    from emp
     13    where empno=p_cur(i).empno ;
     14  o_Rat:= l_typ_job;
     15  end loop;
     16  --Output
     17  if o_rat is null then return; end if;
     18  for i in 1..o_rat.count loop
     19   DBMS_OUTPUT.PUT_LINE ( 'Output :'||o_rat(i).job||','||o_rat(i).ename||','||o_rat(i).sal );
     20    end loop;
     21  EXCEPTION
     22    WHEN OTHERS THEN
     23     DBMS_OUTPUT.put_line('Procedure proc_job  - '|| SQLCODE|| '-'|| SQLERRM);
     24   END proc_job;
     25    end pkg_test1;
     26  /
    Package body created.
    
    SQL> DECLARE
      2  P_CUR PKG_TEST1.emp_ttyp;
      3  O_RAT PKG_TEST1.typ_job;
      4  BEGIN
      5  PKG_TEST1.PROC_JOB ( P_CUR, O_RAT );
      6  END;
      7  /
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    SY.

  • Change the new tab and connect to red target icon bright or other high-visibility

    The visibility of the "New Tab" and the sign is very low. That's why I always leave my e-mail homepage to navigate, find or load a bookmark. If the new tab and sign is customizable, I might make it more visible so that I would be called back to click to a new page.

    Thank you!

    The new tab button is customizable and can be moved to another toolbar or position on the tabs in mode toolbar Customize.
    It then becomes a toolbar button that looks different that may look better.
    You can also try to find a theme with a button tab more distinct.

    Classic toolbar buttons:

  • Why the continuous measurement and Logging in LabVIEW 2012 Project uses strings instead of Enums and orders from the queue?

    Hello!

    I noticed that the continuous measurement and a project in LabVIEW 2012 Logging using chains instead of enums and orders from the queue. I wonder if there is a good reason for it?

    Kind regards

    Anguel

    First, string vs enum debate is probably the version of LabVIEW vim vs emacs. There are good arguments on both sides, and I doubt that there is always a "winner".

    A brief summary of our reasoning for the current state of the project examples:

    1. We used enums for the state machine because it is self-contained. A state machine will never tell himself to enter a State, he does not know. Knowing (as the programmer) all possible States with the help of an enum allows you to enlist the compiler in order to help us avoid mistakes to change the time (because you can't quite out an enum and LabVIEW can be said if you are not covering all cases to a structure of the case, etc..).

      Enums provide greater protection and rigidity by ensuring all withdrew at the time of publishing. This is often the 'default' recommendation that we do.

    2. We used strings for messages in queue manager because the producer of message and the message handler could be independent processes that are reused or traded. Channels avoid the need for the compiler to be able to connect the orders and push this responsibility to the programmer. This allows you to develop some sub-components independently as long as you agree to a series of channel commands that you can manage - you need not to share a file 'messages.ctl' or 'states.ctl '. It is conceivable a loop of message management a message it does not, how you can decide to either silently ignore it or will trigger an error (as we do in the model). The strings make it also easier if you want to swap the queues of LabVIEW outside by a TCP implementation for network vacilitate or intra-Processuse communication where the other end may or may not be written in LabVIEW.

      Channels to provide more flexibility (that is, you can add new commands to an existing via plugins system, you can pass parameters as part of the string, etc.) at the expense of pushing her potential errors at run time and to put more responsibility on the programmer.

    3. The actor's gifts frame a 3rd option - using classes such as messages. For me, it combines many of the advantages of these two enumerations (strictly typed, change errors) and strings (flexible and scalable), but with the disadvantage of being somewhat less transparent (you understand OO, be comfortable to navigate through a multitude of screws, legacy of understanding, etc.).

    I don't know there are other reasons, others to the breast OR had or seen as we validated models and examples of projects in-house, but here are my reasons. We know that we can not design for each situation there - our goal is to get useful models against new users to make them aware of what well thought LabVIEW programs are similar to experienced users know their applications better and I hope they do not hesitate to change what we provide or create their own designs, when they feel it's necessary. (On a side note, please share what you come up with - a community of experts sharing models would be really useful to us all LabVIEW users).

    Best regards

    Simon

  • Documentation of the painting process: stamp Visible, move to layer together and hide

    I love to capture my screen painting and when I'm actually I make a GIF animated these shots '' process. '' I am trying to automate the process and I managed to find that meets my needs:

    #target photoshop

    app.bringToFront ();

    Stamp the visible layers

    var idMrgV = charIDToTypeID ("MrgV");

    var desc2 = new ActionDescriptor();

    var idDplc = charIDToTypeID ("Dplc");

    desc2.putBoolean (idDplc, true);

    executeAction (idMrgV, desc2, DialogModes.NO);

    Move the active layer for the background of LayerSet 'process '.

    var activeLayer = activeDocument.activeLayer;

    processFolder var = activeDocument.layerSets.getByName ("process")

    activeDocument.activeLayer.moveToEnd (processFolder);

    Now I would like to add a condition to check, whether or not the 'process' layer-set exists, and if not, create it. It should look like this:

    Process Image capture

    V 0.3

    Stamps PEAK Visible (creates a new layer that combines all information visible in the flattened form) and who moves to a 'process' Layer Set.

    Layer is then hidden.

    If the defined layer is not there, it will be created.

    #target photoshop

    app.bringToFront ();

    Check the 'process' layer-Set on the root. Create, where it is not present.

    If (! activeDocument.layerSets.getByName ('process')) {}

    activeDocument.LayerSets.add ();

    activeDocument.LayerSets.name = "process";

    }

    //

    / * {else}

    }*/

    Stamp the visible layers

    var idMrgV = charIDToTypeID ("MrgV");

    var desc2 = new ActionDescriptor();

    var idDplc = charIDToTypeID ("Dplc");

    desc2.putBoolean (idDplc, true);

    executeAction (idMrgV, desc2, DialogModes.NO);

    Move the active layer for the background of LayerSet 'process '.

    var activeLayer = activeDocument.activeLayer;

    processFolder var = activeDocument.layerSets.getByName ("process")

    activeDocument.activeLayer.moveToEnd (processFolder);

    activeDocument.activeLayer.visibility = false;

    The condition seems to be causing the problem, but I have no idea how to solve this problem. If anyone can help?

    OK, here's the script that performs the Act, it requires an additional function to catch what getByName() returns.

    Process Image capture

    V 1.0

    Stamps PEAK Visible (creates a new layer that combines all information visible in the flattened form) and who moves to a 'process' Layer Set.

    Layer is then hidden.

    If the defined layer is not there, it will be created.

    #target photoshop

    app.bringToFront ();

    Check the 'process' layer-Set on the root. Create, where it is not present.

    If (! hasRootLayer ('process')) {}

    var addedLayer = activeDocument.layerSets.add ();

    addedLayer.name = "process";

    }

    Stamp the visible layers

    var idMrgV = charIDToTypeID ("MrgV");

    var desc2 = new ActionDescriptor();

    var idDplc = charIDToTypeID ("Dplc");

    desc2.putBoolean (idDplc, true);

    executeAction (idMrgV, desc2, DialogModes.NO);

    Move the active layer for the background of LayerSet 'process '.

    var activeLayer = activeDocument.activeLayer;

    processFolder var = activeDocument.layerSets.getByName ("process")

    activeDocument.activeLayer.moveToEnd (processFolder);

    activeDocument.activeLayer.visibility = false;

    Function to check if the 'process' layer exists, passes result returned as a Boolean value

    function hasRootLayer (layerName) {}

    var hasProcessLayer = false;

    try {}

    hasProcessLayer = (typeof activeDocument.layerSets.getByName (layerName)! = "undefined");

    } catch (e) {}

    Return hasProcessLayer;

    }

  • Files & folders not visible on the desktop or My Documents

    I use my computer with Windows XP for the first time in a month.  My folders & files I had saved on my desktop are missing.  When I looked in My Documents, those that were also missing.  My entire office profile had been changed to the default «Dell» wallpaper

    When I go to my computer - drive C:Local - Documents and Settings - MyName are all visible under the office folder and the My Documents folder.

    How can I get my computer to where it was?

    you could try running a system via the windows system restore point restore functionality and see if you can restore the computer to a time before that you went on a break
     

    --
    DB·´¯'·.. ¸ ><)))º> --> sent via windows live mail

    .

    "JFMaire" wrote in message news: 3e45113a-bbcd-4554-a0a1-5031804b72f1...

    I use my computer with Windows XP for the first time in a month.  My folders & files I had saved on my desktop are missing.  When I looked in My Documents, those that were also missing.  My entire office profile had been changed to the default «Dell» wallpaper

    When I go to my computer - drive C:Local - Documents and Settings - MyName are all visible under the office folder and the My Documents folder.

    How can I get my computer to where it was?

    DB·´¯'·.. ¸ >-))) º > ·´¯'·.. ¸ >-))) º > share nirvana mann

  • Crash of the agent (?)

    Hello

    I am brand new to Hyperic, and I completed the installation of the server and agent on the same computer (Server Ubuntu 8.04 x 64) in order to test the software and familiarize themselves with the front installation procedure the implementation through our network. Initially, I think that things were going well; However, the agent is running and stops a few moments to be started.

    There are two important messages to log/agent.log:

    2008-05-15 10:21:55, 056 ERROR [main] [VMwareProductPlugin] exec ('/ usr/bin/gcc ' '-shared '' o' ' / home/hyperic/agent-3.2.3/./pdk/work/lib/vmware/vmcontrol64.so' ' / home/hyperic/agent-3.2.3/./pdk/work/lib/vmware/control-only/vmcontrol64.o' '-lcrypto' '-lssl') failed: 1
    2008-05-15 10:22:01, 579 WARN [ScheduleThread] [HttpMethodBase] recoverable caught exception, but MethodRetryHandler.retryMethod () returned false, new throw exception

    In addition, the log/agent.log.startup connected:
    # An unexpected error has been detected by the Machine virtual HotSpot:
    #
    # SIGSEGV (0xb) at pc = 0x00007fb2c0f96884, pid = 18072, tid = 1089280336
    #
    # Java VM: Java hotspot Server VM 64 (mixed mode 1.5.0_12 - b04)
    # Problematic frame:
    # C [libsigar-amd64 - given + 0 x 21884] Java_org_hyperic_sigar_vmware_ConnectParams_create + 0xa4
    #
    A report of errors with more information file is saved as hs_err_pid18072.log
    #
    # If you want to submit a bug report, please visit:
    #   http://Java.Sun.com/webapps/bugreport/crash.jsp

    I'd like to get the agent up and running so I can test the software out - any help is appreciated.

    I'm not familiar with the software, that is I write in this forum, rather than in the bugs forum. Maybe it's a simple problem?

    Hello

    Looks like that the Agent cannot find vmcontrol64.so which is, if I remember correctly, a part of the distribution of the Agent and needed to run the plugin VMWare. But it looks like he's trying to compile the shared object file:

    ("/ usr/bin/gcc" '-shared '' o' ' / home/hyperic/agent-3.2.3/./pdk/work/lib/vmware/vmcontrol64.so' ' / home/hyperic/agent-3.2.3/./pdk/work/lib/vmware/control-only/vmcontrol64.o' '-lcrypto' '-lssl')

    So maybe you have not installed a CCG, OpenSSL development files or the /home/hyperic/agent-3.2.3/./pdk/work/lib/vmware/control-only/vmcontrol64.o file is missing.

    Mirko

  • the agent requirements

    I have installed an agent on a new machine... Agent status seems good... the agent url and download url works agent... grid control accesses the url of the agent...
    control of grid agent is up... but when I enter the credentials for the agent or the host, they do not... the agent and the host take a few minutes to open when I click on them...

    both servers are windows 2008 R2 64 bit
    I know that the server on which the agent is installed has the Server service, workstation service and file sharing is turned off...
    If these are needed by the agent... is there something else on the server which could be disabled and causing the credentials entered in order to not work... (name of user and password has failed)
    the used user ID is a system administrator...

    you use a proxy? This bit here

    2011-11-02 01:09, 159 [EMUI_01_07_45_/console/admin/rep/emdConfig/emdTargetsMain$target=PermitTest.okladot.state.ok.us_3A3872$type=oracle*_emd] ERROR emdConfig.EmdConfigTargetsData storeUploadManagerStatus.1604 - java.io.IOException: cannot establish a proxy connection: 404 not found or unresponsive, errno host: 78

    I had the terrible evil with a proxy on a site, have you configured patches and connections to avoidance for local addresses in the configuration of the patching?

    I had to download windump and winpcap, had run it in a newspaper, try the connection, got an error similar to yours in the emoms but in the log file windump I saw a return of the proxy that neither grid control refusal or emoms log file articulated. Once I've set up patching in the grid, I spent.

  • Error in running the Agent of ODI

    Hi all

    I tried to launch the Agent Scheduler and I got the error below;

    com.sunopsis.tools.core.exception.SnpsRuntimeException: java.sql.SQLException: socket creation error
    at com.sunopsis.dwg.cmd.n.a (n.java)
    at com.sunopsis.a.f.run (f.java)
    at com.sunopsis.dwg.cmd.i.y (i.java)
    at com.sunopsis.dwg.cmd.i.run (i.java)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.sql.SQLException: socket creation error
    at org.hsqldb.jdbc.jdbcUtil.sqlException(jdbcUtil.java:67)
    to org.hsqldb.jdbc.jdbcConnection. < init > (jdbcConnection.java:2451)
    at org.hsqldb.jdbcDriver.getConnection(jdbcDriver.java:188)
    at org.hsqldb.jdbcDriver.connect(jdbcDriver.java:166)
    at com.sunopsis.sql.SnpsConnection.u (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.c (SnpsConnection.java)
    at com.sunopsis.sql.i.run (i.java)
    Caused by:
    java.sql.SQLException: socket creation error
    at org.hsqldb.jdbc.jdbcUtil.sqlException(jdbcUtil.java:67)
    to org.hsqldb.jdbc.jdbcConnection. < init > (jdbcConnection.java:2451)
    at org.hsqldb.jdbcDriver.getConnection(jdbcDriver.java:188)
    at org.hsqldb.jdbcDriver.connect(jdbcDriver.java:166)
    at com.sunopsis.sql.SnpsConnection.u (SnpsConnection.java)
    at com.sunopsis.sql.SnpsConnection.c (SnpsConnection.java)
    at com.sunopsis.sql.i.run (i.java)

    Please help me.

    Thank you
    Randy

    Hi Randy,

    How are you?

    This is because as your ODIPARAMS. BAT is not configured with the repository connection information. Please consult the previous thread and set it up. :)

    Thank you
    G

  • Unable to connect to the Agent to push with my credentials in the project PushCollector 10.1.

    Hi all!

    I am trying to create a client application to push to go with my project that I am creating a customer and am trying to learn how the PushCollector 10.1 functions to do this. I seem to have a problem, however, where the application may not be able to connect to the Agent to push after entering my credentials sent by the Services of Blackberry Push team showing.

    I logged into my account to make sure it is active and it is and have re-joined the AppID and the PPG URL 8 times literally!

    What I read I don't need to change anything in the file bar.xml for the PushCollector, but maybe I missed something.

    Can someone help me please?

    Thanks for your time,

    Rob

    Push requires a real device, so I think you have to find the cause of the problem.

Maybe you are looking for

  • cannot read the sd card. PCI device problem

    PCI\VEN_10EC & DEV_5209 & SUBSYS_166E103C & REV_01PCI\VEN_10EC & DEV_5209 & SUBSYS_166E103CPCI\VEN_10EC & DEV_5209 & CC_FF0000PCI\VEN_10EC & DEV_5209 & CC_FF00 series of HP pavilion g4 laptop my laptop cannot read the sd card

  • M - Audio Keystation 49th, not its entry into Logic Pro 10.2.1

    Don't know what I do wrong here. I've lived all my Logic Pro X settings and I don't understand why there is no sound coming out of my M - Audio Keystation 49th in Logic Pro 10.2.1. Can someone tell me what setting could be the cause of the issue?

  • Can not play music in media center 2004 on Satellite P15-S470

    Hello Last weekend, I upgraded Windows XP Media Center SP1 to SP2 (because MS no longer supports it) on laptop Toshiba Satellite P15-S470 to my father. Tonight, I found that his Media Center 2004 refuses to read audio CDs audio error: "To play music

  • Where to find drivers for Win XP for Portege R400

    I need help. Does not work on Vista - so want to downgrade to Windows XP Home edition.But there are no drivers on the official website of Toshiba for this OS as Vista.I can't find any information on the compatibility of the Toshiba Software (which ru

  • ProSafe GS716T switch register its replacement under warranty?

    Just had a replacement GS716T V3 switch provided under the lifetime warranty. Does anyone know if the replacement should be saved? I tried to register the replacement, but had the classic: "this serial number has already been registered in our system