Peoplesoft Peoplecode Message Catalog Error - Find Peoplecode where a message/error is used
Peoplesoft Peoplecode Message Catalog Message/Error finding query: Many of us see that some error message is coming in PeopleSoft online pages, and then we need to do the reverse engineering to get that exact code from where the error is coming. So that we can see the exact reason to find the best solution for the problem. Below query is designed to solve the same purpose. Copy and run the same... It will ask for Message Set and Message Number, which you can see from your error message. With Srch As ( Select MsgSet_HexCode, MsgNbr_HexCode, Substr(MsgSet_HexCode, -2)|| SubStr(MsgSet_HexCode,1,2) MsgSet_HexSrch, Substr(MsgNbr_HexCode, -2)|| SubStr(MsgNbr_HexCode,1,2) MsgNbr_HexSrch, Nvl2(MsgSet_HexCode,'500000'||Substr(MsgSet_HexCode, -2)|| SubStr(MsgSet_HexCode,1,2)||Lpad('3', 30, '0'),Null) || ...