Are there limits to PeopleCode's capabilities? If so, how can you overcome them? Watch as Jim Marion shares a simple "Hello World" example of extending PeopleCode with Java. Find out more at https://jsmpros.com!
Here is the code referenced in this episode:
Local JavaObject &sz = CreateJavaObject("java.lang.String", "Hello World!");
Local JavaObject &jFileClass = GetJavaClass("java.io.File");
Local JavaObject &jFile = &jFileClass.createTempFile("jsm", ".tmp");
Local string &tempFileName = &jFile.toString();
MessageBox(0, "", 0, 0, "The temp file name is: %1", &tempFileName);
Are you interested in learning more about advanced #PeopleSoft #PeopleCode topics? Check out our Application Classes course (https://www.jsmpros.com/courses/app-c...) to learn more about object-oriented PeopleCode.
Jim Marion is an #OracleAce Pro ♠, author of several PeopleTools books, blogger, public speaker, and PeopleTools instructor. Connect with Jim on LinkedIn at / jimjmarion .