LAE

Welcome to the LAE community!  Please feel free to start a discussion in the discussion tab or join in a conversation.

Discussions

Members

Resources

Events

 View Only
  • 1.  Integrate existing node function within java node

    Employee
    Posted 12-30-2015 03:36

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Alan

    Hi all. Does anyone know whether it is possible to integrate or use a existing node within the java node? If yes, how do we do it?
    Examples. Within a for loop in a Java node, create a single file for each record using "Output Excel" function

    I am using LAE 5.0 by the way. Thanks in advance for any help.


  • 2.  RE: Integrate existing node function within java node

    Employee
    Posted 01-03-2016 18:40

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Alan

    Hi everyone, anyone have any idea whether its possible? If not, does anyone know how to create a looping output?
    Example, output into separate file by dept code without having to explicitly create a filter+output for each dept code.
    Input file
    DeptCode,Name
    1,A
    1,B
    2,C

    Output to
    File 1 (1,A; 1,B)
    File 2 (2,C)


  • 3.  RE: Integrate existing node function within java node

    Employee
    Posted 01-03-2016 21:49

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: ryeh

    So in 5.1, there are looping nodes such that you could run a 'Output Excel' node per record. My favorite implementation is Ernest's implementation of 'Do Once for Each Record' example: https://infogix.zendesk.com/hc/en-us/community/posts/360051778613

    But since you're in 5.0, I think the easiest way would be to do with the 'Execute BRX' node. Take a look at: https://infogix.zendesk.com/hc/en-us/community/posts/360051796333


  • 4.  RE: Integrate existing node function within java node

    Employee
    Posted 01-04-2016 04:08

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: Alan

    Originally posted by: ryeh
    					

    So in 5.1, there are looping nodes such that you could run a 'Output Excel' node per record. My favorite implementation is Ernest's implementation of 'Do Once for Each Record' example: https://infogix.zendesk.com/hc/en-us/community/posts/360051778613

    But since you're in 5.0, I think the easiest way would be to do with the 'Execute BRX' node. Take a look at: https://infogix.zendesk.com/hc/en-us/community/posts/360051796333
    Hi ryeh, thanks for the advice! Got the solution i need using 'Execute BRX'. Hopefully it will work as well in Automation web app


  • 5.  RE: Integrate existing node function within java node

    Employee
    Posted 01-04-2016 07:37

    Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.

    Originally posted by: stonysmith

    The Execute BRX solution is definitely one choice. When preparing for Automation, you will need to move the child BRX to the server (Not a LXA)
    The parent graph will be an LXA, but the child graph will need to be a BRX.

    You also have the option of creating a custom Java node. Its doable, but will be a good bit of work.