Change application name dynamically [message #617603] |
Wed, 02 July 2014 04:17 |
Xandot
Messages: 235 Registered: January 2014 Location: India
|
Senior Member |
|
|
Hello,
I have one function that return the version number like "1.2" and version number is populated with the name of application like
when i edit the application so...
********-------------**********
Name - Maintenance_system_1.1
version -release 1.1
*******----------*************
but now i want to change the version number with the help of function ...
----function body-----------
return 1.2;
-------------------
So it'll reflect on Name filed and Version filed of application and home page of app...how can i do it....
Thanks,
Xandot
|
|
|
|
|
Re: Change application name dynamically [message #617721 is a reply to message #617667] |
Thu, 03 July 2014 01:15 |
Xandot
Messages: 235 Registered: January 2014 Location: India
|
Senior Member |
|
|
Function :-
create or replace function get_version return number
as
begin
return 1.2 ;
end;
*************-----------------***********
The above one is the function that used for retrieving the version number and i want to change the application name dynamically
like now my application name is "Maintenance_system_1.1" but i want to change it like "Maintenance_system_<get_version>"
(it means "Maintenance_system_1.2" )
Thanks,
Xandot
[Updated on: Thu, 03 July 2014 01:15] Report message to a moderator
|
|
|
|
|
|
Re: Change application name dynamically [message #617757 is a reply to message #617746] |
Thu, 03 July 2014 06:36 |
Xandot
Messages: 235 Registered: January 2014 Location: India
|
Senior Member |
|
|
Right now my application name is "Maintenance_system_1.1" , here 1.1 shows the version number but now the application has altered so the version number should be "1.2"
and the application name should be "Maintenance_system_1.2".
In future if any other alteration will happen then the version number should increase by 1.3 ...for the version number i have created the function as per the above post
that will reflect the new version number in all regions of my application except the name of application name..
So how can i change my application name dynamically like "Maintenance_system_1.1" ==To=>>> "Maintenance_system_1.2" ....
Thanks,
Xandot
[Updated on: Thu, 03 July 2014 06:37] Report message to a moderator
|
|
|
Re: Change application name dynamically [message #617759 is a reply to message #617757] |
Thu, 03 July 2014 07:00 |
Lalit Kumar B
Messages: 3174 Registered: May 2013 Location: World Wide on the Web
|
Senior Member |
|
|
How is the "application name alongwith version appended to it" is being populated now? To make it change dynamically with version, you need to pass the version number from whatever source it is coming from.
Any when you say that the query which I gave did not work, what exactly happened?
|
|
|
|
|
|