Page 1 of 1

New to mobile app development - libl issue

Posted: Thu Nov 10, 2016 10:56 am
by molanders
I just attended PLUS 2016 in Columbus and wanted to try out the mobile app development. It seems as if my app cannot access the programs unless I move them to qgpl, which of course, is not our practice. I found this document http://www.profoundlogic.com/docs/displ ... List+Setup and added my user to the file PROFOUNDUI/PUI0001204 and PROFOUNDUI/PUI0001203. Am I in the right place to get LIBL working?

Re: New to mobile app development - libl issue

Posted: Thu Nov 10, 2016 12:18 pm
by Scott Klement
Are you able to use a CL program that sets the library list before calling the main program?

Set your initial mobile program to a CL program that does something like this:

Code: Select all

PGM
    ADDLIBLE LIB1 
    MONMSG CPF0000
     
    ADDLIBLE LIB2
    MONMSG CPF0000
    
    CALL PGM(your-rpg-program)
ENDPGM
Does that work for you?

Re: New to mobile app development - libl issue

Posted: Thu Nov 10, 2016 4:54 pm
by molanders
I will try this and let you know. Thank you