raj04535's Profile
Agile User
51
Points

Questions
0

Answers
7

  • Agile User Asked on July 11, 2022 in Product Collaboration.

    Iterator attItr = change.getTable(ItemConstants.TABLE_ATTACHMENTS).iterator();

    while (attItr.hasNext()) {
    IRow row = (IRow) attItr.next();

    String fileName = row.getValue(new Integer(“1046”)).toString();

    File file = new File(MAIN_PATH+fileName);

    System.out.println(“Downloading “+fileName+” from “+change.getName());

    InputStream stream = ((IAttachmentFile) row).getFile();

    try (FileOutputStream outputStream = new FileOutputStream(file, false)) {
    int read;
    byte[] bytes = new byte[8192];
    while ((read = stream.read(bytes)) != -1) {
    outputStream.write(bytes, 0, read);
    }
    }
    }

    • 1870 views
    • 1 answers
    • 0 votes
  • Agile User Asked on January 1, 2021 in Product Collaboration.

    Internet explorer have known issues, they are across orgs, seems like only some version of IE are suited for Agile. drop a SR with oracle. The issue is unique to the browser.

    • 995 views
    • 1 answers
    • 0 votes
  • Agile User Asked on January 1, 2021 in Webservices.

    those are called stubs, check for those in the path

     

    <<version>>_Java_Webservice_Samples\JavaWebserviceSamples\build\built

    for some reason I couldn’t upload the screen shot those will be in ws_stubs.jar

     

    -Raj M

    This answer accepted by Sabarish. on January 3, 2021 Earned 15 points.

    • 989 views
    • 1 answers
    • 0 votes
  • Agile User Asked on January 1, 2021 in Product Collaboration.

    A simple px will do, hardly 2 hrs of coding and configuration.

     

    -Raj M

    • 901 views
    • 3 answers
    • 0 votes
  • Agile User Asked on December 3, 2020 in IT and Networking.

    what is your java version? depending on java version I can suggest you the script changes that you may need to run high volumes in libsync.

     

     

    After multiple issues faced by perception software, at the search engine company we wrote our own lib sync which allowed us to customize the data when needed.

    • 3516 views
    • 2 answers
    • 0 votes
  • Recently upgraded from 9.3.1.1 to 9.3.6.10 with out any issues, we done some test run on the lower environments for a span of 2-3 months, once we resolved all the issues we went live with prod. Though we didn’t go to https yet.

    • 1590 views
    • 5 answers
    • 0 votes
  • Agile User Asked on June 10, 2020 in Agile PLM (v9).

    There are multiple work arounds,

     

    1. export the results from the search query, writhe sdk to update the values as desired, much simpler way is to write a agile query and update the data in sdk itself.
    2. if you are aware of how database tables are organized in the backend, you can you simple sql statements.
    • 943 views
    • 1 answers
    • 0 votes