How to use stack canvas in tab canvas in oracle forms

hi all,
how to use stack canvas in tab canvas in oracle forms. please if any one help out in this.

Hi
u can simply create a button in ur tab canvas in this button pls write the following as an example...
SHOW_VIEW('STACKED_CANVAS');
GO_ITEM ('SAL'); -- Pls note this item should be navigable and visible in ur stacked canvas form
HIDE_VIEW('TAB_CANVAS');In order to return back to ur tab_canvas pls create a button in this button pls write the following...
HIDE_VIEW('STACKED_CANVAS');
SHOW_VIEW('TAB_CANVAS');
GO_BLOCK('EMP');
GO_ITEM ('EMPNO'); -- Pls note this item should be navigable and visible in ur stacked canvas form
Hope this helps...
Regards,
Abdetu...

Similar Messages

  • How to use multiple Windows in a module in oracle forms

    Hi,
       I am new in oracle forms.I am using oracle forms 11g with weblogic server 10.3.5 at windows7.I have 2 canvases say CNVS1 & CNVS2 and two windows as Window1 & Window2.
    CNVS1 is attached with Window1 and having BL datablock.
    CNVS2 is associated with Window2 and having emp datablock.
    In navigation object window there is BL datablock before Emp datablock.
    When I run this module:I got only CNVS1 canvas at window1,If I click at Window2 from menu then Window2 Comes with empty, there is no any canvas(CNVS2) at window2.Please let me know what is wrong here.
    Thank You
    regards
    aaditya

    Hi Aditya,
    Just user Show_view('Your Canvas Name');
    If you have separate datablock for each of your canvases then you can use
    GO_BLOCK('');
    GO_ITEM('');
    Hope this will help you,
    Regards,
    Soofi

  • How to build stacked canvas on tab canvas page

    I'm a beginner for oracle d6i. Please tell me
    how to build stacked canvas on tab canvas page for
    details. I need horizonal scrollbar on tab canvas.
    Thanks in advance.

    Thank you for your reply. In general, i really put stacked canvas onto the tab canvas, However i saw one solution of john.williamson in this forums (re:Silent Client Installation He didn't provide it
    for details to put stacked canvas onto the tab canvas' page.

  • How: Stacked Canvas on Tab Canvas ?

    Hi All,
    I have content canvas in which I have placed tab canvas with 5 tabs, and on one of the tab I want to place stacked canvas because I have to display multiple blocks on this stacked canvas with vertical scroll bar (This I can specify by saying Vertical scroll bar as Yes for Stacked canvas).
    There is a restriction that, it is not possible to place stacked canvas on tab canvas (Possible only on content canvas), so is there any other workaround.
    Please let me know if anyone has worked on similar type of screen development. Appreciate if anyone can provide some sample code.
    Advance thanks for your time and help.
    Regards
    CJ

    Hi All,
    I found the solution and successfully implemented the desired functionality
    DECLARE
         v_Tab VARCHAR2(1000);
    BEGIN
         v_Tab := GET_CANVAS_PROPERTY('CAN_TABS', TOPMOST_TAB_PAGE);
         IF v_Tab = 'a1' THEN
         GO_BLOCK('BLK1');
              EXECUTE_QUERY;
         ELSIF v_Tab = 'a2' THEN
              GO_BLOCK('BLK2');
              EXECUTE_QUERY;
         ELSIF v_Tab = 'a3' THEN
    *          Set_View_Property('CAN_STK_FIS_NET',HEIGHT,280);*
    *          Set_View_Property('CAN_STK_FIS_NET',WIDTH,630);*
    *          Set_View_Property('CAN_STK_FIS_NET',DISPLAY_POSITION,6,135);*
    *          SHOW_VIEW('CAN_STK_FIS_NET');     *     
              GO_BLOCK('BLK_FIS1_GRID');
              EXECUTE_QUERY;
    END IF;
    END ;
    I have seperately created stacked canvas 'CAN_STK_FIS_NET' and placed multiple blocks as per requirement and able to achieve the functionality.
    Please let me know if any one need any detail explanation.
    regards
    cj

  • Urgent: Stack Canvas in Tab canvas

    Hi,
    I have a very urgent requirement. Please help me solving this.
    I want to have One tab canvas which has three tab pages.
    On the First Tab i want to fetch the data from some table say XX_CUSTOM_TABLE.
    Now, This should be displayed in Tabular format with Horizontal and vertical scrolling as the table has many columns.
    Please give me step by step instructions so that it could be implemented quickly.
    P.S : I am using Oracle forms 6i.
    Thanks in advance,
    Yadnesh

    Hi,
    1. When i open the form only the fields added in the tab canvas are visible.
    Where u have drawn the stack canvas,you need to create in the main canvas where ur tab canvas is there and u need to drag it to tab canvas.Have u created the trigger when tab_page_changed?
    2. when i change the tab page from tab 1 to tab 2 and then again get back to tab 1, then the stack canvas fields are visible and the fields in tab gets invisible.
    Just place the stack canvas correctly after the fields in tab page 1.
    3. The stack canvas is not horizontally scrolling.
    Just go to the property palette of stack canvas and make yes to both horizontal and vertical to yes.
    Do i have to create a stack canvas separately? and then how do i drag it into tab canvas. i am still not getting this. because.
    when i open the tab canvas page i do not find the stack layout so that i can drag it like a normal text item.
    Yes u need to create a stack canvas separately. Just open the Mani canvas the tab pages are there, then in that click the stack canvas icon and create a stack canvas and create all the fields, and move the stack canvas to the tab page. And u need to create a when tab page changed trigger at form level.
    Regards
    Sri

  • Stacked canvas on tab canvas

    Hi,
    I want to show a stacked canvas on a tabbed canvas. on stacked canvas, there are many fields that cannot be put on tabbed canvas and i must have to put these on stacked canvas with scrollbar.
    How can i put that stacked canvas on tabbed canvas?
    Regards,
    Qasim

    Hello,
    When the Layout is open, just add the stacked canvas by selecting it in the tool bar and drawing its bounds onto the tab canvas.
    Francois

  • How to use touchpad to sign electronic signature on website form?

    how to use touchpad to sign electronic signature on website form?

    website is related to personal information i am completing for new job (background check). You will not be able to access site they provided user name/password. After completing the form the instructions are to hold left button on mouse in my case trackpad and sign the form ..no luck. I added microsoft mouse as another alternative to trackpad still no luck. Apple support is closed today. Any help is appreciated.

  • How to Handle Automatic Skip Property of Item in Oracle Forms through Custom.pll or from other methods

    Hi All,
    How to Handle Automatic Skip Property of Item in Oracle Forms through Custom.pll or from other methods.
    This is a enhancement requirement.
    When ever user enter value in field 1 then automatically cursor should go to next field.

    Hello Bobb,
    You can create a trigger(when-list-changed) for each list item where you could:
    1.recreate the record groups and then use POPULATE_LIST so you can hide the selected values. In forms builder online help there are some good examples about create record groups dynamically.
    or
    2.you can perform a validation instead of hiding the selected values. If the values is already selected the display a message 'Value already selected....'
    Second option is much faster(only an 'if clause')
    Hope this helps.
    Regards,
    Alex

  • How to encrypt the text in password field in Oracle Forms version 6i

    Need help!
    How to encrypt the text in password field in Oracle Forms version 6i?
    one way is to change the settings in the property palette. Can somebody provide me some script to be run while the form is running which will enable the password to be encrypted?
    Thanks!

    Hello,
    Do you mean "hidden" (replaced with stars) or encrypted (that needs to be decrypted ?
    Francois

  • How to change content/stacked canvases to tab canvas

    Hi,
    I have created a form which has one content canvas and multiple stacked canvases. The content canvas displays the first page and then we hv to click on next to go to the next stacked canvas and so on. I want to try making it in tabs (tab canvas) and then I will decide which one looks better and performs good.
    Can you guys please give me a detailed instruction on how to convert my content and stacked canvases to tab canvases. I have never done tab canvas. I tried one, I changed one of my present stacked canvas to tab but all the fields and texts were gone and there were just two tabs in it.
    Please suggest. Thanks in advance.

    Might get a better response in the Forms forum...
    Forms

  • How to use stacked canvas

    hi,
    i use oracle forms 10g ,win xp pack2 ...
    i want to elimine empty records in my forms using stacked canvas !!
    thnx
    show this image :
    http://nsa30.casimages.com/img/2012/12/30/121230071422805901.png
    Edited by: 979155 on 31 déc. 2012 10:01

    You have to define the number of records that you want to display - it is not dynamic so I doubt it could be done. You might be able to do something with visual attributes to make it more appealing to the eye, but you would still have empty cells displaying if there wasn't data for those records.

  • Display stacked canvas on tab canvas page

    Hi,
    I am using Forms 10g. I have Content canvas named CANVAS1. I created a tab canvas called TAB_CAN contains TAB_PAGE1 and TAB_PAGE2, Stacked Canvas called STACK1.
    If if create tab canvas on content canvas thourhg labout editor. It's display well when forms run. But, i have created manually.
    1. How to display tab canvas programatically.
    2. How to display stacked canvas on TAB_PAGE1
    Regards,
    Murali

    Looks like you are in the wrong forum.
    Please post this in the [Forms forum|http://forums.oracle.com/forums/forum.jspa?forumID=82]
    Timo

  • How to use translatetransform and rotatetransform on Canvas

    Hi,
    Used TransalateTransform and Rotatetransform on canvas individually using ManipulationMode.
    How to apply, both TransalateTransform and Rotatetransform on canvas Concurrently in Windows Store App.
    Regards,
    Chakradhar

    This is the wpf forum rather than windows store app forum.
    It is in your own interest to ask questions in a forum where the most developers who work on your technology of interest are likely to be reading questions.
    https://social.msdn.microsoft.com/Forums/windowsapps/en-us/home?category=windowsapps
    I suggest when you post there you also explain your requirement more.
    EG
    Is this in code, xaml, are you considering binding values, is it the children of the canvas or the canvas itself?
    What end result are you hoping to achieve? 
    Without understanding those I would have to guess what you mean.
    I should think it's pretty similar to wpf.
    A translatetransform is about moving stuff round and you would apply it in xaml like:
    http://www.c-sharpcorner.com/uploadfile/mahesh/translatetransform-in-wpf/
    <Rectangle Width="200" Height="50" Fill="Yellow" Margin="61,27,117,184" />
    <Rectangle Width="200" Height="50" Fill="Blue" Opacity="0.5" Margin="59,101,119,110">
    <Rectangle.RenderTransform>
    <TranslateTransform X="50" Y="20" />
    </Rectangle.RenderTransform>
    </Rectangle>
    A rotatetransform is about rotating something.
    http://www.codeproject.com/Articles/14895/WPF-Tutorial-Part-Transformations
    <ListBox Name="listBox1" FontSize="15"
    Canvas.Bottom="140" Canvas.Left="30"
    Canvas.Right="150" Canvas.Top="40">
    <ListBoxItem IsSelected="True">Canada</ListBoxItem>
    <ListBoxItem>Spain</ListBoxItem>
    <ListBox.RenderTransform> *(1)*
    <RotateTransform Angle="-20"
    CenterX="50" CenterY="50" /> *(2)*
    </ListBox.RenderTransform>
    </ListBox>
    You do multiple transforms using a transformgroup
    https://msdn.microsoft.com/en-us/library/ms750975%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
    And you can bind those values to properties of a viewmodel or a dynamicresource.
    This might, of course, be slightly different in windows store apps.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML

  • Move Field from Stacked Canvas to Tab Canvas

    Forms R2 10.1.2.0.2. Adding tab canvas to an existing form and want to retrofit a tab canvas into the form. When I move an existing field via the property sheet by changing Canvas and Tab page to Page, the field does not show. I can create a new field on the tab canvas with no problem. Is there a trick here that I am missing?

    I figured it out. You have to reset the X & Y position with an offset of the 0,0 position. The Tab Canvas has it own Grid separate from the Main Canvas, which starts at 0,0. I should have seen it before creating this post.

  • How to use LIKE function with a parameter in Oracle REPORT builder??

    how could i use parameter inside a LIKE function in Oracle reports builder?
    it works in SQL plus, but not in report builder!!
    Example:
    select code,desc from item_master where desc
    like '%&give_desc%'; ---works in SQL
    like '%:give_desc%' ---doesn't work in report builder!!

    Hi Renil,
    You will need to use the wildcard character (%) and the concatenation character (||) to join to your user parameter.
    i.e. like '%'||:give_desc||'%'
    Regards,
    John

Maybe you are looking for

  • Can't load or rebuild iPhoto library

    My iPhoto library hasn't been appearing. I've tried going through the 4 repair options (that show when I open with Command+Option) and have tried the rebuild a few times now. Each time I try to rebuild, it stalls at the same place (pic attached). Fro

  • Having trouble connecting SQL Developer to database on LINUX machine

    Having trouble connecting SQL Developer to database on LINUX machine Hello, I am trying to connect my windows 7 home premium machine to an oracle database 11g on a RedHat 5 machine using SQL Developer. i got this error message on SQL Developer Status

  • XI software list.

    Hi All, I am trying to do the XI3.0 installation. In order to install the SAP WEBAS (Abap and java), i have found the related guides. In the media information of WEBAS for ABAP on Oracle databse, i am confused and unable to find the link to for softw

  • Moving songs around in itunes playlists

    I cannot move songs around in my itunes Playlists. what setting do i need to change so i can do this?

  • Toshiba lx835-3300

    My toshiba lx835-d3300 had a message, problem with c drive. It went thru a count down 1%-100% and then shut down. I pressed the power button to turn it back on and the toshiba innovation screen comes on and seems to be starting but nothing happens. T