Create Report/Form region with button in header?

For theme 16, how to create Report or Form region that will have HTML Template Alternative1 button in tile (in that gray part, and not under)?
<br>
THX in front!
<br>
P.S.
<br>
Have tried something, http://i11.tinypic.com/47dsuhv.png and http://i14.tinypic.com/2wqaon7.png, but as you can see no success!!
8(
<br>
Message was edited by:
Funky
Message was edited by:
Funky

Hi Funky,
Put the button in the "Right of Page Title" position - this puts it at the right-hand end of the region title.
Regards
Andy

Similar Messages

  • Can we create Interactive forms only with ABAP & without using GP,  or Java

    Hi,
    I would like to know if we can create Interactive forms only with ABAP & without using GP or Java. We want to develop an offline solution using Interactive forms, but would like to use only ABAP for creating the forms. All the documents so far either refer to creating the forms, in reference to / in sync with: ISR (Service Requests), GP (General Procedures) or Java. Can this be done with ABAP alone?
    Regards,
    Ramesh
    Edited by: Ramesh Nallabelli on Apr 16, 2008 12:02 AM

    Hello Ramesh,
    You should be able to create Adobe Interactive Forms using only the ABAP stack (without GP, Java, etc). Please refer to the thread below. Hope it helps.
    Re: help for-offline interactive forms based on sending receiving mails in ABAP
    Regards,
    Rao

  • Multiple Form Regions with a single Save button

    Hello,
    Is it possible to have multiple form regions on a single page, with a single Save button that commits changes in all form regions? If so, would the forms have to be manual forms?
    If that is not possible, or a bad way to go with APEX, what are my alternatives?
    I am trying to avoid the user having to click through many screens to input the data. Logically each section should be in a different table, but I would like to group some of the sections together to reduce the number of pages the users need to navigate to.
    Thanks in advance for your help,
    Johnnie
    Edited by: johnniebillings on Jun 1, 2009 9:33 PM

    Hi Johnnie,
    I assume that the tables are related somehow?
    If so, you can create a SQL View on the joined tables (making sure that you have a unique ID for each record in the view that can act as the Primary Key), base the form on that view and then use an INSTEAD OF trigger on the view to populate the individual tables.
    Andy

  • Minor glitch with manually created report form

    I don't know if this is "as designed" or not, but it seems like a minor glitch. If I create a report form manually, using htmldb_item syntax and have a column or two using the hidden construct (htmldb_item.hidden) and subsequently go back into the report source to make a change, the hidden columns suddenly become visible again so that I have to go into the report attributes and unlick the show button, even though the field is still defined as hidden.
    Like I said, it's a minor issue, but something that should be probably be cleaned up someday.

    Hi,
    I am also very new in HTML DB and i got lot of help from HTML DB.
    So please try this may it will solve your problem.
    SELECT xy.proj_stat_no, xy.proj_no, xy.stat_dt, xy.in_pgrs_stat_dsc,
    xy.stat_dsc, xy.proj_id
    FROM (SELECT htmldb_item.hidden (31, proj_stat_no) proj_stat_no,
    htmldb_item.text (32, proj_no, 42) proj_no,
    htmldb_item.text (33, stat_dt, 43) stat_dt,
    htmldb_item.select_list_from_query
    (34,
    in_pgrs_stat_dsc,
    'select distinct STAT_DSC, STAT_DSC from PROJECT_STATUS_REF'
    ) in_pgrs_stat_dsc,
    htmldb_item.select_list_from_query
    (35,
    stat_dsc,
    'select distinct STAT_DSC, STAT_DSC from PROJECT_STATUS_REF'
    ) stat_dsc,
    htmldb_item.text (36, proj_id, 46) proj_id
    FROM project_status
    WHERE proj_no = :p3_proj_no) xy
    WHERE 1 = 1
    UNION ALL
    SELECT htmldb_item.hidden (31, NULL) proj_stat_no,
    htmldb_item.text (32, NULL, NULL) proj_no,
    htmldb_item.text (33, NULL, NULL) stat_dt,
    htmldb_item.select_list_from_query (34, NULL, NULL) in_pgrs_stat_dsc,
    htmldb_item.select_list_from_query (35, NULL, NULL) stat_dsc,
    htmldb_item.text (36, NULL, NULL) proj_id
    FROM DUAL
    For more Details regarding Tabular form see the link below:
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html
    Thank You,
    Amit

  • Select List (query based LOV) in a wizard created report form

    I have created an updatable report form with 3 columns:
    app_id
    user_id
    group_id
    Each app_id has multiple group_id's associated with it, and I want to show the group_id field as a Select List (query based LOV) that contains the groups associated with the app_id.
    My query for the select list needs to be similar to the following:
    SELECT DISPLAY_NAME, GROUP_ID
    FROM APPLICATION_GROUPS
    WHERE APP_ID = ?????
    ORDER BY 1
    The problem is, I don't know how to reference the app_id from the main report to replace the ?????.
    In other words, if my report returns 2 rows of data like this:
    app_id----------user_id----------group_id
    1-----------------24------------------3
    2-----------------24------------------15
    Then how do I get the group_id column to be a select list of possible groups for each application? If app_id 1 has 3 groups associated with it, 3, 4, & 5 and app_id 2 has 2 groups associated with it, 15 & 16, then those each of the select lists should be based on the app_id.
    Hopefully I explained this clearly.
    Thanks,
    Kris

    Leo,
    Thanks for the response, but I don't think you quite understand my problem. If I go to the Column Attributes screen for the group_id field, I have the "Display As" drop down set to "Select List (query based LOV)", not "Select List (named LOV)". This requires that the sql query be written in the "List of values definition" text area below. Within that text area I have the following query:
    SELECT DISPLAY_NAME, GROUP_ID
    FROM APPLICATION_GROUPS
    WHERE APP_ID = ?????
    ORDER BY 1
    The APP_ID that I need to reference is for the current row of data that is being processed. Therefore, I can't use a :PNNN_APP_ID variable, because that field does not exist on the page.
    Hopefully this explains it a little better.
    Thanks,
    Kris

  • Any way to create a form region without html table tags?

    I'm trying to make a report region that can have the selected row turn into a form for editing the row data and it's almost working ok this way:
    PL/SQL Dynamic Content region 1: TABLE tag, header row and data rows before the selected row, and last TR and TD tags
    form region: the selected row
    PL/SQL Dynamic Content region 2: /TD and /TR tags, data rows after the selected row and /TABLE tag
    That makes the whole form appear in one cell of the table. I would like to put each form item in its' own cell in the "master" table but that would require first getting rid of the table tags (class="formlayout") that are always generated around form items. Any chance?

    Hello,
    I'd have to see your exact example but using javascript one way you can do it is put your form table in a hidden div then you can use javascript to adjust the tags you want , grab the modified dom object then put in the table you want.
    You can also use a modified version of this maybe [http://apex.oracle.com/pls/otn/f?p=11933:77]
    if you could put an example of what you have on http://apex.oracle.com] it will be easier to give you some suggestions. Also you need to be careful when moving form items around an APEX page. Form items in random places can cause unpredictable results.
    Regards,
    Carl
    blog : [http://carlback.blogspot.com/]
    apex examples : [http://apex.oracle.com/pls/otn/f?p=11933:5]

  • How to create Labview User Interface with buttons?

    Hello,
    I try to create a user interface, where the TestStand sequencies can be selected one by one not only Test UUT, Single run and run Mainsequence (about 20 buttons needed).
    I'm playing with the simple UI shipped with TS and can load the sequence file and run automatically a sequence (Main or another).
    How can I create and assign buttons to all sequence files in my TS project?
    Any help would be appreciated.
    Thanks. (TS 4.0, LV 8.0)

    I've modified my main VI with the below steps.
    I still don't know how to create and assign front panel buttons to the user interface.
    Anybody could explain to me how do I need to modify the attached part of my main vi and how to assign buttons.
    Thanks.
    Attachments:
    InteractiveArgs_2.png ‏12 KB

  • Creating a form field with Arial MS Unicode and Identity-H encoding

    I need to create a text field on an Adobe Acrobat form that has a font of Arial Unicode MS with the font encoding being set to Identity-H. However when I use Adobe Acrobat 9 Standard (v9.5.1) to do this the encoding is always set to UniKS-UTF16-H. I can't find a way of changing the encoding  to Identity-H. Any suggestions on how I can achieve this.

    I have a 3rd party form filling app that needs the encoding set to identity-h to support the range of characters that could be input. I could ask the vendor to change the app to fix the problem but there would be significant process involved in that. I have a small demo that shows that creating a form with the encoding set to identity-h provides a resolution. The demo was created with iText but as the real form is considerably more complicated I'd rather not use iText if I don't have to. Since the form was originally created with acrobat the question remains as this would be the "least painful" route to a resolution.

  • Creating dynamic form data with SetValue QPAC

    I'm creating form data in a workflow process, and using it to populate a dynamic XDP with a subform.  In my test form, the subform is named "Item", with a text field named "ItemData".  Initially, I can create the form field via the SetValue QPAC and using these parameters;
    location: /process_data/form/form-data/data/xdp/datasets/data/fields/Item/ItemData
    value: "first"
    However, I need to add multiple instances of the Item subform.  For example, if I fill out the test form with 3 items and export the data to XML, the data structure comes out like this:
    first
    second
    third
    So, the question is, how do I use the SetValue QPAC to create multiple instances of the items? I've tried various locations;
    /process_data/form/form-data/data/xdp/datasets/data/fields/Item.x/ItemData
    /process_data/form/form-data/data/xdp/datasets/data/fields/Item[x]/ItemData
    /process_data/form/form-data/data/xdp/datasets/data/fields/Item/ItemData.x
    but none of them seem to work.  I know I'm probably just missing something simple.  Anybody care to fill me in on the obvious?

    Hi Clifton
    Looking back on this thread, I think you're saying that the data is eventually going to come from a MySQL database.
    In that case, our SQLPlus QPAC will do the job perfectly.
    You just specify the query, specify the repeating element:
    /process_data/form/form-data/data/xdp/datasets/data/fields/Item
    and then map columns in the result set to sub-element of the Item.
    eg mycolumn -> ItemData
    The SQLPlus qpac will create all the repeating items for you.
    Does this work for you?
    If not, please specify what you'd like to see.
    A couple of options are:
    - A setValue qpac that correctly inserts for expressions like: process_data/form/form-data/data/xdp/datasets/data/fields/Item[2] (probably difficult to do)
    - An InsertSequence qpac that takes a repeating element and a count as an input, and creates that many repeating elements. You could then refer to them using the regular SetValue qpac. (Probably easier to do.)
    - Something else. Go wild :-)
    Howard

  • How to create advance table region with columns by code

    hello friends
    i need to create advance table region and columns dynamically ... for that i want to know any code snippet do you have
    please share with me that would be really great help

    Hi ,
    It is not possible through code but
    1.) U can create a new custom OAAdvanced table under a custom region using JDeveloper.
    2.) Create stack layout bean using personalization on the page ,and in extend property of StackLayoutBean mention the complete path of above custom region .
    Thank
    Pratap

  • Creating new forms using a button

    I am trying to make a button that creates a new form which in turn creates another form etc. any suggestions

    You could just create an new instance of a Form in the click event handler for a Button and display it by calling its Show method:
    Form1:
    private void button1_Click(object sender, EventArgs e)
    Form2 frm2 = new Form2();
    frm2.Show();
    The constructor of the second form can then display another form:
    Form2:
    public partial class Form2 : Form
    public Form2()
    InitializeComponent();
    Form3 frm3 = new Form3();
    frm3.Show();
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question. Please don't ask several questions in the same thread.

  • How to create the Contribution region with Native document

    HI,
    I have the below scenario to have the Contribution region in my custom page.
    1) I am displaying all Campaign records in primary page.
    2) When I click on each Campaign record, this will take me to secondary page to display the Editable Contribution region assigned with Native document.
    My requirement :
    3) I have 4 more Contribution Regions which will have to relate to the same above said Campaign in secondary page. To achieve this, I have only one contribution region with multiple elements within that region in my secondary page.
    Please let me know how I can add different native documents to 4 different Contribution Regions. Now if I add different document to the region, same document will be assigned to the each region having different elements. Also if I add multiple regions in secondary page, primary page will only point to first region available in that secondary page.
    Please let me know how I can add 4 different native documents to 4 different Contribution Regions available in secondary page. It would be great if any one give idea as soon as possible.
    Thanks in advance.
    Anyone did not come across this type of scenario?
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on Aug 10, 2010 9:35 PM

    The secondary page is used to display a specified content item. One content item, specified on demand. Only one. Period.
    If you want to assign multiple content items to multiple regions, well you're talking about primary pages.

  • Create XML Form Resource with Repository Framework API

    Hi KM Experts,
    What's the procedure to create an XML Form Resource based on an exisitng XML Form Type?
    I'm working with SAP EP 6 SP2 so I assume I need to use following interfaces:
    IXMLForm
    IXMLFormManager
    IXMLFormsService
    But how do I create a new resource of XMLForm type ...
    Regards
    Laurent
    Message was edited by: Laurent Bouziani

    Which database release are you using...
    The computed constructors feature of XQuery may help.
    -Mark

  • How to create PDF Merging Template with Buttons & javascript?

    I am trying to create a PDF template that has buttons that request a file or email be inserted as you progress through the document.
    There will be a drop down menu that has options for different types of "customers", each type of customer will show a different set of buttons.
    Each button, once clicked will prompt for a PDF document to be inserted. Each button will be labeled what it requests. For example, "Receipt", "Title", "Insurance Policy" etc. The documents will need to be merged in the order they were received via the buttons.
    In the end, after all the buttons have requested the specific file, it will merge the selected files into one PDF document.
    Does anyone have some insight or ideas on how to get started on this? I am sure Java script will be involved.
    Thank you! Your help is appreciated!

    Hi Travis ,
    You are absolutely correct ,to get more accuracy ,you will certainly have to use java script to get this task done.
    However if you want to add buttons ,you can do it from Acrobat.
    Tools>Interactive Objects>Add Button
    Please check the button properties if it reduces your work to any extent .Go through all the options and see how it goes.
    Regards
    Sukrit Dhingra

  • Interactive report search region new buttons problem (theme 25)

    Hello!
    When I add new buttons in position "Interactive report search bar" I have a problem like this: [http://files.mail.ru/1AFHY6?t=1|http://files.mail.ru/1AFHY6?t=1]
    On different dimensions and also on iPad2 the situation is bad.
    How can I fix it?
    Apex 4.2 - theme 25 (also 24 and 26)

    any ideas?
    Edited by: ElectroD on Nov 27, 2012 7:56 AM

Maybe you are looking for

  • Recovering emptied trash without Time Machine?

    I had a .wav file in the trash that I accidentally deleted. This happened a few hours ago. I do not have time machine set up. Is there any possible way to recover this deleted file? Is there also a way to make time machine work with an external 70gb

  • Calendays

    How do I create a calendar in Aperture 3?  Or do I have to export photos to iPhoto to create a calendar?

  • JSP and location of .properties file

    Hi, I have a directory in my C:\apache\tomcat\webapps directory entitled "ignmDBInt". I have a jsp file in this directory that works successfully. I would like it to open a .properties file. However, it cannot be found. Where should this .properties

  • HTML-Code not identified

    Hello, I try to do the following example: APEX check boxes in reports regions In the DB there is a table x_files and in my interactive region I put the following Region Source: select htmldb_item.checkbx(1,rownum) " ",        x.id,        x.filename

  • The recent OS update has deleted all my pics from an app called "my photos" is there any way to get these back?

    the recent OS update has deleted all my pics from an app called "my photos" is there any way to get these back?