DBA Data[Home] [Help]

PACKAGE: APPS.JTF_DBSTRING_UTILS

Source


1 package JTF_DBSTRING_UTILS AUTHID CURRENT_USER as
2 /* $Header: JTFSTRGS.pls 115.5 2002/02/14 12:09:26 pkm ship     $ */
3 
4 -- THIS PACKAGE MUST BE KEPT IN SYNCH WITH ITS CLIENT EQUIVALENT
5 
6 maxString  varchar2(32767);
7 
8 -----------------------------------------------------------------------------
9 -- Description:
10 --
11 -- Get the mnemomic character in a given string.
12 --
13 -- @param label the string to parse.
14 -- @return the mnemonic access key, null if there is none.
15 -----------------------------------------------------------------------------
16 function getMnemonicChar(label in varchar2) return varchar2;
17 
18 -----------------------------------------------------------------------------
19 -- Description:
20 --
21 -- Strip the mnemonic from a given string.
22 --
23 -- @param label the string to parse.
24 -- @return the strippped string (without the ampersand).
25 -----------------------------------------------------------------------------
26 function stripMnemonic(label in varchar2) return varchar2;
27 
28 function getLineFeed   return varchar2;
29 function getNullString return varchar2;
30 
31 
32 -----------------------------------------------------------------------------
33 -- Description:
34 --
35 -- Returns the short string representation for a boolean value.
36 --
37 -- Notes:
38 --
39 -- This function must stay in synch with the boolean representation as defined
40 -- in oracle.apps.jtf.util.DelimitedStringInput and
41 --    oracle.apps.jtf.util.DelimitedStringOutput
42 --
43 -- @param thisBoolean The boolean value.
44 -- @return true returns 'T', false returns 'F'
45 -----------------------------------------------------------------------------
46 function getBooleanString(thisBoolean in boolean) return varchar2;
47 -----------------------------------------------------------------------------
48 -- Description:
49 --
50 -- Returns the boolean value for the short string representation of the same.
51 --
52 -- Notes:
53 --
54 -- This function must stay in synch with the boolean representation as defined
55 -- in oracle.apps.jtf.util.DelimitedStringInput and
56 --    oracle.apps.jtf.util.DelimitedStringOutput
57 --
58 -- @param thisBoolean The boolean value.
59 -- @return 'T' return true, 'F' returns false
60 -----------------------------------------------------------------------------
61 function getBoolean(thisBoolean in varchar2) return boolean;
62 
63 function getMaxStringLength return integer;
64 
65 function getCurrencyFormatLength return integer;
66 
67 FUNCTION getVersion RETURN VARCHAR2;
68 end JTF_DBSTRING_UTILS;