BES 10 replacement for user defined rules of politics

Our application for BES5 used the rules defined by the user to set default values for the application specific user.  From my reading, I can't find the equivalent of the user policy rules set in BES 10.

Are there alternative ways to create, manage and distribute managed centrally by default for our application on the BES10.x.  By default include the HTTP port used by the application, the port of push and many faults of field level.

Looking forward to you suggestions.

Welcome on the support forums.

It's a very good question. One that I have been unable to solve since the launch of BB10, unfortunately.
I discussed the subject with the staff of BlackBerry of the Conference and the Forum (can't find jobs even though I think it was on the forum server, but who can not find as well...), but nothing helped.

I tested several other ideas, such as the use of a configuration file attached to an e-mail with invocation etc, but for an application to the roll of 1000 users + these things are really not very good.
I still work related to this free, if there is no possible solution, I would be interested.

Tags: BlackBerry Developers

Similar Questions

  • How to use the negation in the user defined rules?

    Hello

    Can you please show me an example using negation in the rule set by the user? I created a rule like below (the rule says that if a patient has a fever problem and not having penicillin hypersensitivity, then recommend medication1):

    INSERT INTO mdsys.semr_myMedicineRB VALUES ('rule1',

    ' (? p RDF: type: Patient) (? p: present? c1) (? c1 RDF: type: fever) (? c2 RDF: type: Penicillin_Hypersensitivity)',

    "(NOT_EXISTS (p: present c2))',

    ' (? p: recommendation: medication1)',

    SEM_ALIASES (SEM_ALIAS (",'http://www.example/medicine#')));

    The rule correctly applied in the modules. However, I cannot move to the phase of creation entailment and got errors:

    ORA-29532: Java call terminated by eception Java exception: java.sql.SQLException: parameter IN or OUT to missing index: 1

    ORA-06512: at the 'MDSYS. SDO_SEM_INF_INTERNAL', line 16453

    ORA-06512: at the 'MDSYS. SDO_SEM_INFERENCE', line 302

    ORA-06512: at the 'MDSYS. SDO_SEM_INFERENCE', line 352

    ORA-06512: at the 'MDSYS. RDF_APIS', line 118

    ORA-06512: at line 2

    29532 00000 - "Java call terminated by eception Java exception: %s."

    * Cause: A mistake or a Java exception has been reported and could not be

    solved by Java code.

    * Action: Modify Java code, if this behavior is not expected.

    According to the post primitives(noValue,remove) integrated for user defined rules, it seems that negation is not supported in rules defined by the user. Can you please advice how to implement the negation in the rules defined by the user?  Thank you very much in advance.

    Hong

    Salvation Hong,

    Negation is not supported in rules defined by the user. If you need a work-around, please follow the suggestion in the post you referenced.

    If you use Oracle Database Release 12 c, user-defined inference can certainly manage negation.

    It will be useful,

    Zhe Wu

  • question of the decidability of oralce user defined rules

    Hello

    Accoring to some posts online (http://weblog.clarkparsia.com/2007/08/27/understanding-swrl-part-2-dl-safety/ http://protege.cim3.net/cgi-bin/wiki.pl?SWRLLanguageFAQ), in general, SWRL is undecidable. However, we can add some restrictions to SWRL to regain the decidability: Variables in DL security rules bind only to those explicitly named in the ontology. Add this restriction is sufficient to establish decidable SWRL rules. So, I wonder how the rules defined by the user Oracle reached the decidability. SWRL does adpot the simliar way? Thank you very much in advance.

    Hong

    Salvation Hong,

    It is a good question. Yes, we have adopted a similar idea. Chaining before engine database Oracle database are the existing resources of RDF known variables in rules of deduction. We will not generate a new RDF resource that does not exist already in the ontologies. This is very important because it ensures that the inference process will be completed in a period of time.

    The foregoing does not apply to the inference (a new 12.1) user-defined well.

    Thank you

    Zhe

  • Addition of registered symbols and TM for user-defined Variables

    Is it possible to add nurses or symbols marks to the value of the User Defined variable? All our help files are single originating in 2 or more brands of products, so I'm excited about this new feature RH7 (I upgraded x 5). But if I can't add these symbols, then this function is also useful for me as the new logo of HR.

    Hi Eilan

    I just tried a unicode character and it seems to work both webhelp and CHMS very well.

    I went to start. Run and enter "charmap". Selected a symbol and it is entered as the value of the variable. In the variable dialog box, it appeared like a square, but HR, it displays correctly in the WYSIWYG editor, preview, webhelp and in a CHM.

    The fact that the symbol is not correctly displayed in the list of variables can be overcome by a skilful titration of the variable.

    And what is the problem with the logo? :-)

  • Fields for users defined by the user

    I am currently using IOM 11.1.1.3.0

    I created several UDF files via the "User Configuration" tool in the advanced console. I see these UDF every time I create a user, but later, when I select the user to edit their information with the account Xelsysadm, none of them are present (despite them being visible). These areas are important, because two of them are related to their date of birth, and the third is filled with information in the form. I go on creating these files UDF the wrong way? Why can I not see them after their creation?

    In addition, you can't have a UDF required unless all users have information in this area? Y at - it a faster way to load a default value, makes a visit at a time.

    Published by: 806409 on June 20, 2011 06:25

    You can use weblogicExportMetadata.sh under /server/bin.

    Before running the command, you must set the values in weblogic.properties located in the same path.

    Follow the links below for more details

    http://download.Oracle.com/docs/CD/E14571_01/doc.1111/e14309/utils.htm

    http://ICAM.securegov.org/wiki/wiki.jsp?page=Oim_authorization_notes

  • PROGRAMMER (USER) DEFINED RECORDS

    Hi all;


    I do self - study of PL/SQL concepts for user-defined folders.

    I get the error.


    SQL > desc emp;

    Name                                      Null?    Type

    ----------------------------------------- -------- ----------------------------

    EID                                               NUMBER

    ENAME VARCHAR2 (15)

    VARCHAR2 (10) EQUAL

    ESALARY VARCHAR2 (15)

    ECITY VARCHAR2 (15)


    SQL > select count (*) from emp;

    COUNT (*)

    2


    PROGRAMMER (USER) DEFINED RECORDS


    SQL > DECLARE

    2 C_cr CURSOR IS

    3. Select ename, equality, esalary, eid, ecity emp;

    4 EMP_DETAILS RECORD TYPE IS

    5 (e_id emp.eid%TYPE,

    6 e_name emp.ename%TYPE,

    7 e_qual emp.equal%TYPE,

    8 e_salary emp.esalary%TYPE,

    e_city 9 emp.ecity%TYPE);

    10 emp_detail e1;

    BEGIN 11

    12 C_cr OPEN;

    LOOP 13

    14 C_cr FETCH in emp_detail;

    15 WHEN OUT C_cr % NOTFOUND;

    16 DBMS_OUTPUT. Put_line (emp_detail.e_id | emp_detail.e_name | emp_detail.e_q ual | emp_detail.e_salary | emp_detail.ecity);

    17 END OF LOOP;

    18 DBMS_OUTPUT. Put_line (C_cr % ROWCAMOUNT);

    19 CLOSE C_cr;

    20 END;

    21.

    emp_detail e1;

    *

    ERROR on line 10:

    ORA-06550: line 10, column 12:

    PLS-00201: identifier "E1" must be declared.

    ORA-06550: line 10, column 12:

    PL/SQL: Ignored Element

    ORA-06550: line 14, column 17:

    PLS-00320: the declaration of the type of the expression is incomplete or

    Malformed

    ORA-06550: line 14, column 1:

    PL/SQL: SQL statement ignored

    ORA-06550: line 16, column 22:

    PLS-00320: the declaration of the type of the expression is incomplete or

    Malformed

    ORA-06550: line 16, column 1:

    PL/SQL: Statement ignored



    SQL > select * from v version $;

    BANNER

    ----------------------------------------------------------------

    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod

    PL/SQL Release 10.2.0.1.0 - Production

    CORE 10.2.0.1.0 Production

    AMT for Linux: Version 10.2.0.1.0 - Production

    NLSRTL Version 10.2.0.1.0 - Production

    Thank you all;

    MY QUESTION IS: type_name, record_type must be the same?

    It is not necessary to be the same. Once you create a record type, then it might be assigned to different variables, such as:

    SQL > DECLARE

    2 C_cr CURSOR IS

    3. Select ename, equality, esalary, eid, ecity emp;

    4 TYPE EMP_DETAILS IS RECORD

    5 (e_id emp.eid%TYPE,

    6 e_name emp.ename%TYPE,

    7 e_qual emp.equal%TYPE,

    8 e_salary emp.esalary%TYPE,

    e_city 9 emp.ecity%TYPE);

    10 emp_detail EMP_DETAILS;

    11 emp_detail_2 EMP_DETAILS;

    12 emp_detail_3 EMP_DETAILS;

    13 l_id NUMBER;


    Now, he becomes similar to a variable_type of variable_name in the declaration section. Emp_detail or emp_detail_2 is a variable of type EMP_DETAILS, like the variable l_id that can hold values of type numbers.

  • any user defined function in the rule set by the user

    Hello

    I wonder if I can use a function defined by the user in a rule set by the user in oracle sem... I've seen examples of user defined function the used in sparql query filter clause in this guide to dev... However, I don't know if I can define a function in oracle database SEM. and use it in the body rule or the head. For example, I want to define a function of the length that allow to calculate the difference between two dates.  So, I want to set a rule as follows: event1: d1 and event1 has_start_date: has_end_date d2 and duration (24, d1, d2) then event1:date_satisfiable 'yes '. Oracle supports this type of rule? Thank you very much.

    Hong

    Salvation Hong,

    User-defined in 12 c inference can be a good choice for your condition. Please see the following document.

    Defined by the user and querying inference

    Thank you

    Zhe Wu

  • How to remove (for a user), a registered user defined IR

    Hi dev-team.

    Asked me to explain to an end user how to remove an IR defined by the registered user Hmm...

    Honestly I've never lost any thoughts about this issue.

    I just assumed that it's as easy (for a user), such as the creation and registration of a user defined IR

    Now, I had realized that it was a false assumption...

    Qustion: What will be possible in a future version (5.0, for example)

    Concerning

    André

    If you have a report to your end user option, and if he or she created the report they can remove the report from their car.

    1 Select the report of IR drop down, then click on the + in the research of IR bar on the right side you get on a click of an X that then click on apply the user's report will be deleted.

  • Add a pattern created for a user-defined Swatch Library?

    This has been driving me crazy and I desperately need help!

    I created a template for my class of mode. I dragged to the swatch palette. I know to use it on another document, I need to register in a swatch library. I tried to add to my library of nuances 'Fashion' to keep it with the other model I and the colors that I saved. It won't let me. I can't open the document library of swatch in the folder of the user, as clarified by troubleshooting, because the model I created is available on the document in which it was created, and is therefore not an option of swatch in the core library.

    So, how can I add a new shade of pattern to an existing library defined by the user if he won't let me hang out with a palette of user-defined nuance?

    Open the file in illustrator swatch library defined by the user. Add the nuance of pattern there. Close and save the user-defined Swatch Library.

    In the future, library of user-defined shades will result in the shade of motive being present.

  • Use of user defined function in mathscript containing a structure

    Hi, I am a novice user of LabView MathScript module,

    I have the following problem when integrating my code MATLAB, LabView, for HMM: in my program, I tried to call a MATLAB called "mixgaussinit.m" user-defined function, it shows this error...

    "

    I just noticed that these files appear to be copyrighted. My first question is do you have author permissions to post them in a public forum? If this isn't the case, then you can remove them. That being said, I have reviewed the code and it seems easy enough to work around your problems (provided that you have the copyright permissions). How to bypass the problems is to replace the fields of the struct with variables. There is of course allows you to change some definitions of functions for input and output the necessary variables which I think was the best 5 variables. You will also need to redo the code that uses a table of error checking cell. In total, I estimated about 30 minutes of work. I would have given you work around these files had not been protected by copyright. So, unfortunately, you will need to implement the work around you.

  • Downloadable ACLs for users?

    Hi all

    5.4 ACS, I need ACL customized for users.

    My scenario:

    There is a way to use some "downloadable ACL" profile of permission but I want to set specific ACLs for some exceptions. For example: the user A and user B obtain permission profile 'X '. But user B is not allowed to access a host. This 'refusal rule' I will configure with custom in the internal user store attributes.

    Is this possible? How can I implement this rule?

    Best regards

    Stefan

    Hello

    You can do this by following these steps:

    1. define a user attribute of Dictionary defined under the Administration of the system > dictionary > identity > internal users call him what you want and make sure that the value is a string

    2. create the DACL in the objects of the Authority appointed under section of the political elements

    3. under the user account you will see now one filed for the dictionary name you call in step 1, make sure that the domain is the DACL, that you created in step 2

    4. create your dynamic authorization under "common tasks" defined profile as the decline of the low DACL select internal users and set the value to the attribute that you created in step 1.

    5 card authorization policy to the access policy using the conditions that will give you these results.

    6 test and you should have what you are looking for.

    Thank you

    Tarik Admani
    * Please note the useful messages *.

  • How to operate the user defined table ddl transformations?

    How can I run (Oracle Data Modeller 4.1.0.873) my transformations of the user-defined table ddl (for the creation or - map source files). (In tools-> rules of design and Transformations-> Table DDL transform his only Test and debugging for an entity)

    Is it possible to have a new button in the toolbar to start my generations DDL?

    Hello

    There is a brief description in the file sqldeveloperdatamodelerscripting.docx located in the directory datamodeler\datamodeler\xmlmetadata\doc of your DM 4.1 instalation.

    Somehow you can read also here Oracle SQL Developer Data Modeler 4.1 user - defined DDL generation using transformation scripts

    You can use the script for the purposes of testing only, otherwise the output of this script will be included in the DDL if script 'Active' selected value and ago marked to be included in this generation of tables

    Philippe

  • User-defined function removes the expression hooks

    Trying to convert this column in a user function expression, however when I apply the function to the user hooks literally disappear.

    1 REGEXP_REPLACE (SRC_IO_PHONES_A.PHONE, ' ({: digit:{3})\.(:digit:{3})\.(:digit:{4})' 1 (\1)-\2-\3'),)

    2 REGEXP_REPLACE (SRC_IO_PHONES_A.PHONE, ' ([[: digit:]] {3})------.) () [[: digit:]] {3}). ([[: digit:]] {4})' 1 (\1)-\2-\3')


    These lines come from the same mapping. One implements the user-defined function and the second line is with I plug the code into the target Expression field.


    Any thoughts on why this is?


    Thank you

    So I thought to it thanks to a post of @oraclebase.  Another friend of mine has indicated that user in ODI functions develops a sort of pseudo-code and it is not really passing commands to the database.  Anyway, my research turned to substitute for the construction of all [: digit:].  This resulted in me find the above post where \d = [0-9].  By replacing all the scoring by \d hooks, the function worked.

  • Extracts & user defined Variables

    After ~ 5 years not working not with any what HAT, I started a new post on 28/03/2016 and put back the trial HR 2015 a spin. I'm very excited by what I see and were able to do so far.

    I have 3 'entities' to write and I created 3 pages, one page per entity.

    Each of these presentation pages, I have this first line:

    |

    This section describes how to enter and manage [entity].

    |

    I set each [entity] as a user-defined variable. Each page with this sentence I hard-coded and added a reference to the user defined Variable and then produced output. Works great.

    Now, I'm going 'down' a level. What I want to know is how to

    |

    "This section describes how enter and manage."

    |

    be a code snippet. I want it to be an excerpt because when I write a sentence better, I don't have to make the same change on each of these presentation pages. Finally, there are 19 pages of presentation.


    Anyone who structure their content like this?


    What I want to avoid doing several manual changes. For example, if the following examples have been in a RoboHelp project, on https://support.assessment.pearson.com/x/N4Dy, there is this sentence:


    This section shows you how to manage user accounts.


    On this page - support to manage test paper - next to PearsonAccess online User Guide - Pearson Assessment - it is this sentence:


    This section covers all the unique aspects of the test paper.


    What I'm trying to do, is to have an extract which is defined as:


    This section tells you how to


    and refer to it on both pages.

    On the first page, it looks like

    from <>this section tells you how to< / endSnippet >

    user accounts < beginUserDefinedVariable >< / endUserDefinedVariable >.

    Then on the second page, I would say this:

    extract < code > This section tells you how to < / endSnippet >

    < beginUserDefinedVariable > manage paper test < / endUserDefinedVariable >.

    |

    The reason why I want it as a snippet of code is because I don't want to have to maintain "this section tells you how to" text hardcoded on each of these presentation pages. I would like to take advantage of the functionality of content reuse to avoid a bunch of copy / paste or even find / replace.

    Thanks for any help!

    Paul Hanson

    RoboHelp MVP of looonnngggg a long time ago...

    But what you might want to consider, is another variable to contain the desired text in the code snippet. This could be inserted inline. Then update you only in the variable.

    Just thinking out loud a bit.

    See you soon... Rick

  • vSphere 5.5 user defined storage capacity

    Is it possible to create user-defined in vSphere 5.5 storage capacity?

    I am trying to create a storage policy, and when I get to the section "value 1", the only option for capacity rule is 'None'. I remember in 5.0 in the VI Client, there is an option to 'Manage storage capacities' and create a user-defined function. Is it an option to 5.5 in the web client?

    Thank you

    Scott

    This should help you with that

    http://everythingshouldbevirtual.com/vSphere-5-5-storage-profiles-now-storage-policies

Maybe you are looking for