Documentation for the function V

Hi people,
Dot lots of documentation, it is a reference to the function "v().
Examples include 'v ('APP_USER')' and similar.

Because this function does not seem to be part of a PL/SQL package, use it threw me off: I always
would like to have at least some sort of understanding of what I use and even though I am grateful for all the people who
show examples of its use, nothing like having the basic definition for a developer to sleep
a little easier during the night :-)

Can any charitable soul a URL for place in literature, where he describes this mysterious function
Please?
Thanks in advance

Mungo

Hello

Function V is the same as the function GET_SESSION_STATE
http://download.Oracle.com/docs/CD/E14373_01/apirefs.32/e13369/apex_util.htm#CHDEJEJE

BR, Jari

Tags: Database

Similar Questions

  • The doc for the function of the subset of the table shows the extensible function

    In LabView 2010 the doc for the function of the subset of the table shows that the function is expandable with indexes and multiple lengths. I can't expand the function for multiple indexes. How can I do this?

    Is the documentation for the function by mistake, or is there another function of a subset of the table somewhere that can do this?

    Subset of table details

    When wire you an array to the function, the function is automatically resized to display entries index for each dimension of the array. If wire you a table 1 d to the function, the function displays the index for an item entries. If wire you a 2D to function, the function table displays the entries index for a line and column, respectively. If wire you a 3D through the nD to the function, the function displays the index for a page entries.

  • error: implicit declaration of function 'GetActiveProcessorCount' is not valid in C99. Make sure that you include the prototype for the function.

    I get the following error:

    error: implicit declaration of function 'GetActiveProcessorCount' is not valid in C99. Make sure that you include the prototype for the function.

    I've included windows.h

    which includes winbase.h

    Winbase.h contains the prototype for the function in the above error message.

    If I disable 'Require the function prototypes' and 'Building with the C99 extensions', I get the following error:

    error: Undefined symbol "_GetActiveProcessorCount" referenced in "c:\Users\Public\Documents\National Instruments\CVI\HDLC\cvibuild. HDLC_RandD\Debug\HDLC_RandD.obj ".

    I work in the ICB 2013 SP2.

    Why I get this error.

    This function is only valid in Windows 7 and later versions. Because the ICB 2013 still supports Windows XP, this feature is excluded by default from Windows headers that are provided with CVI. If you do not need to worry about the versions of Windows prior to Windows 7, however, you can include it yourself, by adding the following macro in the dialog box options generation CVI (be sure to include for all configurations):

  • HP Photosmart 3110 referred to the documentation for the printer. Error 0xe18a001

    HP Photosmart 3110 referred to the documentation for the printer. Error 0xe18a001

    Hello caromuna,

    It seems that other users have found a way to completely reset the printer back to the default settings, which can help with this question.

    The reset is discussed in this forum thread and seems to be a bit difficult to fill. Let me know if it helps to solve your problem.

    Photosmart 3310 ink system failure

  • What is the difference between DC of Acrobat Reader and Acrobat Standard DC? I'm looking for the function to extract pages of large documents.

    What is the difference between DC of Acrobat Reader and Acrobat Standard DC? I'm looking for the function to extract pages of large documents.

    Acrobat Reader is just a viewer/reader PDF; It cannot modify or create PDFs.

    You will need Acrobat Standard or Pro to extract pages from a PDF.

  • Documentation for the automation plugins

    Hello

    I'm new with Oracle OSM 7.2.2 and trying to find documentation for the feature that is available in automation_plugins.jar

    I see that there are many classes available that can be used in XQuery Automators, for example:

    declare namespace context = "java:com.mslv.oms.automation.TaskContext";
    declare variable $context external;
    context:completeTaskOnExit($context, "success")
    

    There is nothing in Oracle Communications order and Service Management Documentation that describes what classes are available in automation_plugins.jar and how they can be used. Is there a javadoc or other documentation somewhere?

    Thanks in advance

    Hello

    Yes, there are java documentation available. It will come with SDK during installation of the OSM.

    Check your default folder: C:\Program Files\OSM\SDK\osm7.2.2.1.x.x-javadocs.zip.

    Hope this helps you.

    Concerning

    Srinivas

  • Documentation for the conversion of virtual and physical memory

    Are there any decent documentation for the conversion of virtual and physical memory?

    Any help would be appreciated.

    Yes I do, I'll send you my notes!

    Matthew

    Kaizen!

  • I want to create the function for the function create for ODD or EVEN (NUMBER)

    I want to create the function for the function create for ODD or EVEN (NUMBER) also
    If number is odd, multiply by 5
    If there is an even number, multiply it by 10;

    Not tested,

    create or replace function fnc_env_odd(p_number in number)
    return number as
    begin
     if p_number>0  -- Remove if you want to consider negative numbers also
       if mod(p_number,2)=0 --Means even
          return p_number*10;
       else                 --Means odd
          return p_number*5
       end if;
     end if;
    end;
    /
    

    G.

  • Documentation for the Acrobat Document object model

    Hello

    I'm trying to move my first not in this area, I hope you can bear with my naïve questions.

    I'm trying to find documentation for the Acrobat Document object model. To my surprise, a search in the archives of the forum failed.

    I remember download out of curiosity some Adobe's PDF documents on the execution of JavaScript in Acrobat, ADOM precisely about one (but I could be wrong it was a few years ago and I'm getting old): these documents of the are a thing of the past?

    Thank you very much.

    Giordano

    Have a look here:

    http://www.Adobe.com/devnet/Acrobat/JavaScript.html

    The link is for reference in version 9, which is generally pretty good.

    But if you want the last being (PDF form), you can find it inside the

    Package Acrobat X SDK, here:

    http://www.Adobe.com/devnet/Acrobat/SDK/EULA.html

  • Input parameters for the function/procedures

    Hello

    I have an input parameter in varchar2 to a procedure and a function.

    Oracle says that you can pass to the maximum value of 32767 bytes inside a pl/sql block for a varchar2.

    But outside, it is limited to 4000 bytes.

    Here, there is a small suitcase of test
    create or replace procedure test_p(a in varchar2) as 
     begin
      null;
       commit;
         End;
    
    CREATE OR REPLACE FUNCTION str2tbText(p_str in varchar2) return varchar2
            IS
                      begin
                return null;
          END str2tbText;
    
    SQL> declare
      2  a varchar2(32767);
      3  b varchar2(32767);
      4  c varchar2(32767);
      5  begin
      6  for i in 1..4004 loop
      7  b:=b||'a,';
      8  end loop;
      9  test_p(b);
     10  --select str2tbtext(b) into c from dual;
     11  commit;
     12  end;
     13
     14  /
    
    PL/SQL procedure successfully completed.
    
    SQL> declare
      2  a varchar2(32767);
      3  b varchar2(32767);
      4  c varchar2(32767);
      5  begin
      6  for i in 1..4004 loop
      7  b:=b||'a,';
      8  end loop;
      9  --test_p(b);
     10  select str2tbtext(b) into c from dual;
     11  commit;
     12  end;
     13
     14  /
    declare
    *
    ERROR at line 1:
    ORA-01460: unimplemented or unreasonable conversion requested
    ORA-06512: at line 10
    IAM here to more than 4000 bytes as an input parameter for a function of years of proceedings,
    But it works for the procedure...
    For the function, it throws error

    No specific reason please...

    Kind regards
    Mohammed

    This means that you have found the answer you're looking for? Then you can close the thread...

  • Function documentation for the SignalExpress project

    I use the function 'project documentation' LabView SignalExpress 2009 in my application project.

    The draft measure a pressure signal permanently in different situations. I want to present my project document is a list of locations of the siganl of pressure taken under different situation, with a plot for each situation so that readers can easily compare the plots.

    For example, I want the document states:

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    At 10:00 at low flow:

    ground pressure siganl

    At 11:00 with increased flow

    the same pressure signal ground

    etc.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    What I did was flirting with the pressure signal in my documentation of the data acquisition phase in the project tree, but in doing so, I could only show the last parcel of this signal in my documentation, the plot is in real time, just like what shows in the display of the data.

    Is there a way to show the same siganl taken at different times in a documentation?

    Thank you!

    Hello

    You can totally do this by using a feature called "instant."

    Rather than drag the step signal directly in your project document, first create a snapshot of your data using the menu option "use > create snapshot...". (Ctrl + Shift + T) »

    A dialogue will appear asking you what signals you want to instant. After selecting / them and clicked on Ok, your new snapshots will appear in the section overview of the application (in the left corner below, by default).

    Drag these signals on your project document. When you are ready to create your next snapshots after changing the configuration, you can select "Operate > repeat the last Snapshot (Ctrl + T) ' to simplify your process.

    For more information about the snapshot, see using LabVIEW SignalExpress found under "Help > LabVIEW SignalExpress Help" and search on the keyword "snapshots."

    I hope this helps!

    Phil

  • Documentation for Javascript functions

    Where can I find documentation for APEX supplied to javascript as::AddRow() functions;?

    WaltK wrote:

    Where can I find documentation for APEX supplied to javascript as::AddRow() functions;?

    addRowis undocumented.

    JavaScript documented methods are described in the API Referencedocumentation for the current version is on the APEX Documentation page. Documentation for previous versions can be found in the archive documentation.

  • Documentation for the Plugin Actions

    I would use some of the shares that come with the UCS Plugin library, but I don't understand the functions, the input parameters or out parameters. Can you tell me where these could be documented?

    A little late but it might be useful for anyone else looking for the same...

    So it must be valid for each plugin:

    1.
    var arrayOfObjectsFromThatType = Server.findAllForType ("NameSpace:Type");
    Returns the array of all objects of this type.

    2.
    var specificObject = Server.findForType ("NameSpace:Type", id);
    Returns an object with the id and type

    3. all items of the UCS has the following properties:
    ID
    name
    DN
    multiUcsmDn

    The most important of all of these properties is multiUcsmDn. It is the unique id that has the code hierarchy. So, for this plugin id = multiUcsmDn. Examples.

    'System' will be multiUcsmDn = "http://10.23.34.34/" - not sure for the exact system, but you can understand.
    "Châssis" will be multiUcsmDn = "http://10.23.34.34/sys/chassis-1".
    "'Blade' will be multiUcsmDn =" "http://10.23.34.34/sys/chassis-1/blade34"

    In order to have all of this in mind, you can do the following

    1.

    systems of var = Server.findAllForType ("UCSM:System");
    Returns the array of all registered systems of UCS

    2.

    Not simple here, but you can filter the chassis based on a selected UCS system.

    var allChassis = Server.findAllForType ("UCSM:Chassis");

    You can filter the multiUcsmDn chassis. Something like
    If (chassis.getMultiUcsmDn () .indexOf (system.getMultiUcsmDn ())! = - 1).
    then add this frame to the list so that you can filter only the chassis that are bound to the UCS systems you have chosen.

    3.

    The next step is easy, because the chassis has the method getBlades(). The two properties that can be useful here 'status' and 'assignedToDn '. It will identify if the condition of the blade was provissioned and so on.

    4.

    In this case, looking for blades that are not the provission in previous steps, there is a workflow of service profile to assing blade - "assign a service profile to a blade.

    Hope it is useful.

    Thank you

    Igor.

  • Satellite A60 - need drivers for the function keys. Urgent!

    I installed Windows XP Pro on my laptop Toshiba Satellite A60, but after that I couldn't use the function key. I've been looking for driver but I haven't found yet, even in this Web site.
    Someone knows it please help me what to do. Thank you so :)

    Hello

    That fear I know, first I have to install Hotkey Utility.
    After that, please install all other tools & utilities. Try this and let me know if was successfully.

  • While loop, wait for the function and the stop button!

    Hello

    I have a while loop and a stop button. Inside my While loop - I have a 'Wait (x ms)' function. If I press the stop button, it does not block the program immediately, he expects ms x then stops the program. How can I get rid of this?

    Thanks in advance for the help!


Maybe you are looking for

  • iPhoto closed unexepectedly in unexpected ways

    iMac OS X version 10.8.5 iPhoto v9.4.3 closes unexpectedly. It opens and then closes immediately. Someone at - it advice?

  • Sound recorder-record audio sounds deep

    Sound recorder Problems with my audio recorder / mic I'm a girl but my when I record my voice by using my sound recorder, makes me look like a guy with a deep voice and I know very well that I do not sound like that My system has flaws earlier and I

  • LaserJet P3010: Cannot install the printer. The print processor does not exist

    I have a LaserJet P3010 Series PCL 6. It gives me the following error when I try and add it to our print server: "unable to install the printer. The print processor does not exist. "Regardless of what kind of IP config I use, the test page I always m

  • No printing Officejet 4500 on Windows 7

    Just bought my Officejet 4500 to replace a Lexmark work. I say this because to me, this seems to indicate that the USB/connection cord also works. Installation goes very well without any problems. Connected the USB cable when prompted by the instruct

  • BlackBerry Smartphones Re: 9360 Curve problem please help!

    An error occurred contacting the client BlackBerry World. If you have a content protection enabled on your device, please disable and try again. the same message that I get when connecting my laptop... Please help me