I am working in PB 11. I inherited this project and I believe that this has been around for over a decade.
I recently created a new screen that needs to launch a window that uses an object named ws_srvc_rate_info.
The object [ ws_srvc_rate_info ] is a mystery. I cannot locate the definition for this via PB Search. I am not sure what type it is, but I am guessing that it is some sort of structure. It gets passed to a window and holds parameters that get used by the window.
I am getting the following compile error
[ illegal data type: ws_srvc_rate_info ]
on the line of code in my new window's Instance Variable's section where I declare an instance of this object as follows: private ws_srvc_rate_info istr_srvc_rate_info
My code was copied/pasted from another window that is similar.
I am trying to find the definition / original declaration of this object.
I have tried a Search of the entire project and the only results that are returened are 2 other declarations like the one that I describe above.
caregiver.pbl(w_sh_fc_srvc_auth).w_sh_fc_srvc_auth: private ws_srvc_rate_info istr_srvc_rate_info
track1_common.pbl(w_sh_srvc_auth).w_sh_srvc_auth: private ws_srvc_rate_info istr_srvc_rate_info
I appreciate any assistance with how to
1) find the definition for this object
2) fix the compile error
I recently created a new screen that needs to launch a window that uses an object named ws_srvc_rate_info.
The object [ ws_srvc_rate_info ] is a mystery. I cannot locate the definition for this via PB Search. I am not sure what type it is, but I am guessing that it is some sort of structure. It gets passed to a window and holds parameters that get used by the window.
I am getting the following compile error
[ illegal data type: ws_srvc_rate_info ]
on the line of code in my new window's Instance Variable's section where I declare an instance of this object as follows: private ws_srvc_rate_info istr_srvc_rate_info
My code was copied/pasted from another window that is similar.
I am trying to find the definition / original declaration of this object.
I have tried a Search of the entire project and the only results that are returened are 2 other declarations like the one that I describe above.
caregiver.pbl(w_sh_fc_srvc_auth).w_sh_fc_srvc_auth: private ws_srvc_rate_info istr_srvc_rate_info
track1_common.pbl(w_sh_srvc_auth).w_sh_srvc_auth: private ws_srvc_rate_info istr_srvc_rate_info
I appreciate any assistance with how to
1) find the definition for this object
2) fix the compile error