Kalyani's Profile
Agile User
58
Points

Questions
17

Answers
6

    • 1985 views
    • 3 answers
    • 0 votes
  • What all list of files are there in agile application on which i will to make changes

    • 1461 views
    • 3 answers
    • 0 votes
  • Agile User Asked on May 18, 2017 in Other APIs.

    Hi all,
    I have retrieved report object as mentioned above but need to execute it using agile SDK
    can you please help me out to do so.
    Thanks in advance

    • 2228 views
    • 3 answers
    • 0 votes
  • Agile User Asked on August 1, 2016 in Other APIs.

    Hi Ameansap,

    Yes,we can read privileges using SDK ,Please Refer below piece of code :

    IAdmin admin = session.getAdminInstance();
    INode node = admin.getNode(“Privileges”);
    System.out.println(node.getChildNodes());//get all privileges
    INode node1 = (INode) node.getChild(“Create Customers”);//Specify name of your privilege
    IProperty[] props = (IProperty[]) node1.getProperties();
    for (int i = 0; i < props.length; i++)// loop to check properties of privileges
    {
    String propname= props[i].getName();
    System.out.println(“Name : ” + propname);
    Object value = props[i].getValue();
    System.out.println(“Value : ” + value);

    }
    This would help you to read privileges.Let me know if you have any queries.
    Thanks,
    Kalyani

    • 1863 views
    • 3 answers
    • 0 votes
  • Agile User Asked on July 28, 2016 in Other APIs.

    Hi Brian F,

    Please refer the below code to Disable an Event Subscriber via SDK

    IAdmin admin = session.getAdminInstance();
    INode node = admin.getNode(“EventSubscribers”);

    INode subnode = (INode) node.getChild(“test subscriber”);//Your event subscriber name
    IProperty[] props = (IProperty[])subnode.getProperties();
    for (int i = 0; i < props.length; i++)
    {
    String propname= props[i].getName();
    System.out.println(“Name : ” + propname);
    Object value = props[i].getValue();
    System.out.println(“Value : ” + value);
    if(propname.equalsIgnoreCase(“Enabled”))
    {
    props[i].setValue(“No”);
    }
    }
    This would help you to disable subscriber .
    let me know for any queries.

    Thanks,
    Kalyani

    • 1824 views
    • 2 answers
    • 0 votes
  • Agile User Asked on July 26, 2016 in IT and Networking.

    In Java Client – Go to user’s Preference Tab->Set thumbnail as (ON).Next step go to classes from admin tab select the object on which you are adding thumbnail ->go to cover page -> set thumbnail as visible (yes)
    Note that the object on which you adding thumbnail must have Read,Modify,Discovery priviledge.

    • 2081 views
    • 4 answers
    • 0 votes