Skip to main content Skip to complementary content
Close announcements banner

Configuring the tJavaRow component

Procedure

  1. Connect tRESTRequest to tJavaRow using the Row > UserInfo connection.
  2. Double-click tJavaRow in the design workspace to display its Basic settings view.
  3. Enter the following code in the Code box to convert the message into Document type and print it in the console.
    String  result = new String(input_row.id,0,input_row.id.length);
    
    routines.system.Document doc = new routines.system.Document();
    
    doc.setDocument(org.dom4j.DocumentHelper.parseText(result));
    
    output_row.id = doc;
    
    System.out.println(result);

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!