EGL Development User Group

EGL Development User Group

EGL Development User Group

The EGL Development User Group is dedicated to sharing news, knowledge, and insights regarding the EGL language and Business Developer product. Consisting of IBMers, HCL, and users, this community collaborates to advance the EGL ecosystem.

 View Only

EGL code assistant 

22 hours ago

Hello RBD/EGL users,

The engineering team is working on an EGL code assistant, which can provide EGL code in reply for English prompts. A sample is below:

EGL program that parses a JSON string into a record and converts it to XML

//egl program that you get in response is below:

program json type BasicProgram{}
function main()
    rec MyRecordPart;
    serviceLib.convertFromJSON("{ \"EmpNo\": 10, \"LastName\":\"Smith\"}", rec);
    SysLib.writeStdout (XMLLib.convertToXML(rec));
end
end

record MyRecordPart type BasicRecord
    EmpNo int;
    FirstName string?;
    LastName string;
end

My question:

Where would you want to see this feature?

As a separate UI in RBD, or to be invoked when a keyboard shortcut is pressed inside of the EGL editor?

Thank you

Vatsala

Engineering and support leader for RBD

Statistics
0 Favorited
2 Views
0 Files
0 Shares
0 Downloads