replace only the first and the second comma by TAB in the apex using using jquery

All,

I'm generating models of string in the text box in my apex as page == > 23232,445454, «454545,7878,988978, 3r3e»
and I want to replace only the first and the second comma with TABS so I get like == > 23232 445454 «454545,7878,988978, 3r3e»

It should run with the jquery code when I click my button?

any help on this please?

Thank you.

How does this update function:

function replaceUpToN(original, search, replaceWith, maxOccurence){

    var NEW_LINE = '\n';

    var lines = original.split(NEW_LINE);

    $.each(lines, function(index, value){
        var idx = 0;
        lines[index] = value.replace(search, function(match, pos, original){
            idx++;
            return idx <= maxOccurence ? replaceWith : match;
        });

    });

    return lines.join(NEW_LINE);

}

Tags: Database

Similar Questions

  • How can I make a long list of search - replace only the master

    Hello world

    I had this script:

    //---------------------------------------------------------------------------------------- -------------------------------

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text on master blocks spreads are not affected.
    If you want to unblock, please add something like this:

    Unlock all elements of each document page on is spreading and Captain spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "\\b20\\d+\\b";

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = String (Number(flattenedFoundArray[n].contents) + 1);
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;

    //---------------------------------------------------------------------------------------- -------------------------------

    made by Uwe

    I change in this, to make a multi elements of search - replace only the master

    //==============================================================================

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text spreads masters frameworks are not affected.
    If you want to unblock, please add something like this:

    Unlock all items page of each document of spreads and master spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = "USA";

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = "CHINA";
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;


    //---------------------------------------------------------------------------------------- -------------------------------

    myDocuments var = app.documents.everyItem ();
    var myLayers = myDocuments.layers.everyItem ();

    Locked text spreads masters frameworks are not affected.
    If you want to unblock, please add something like this:

    Unlock all items page of each document of spreads and master spreads (optional):
    myDocuments.pageItems.everyItem (.locked = false);

    var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem ().pageItems.everyItem ();

    Unlock the layers (optional)
    myLayers.locked = false;

    Lock all elements of page level first on normal spreads
    This leaves the elements on the page on unlocked master spreads:
    myPageItemsOnNormalSpreads.locked = true;

    Now for the GREP part:
    app.findChangeGrepOptions.includeMasterPages = true;
    app.findGrepPreferences = changeGrepPreferences = null;
    app.findGrepPreferences.findWhat = 'Washington DC';

    Research on "all open document" level
    Which returns an array of arrays:
    var myTarget = myDocuments.findGrep ();

    Flattening of myTarget Bay:
    var flattenedFoundArray = [];

    for (var n = 0; n < myTarget.length; n ++) {}
    flattenedFoundArray = flattenedFoundArray.concat (myTarget [n]);
    };

    Change the content of the texts found in flat table:
    for (var n = flattenedFoundArray.length - 1; n > = 0; n-) {}
    flattenedFoundArray [n] .silence = "Beijing."
    };

    Unlock all objects on normal spreads:
    myPageItemsOnNormalSpreads.locked = false;

    Reset search GREP and edit the prefs:
    app.findGrepPreferences = changeGrepPreferences = null;


    //===============================================================================

    only what I can do is to repeat and repeat again

    is this another perfect solution to do?

    Thank you

    Teetan

    Try this,

    findChange("USA", "CHINA");
    findChange("Washington DC", "Beijing");
    
    function findChange (findWhat, changeContent){
        var myDocuments = app.documents.everyItem();
        var myLayers = myDocuments.layers.everyItem();
        //Locked text frames on master spreads are not touched.
        //If you want to unlock them you have to add something like this:
        //Unlock ALL page items in every document on spreads and master spreads (optional):
        myDocuments.pageItems.everyItem().locked = false;
        var myPageItemsOnNormalSpreads = myDocuments.spreads.everyItem().pageItems.everyItem();
        //Unlock the layers (optional)
        myLayers.locked = false;
        //Lock all first level page items on normal spreads
        //That leaves the page items on master spreads unlocked:
        myPageItemsOnNormalSpreads.locked = true;
        //Now for the GREP part:
        app.findChangeGrepOptions.includeMasterPages = true;
        app.findGrepPreferences = changeGrepPreferences = null;
        if(findWhat)app.findGrepPreferences.findWhat = findWhat;
        //Do the search on "all open document" level
        //That will return an array of arrays:
        var myTarget = myDocuments.findGrep();
        //Flattening the myTarget array:
        var flattenedFoundArray = [];
        for(var n=0;n=0;n--){
            if(changeContent)flattenedFoundArray[n].contents = changeContent;
            };
        //Unlock all objects on normal spreads:
        myPageItemsOnNormalSpreads.locked = false;
        //Reset GREP find and change prefs:
        app.findGrepPreferences = changeGrepPreferences = null;
    }
    

    Vandy

  • How can I select the files in a folder with the help of a list with the files you want and after that rename only the files using another list with desired new names?

    How can I select the files in a folder with the help of a list with the files you want and after that rename only the files using another list with desired new names?

    I have only:
    D: / images (where are necessary + not need files)
    -a list with only the necessary files
    -a list with new names for the files needed
    Thank you.

    Hi Pustiu,

    Thanks for posting in the Microsoft Community.

    You want to know how to select the files in a folder using a list with the files you want and after that rename only the files using another list with desired new names.

    I would have you post your query in the TechNet forums because it caters to an audience of it professionals.

    Your query will be better addressed there.

    Check out the link-

    http://social.technet.Microsoft.com/forums/en-us/w7itprogeneral/threads

    We know if you need help. We will be happy to help you. We, at tender Microsoft to excellence.

    Thank you.

  • Read only the SPI using the box USB-8451

    I am using the NI USB-8451 box to read the SPI of a Honeywell digital pressure transducer data.  The difficulty comes from that part of Honeywell uses only the SPI in half-duplex mode, meaning that it only transmits data, but does not require anything beyond the appropriate chip select signal and SCLK to start transmitting its 32-bit sensor data.  To facilitate experimentation with the sensor, I bought a USB-8451 SPI Interface thinking I could easily configure the 8451 to read data from the sensor.

    However, if I understand the situation, there is a problem.  The 8451 considers full duplex data, i.e. a data word must first be sent to the SPI device in question before the unit will start to transmit back data of its own.  And since the MOSI data writing periods, since this particular device starts transmitting immediately once a clock is applied, synchronizing the unused address data will cause the unit will return its data before the 8451 begins listening for data in return.  The call used by the 8451 to write read action can be divided into the individual reading and actions of writing of any kind that I could discover.

    Can someone tell me if I missed something in this operation or if there is some quick tips, that I could use to be able to use the 8451 therefor?  Thank you!

    Doug G.

    Exactly correct. It's nice when things are easier than expected. Hope it works as easy as it sounds.

  • Show only the screws used to VI hierarchy instead of all polymorphic Versions of a VI

    Hello!

    When you pull the top of the hierarchy of VI for a program, you get a diagram showing all polymorphic versions of a VI used in your program (at least I do).  Is a checkbox hide somewhere that I did not find that put the screws in the hierarchy I call in my program?  For example, if I use the polymorphic VI 'DAQmx create Virtual Channel' in my program, and the "AI Input" version is used, I always get every version, which is several, figure in the hierarchy of VI.  This clutters the schema a bit.  Instead of an icon that appears in the hierarchy, it is instead of 20 or 30.

    Everyone there knows what can be done?  Thanks for any help you can give me.

    Thank you, Jeff, to confirm this as I was afraid of.  I was wondering where they were hiding this darn box!

    I guess that the code that creates the diagram hierarchy VI must have been written before polymorphic VIs and he travels find as all loaded screws to add them to the diagram.  When any one version of a polymorphic VI is called, all versions are loaded and found the code that creates the schema.  If only the specific version of a polymorphic VI takes over, then this theory does not work.

    If I helped you and I get this feature implemented, I am glad that I could be useful.

    I appreciate your response.

  • How to configure in the apex using other engine of transformation XSL - FO instead of Bi publisher

    can someone give me a quite complete example for me on the engine configuration of processing XSL - FO in the Apex.

    I'm feeling rather puzzled about the example set by the introduction of the link:http://www.oracle.com/technetwork/developer-tools/apex/application-express/configure-printing-093060.html#06

    in the apex_fop_render.jsp file.

    Hi 2952702,

    2952702 wrote:

    Please change your login username of "2952702" to something meaningful. Reference: Video tutorial how to change username available

    When I install the apex5 rest data service, the installation guide tell me pdf printing is supported by the rest data service

    but after the installation of ADR, I don't have the result I want.

    Yes, as you directed in the code snippet included listener Web Oracle APEX Documentation Options, Services (ORDS) data Oracle REMAINS usable as a PDF as FOP support print server is included in the ADR 2.0 and later (last ADR 3.0).

    Reference:

    NOTE: The links are for APEX 4.2, but they still apply for APEX 5.0, if you plan to use ADR 2.0 and later versions. These links show how to configure ADR as a print server and how to design and print reports.

    I hope this helps!

    Kind regards

    Kiran

  • creation of a photo of the hero using jquery slider but the sub nav bar menu go behind the tag div of heroes

    Dropbox - Butler lawyers

    Hello everyone

    I m, design a site with a hero photo slider using jquery. My problem is, the nav bar submenus go behind the photo slide so that you can't see the submenus of the Legal Services tab. I have provided a link dropbox for the entire project. I'm working on the file called index.html. Any thoughts on how to solve the problem?

    Thanks in advance

    Paul

    Hi Paul

    Sounds like a z-index issue.

    We really need to see ALL of your files to solve your problem quickly and accurately, without a lot of questions and-front-back and guess.

    Just rename a copy of your problem page (for example "test.html") and upload it to your server (with all the associated files) in the folder the original page was and simply post a link in the Forum and tell us about your problem.

    This avoids you having to cut and paste code miles in the Forum of the page and all dependent on CSS, JS etc files.and saves us from having to recreate all your files, find your images and then fix your code and test the solution for you.

    I hope it's useful.

  • Defining the field level line in the table using jQuery

    Hello

    I am using the following command for reading and then set the values in the same row in a report.
    Re: Referring to a value of field line in an interactive report using jquery

    Consider the following excerpt
    // read information eg
    var row = $x_UpTill(this.triggeringElement, 'TR');
    var dateCompleted = $('input[name="f03"]', row)[0];
    console.log(dateCompleted.value);
    // write information eg
    var dateBooked = $('input[name="f02"]', row)[0];
    //dateBooked.value = 'xyz'; // sets to xyz, as expected
    dateBooked.value = return_date; // sets the actual code, not returning string
    Everything works as I expect except the last line. I have a js function returns a formatted string (Date set with Javascript , but in this case, my field now contains the definition of the actual code, not the date string the function actually returns.

    I don't think that I'm just not understand a simple concept for JavaScript here?

    A simple solution might be to create the P0_SYSDATE, calculated field to TO_CHAR(SYSDATE,:F_DATE_FORMAT), then apply
    dateBooked.value = $v('P0_SYSDATE');
    but I'm trying to improve my understanding of javascript/jQuery...

    See you soon,.

    Scott

    So are you saying that return_date is a function real javascript, which returns the document to the format string/date you want?
    If so, then I think you simply need parenthesis to function:

    dateBooked.value = return_date();
    

    Or... I'm missing something here?

    Thank you
    -Jorge

  • Anyway do a MODAL popup window in the APEX, using JavaScript

    Y at - it anyway to make a MODAL popup window in APEX, using JavaScript.

    What I do is, at various stages in an application, I'm coding, the system will display a pop-up window, prompting users to enter their credentials. These credentials are then verified via LDAP.

    Basically I don't want the user to be able to close the window without entering their password or by clicking on the Cancel button.


    Here is the code I use:

    onClick = "javascript:esign();" "(Adding the HTML Form element attributes)


    function esign() {}
    popUp2 ('f? p = & APP_ID.:8: & SESSION.: & DEBUG.:', 450, 200);
    }



    I did a quick search on google and I met some JavaScript libraries that could do what I'm after is to say prototype.js, jquery.js
    but I was wondering if there is a default library that comes standard with APEX.

    Any help gratefully received

    Thanks, Keith

    create a button calling url and url target as the value
    JavaScript:modalWin();

    Place this script in the header

    You can create a button in a modal window to close
    and use this code for the text label of the button

    Closet

  • Find and replace only the changes in Notepad

    I recently upgraded from RoboHelp 6, RoboHelp 8. In version 6, RoboHelp was configured to open HTML files to find several files, and replace in RoboHelp self rather than another HTML editor. Now that I've updated, when I perform a search using find and replace in files, select a file from the results and then click on the button Edit, the file opens in Notepad. The same thing happens with the computer to a colleague, who has recently upgraded.

    This happens no matter how I configured my OS and RoboHelp. So, for example, it seems not important to know if the following options are selected:
    * Under Tools | Options, Associations, Auto selection Editor tab may be selected, or use the default editor can be selected. This does not change the behavior.
    * Under Tools | Options, Associations, design view < internal > tab can be defined as the default value. Once again, no effect.
    * Under Tools | Options, on the Associations tab, file Associations can have. HTM being edited with RoboHTML.exe. No help there.
    * Under Tools | Options, on the general tab, check to editor HTML system can be selected or not. No luck. Despair is sinking...

    I'm not sure if the operating system settings make a difference, but it is set to open the .htm and .html files in Internet Explorer. It seems that it would not make a difference, however, because clicking on change in RoboHelp find and replace in files does not open the files in Internet Explorer. When you click view, it opens files in Internet Explorer.

    Thank you in advance for your help!

    James Gage, CSC
    The United States State Department

    Welcome to the forum.

    I no longer have access to RH8 but here is what I think happens.

    RH7 presents the multidocument Interface and removed the ability to edit simple themes. Multi file find and replace opens a topic in some tool was selected in Internet Explorer to edit HTML files.

    As HR cannot open a single file, if you do not set IE use HR, you're wasting your time because it cannot do. It must open a project and of IE, it can't do.

  • replace only the last 3 characters within a string

    Hi all
    I have the string "abcdef_01". How can I replace the last 3 characters with "000"? in this string, for example "_01" should be replaced by '000'. Any way to do it, without the concatenation of the original string with the last 3 characters replaced by "000"?
    Thank you

    Edited by: Roger22 the 18.10.2011 09:29

    Yes, you can...

    SELECT rpad(substr('abcdef_01',1,length('abcdef_01')-3),length('abcdef_01'),chr(dbms_random.value(32,64))
                                                                             || chr(dbms_random.value(32,64))
                                                                             || chr(dbms_random.value(32,64)))
    FROM dual;
    

    RPAD/lpad may use a third parameter that is longer than 1 character and - if the duration of param 1 + length of parameter 3 is longer that parameter 2 - truncates the result to fit the length of parameter 2.

    HTH

  • How to replace only the new files when copying

    When I copy existing files in a folder (inside the Windows Explorer) with another with the same name,

    I want to just replace the recently modified files.

    Discover (ROBOCOPY) robust file copy utility included in all versions of Windows from XP:

    http://technet.Microsoft.com/en-us/library/cc733145 (v = WS.10) .aspx

  • Reading AVI correctly in Windows Media files, open in Audio mode only in first and SOUL

    Just like the title says - several avi files (30) a customer will play very well, but only open as audio stream in CS5 PP or SOUL.

    Where should I start looking?

    Thank you!

    Looks quite standard MPEG2 video; almost DVD compatible MPEG2. First works fine with most of the flavors of MPEG2, it's like a problem of container. For fun, try to change the AVI into MPG extension; who can force the first using the MPEG Splitter. If it doesn't, post back - there are ways demux (demux) notice in their elementary streams.

    The drag-to-the-new-item-button thing won't help; This is a shortcut to the implementation of a sequence, not a way to force the first to play the video file. First does not care what sequence you use with a particular video file - that's why you can put the AVCHD video in a DV sequence, for example - there format-agnostic with the formats it accepts. If it doesn't matter no, or not reading correctly the project Panel/Source monitor, then the button new item won't do a thing – what you have discovered.

  • How to only the totals using the native summary column (= "SUM () function

    Hi all, this is my data model:

    < name of dataTemplate 'Employees' description = 'Simple Dept - Emp' = >
    < dataQuery >
    < SQLStatement instance name = "Q1" >
    <! [CDATA]
    Select SERVICES. DEPTNO as DEPTNO,
    DEPARTMENTS. DNAME as a DNAME
    Scott. MINISTRIES DEPT order by DEPTNO]] >
    < / sqlStatement >
    < SQLStatement instance name = "Q2" >
    <! [CDATA [Select
    EMPLOYEES. ENAME like EMP_NAME,
    EMPLOYEES. EMPNO as EMPNO,
    EMPLOYEES. Hiring as HIREDATE date,
    EMPLOYEES. SAL as WAGES,
    EMPLOYEES. DEPTNO as EMP_DEPTNO
    Scott. EMPLOYEES OF THE EMP
    where EMPLOYED. [[DEPTNO =: DEPTNO]] >
    < / sqlStatement >
    < / dataQuery >
    < dataStructure >
    < name of group = "G_DEPT" source = "Q1" >
    < element name = "DEPTNO" value = "DEPTNO" / >
    < element name = "DNAME" value = "DNAME" / >
    < element name = "TOTAL_EMPS" value = "G_EMP. EMPNO"function ="COUNT ()"/ >
    < element name = "TOTAL_SALARY" value = "G_EMP. SALARY"function ="SUM ()"/ >
    < element name = "AVG_SALARY" value = "G_EMP. SALARY"function ="AVG ()"/ >
    < element name = "MAX_SALARY' value = 'G_EMP. SALARY"function ="MAX ()"/ >
    < element name = "MIN_SALARY" value = "G_EMP. SALARY"function ="MIN ()"/ >
    < name of group = "G_EMP" source = "Q2" >
    < feature name = 'EMPNO' value = 'EMPNO' / >
    < element name = "EMP_NAME" value = "EMP_NAME" / >
    < element name = "HIREDATE" value = "HIREDATE" / >
    < element name = "SALARY" value = "SALARY" / >
    < / Group >
    < / Group >
    < / dataStructure >
    < / dataTemplate >

    This datatemplate works very well with the TOTAL_EMPS, TOTAL_SALARY, AVG_SALARY, MAX_SALARY MIN_SALARY split for all departments; So these are subtotals.

    Now, I need to have the totals at the end of my report to the following:

    TOTAL_ALL_EMPS
    TOTAL_ALL_SALARY
    TOTAL_ALL_AVG_SALARY
    TOTAL_ALL_MAX_SALARY
    TOTAL_ALL_MIN_SALARY

    Add a new query (Q1) with all the totals, now the data model is the following:

    < name of dataTemplate 'Employees' description = 'Simple Dept - Emp' = >
    < dataQuery >
    < SQLStatement instance name = "Q1" >
    <! [CDATA]
    Select COUNT (empno) TOTAL_ALL_EMPS, SUM (sal) TOTAL_ALL_SALARY, AVG (sal) TOTAL_ALL_AVG_SALARY, MAX (sal) TOTAL_ALL_MAX_SALARY MIN (sal) scott TOTAL_ALL_MIN_SALARY. EMPLOYEES EMP]] >
    < / sqlStatement >
    < SQLStatement instance name = "Q2" >
    <! [CDATA]
    Select SERVICES. DEPTNO as DEPTNO,
    DEPARTMENTS. DNAME as a DNAME
    Scott. MINISTRIES DEPT order by DEPTNO]] >
    < / sqlStatement >
    < SQLStatement instance name = "Q3" >
    <! [CDATA [Select
    EMPLOYEES. ENAME like EMP_NAME,
    EMPLOYEES. EMPNO as EMPNO,
    EMPLOYEES. Hiring as HIREDATE date,
    EMPLOYEES. SAL as WAGES,
    EMPLOYEES. DEPTNO as EMP_DEPTNO
    Scott. EMPLOYEES OF THE EMP
    where EMPLOYED. [[DEPTNO =: DEPTNO]] >
    < / sqlStatement >
    < / dataQuery >
    < dataStructure >
    < name of group = "G_TOT" source = "Q1" >
    < element name = "TOTAL_ALL_EMPS" value = "TOTAL_ALL_EMPS" / >
    < element name = "TOTAL_ALL_SALARY" value = "TOTAL_ALL_SALARY" / >
    < element name = "TOTAL_ALL_AVG_SALARY" value = "TOTAL_ALL_AVG_SALARY" / >
    < element name = "TOTAL_ALL_MAX_SALARY" value = "TOTAL_ALL_MAX_SALARY" / >
    < element name = "TOTAL_ALL_MIN_SALARY" value = "TOTAL_ALL_MIN_SALARY" / >
    < / Group >
    < name of group = "G_DEPT" source = "Q2" >
    < element name = "DEPTNO" value = "DEPTNO" / >
    < element name = "DNAME" value = "DNAME" / >
    < element name = "TOTAL_EMPS" value = "G_EMP. EMPNO"function ="COUNT ()"/ >
    < element name = "TOTAL_SALARY" value = "G_EMP. SALARY"function ="SUM ()"/ >
    < element name = "AVG_SALARY" value = "G_EMP. SALARY"function ="AVG ()"/ >
    < element name = "MAX_SALARY' value = 'G_EMP. SALARY"function ="MAX ()"/ >
    < element name = "MIN_SALARY" value = "G_EMP. SALARY"function ="MIN ()"/ >
    < name of group = "G_EMP" source = "Q3" >
    < feature name = 'EMPNO' value = 'EMPNO' / >
    < element name = "EMP_NAME" value = "EMP_NAME" / >
    < element name = "HIREDATE" value = "HIREDATE" / >
    < element name = "SALARY" value = "SALARY" / >
    < / Group >
    < / Group >
    < / dataStructure >
    < / dataTemplate >

    It works fine, but my question is this:

    How can I change the data model and use the native summary column (function = "SUM (), for example) to collect data that I mentioned above (TOTAL_ALL_EMPS, TOTAL_ALL_SALARY, etc.), in order to avoid a third query SQL (Q1)?
    In a few words, I would only use the query Q2 and Q3 and have overall totals and subtotals.

    Thanks in advance for any help

    Alex




    Select 1 double DUMMY_FIELD]] >


    Select SERVICES. DEPTNO as DEPTNO,
    DEPARTMENTS. DNAME as a DNAME
    Scott. MINISTRIES DEPT order by DEPTNO]] >


    EMPLOYEES. ENAME like EMP_NAME,
    EMPLOYEES. EMPNO as EMPNO,
    EMPLOYEES. Hiring as HIREDATE date,
    EMPLOYEES. SAL as WAGES,
    EMPLOYEES. DEPTNO as EMP_DEPTNO
    Scott. EMPLOYEES OF THE EMP
    where EMPLOYED. [[DEPTNO =: DEPTNO]] >






















    Try this

    Concerning
    Charlotte

  • Assembly name, the username of the APEX using interactive report?

    Hello


    I have a few problems

    (1) how to view and edit the name, surname, e-mail address, is_admin, is_application_developer properties of the user by using an interactive report?

    wwv_flow_users gives shows all the foregoing. Given that it is a vision, I think I can't make changes through it

    And APEX_WORKSPACE_APEX_USERS does not show the first name, the last name properties, also is not LC to change I think


    (2) the is_admin, is_application_developer APEX_WORKSPACE_APEX_USERS columns, its default value, at the time of the creating user, I want to change the value of Y for a particular user. How can I do and what function do I use?





    Thanks and greetings
    Umer

    Hello

    These are internal tables APEX. It is not support maintaining data directly to internal tables APEX. If you handle internal APEX Oracle support tables can endure no more your instance.

    Package APEX_UTIL provide procedures to keep users APEX
    http://docs.Oracle.com/CD/E23903_01/doc/doc.41/e21676/apex_util.htm#CHDBEEHG

    Kind regards
    Jari

    -----
    http://dbswh.webhop.NET/dbswh/f?p=blog:Home:0

Maybe you are looking for

  • Como playsecure musica del iphone to the mac

    A few days ago vi as una persona estaba reproduciendo in iPhone 5s su musica y manera remota was than the misma musica repoducirse in su Mac iTunes will. Como is hace esto? one app?

  • Money 2004 - cannot access

    I have Money 2004 and now I get this message: Microsoft Money has encountered a problem and needs to close.  I have 2 separate accounts in Money 2004 and may open an account, but not the other.  Any suggestions?

  • HP Pavilion x 360: stop and sleep problems

    I've updated for Windows 10 and now my computer won't shut down or sleep. In order to shut down the computer completely I have to restart my computer, and then stop. If I used my computer for more than an hour, it will not be stopped or he wake up fr

  • Eprint 1010 inkjet

    The hp 1010 is able to connect to eprinting?

  • Exclude the host and guests of vFoglight

    I would like to know if there is an easy way to exclude a single ESX host and guests of vFoglight. I have a crowd noisy lab (w / 40 guests) I want to exclude from dashboards, alerts, reports, etc.Is there a simple way to do this?We run vFoglight Pro