Two questions on apex_item.text when date field

Hi, I have a tabular collection with a date field. I need to have validation on the date field, so wanted to create and authorization (is this the best way). In order to do so, I needed to create an application item (again...is this the best way?).
I am very new to javascript and use of the ONCHANGE. Is there a way to have a the value of this apex_item.text placed into that application_item? I have tried the following, but it does not work.
select apex_item.text(6,c006,10,null,
||'style="width:100px;background-color:#FBEC5D; "'
||'onchange="f_set_start_date(this,f6_'||LPAD (seq_id, 4,'0')||')"') start
from apex_collection...where.....
Also, is there a way to force a format for an apex_item.text. I would like it to be in the format dd-mon-yyyy.
thanks again.

Hi Ravi, the javascript is located in the page header.
the Javascript (and this is long as the form has many (8) cascading LOVs) is:
<script language="JavaScript" type="text/javascript">
htmldb_delete_message='Are you sure you want to delete the selected records?';
// Row - Highglight Function
var rowStyle = new Array(10);
var rowActive = new Array(10);
var rowStyleHover = new Array(10);
rowStyle[1]='';
rowStyleHover[1]='';
rowActive[1]='N';
function highlight_row(checkBoxElemement,currentRowNum)
if(checkBoxElemement.checked==true)
for( var i = 0; i
< checkBoxElemement.parentNode.parentNode.childNodes.length; i++ )
if (checkBoxElemement.parentNode.parentNode.childNodes.tagName=='TD')
if(rowActive=='Y')
rowStyle[currentRowNum] = rowStyleHover[currentRowNum];
else
{rowStyle[currentRowNum] =
checkBoxElemement.parentNode.parentNode.childNodes[i].style.backgroundColor;
checkBoxElemement.parentNode.parentNode.childNodes[i].style.backgroundColor
= '#FFFF66';
rowStyleHover[currentRowNum] = '#FFFF66';
else
for( var i = 0; i
< checkBoxElemement.parentNode.parentNode.childNodes.length; i++ )
if (checkBoxElemement.parentNode.parentNode.childNodes[i].tagName=='TD')
checkBoxElemement.parentNode.parentNode.childNodes[i].style.backgroundColor = '';
rowStyleHover[currentRowNum] = '';
document.wwv_flow.f11.checked=false;
// Funntion to Check and un-check rows Rows
function checkAllDetail(pAllCheckbox)
if (pAllCheckbox.checked)
for (var i = 0; i<document.wwv_flow.f11.length; i++)
if (!document.wwv_flow.f11[i].checked)
document.wwv_flow.f11[i].checked=true;
highlight_row(document.wwv_flow.f11[i],i);
} else
for (var i = 0; i<document.wwv_flow.f11.length; i++)
if (document.wwv_flow.f11[i].checked)
document.wwv_flow.f11[i].checked=false;
highlight_row(document.wwv_flow.f11[i],'');
}; // checkAllDetail
// Cascading Select List Function
function f_set_casc_sel_list_item(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list',0);
get.add('TAB_CASCADING_ITEM',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for Market Category
function f_set_casc_sel_list_item_mkt(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_mkt',0);
get.add('TAB_CASCADING_ITEM',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for Grade
function f_set_casc_sel_list_item_grd(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_grd',0);
get.add('TAB_CASCADING_ITEM',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for PORT
function f_set_casc_sel_list_item_port(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_port',0);
get.add('TAB_CASCADING_ITEM',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// Cascading Select List INSTATE
function f_set_casc_sel_list_item_distance(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_instate',0);
get.add('TAB_CASCADING_DISTANCE',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for AREA
function f_set_casc_sel_list_item_area(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_area',0);
get.add('TAB_CASCADING_INSTATE',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for SUB-AREA
function f_set_casc_sel_list_subarea(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_subarea',0);
get.add('TAB_CASCADING_AREA',$x(pThis).value);
get.add('TAB_CASCADING_INSTATE',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for LOCAL-AREA
function f_set_casc_sel_list_local(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value,
'APPLICATION_PROCESS=tab_casc_sel_list_local',0);
get.add('TAB_CASCADING_SUBAREA',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for GEAR
function f_set_casc_sel_list_gear(pThis,pSelect){
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value);
get.add('TAB_CASCADING_GEAR',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
// cascading list for start_date
function f_set_start_date(pThis,pSelect){
alert("hello");
var l_Return = null;
var l_Select = html_GetElement(pSelect);
var get = new htmldb_Get(null,$x('pFlowId').value);
get.add('TAB_START_DATE',$x(pThis).value);
gReturn = get.get('XML');
//alert(gReturn);
if(gReturn && l_Select){
var l_Count = gReturn.getElementsByTagName("option").length;
l_Select.length = 0;
for(var i=0;i<l_Count;i++){
var l_Opt_Xml = gReturn.getElementsByTagName("option")[i];
appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
l_Opt_Xml.firstChild.nodeValue)
get = null;
function appendToSelect(pSelect, pValue, pContent) {
var l_Opt = document.createElement("option");
l_Opt.value = pValue;
if(document.all){
pSelect.options.add(l_Opt);
l_Opt.innerText = pContent;
}else{
l_Opt.appendChild(document.createTextNode(pContent));
pSelect.appendChild(l_Opt);
function KeyCheck(e)
var KeyID = (window.event) ? event.keyCode : e.keyCode;
//alert(KeyID); // If you want to check out the values for other buttons
if (KeyID == 120)
doSubmit('SAVE'); // SAVE F9
if (KeyID == 121)
doSubmit('COMPLETE'); // complete F10
</script>
The actual (long) query is (and the date value is C006):
select apex_item.hidden (1,seq_id) checkbox,
apex_item.hidden (2,seq_id)||
apex_item.select_list_from_query(3,c003,'select partner_name d,
state_code r
from partners
where state_code is not null
order by partner_name',
'style="width:100px;background-color:#FBEC5D; "'
||'onchange="f_set_casc_sel_list_item_port(this,f4_'
||LPAD (seq_id, 4,'0')||')"',
'YES',
'0',
'- Select State -',
'f3_' || LPAD (seq_id,4, '0'),
NULL,
'NO'
) STATE,
apex_item.select_list_from_query_xl(4,c004,'select fips_place_name, port
from valid_ports
where fips_state = '
||nvl(c003,0)
||' order by fips_place_name',
'style="width:150px;background-color:#FBEC5D;"',
'YES',
'0',
'- Select PORT -',
'f4_' || LPAD (seq_id, 4, '0'),
NULL,
'NO' ) PORT,
apex_item.POPUP_FROM_LOV(5,c005,'VESSELS',
NULL,NULL,NULL,NULL,NULL,
'style="width:100px;'
||'background-color:#FBEC5D; "') vessel_id,
apex_item.text(6,c006,10,null,
'style="background-color:#FBEC5D;"'
||'onchange="f_set_start_date(this,f6_'
||LPAD(seq_id, 4,'0')||')"') trip_start_date,
apex_item.text(7,c007,5,null,
'style="background-color:#FBEC5D"') trip_start_time,
apex_item.text(8,c008,10,null,
'style="background-color:#FBEC5D"') trip_end_date,
apex_item.text(9,c009,5,null,
'style="background-color:#FBEC5D"') trip_end_time,
apex_item.SELECT_LIST_FROM_LOV(10,c010,'TRIP_TYPE',
'style="width:100px;background-color:#FBEC5D; "') trip_type,
apex_item.SELECT_LIST_FROM_LOV(11,c011,'YES_NO',4) multiple_fishermen,
apex_item.text(12,c012,3,null,
'style="background-color:#FBEC5D"') days_at_sea,
apex_item.text(13,c013,4,null,
'style="background-color:#FBEC5D"') nbr_of_crew,
apex_item.hidden(14,c014) supplier_trip_id,
apex_item.hidden(15,c015) trip_nbr,
apex_item.text(16,c016) partner_vtr
from apex_collections where collection_name = 'TRIP_C'

Similar Messages

  • Office 2010 Don't print blank lines when data fields are empty

    How do you do this in office 2010?  Where do we go now?
    This used to be under the Tools menu in previous versions:
    On the Tools menu, click Mail Merge.
    In the Mail Merge Helper dialog box, click Merge.
    NOTE: You must select the main document and data source for the merge before doing step 2.
    In the Merge dialog box, under When Merging Records, click either:
    Don't print blank lines when data fields are empty.
    -or-
    Print blank lines when data fields are empty.
    Click Close in the Merge dialog box, and then click
    Close in the Mail Merge Helper.
    NOTE: If you made no changes in the Merge dialog box, the
    Close button is not available. Click Cancel instead.
    Back to the top

    Hi,
    In Word 2007 or Word 2010, you can add
    Mail Merge Helper to the Quick Access bar, and perform the steps then.
    To add the
    Mail Merge Helper command in the Quick Access Toolbar in Word 2007, follow these steps:
    a.                 
    In Word 2007, click the
    Microsoft Office Button, and then click Word Options >
    Customize.
    In Word 2010, click File > Options > Customize Ribbon.
    b.                 
    Click
    All Commands in the Choose commands from, and then click
    Mail Merger Helper in the Choose commands from list.
    c.                  
    Click
    Add, and then OK.
    Best Regards,
    Sally Tang

  • Two questions on apex_item.popup_from_lov

    Hi, I have a collection with a field for vessel (coo5). I am using popup_from_lov because it will provide an ability to search for a vessel name (the list of vessels is quite long).
    question 1.
    I would like the vessel_id to be stored, but the vessel name to be displayed. Currently, the vessel_id appears and also is stored. How can I get vessel_name to be displayed.
    The query:
    select apex_item.hidden (1,seq_id) checkbox,
    apex_item.hidden (2,seq_id)||
    apex_item.select_list_from_query(3,c003,'select partner_name d, state_code r
    from partners
    where state_code is not null
    order by partner_name',
    'style="width:100px;background-color:#FBEC5D; "'
    ||'onchange="f_set_casc_sel_list_item_port(this,f4_'||LPAD (seq_id, 4,'0')||')"',
    'YES',
    '0',
    '- Select State -',
    'f3_' || LPAD (seq_id,4, '0'),
    NULL,
    'NO'
    ) STATE,
    apex_item.select_list_from_query_xl(4,c004,'select fips_place_name, port
    from valid_ports
    where fips_state = '
    ||nvl(c003,0)
    ||' order by fips_place_name',
    'style="width:150px;background-color:#FBEC5D;"',
    'YES',
    '0',
    '- Select PORT -',
    'f4_' || LPAD (seq_id, 4, '0'),
    NULL,
    'NO' ) PORT,
    apex_item.POPUP_FROM_LOV(5,c005,'VESSELS',NULL,NULL,NULL,NULL,NULL,
    'style="width:100px;background-color:#FBEC5D; "') vessel_id,
    apex_item.text(6,c006,10,null,'style="background-color:#FBEC5D;"'
    ||'onchange="f_set_start_date(this,f6_'||LPAD(seq_id, 4,'0')||')"') trip_start_date,
    apex_item.text(7,c007,5,null,'style="background-color:#FBEC5D"') trip_start_time,
    apex_item.text(8,c008,10,null,'style="background-color:#FBEC5D"') trip_end_date,
    apex_item.text(9,c009,5,null,'style="background-color:#FBEC5D"') trip_end_time,
    apex_item.SELECT_LIST_FROM_LOV(10,c010,'TRIP_TYPE','style="width:100px;background-color:#FBEC5D; "') trip_type,
    apex_item.SELECT_LIST_FROM_LOV(11,c011,'YES_NO',4) multiple_fishermen,
    apex_item.text(12,c012,3,null,'style="background-color:#FBEC5D"') days_at_sea,
    apex_item.text(13,c013,4,null,'style="background-color:#FBEC5D"') nbr_of_crew,
    apex_item.hidden(14,c014) supplier_trip_id,
    apex_item.hidden(15,c015) trip_nbr,
    apex_item.text(16,c016) partner_vtr
    from apex_collections where collection_name = 'TRIP_C'
    the LOV Vessels is: select (vessel_name||' - '||supplier_vessel_id) vname, VESSEL_ID from VESSELS order by vname
    Question 2.
    could I use SELECT_LIST_FROM_LOV_XL instead and use autocomplete to cull the list of values? Any clues appreciated. thanks

    Hi Scott, I just found your posting PopupKey's do not hold value!
    which indicates that a second apex_item is used to store the display (if I am understanding properly).
    The problem I have then, is that I have three collections on my page. There are a total of 50 items (10 from the first collection, 20 from each of the 2nd, 3rd collection). Does this mean that I am out of luck? thanks

  • Working of SELECT MIN when data field is blank

    Hi expert,
    I'd like use the SELECT MIN instruction to take the older data (yyyy/mm/dd).
    If by accident I have a Data value = blank, the SELECT MIN does will take it?
    I should be sure that the SELECT MIN does not take an initial value.
    Thanks for your support.
    Claudia

    Hello Claudia,
    As per my understanding, If a date field has an initial value then by default it will have a value '00/00/0000'. In order to avoid the initial values you can put in where clause 'field is not initial'
    Hope this helps.
    Regards,
    Himanshu

  • NVL and replace date when date field is null from table

    I am trying to replace a field with a date default when it is null and it is not working
    I was wondering if someone could give me a clue to what I am doing wrong
    Here is the part of the select statement:
    NVL (o.mass_production_date__c, TO_DATE ('1900-01-01', 'yyyy-mm-dd')),
    It is not replacing a NULL value in o.mass_production_date__c if it is returning null
    o.mass_production_date__c is a DATE format field
    TIA,
    Mike

    Can you post the actual query and screen cature show it's not working.
    Most likely is because your data is not NULL but some empty string.
    The function should work just fine like following,
    TEST@rman> create table t1 (val date) ;
    Table created.
    TEST@rman> insert into t1 values (null);
    1 row created.
    TEST@rman> commit;
    Commit complete.
    TEST@rman> select * from t1;
    VAL
    TEST@rman> select nvl(val,TO_DATE ('1900-01-01', 'yyyy-mm-dd')) from t1;
    NVL(VAL,T
    01-JAN-00

  • Tabular Forms - how to change the color of text when the field is disabled

    Hi,
    I have a tabular form and some of it's columns are disabled showing text in grey color...
    is there a way to change the color to black and bold the text...?
    thanks

    Okay, i've taken a look at your example.
    The column formatting does not work on the input fields. The help on the item says that it generates a span with a style attribute. This would work for a display field, not for an input field.
    Css like i've written should be in the style tags, put up in the header section of the page (page -> edit -> header region).
    You've already put script tags there, the style tags go there aswell. You shouldn't even need to put your script tags in the header region. Just put your code up in the javascript functions region (without the script tags).
    However, i tested in firefox and here color works on an input field, changing the font color. In IE it does not do this. Cross browser implementations and such, not much to do about it here. See http://stackoverflow.com/questions/602070/changing-font-colour-in-textboxes-in-ie-which-are-disabled.
    I did notice that you build your form with a bunch of input fields, which you disable through javascript in the footer of the region. Then on submit, you set the disabled to false again for all those fields! If you want those fields to always be submitted to the server, why wouldn't you use the readonly attribute? Readonly fields are always submitted, and can't be edited by the user. Plus, readonly fields CAN be styled however you want! You can get rid of the javascript code in your header then.
    Even the javascript in the footer is not necessary. If you just add 'readonly="true"' (without single quotes) to the element attributes of your items (edit column -> column attributes region) = no javascript at all (less maintenance).

  • How to add a pop-up window when date field is populated?

    Hi All,
    I want a pop-up window to open when termination date is entered on MA-Header tab, how can we achieve this. Is there any settings or script ?
    Thanks,
    Saloni

    HI Saloni ,
    Popup windows are not possible in Sourcing by scripting..I too tried for that requirement.
    POP Up Window Possible?
    Regards,
    Uday

  • OSB & xquery: when use text() or data(...)

    Hi all,
    I'm a beginner on xquery and I'm wondering when use text() or data(...).
    For example I've this simple xml document:
    <book>
    <author>A</author>
    <year>2010</year>
    <price currency="CHF" >100.123</price>
    </book>
    for retrieving attribute value I have to use data(/book/price/@currency)
    but for for retrieving tag value I've two possibilities:/book/price/text() or data(/book/price)
    Are those two expressions the same ? Or ones is evaluated faster than the others ?

    Text() - always returns the String.
    data() - accepts a sequence of items and returns their typed values (return type is xs:anyAtomicType). Calling this function is often unnecessary because the typed value of a node is extracted automatically (in a process known as atomization) for many XQueryXPath 2.0 expressions, including comparisons, arithmetic operations and function calls. The most common use case for the fn:data function is in XQuery element constructors.
    Regards,
    Anuj

  • Action date field in follow up action

    If you specify a follow-up action in a contract, you must enter a date or a date rule in the Action date field.
    question where is the Action date field i search for it in sales document contract and i don't found in contract data
    please help me

    HI
    i don't think so, there is such type of option while doing UD. actually when yo perform UD system makes completiond date automatically from Programbased.
    -ashok

  • How to change column "Date" from "Text" to "Date-Time" in Document Library.

    How to change column name "Date" from "Single line of Text" to "Date and Time" in Document Library.

    Hi,
    If you would change column type, you might need to re-create column.
    If you would like a text column to display in date format, you could refer to the links below:
    http://sharepoint.stackexchange.com/questions/45774/how-to-convert-date-field-in-single-line-of-text-using-calculated-columns
    http://yasuanantha.blogspot.com/2008/06/to-convert-text-column-to-date-column.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Infoset Join condition on Key feilds and data fields

    Hi Guys,
    I have a requirement to biuld the Info set with join conditon on two DSO's  the info objects which i am using in the JOin condition are defined as data fieds in one DSO and defined as key fields in another DSO, is it possible to define join condition on key fields and data fields.
    The two info objects are                
                           0AC_DOC_NO
                           0ITEM_NUM
    These two info objects are defined as  data fields in DSO :   0LIV_DS1   Invocie verificaion
                                                            key fields in DSO:    0FIAP_0o3 FI AP Line Item
    Please suggest me is it possible to define join the condtion on the data fields and key feilds.
    Thanks
    Best regards
    SG

    Hi
    yes you can create join, you will get any issue in reporting level.
    example: Say i want to create Info Set on 0MATERIAL and Sales DSO.
    In 0MATERIAL Info Object it is key filed, but in my DSO 0MATERIAL is data field.Still we can create
    Creation of join is dependent on fields common in your source objects.
    check out the below document
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2f5aa43f-0c01-0010-a990-9641d3d4eef7?QuickLink=index&overridelayout=true
    Regards,
    Venkatesh
    Edited by: Venkateswarlu Nandimandalam on Sep 27, 2011 2:26 AM

  • HT201406 1st. Gen iPad question:  the touch keyboard does not appear when attempting to input data into data fields - this happens while using all apps, ex. Notes, Google, Pages, etc..

    1st. Gen iPad question:  the touch keyboard does not appear when attempting to input data into data fields - this happens while using all apps, ex. Notes, Google, Pages, etc.. The cursor prompt is present.  Tapping screen just brings up the option to: "Select   Select All   Paste."   I have rebbooted with no change. 
    Message was edited by: Jimfromutah
    The problem was my connected bluetooth keyboard.

    1st. Gen iPad question:  the touch keyboard does not appear when attempting to input data into data fields - this happens while using all apps, ex. Notes, Google, Pages, etc.. The cursor prompt is present.  Tapping screen just brings up the option to: "Select   Select All   Paste."   I have rebbooted with no change. 
    Message was edited by: Jimfromutah
    The problem was my connected bluetooth keyboard.

  • Check box only visible when data is entered in two other fields

    My form has a table in which one column's cells are check boxes. I would like the check boxes to be only visible when both the quantity and unit price cells are filled out.
    If I use the following script to hide the checkbox, it becomes my Amount??? which is the column right next to it.
    taxable.presence = "hidden";
    I am putting the script in the initialize event of the table.

    The initialize event only fires once the form is opend, not afterwards when the fields values are changed.
    You need another event such as layoutReady.
    this.presence = !Quantity.isNull && !UnitPrice.isNull ? "visible" : "hidden";

  • Refresh APEX_ITEM.TEXT Value when Interactive Report Page Changes

    I use an APEX_ITEM.TEXT column in an IR where the user can enter some number date.
    to make this data persistent while paginating the ir, i use some DA . Via ajaxthis DA call an onDemandProcess to save the entered data in a collection.
    works great; the input is stored in the collection.
    To show the already entered data, the ir sql statement joins the collection.
    select  APEX_ITEM.hidden(2,artikelnr)||
            APEX_ITEM.TEXT(1
              ,COL_artikel.preis
              ,3
              ,3
              ,'autocomplete="off" onfocus="javascript:f_set_last_val(this);" onchange="javascript:f_validate_integer(this);"'
              ,'INPUTBESTELLEN'
             ) Inputbestellen,
    article.*
    from article
    left outer join COL_artikel on COL_artikel.nummer = artikelnr where col_artikel is a view for better access on the collection
    Now the issue:
    On the first Page i add some data, then i go head to page 2 and 3 of the ir. The collection is filled withe the entered data.
    But when i navigate back to page 1 the entered data is not shown in the input field unless i relload the whole page . I guess because the query is not re-executed when paginating foreward/backward.
    ist there any way to overcome this tiny small issue?
    regards
    peter

    It looks like you are trying to combine apex_item function with a standard tabular form and as far as I know this won't work. You will need to create a manual tabular form in that case. See this and other examples as a refference:
    http://htmldb.oracle.com/pls/otn/f?p=31517:170
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • How to process reports with two different date fields

    Morning all,
    This question is somewhat similar to what I asked few days back. I created two different reports for two different departments (Credit Control and Free of Charge Control).
    These two reports pull data from two different date fields and has different status check ups.
    Few days back my director requested me if he can have both reports in one report. That is when I asked question from all of you regarding two reports.
    Anyhow, that was created by implementing two sub reports however, the director asked me to combine the two different reports into one in such a way that the output records should be added up with each other hence one single report with all combined data of Credit Control and Free of Charges (not two sub reports in one report).
    The problem here which I am getting is that, both reports uses two different date fields. I can live with two different statuses as that can be easily done within formula/RT however how to create a report with Report Selection Formula condition which looks in both date fields and produces results accordingly?
    I have tried this by not putting any condition in report selection formula and ran the report, it produced total results from past 6 years.
    Any ideas how to produce combined report which has two different date fields?
    Many thanks in advance
    Regards
    Jehanzeb
    What I

    Charliy,
    No the both dates are from two different databases, tables and fields. The Credit date field is from KLAB database under max table where as the FOC date field is from SAE database under maxmast table. Klab date is under credit2 table where as foc date is under order header table.
    So its more like this:
    Klab->Max-Credit2--->Credit_date
    Sae->Maxmast->Order_header---Date entered.
    two dates totally different tables, dbs
    however, I will try your idea too and see if that works.
    Regards
    Jehanzeb

Maybe you are looking for

  • Basic question about import

    I need to import an already existing user from a dmp file. I am not sure if I must drop and recreate the user before importing or the import would drop all not existing objects, create the new ones, modify those that are different, insert new records

  • No waring message for no stock in MTS sales order order

    Dear Experts, I have MTS sales order. if  Material  A is having 100 PC. and if i enter more than 100 pc in sales order of Material A then  i am not getting any warning of less stock. Thanks in Advance, Kedar

  • I got Articulate Engage into Captivate but am now stuck

    I am able to make an Articulate Engage interaction into a Captivate file, I don't know what to do with it after that.  This engage interaction is just a piece of a tutorial, not a stand-alone learning object.  I was hoping I could publish it as a Cap

  • 24-bit audio files converted to 16-bit in Logic Pro 7

    Hello, I'm working on producing my band's demo and this is my first project in Logic Pro 7. The tracks were originally recorded into a Fostex D2424LV hard disc recorder as 24-bit wave files, then imported into Logic. At this point, I've done the edit

  • If in input numbet that why do i get this?

    Just was entering numbers in Numbers =) The nymber that i needed to enter is 1515120899400117 and as I get it there numbers will "grow" it to 1515120899400120.. Why and how to stop it doing that.. i cant get that numeric value into my spreadsheet =(