Question:
How to find Oracle Apps form (.fmb / .fmx) version?
Answer:
1. Goto the respective Product TOP (Eg. FND_TOP, AP_TOP etc.)
2. Navigate to forms/US
3. Use following command. Replace <form_name> with respective form name
For example, if i want the form version of FNDRSRUN.fmx, then
$ strings -a FNDRSRUN.fmx | grep Header
@$Header: FNDRSRUN.fmb 115.130 2004/09/22 07:13 jtoruno ship
How to find Oracle Apps form (.fmb / .fmx) version?
Answer:
1. Goto the respective Product TOP (Eg. FND_TOP, AP_TOP etc.)
2. Navigate to forms/US
3. Use following command. Replace <form_name> with respective form name
strings -a <form_name> | grep Header
For example, if i want the form version of FNDRSRUN.fmx, then
$ cd $FND_TOP/forms/US
@$Header: FNDRSRUN.fmb 115.130 2004/09/22 07:13 jtoruno ship
No comments:
Post a Comment