Necessary to remove a page apex tabset

I have an apex page. who shows me to be a member of a tabset...
How can I remove the tabset page...
I went to... shared components tab and deleted the existing tabset page...
But still the page has the tabs you see above...
What can be done so that the page that is already having tabset... These pages when displayed donot show the tabset...


Thank you

Published by: susf on June 28, 2012 12:44 AM

Hello
You must change your Page template to one of the tabs No one.

Kind regards

Tags: Database

Similar Questions

  • How can I remove a page from an email that appears when I open my computer?

    How can I remove this page that appears every day, I cut down on my computer. The page is from an email sent to my long from a friend who has his social security information. How can I remove this?

    Hi lost,

    Try a boot minimum http://support.microsoft.com/kb/929135.  If the problem goes away then it's just a matter of tracking down the culprit at the origin of the problem.   Follow the procedures described in the article.  Once found, remove, delete, disable or uninstall.  Once don't forget to reset yout system back to the normal state, as described in the procedures. If the problem occurs in clean mode then just restore the system to normal and reboot - this solution will not work.  If you are using XP, see: http://support.microsoft.com/kb/310353.

    I hope this helps.

    Good luck!

  • remove unused pages after copyng to previous pages

    original title: remove unused pages after coptyng to previous pages

    Hi, I have vopy oand CPAST info frompages to prreevios of pages but can not remove unused pages. Can you help me?

    Thank you

    Vicki

    Hello

    A few questions will help us better to solve your problem. Please answer these questions for us:

    1. what operating system do you use?

    2. what programs you have problems with?

    3. is there an error message generated?

    4. what type of file you go when this happens?

    5 How long this issue is past?

    6. is there anything changed/added/deleted before this issue popped up?

    It's basically the who, what, when, where and why of troubleshooting.
    b Eddie

  • A document of several pages and the need to remove all other pages.  Document to wholesale remove each page separately.

    I have a multi page document (1, thousands of pages) and you need to delete all the other pages.  I can't understand how to do this and I know it's doable.  I haven't the time to delete this one page at a time.  Help, please.

    If you have Adobe Acrobat DC Pro, you can create a custom command using the following JavaScript code to remove all pages:

    // process document from the last page to the first page
    for (var i = this.numPages-1; i>=0; i--) {
        if (i % 2) { // this will delete all even numbered pages
            this.deletePages(i);
        }
    }
    

    To find out how you can create a custom command, follow the steps detailed here: create orders customized in Adobe Acrobat DC Pro - KHKonsulting LLC

    If you want to remove all odd numbered pages, simply change the line #3 to this:

    if (!(i % 2)) { // this will delete all odd numbered pages
    

    If you use an earlier version of Acrobat Pro, you can use an Action to accomplish the same thing. If you use Adobe Acrobat Standard, you do not have access to the action Wizard or custom orders, and you have to write a script of folder level to create a new menu item that can remove odd or even numbered pages.

  • Acrobat Pro XI Java: Removal of Page is very slow

    Hello world

    Here is a set of code that I had working in Acrobat XI to pull up a popup window which, when the user selects Yes, is able to search a keyword hidden on some pages in the PDF file and then delete the corresponding pages.  It works, but the problem is that it takes almost a minute to treat.  I'd love to someone entered for what might slow the process down.  I am very new to Java specific suggestions would be greatly appreciated!

    Thank you in advance,

    Christian

    CMSG var = "continues with the current action will delete the TASKS application and its data."  This may take a few minutes to complete. « ;

    CMSG += ' \n\nDo you want to continue?

    var nRtn = app.alert (GSMC, 2, 2, 'Question Alert Box');

    if(nRtn == 4)

    {/ / A yes answer}

    Code to do the thing you can do on a Yes

    Console.println ("the answer is Yes");

    for (var p = this.numPages - 1; p > 0; p--) {}

    for (var n = 0; n < this.getPageNumWords (p); n ++) {}

    If (this.getPageNthWord (p, n) == 'CHESDELETE') {}

    this.deletePages (p);

    break;

    }

    }

    }

    }

    Another yew (nRtn is 3)

    {//No response

    Console.println ("the answer is no");

    }

    on the other

    {//Unknown response

    Console.println ("the response was something other than yes/no:"+ nRtn ");

    }

    Hello world

    After review of this topic, I realized a solution.  So I hope that someone in my situation can benefit in the future!

    * A brief summary, I had an interactive PDF application where multiple pages are "generated" when some options (check boxes) are selected.  When the items are deselected, I needed a way to get these pages on the document.  Research of the approach of the nth Word worked, but it is become very slow, especially as the PDF has grown larger.  The approach below you will remove the pages having engineered very quickly a document based on a button/field value and can be adjusted accordingly.

    As follows:

    1. Somewhere in the document (not on the template, unless you make sure that the domain names are static when created) create a field text and format to store the numbers with decimal places to zero .  It's your container (so, for example, I named it CHES container).
    2. Then go into the model that needs to be created at a later date. In the page toolbar, right click on your model page and go to properties > Actions
    3. For select trigger, choose "Open Page"; For select Action, choose "Run a Java Script"
    4. Paste and modify the following script:

    -----------------------------------------

    var p = this.pageNum;

    Console.println (p);

    this.getField("CHES_Container").value = p;

    -----------------------------------------

    5. This action will say your model page, when, created to identify its own page number and place it in the "container", which once again, for me, is called "CHES container.

    NOTE: Check to be sure your container shows a number, and that it is accurate.  Later, you can hide this field, but for now, it is useful to find errors that may occur.

    6. click OK and click on the button (checkbox etc.) that will trigger the removal of these specific pages.

    7. go in field properties > Actions.  For select trigger choose "Mouse Up"; For select Action, choose "Run a Java Script"

    8 paste and modify the following script:

    -----------------------------------------

    var p = this.getField("CHES_Container").value;

    this.deletePages ({start: p, nEnd: p + 2});

    -----------------------------------------

    NOTE: nEnd: p + 2 adds just 2 pages to the start range.  So just change accordingly based upon the number of pages given birth there are requiring deletion.

    As a tip, my relaxation complete box script was:

    -----------------------------------------

    Var SHEETS = this.getField ("CHES Check");

    var CHES1 = this.getTemplate ("CHES Pg1");

    var CHES2 = this.getTemplate ("CHES Pg2");

    var CHES3 = this.getTemplate ("CHES Pg3");

    var p = this.getField("CHES_Container").value;

    If (ches. Value is "Yes")

    {

    CHES1. Spawn();

    CHES2. Spawn();

    CHES3. Spawn();

    }

    on the other

    {

    this.deletePages ({start: p, nEnd: p + 2});

    }

    -----------------------------------------

    Please let me know if I missed something or if you have any questions!  Thanks again to everyone for your feedback and patience.

  • Can I remove a page from a PDF document?

    Can I remove a Page from the PDF that I don't want in a PDF file?

    Hello

    Using Acrobat, you can remove a page from the PDF.

    Please see this link:using Acrobat | Rotate, move, delete and renumber PDF pages

    Kind regards

    Florence

  • How can I remove a page from a pdf document?

    How can I remove a page from a pdf document?

    If you have Acrobat and the document has no security restrictions or anything else that could stop him, you would select the following:

    Acrobat 11: Tools > Pages > delete

    Acrobat 9: Document > Delete Pages

  • remove a page break

    How to remove a page break in a PDF with Acrobat Pro?  My document has two pages cropped and I want it all on one page.

    Is my only option to convert the file in Word and it do?

    To add a so slightly, Acrobat does not have the type of editing capabilities that you MENTION. So the workaround solution has been mentioned is a way to do what you want.

  • How to remove a page of the PDF document?

    How to remove a page from the PDF?

    Tools > Pages > delete

    Select that range from the page to remove

    Click on the OK button

  • R12.1.3 - opening page APEX Oracle apps browser window

    Hello

    We have a page of APEX, which is integrated with oracle apps 12.1.3 successfully.

    We are able to open the page of Oracle Applications Home Page (web/self service page) with success.

    but when we try to open the same page of the window system (i.e. after the passage of the responsibility in basic applications) "Navigator" is to launch page not found error.

    Looks like the system is not able to call/execute the JSP (GWY.jsp) page, any ideas how to call page APEX of browser window?


    Rgds,
    -Kamal

    Hello

    Install the patch 12726556. This is a known bug in the gateway FND.

    Rod West

  • [basiljs] remove all pages except one

    In a script, I create pages, export to PDF, remove pages and then create a new etc.

    Right now I use this:

    [code]

    for (var j = b.pageCount (); j > 1; j-) {}

    b.removePage (j);

    }

    [/ code]

    But it's really slow. I think that indesign made many calculation after deleting a page (deadline: link textfields) so it would be more efficient to remove all pages at once.

    Now my question is how do?

    I tested and if I delete about 5500 empty pages with the script it takes about 8 minutes.

    If I select all in indesign, and then delete it takes about 10 seconds.

    Another way to speed up a litle is to erase all the content. It will take a long time but probably a bit faster.

    Thing is that I have

    b.Clear (b.doc ());

    but this removes the master page as well and I need to keep the master page.

    In short, how to remove all pages (except one since indesign needs a single page) at the same time?

    Hello

    I will remove a lot of pages in indesign with

    • Use documentPreferences.pagesPerDocument (faster)
    • use while loop or for
    • Close doc without saving changes, and then open again. (in some cases)

    Here's the test code, run with old Macbook Air + CS5 + OSX10.7

    var pp = function (args) {
      $.writeln(args);
    }
    
    var remove_all_pages_use_pref = function (doc) {
      pp("start deleting (use preferences)");
      $.hiresTimer;
      doc.documentPreferences.pagesPerDocument = 1;
      pp("end deleting");
      pp($.hiresTimer);
    }
    
    var remove_all_pages_use_loop = function (doc) {
      var i = doc.pages.length;
      pp("start deleting (while --)");
      $.hiresTimer;
    
      while (i--) {
        if (i==1) {break;}
        doc.pages[i].remove();
      }
      pp("end deleting");
      pp($.hiresTimer);
    }
    
    function main() {
      var doc = app.documents.add();
      $.hiresTimer;
      doc.documentPreferences.pagesPerDocument = 5500;
      pp('# create 5500 pages');
      pp($.hiresTimer);
      var indd = new File("~/Desktop/5500.indd");
      doc.save(indd);
    
      pp("------------");
      remove_all_pages_use_pref(doc);
      doc.close(SaveOptions.NO);
    
      pp("------------");
      pp("# try another way");
      var doc2 = app.open(indd);
      remove_all_pages_use_loop(doc2);
      doc2.close(SaveOptions.NO);
    }
    main();
    

    result

    # create 5500 pages
    30395026
    ------------
    start deleting (use preferences)
    end deleting
    28215999
    ------------
    # try another way
    start deleting (while --)
    end deleting
    268641063
    

    Thank you

    mg

  • [AS] Cannot remove a Page element

    I'm confused as to how to remove a page element. It is a jpeg embedded in a document of AI, I can remove it by selecting and executing a simple script like this:

    Tell application "Adobe Illustrator"

    say active document

    delete selection

    end tell

    tell the end

    However, if I try to find and delete as part of a larger script, it won't clear. No error is thrown and everything else in the script works, but the item not be deleted. Here's a piece of the script that I had hoped to find and remove the element. Note that the script can find the item very well because I am able to copy its position property and it allows to place another point in that I paste.

    the value question for each page element of the document 1

    Repeat with e from 1 to the number of question

    put pourla to the point e of question

    If width of pourla = 26 may

    on theBounds position of pourla

    delete pourla

                        paste

    Paster point value 1 of the selection

    theBounds the value position of Paster

                   end if

    end repeat

    Any ideas would be a great help. Thank you.

    You might have better luck looking for elements of running through all the elements of the page if you want to remove is always an embedded JPEG images.

    This is an example

    Tell application "Adobe Illustrator"
    the docRef active document value
    Define rasters (each point on the page of the docRef) whose class is the point of frame
    Remove rasters
    Close docRef save Yes
    tell the end

  • Remove / delete pages with javascript (or vbs)

    There is a MyPage.Add ()... There is no MyPage.remove ()?

    Can I delete a page with a script number?

    The problem:

    I have a problem facing pages. I need essentially to remove two pages to two pages, remove both and so on for about 2000 pages. Of course I could click and delete, but what would be the fun in that?

    The pages are created in a facing-pages datamerge. I do not understand why CS4 cannot manage in the face of datamerge pages... Whatever it is, I need a work around.

    Visually in the PAGES tab, what I have is the following

    Merge data entry enter merge data

    In the face of the Page A In the face of Page b.
    Merge data entry AMerge data entry A
    Merge data entry BMerge data entry B
    Merge data entry CMerge data entry C
    Merge data entry DMerge data entry D

    What A, A, B, B, C, C, D, D, etc.

    What I need to finish with is

    A B
    A
    B
    C
    D

    What A, B, C, D, etc.

    The rules: the database is untouchable. Face to face Pages A and B side are formatted differently.

    Any help or information leading to a job work around willl be rewarded of handsomly now that I get my cheque to a rich African uncle, I unfortunately discovered through an email today, had recently died.

    Thank you very much!

    Marc

    But there is a myPage.remove)

    There are frames of text on pages to delete block? In a script, it behaves exactly as in the UI: text block is moved to the next section in the thread (usually on the next page). So if this is the case, this script works but not the way you intended.

    In any case, you want to delete a single page, then go two pages - remove two pages - jump 2 - etc., until the end of the document.

    This Javascript should do it:

    var curpage = 0;
    app.activeDocument.pages[curpage].remove();
    while (curpage < app.activeDocument.pages.length)
    {
     curpage += 2;
     app.activeDocument.pages[curpage].remove();
     app.activeDocument.pages[curpage].remove();
    }
    

    It boings out with an error at the end if your document contains an odd number of pages (?), because he might try to remove a page after the last of them, but this isn't a critical error, it seems to me.

    I tested it on a document of 30 +, and it has successfully removed #1, then #4 and #5, then #8 and #9, etc. Yet, paranoia is a healthy lifestyle (when applied to computers), then running on a copy, will ya.

  • How to ACCEPT values on page APEX sent by external APEX through POSTmethod

    Hi people,

    How can I accept the values in my page APEX which are send to my page through the POST method from outside of my application?

    Sample test:
    Of non-apex application (simple html page), I would like to post 2 fields (field "Par1" and the field "Par2") in my APEX page. On my apex page I defined the areas P102_PAR1, P102_PAR2.
    <html>
    <HEAD>
      <TITLE>Tester</TITLE>
    </HEAD>
    <body>
         <h1>Test to POST form values into APEX page</h1>
         
         
         <form action="[my_url???]" method="POST">
              <table>
    
                   <tr>
                         <td>Par1</td>
                         <td>
                              <select name="Par1">
                                  <option value="OPTION1">Option 1</option>
                                  <option value="OPTION2">Option 2</option>
                                  <option value="OPTION3">Option 3</option>
                              </select>
                        </td>
                   </tr>
                   <tr>
    
                         <td><label for="Par2">Par2</label></td>
                         <td><input type="TEXT" name="Par2" id="Par2" size="30" value="123"></td>
                   </tr>
              </table>
              <input type="SUBMIT" value="send">
         </form>
    </body>
    </html>
    How can I define action URL in top shape, so once you press the "SUBMIT" button it will fill both fields in my apex page?
    My APEX (p102) page is a blank page, with only 2 fields P102_PAR1, P102_PAR2 text at the moment.

    Thank you very much
    Tomas


    ===========
    If I put above url to: ' http://cit-dev-as5:7780 / pls/he/f? p = 700:102:1659258057907233' (stright to my page & session sharing) and press "SUBMIT" button, then I recive below error message:
    f: SIGNATURE (parameter names) MISMATCH
    VARIABLES IN FORM NOT IN PROCEDURE: PAR1,PAR2
    NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM: 
    
      DAD name: he
      PROCEDURE  : f
      URL        : http://cit-dev-as5:7780/pls/he/f?p=700:102:1659258057907233
      PARAMETERS :
      ===========
      P:
       700:102:1659258057907233
      PAR1:
       OPTION1
      PAR2:
       123

    Tomas:

    Treat the input of an external application that needs to be passed to an APEX application is to create a procedure from pl/sql intermediary who will receive the input of the external source and then format this entry as required by the syntax of the URL of the APEX and then re - direct the user to this URL APEX format.
    Using the example you provided you have the pl/sql procedure as follows

    Create or replace  procedure extinput(par1 in varchar2,par2 in varchar2) is
    l_apex_url varchar2(4000;
    begin
    l_apex__url:=
      'http://myhost:myport/apex/f?p=700:102::::P_102_PAR1,P_102_PAR2:' ||
       par1 ||','||par2;
    
    owa_util.redirect_url(l_apex_url);
    end;
    

    The names of parameters in your procedure must match the names of the fields of the POST.

    CITY

  • Page APEX control items are displayed using the APPS user!

    Hi friends,

    I am running an Apex Application of the Apps (E Business suite-> link to Application). When the user clicks on this link without asking the login of the APEX, the application is open based on credentials Apps. Now my problem is the customer requests to restrict the display of the elements of the page (i.e. buttons) in the Application of the Apps user login and accountability-based APEX.

    I know how to show the result as normal button: APP_USER = "ADMIN" for example. But I don't know how to control from APPS. As I am new to both I need help from you guys to get this functionality.

    I need the faster response because it is very urgent for me.

    Thank you
    Stéphane.

    When you call page APEX-separated values, you can set the Variable of APEX with comma

    For Ex.

    f? p = 102:1:F102_ORG_ID, F102_GL_SET_OF_BKS_ID, F102_RESP_ID, F102_USERID, F102_HOME_URL:' | vOrgId | ',' || vSobId | «, » || vRespId | «, » || vUserId | vURL

    Alternatively, you can pass these parameters as Cookies.

    Let me know if you need something more.

    HTH

    Dinesh

    Published by: DineshS on February 20, 2009 02:08

Maybe you are looking for

  • Keyboard, keeping for Satellite M30X clip

    Anyone know where I can get a replacement retaining clip for a laptop keyboard? Its a small band of white plastic that fits into the connector of the keyboard ribbon cable to keep in place. It has two legs tiny ends which locate in the connector to s

  • Satellite Pro 6000 - new RAM does not work

    Hi all New to this forum sorry if this was asked before, I did a search but could not find anything so here goes. I just bought a new RAM for my Satellite Pro 6000. When I install it nothing happens the laptop won't boot. If I put the old stick in no

  • Lenovo Vibe P1 SIM question

    Hi all Bought a new lenovo P1. Inserted small size (hope that is nano sim) SIM without using this ferry (2 sim container..). Mobile doesn't detect SIM as well as unable to pull out the SIM card. How can I take out the SIM card? No matter what Lenovo

  • Try installing ubantu OS on Dell R220 server - unable to launch the RAID configuration wizard

    I ubantu 14.04.3 Server OS on a DVD disc that is inserted in the R220 Dell server. I am trying to install the OS, but it does nothing when I go through the OS deployment. Server just restarts and crosses the start pages. In addition, (1) should I RAI

  • Compression?

    I have a lot of images in my application. Is it possible to compress even more than the rate of compression of a bar file? Then what must decompress accordingly.