Skip to main content Skip to complementary content

Configuring the tSetGlobalVar component

Procedure

  1. Double-click the tSetGlobalVar component to display its Basic settings view.
  2. Click the plus button to add a line in the Variables table, and fill the Key and Value fields with K1 and 20 respectively.
  3. Then double-click the tJava component to display its Basic settings view.
  4. In the Code area, type in the following lines:
    String foo = "bar";
    String K1;
    String Result = "The value is:";
    
    Result = Result + globalMap.get("K1");
    
    System.out.println(Result);
    
    
    In this use case, we use the Result variable. To access the global variable list, press Ctrl + Space bar on your keyboard and select the relevant global parameter.

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!