HTML_DB Collection

Hi In my applicaiton i have used date pop up collection, i need to validated this item before insert the dates into the tabel
query i have used to generate the date picker is
select
HTMLDB_ITEM.DATE_POPUP(2,rownum,null,''dd-mon-yyyy'',10) "Baseline Start Date",
HTMLDB_ITEM.DATE_POPUP(3,rownum,null,''dd-mon-yyyy'',10) "Baseline End Date"
from dual
here Start date should not be greater then the end date i need to create a plsql process i think can any one please suggest me how to write this in colleciton
or any other way using javascript
Thanks
Sudhir

hi randy :
the code which you gave me has some minor mistake since i got this while testing the applicaiton i need you help in modifying the code
date comparision works fine with the same month the probem wht i am facing is
eg start date 31-jan-2008 and end date is 24-feb-2008 there is no error is get
if start date is 24-jan-2008 and end date is 14-feb-2009 it through me a alter msg saying start date is greater then end date
there is some mistake in the script i beleve please suggest and help me out how to fix this problem
the script wht i am using is this
<script type="text/javascript">
function checkdates_baseline(pStartDateItem,pEndDateItem)
var sdate = document.getElementById(pStartDateItem).value;
var edate = document.getElementById(pEndDateItem).value;
var amonths = new Array('JAN','FEB','MAR','APR','MAY','JUN','JUL','AUG','SEP','OCT','NOV','DEC');
var start_date = new Date();
var end_date = new Date();
var start_month = sdate.substring(3,6);
var end_month = edate.substring(3,6);
var nstart_month = 0;
var nend_month = 0;
for(i=0;i<12;i++)
if(amonths == start_month)
nstart_month = i;
if(amonths == end_month)
nstart_month = i;
start_date.setFullYear(sdate.substring(6,10),Number(sdate.substring(3,5))-1,sdate.substring(0,2));
end_date.setFullYear(edate.substring(6,10),Number(edate.substring(3,5))-1,edate.substring(0,2));
var result = (end_date - start_date);
if( result < 0)
alert('The End date must be after the Start Date');
</script>
thanks
sudhir

Similar Messages

  • Collection Date Difference

    Hi :
    I have created data picker using HTML_DB collection since i need dynamic date picker to be populated for my requirement so i am using this date picker collection.
    SELECT
    HTMLDB_ITEM.TEXT(1,POBJ.NAME,25,25) "Object_Name",
    HTMLDB_ITEM.DATE_POPUP(2,rownum,NULL,''dd-mm-yyyy'',10) "Baseline Start Date",
    HTMLDB_ITEM.DATE_POPUP(3,rownum,NULL,''dd-mm-yyyy'',10) "Baseline End Date",
    HTMLDB_ITEM.TEXT(8,NULL,5,2) "Duration"
    FROM DUAL, project_objects obj
    The above code displays the date picker dynamically as number of objects are generated dynamically
    i need to calculate the difference between two date picker ie start and end and generate the result in Duration
    How to do this any suggestion pls
    Thanks
    Sudhir

    Hi,
    As per the cash discount is concerned, system automatically proposes the cash discount amount in F-28, All user has to do is assign the cash disocunt while processing the customer receipt.
    There is a validation based on the payment terms. system proposes Cash discount only if the customer receipt date is with in the eligilibity period. Condition type SKTO/SKTV needs to be included in th pricing procedure for SD transactions.
    If this is not what is required, then in FI there is a process called substitution (OBBH)  / validation(OB28) which will be useful.
    Discuss with FI consultant.
    Hope this helps.
    Regards,
    Sharan

  • Insert Selected Rows

    Hi :
    In my application i have created a check box using html_db collection where i select particular row to insert the data,
    What the problem i am facing is i am not able to insert the data the selected one but it will select in a order on which it is dispalyed
    ex: if i select from 1 and 3 it will insert 1 and 2 so any idea please suggest how to insert the selected data
    the query i am using is
    SELECT
    HTMLDB_ITEM.CHECKBOX(1,ROWNUM) "N",
    HTMLDB_ITEM.TEXT(2,POBJ.NAME,20,20) "NAME"
    FROM
    PROJECTS PRO,
    PROJECT_OBJECTS POBJ,
    TEST1_OBJ TST
    WHERE
    PRO.ID = POBJ.PRO_ID AND
    TST."Project Name" = PRO.PROJECT_NAME AND
    TST."Object Name" = POBJ.NAME AND
    PRO.ID = :P6_PROJECTS
    to insert the data
    BEGIN
    for i in 1..htmldb_application.g_f01.count
    loop
    INSERT INTO test1
    ID,
    PROJECTS,
    OBJECTS
    VALUES
    htmldb_application.g_f01(i),
    :P6_PROJECTS,
    htmldb_application.g_f02(i));
    END LOOP;
    END;
    kinly please sugest me how to do this issue do i have to use some condition ?
    Thanks
    sudhir

    sudhir,
    I would ask have you reviewed the thread I posted above.
    In that thread you will find a very detailed description on how to handle what you are doing here.
    for me personally to repair your app here I would actually need to work it hands on, sorry.
    I can suggest though that you brake the actually query down into to pages in which on the first page
    you present the user with items for selection (rows) and after selection they could then redirect
    the page to the next one in which the desired results would be presented, these being those which where selected.
    That is how I did the what you are attempting here to do. This will allow you to keep the SQL query of your:
    Select
    HTMLDB_ITEM.CHECKBOX
    From
    Where
    seperate from your PL/SQL. Just made it much simplier for me to debug.
    Also in my SQL I wrote it somewhat differnet in that I declared the first position as my checkbox
    (yes you have done this as well) but I worked it some what different, here is an example:
    SELECT DISTINCT
    HTMLDB_ITEM.CHECKBOX (1, x.ID) "CHECK",
    x.ID,
    x.PROJECT_NAME ,
    HTMLDB_ITEM.DISPLAY_AND_SAVE(4,POBJ.NAME,20,20) "Object Name",
    x.INCOMMING_DOC ,
    x.DESIGN ,
    x.DESIGN_REVIEW ,
    x.DESIGN_REWORK ,
    x.BUILD ,
    x.BUILD_REVIEW ,
    x.BUILD_REWORK ,
    x.TEST_CASE_PREP ,
    x.TEST_CASE_REVIEW ,
    x.TEST_CASE_REWORK ,
    x.INSTALLATION_SCRIPT ,
    x.UNIT_TESTING ,
    x.WAIT_TIME ,
    HTMLDB_ITEM.TEXT(18,NULL,20,50) "Comments",
    HTMLDB_ITEM.TEXT(19,NULL,1,2) "sysdate"
    FROM
    (select
    HTMLDB_ITEM.HIDDEN (1) CHECK,
    ID ,
    PROJECT_NAME ,
    OBJECT_NAME ,
    INCOMMING_DOC ,
    DESIGN ,
    DESIGN_REVIEW ,
    DESIGN_REWORK ,
    BUILD ,
    BUILD_REVIEW ,
    BUILD_REWORK ,
    TEST_CASE_PREP ,
    TEST_CASE_REVIEW ,
    TEST_CASE_REWORK ,
    INSTALLATION_SCRIPT ,
    UNIT_TESTING ,
    WAIT_TIME ,
    COMMENTS ,
    INITIAL_DATE
    from
    PROJECTS PRO,
    PROJECT_OBJECTS POBJ,
    INITIAL_EFFORT_OBJECTS IEO
    where
    PRO.ID = POBJ.PRO_ID
    AND IEO."Project Name" = PRO.PROJECT_NAME
    AND IEO."Object Name" = POBJ.NAME
    )x
    This will assign each position into the htmldb_appilcation.g_f01 count
    starting at f0(i)1 - f19(i)
    You will have to work this a bit more but I would reccomend getting this
    first to display and pass data to the next page then first, then you can start working on the PL/SQL
    items which as I said is provided in a great example in the posting.
    Randy

  • Insert only the selected

    Hi:
    In my application i have used html_db collection to enter data
    here the query i am using to driver the collection is
    select
    html_db_item.text(1,pobj.name,20,25) "object Name",
    html_db_item.text(1,null,20,25) "Incomming Hours ",
    html_db_item.text(1,null,20,25) "Design Hours "
    from projects pro.
    project_objects pobj
    where pro.id = pobj.pro_id and
    pro.id = :p10_projects
    here projects and objects are assoicated to each other each project will have several set of objects now my requirement the above query will drive all the object but if i need to enter the data for only tow or three objects i need to make some selection ie like using a row selector
    here the collection i have created is
    declare
         i number:=1;
         q varchar2(32676);
         la_cks wwv_flow_global.vc_arr2;
    begin
    if htmldb_application.g_fcs.count > 0 then
    la_cks := htmldb_application.g_fcs;
    end if;
    htmldb_collection.create_or_truncate_collection('BASELINE_COLLECTION');
    for i in 1..htmldb_application.g_f02.count
    loop
    htmldb_collection.add_member(
    p_collection_name => 'BASELINE_COLLECTION',
    p_c001 => htmldb_application.g_f01(i),
    p_c002 => htmldb_application.g_f02(i),
    p_c003 => htmldb_application.g_f03(i),
    p_c004 => htmldb_application.g_f04(i),
    p_c005 => htmldb_application.g_f05(i),
    p_c006 => htmldb_application.g_f06(i),
    p_c007 => htmldb_application.g_f07(i),
    p_c008 => htmldb_application.g_f08(i),
    p_c009 => htmldb_application.g_f09(i),
    p_c010 => htmldb_application.g_f10(i),
    p_c013 => htmldb_application.g_f13(i),
    p_c014 => htmldb_application.g_f14(i));
    end loop;
    end;
    and the insert query i am using is this
    BEGIN
    for i in 1..htmldb_application.g_f01.count
    loop
    INSERT INTO REPLAN_EFFORT
    PROJECT_NAME,
    OBJECTS_NAME,
    INCOMMING_DOC,
    DESIGN,
    DESIGN_REVIEW,
    DESIGN_REWORK,
    BUILD,
    BUILD_REVIEW,
    BUILD_REWORK,
    TEST_CASE_PREP,
    TEST_CASE_REVIEW,
    TEST_CASE_REWORK,
    INSTALLATION_SCRIPT,
    UNIT_TESTING,
    WAIT_TIME
    VALUES
    :P10_PROJECTS,
    htmldb_application.g_f01(i),
    htmldb_application.g_f02(i),
    htmldb_application.g_f03(i),
    htmldb_application.g_f04(i),
    htmldb_application.g_f05(i),
    htmldb_application.g_f06(i),
    htmldb_application.g_f07(i),
    htmldb_application.g_f08(i),
    htmldb_application.g_f09(i),
    htmldb_application.g_f10(i),
    htmldb_application.g_f11(i),
    htmldb_application.g_f12(i),
    htmldb_application.g_f13(i),
    htmldb_application.g_f14(i));
    END LOOP;
    END;
    please suggest me how to use in a row selector in collection
    thanks
    sudhir

    Unfortunately it did not work. I also developed the code and access the field and checked its property called "ReadOnlyField"  which is already set to false.
    Below is the xml that i am using. Can you please share the xml that you had used?
    <?xml version="1.0" encoding="utf-8"?>
    <FieldTypes>
      <FieldType>
        <Field Name="TypeName">MyCustomField</Field>
        <Field Name="ParentType">Text</Field>
        <Field Name="TypeDisplayName"> My Custom Field</Field>
        <Field Name="TypeShortDescription"> My Custom Field</Field>
        <Field Name="AllowBaseTypeRendering">True</Field>
        <Field Name="ReadOnlyField">False</Field>
        <Field Name="UserCreatable">TRUE</Field>
        <Field Name="ShowInListCreate">TRUE</Field>
        <Field Name="ShowInSurveyCreate">TRUE</Field>
        <Field Name="ShowInDocumentLibraryCreate">TRUE</Field>
        <Field Name="ShowInColumnTemplateCreate">TRUE</Field>
        <Field Name="FieldTypeClass">My Assembly Information goes here</Field>
      </FieldType>
    </FieldTypes>

  • Installation problem on CS4 Master Collection

    WHen I attempt to install CS4 master collection on Vista Ultimate X64
    While the installer is "checking system profile" the next window shows "Loading Setup"
    I then get a System Check error page. The window label is "Adobe Creative Suite 4 Master Collection Installer - Alerts"
    In the box it says, System Check.
    Critical Errors were found in setup for Adobe Creative Suite 4 Master Collection.
    Session has dependencies that cannot be satisfied.
    please see the Setup log file for details. click Quit to exit Setup."
    Then there is a Quit button, that is the only option.
    Any ideas which services need to be enabled to be able to install creative suite?

    I do have service pack 1 for vista ultimate x64.
    Here is the end of the log....
    [ 436] Thu Oct 30 19:12:48 2008 DEBUG
    PayloadPolicyInit: BEGIN Updating installstate for payloads
    PayloadPolicyInit: END Updating installstate for payloads
    PayloadPolicyInit: BEGIN Creating policyNodes
    PayloadPolicyNode._SetPayloadAction: none for {092DF7B0-6E10-4718-9763-9704CC4E6EF9} Adobe Anchor Service CS4
    [ 436] Thu Oct 30 19:12:48 2008 ERROR
    Unable to load fileOptions from C:\Program Files (x86)\Common Files\Adobe\Installers\49b2c0059f3cb852831867eec06474a\resources\pages\Install\Options\Op tions.js
    Log of: object
    name {string}: TypeError
    message {string}: 'collectionID' is null or not an object
    number {number}: -2146823281
    description {string}: 'collectionID' is null or not an object
    [ 436] Thu Oct 30 19:12:48 2008 DEBUG
    updating path to Win32
    WizardControl: loading page "Progress" from C:\Program Files (x86)\Common Files\Adobe\Installers\49b2c0059f3cb852831867eec06474a\resources\pages\Install\Progress\P rogress.js
    updating path to Win32
    WizardControl: loading page "Register" from C:\Program Files (x86)\Common Files\Adobe\Installers\49b2c0059f3cb852831867eec06474a\resources\pages\Install\Register\R egister.js
    updating path to Win32
    WizardControl: loading page "Finish" from C:\Program Files (x86)\Common Files\Adobe\Installers\49b2c0059f3cb852831867eec06474a\resources\pages\Install\Finish\Fin ish.js
    HTML data complete: Welcome
    HTML data complete: Eula
    HTML data complete: Progress
    HTML data complete: Register
    HTML data complete: Finish
    [ 436] Thu Oct 30 19:12:48 2008 ERROR
    Critical errors were found in setup for Adobe Creative Suite 4 Master Collection:
    - Session has dependencies that cannot be satisfied.
    Please see the Setup log file for details. Click Quit to exit Setup.
    [ 436] Thu Oct 30 19:17:23 2008 INFO
    *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    END - Installer Session
    Doesn't really make sense to me....

  • Is there a way to create a collection based on the "previous import"?

    is there a way to create a collection based on the "previous import"? that would make it easy to mobile sync the last import to my ipad, and do further picking/rejecting while away from my laptop.

    well, yes, of course i could do it that way. i guess i wasn't specific enough. is there a way to create a smart collection, with the photos in the "previous import" as members of the smart collection.  earlier i mentioned about using this smart collection to mobile sync with my ipad, to do further flagging.
    so my intention, use a smart collection to mobile sync with my ipad, and the smart collection to include the photos from my previous import.
    i guess another way to ask the question, is there a way to create a smart collection, by using some rule or condition in the smart collection, to automatically include previous import photos.
    the documentation says that "previous import" is a collection, even though it shows up in the catalogue side bar section. but i see no way to choose that collection when making a smart collection.
    jd

  • How can I cancel the "Recreate All Virtual Dekstops" for a pooled collection in 2012 R2?

    I currently have a system single-server installation of VDI, using 2012 R2 Standard as the server, using pooled collections of Windows 8.1.  In general, everything works very well, but I've been searching in vain for ONE command.  When
    I make a change to the master template in Hyper-V, Checkpoint it, then go into the Remote Desktop Services, go the appropriate collection and initiate a "Recreate All Virtual Desktops", how would I cancel that?
    It's happened on more than one occasion, where I make a change or an update to the template, and then push out the 25 new Virtual Desktops, and then the client comes back asking for a "little" change....but I'm stuck pushing it out until
    all 25 desktops have been recreated.  There must be a way to interrupt this process (probably leaving a few VM Desktops in an unstable state...which I don't care too much about as it's a pooled collection), update the template, and push it out again with
    the "Recreate All Virtual Desktops".  I do have the concurrency set so it recreates 5 at a time, but that noticeably impacts the users, and I don't want to just push out all 25 at a pop and interrupt everyone's work.  Any ideas?
    J

    Hi,
    Have you tried Stop-RDVirtualDesktopCollectionJob ?  Something like below:
    Import-Module RemoteDesktop
    Stop-RDVirtualDesktopCollectionJob -CollectionName "PooledCollectionName" -ConnectionBroker "broker.yourdomain.com"
    -TP

  • Looking for a database collection app for children

    Hi,
    I am a primary school teacher and I am looking for a interesting way for my children to learn about databases and spreadsheets this term using the Ipads. I have looked at using Numbers but I am looking for an app that is child friendly and looks at them creating their own fields and collect their own data. Ideally want them to also use the camera to collect data and do majority of this on the ipad rather than sync it from a pc. Anyone kow any good apps for this?

    That looks perfect!
    I googled at first, and found a site with an alphabetical list of about 30 different database options. I got about 4 into it before deciding I should ask the experts. :)
    Thanks a lot!

  • How to access a specific font in a TrueType font collection (TTC) file

    I am trying to create a Font as follows:
    InputStream is = new FileInputStream("myname.ttc");
    Font font = Font.createFont(Font.TRUETYPE_FONT,is);
    This works fine but I need to get a specific font from the collection.
    How does one go about creating a font from a particular font within
    a collection?
    I need to access the font file directly. I can't use the
    properties file to install the font first.
    Any help is appreciated!
    Thanks

    You also have to be careful with fonts. The font you download may be the same name, but a different font. Just because you find a Zurich BT font, does not mean it is the same. If you search on the internet, there are several sources of some Zurich BT fonts free. However, they may or may not be the same font. Editing is best done on the original document and not the PDF. One of the PDFs I found on the Landis site was only in Zurich font. I would think that the original file is available from the company and that should be the document you edit, not the PDF. It appears the original was created in InDesign (CS3).

  • How to add a new view in Factsheet to collect data from R3

    Hi Experts,
    I need to add a new view in Account Factsheet called  'Open Delivery data'
    which will collect the delivery data from R3 system.
    As I know we have two Function Modules (at CRM) 'CRMT_ERP_FACT_SHEET_RETRIEVE'
    (at R3) 'CRM_CCKPT_EXPORTSUMMARY'
    All We need to do is create view which calls the data from R3 Via these modules.
    How should I proceed.
    Is this relevent steps :-
    http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock
    Regards,
    Ram

    Hi Sandeep,
    To add a new currency in Metadata, just add in Currencies dimension, and to add in Data form-just send the script what you are using as of now for rest of the currencies, or follow the same steps as specified above. or just add the script A#CLORATE.w#Periodic.C2#XYZ in rows of your data form (where XYZ- is the new currency).
    To add a new location in FDM login to FDM web client- click on Metadata--> locations and select the Controls review location where you want to add the data load location, right click and add the new location.

  • Error in cast multiset in collections

    DECLARE
    TYPE emp_dept_rec IS RECORD (
    v_sal emp.sal%TYPE,
    v_name emp.ename%TYPE,
    v_deptname dept.DEPTNAME%type
    TYPE emp_dept_tab_type IS TABLE OF emp_dept_rec;
    l_emp_dept_tab emp_dept_tab_type;
    type emp_tab is table of emp%rowtype;
    type l_emp_tab is table of emp%rowtype;
    type dept_tab is table of dept%rowtype;
    type l_dept_tab is table of dept%rowtype;
    cursor e1 is
    select * from emp;
    cursor d1 is select * from dept;
    begin
    OPEN e1;
    FETCH e1
    BULK COLLECT INTO l_emp_tab;
    open d1;
    FETCH d1
    BULK COLLECT INTO l_dept_tab;
    select cast(multiset (select em.sal,em,ename ,dep.DEPTNAME
    from table(l_emp_tab) em,table(l_dept_tab) dep
    where em.deptno=dep.deptno)
    as emp_dept_tab_type)
    into l_emp_dept_tab ;
    end;
    it is giving error as
    ORA-06550: line 43, column 25:
    PL/SQL: ORA-00923: FROM keyword not found where expected
    ORA-06550: line 39, column 5:
    PL/SQL: SQL Statement ignored

    Here is an example.
    SQL> CREATE OR REPLACE TYPE emp_rec IS OBJECT (
      2                      v_sal    NUMBER(7,2),
      3                      v_name   VARCHAR2(35),
      4                      v_empno  NUMBER(4),
      5                      v_deptno NUMBER(2)
      6                      )
      7  ;
      8  /
    Type created.
    SQL> CREATE OR REPLACE TYPE emp_tab IS TABLE OF emp_rec;
      2  /
    Type created.
    SQL> CREATE OR REPLACE TYPE dept_rec IS OBJECT (
      2                      v_deptno NUMBER,
      3                      v_dname VARCHAR2(50)
      4                      )
      5  ;
      6  /
    Type created.
    SQL> CREATE OR REPLACE TYPE dept_tab IS TABLE OF dept_rec;
      2  /
    Type created.
    SQL> CREATE OR REPLACE TYPE emp_dept_rec IS
      2                     OBJECT (
      3                      v_sal     NUMBER,
      4                      v_name     VARCHAR2(35),
      5                      v_deptname VARCHAR2(30)
      6                      );
      7  /
    Type created.
    SQL> CREATE OR REPLACE TYPE emp_dept_tab_type IS TABLE OF emp_dept_rec;
      2  /
    Type created.
    SQL> set serverout on
    SQL> DECLARE
      2    l_emp_dept_tab emp_dept_tab_type; --emp_dept_tab_type declared in database
      3    l_emp_tab      emp_tab; --emp_tab declared in database
      4    l_dept_tab     dept_tab; --dept_tab declared in database
      5 
      6    CURSOR e1 IS
      7      SELECT emp_rec(sal, ename, empno, deptno) FROM emp; --Note the type casting here
      8 
      9    CURSOR d1 IS
    10      SELECT dept_rec(deptno, dname) FROM dept; --Note the type casting here
    11  BEGIN
    12    OPEN e1;
    13 
    14    FETCH e1 BULK COLLECT
    15      INTO l_emp_tab;
    16 
    17    OPEN d1;
    18 
    19    FETCH d1 BULK COLLECT
    20      INTO l_dept_tab;
    21 
    22    SELECT CAST(MULTISET (SELECT em.v_sal, em.v_name, dep.v_dname
    23                   FROM TABLE(l_emp_tab) em, TABLE(l_dept_tab) dep
    24                  WHERE em.v_deptno = dep.v_deptno) AS emp_dept_tab_type)
    25      INTO l_emp_dept_tab
    26      FROM DUAL;
    27    FOR i IN 1 .. l_emp_dept_tab.COUNT LOOP
    28      dbms_output.put_line(l_emp_dept_tab(i)
    29                           .v_sal || '--' || l_emp_dept_tab(i)
    30                           .v_name || '--' || l_emp_dept_tab(i).v_deptname);
    31    END LOOP;
    32 
    33  END;
    34  /
    1300--MILLER--ACCOUNTING
    5000--KING--ACCOUNTING
    2450--CLARK--ACCOUNTING
    3000--FORD--RESEARCH
    1100--ADAMS--RESEARCH
    3000--SCOTT--RESEARCH
    2975--JONES--RESEARCH
    800--SMITH--RESEARCH
    950--JAMES--SALES
    1500--TURNER--SALES
    2850--BLAKE--SALES
    1250--MARTIN--SALES
    1250--WARD--SALES
    1600--ALLEN--SALES
    PL/SQL procedure successfully completed.It is just for educational purpose, because the thing you have achieved by so much programming can be done easily by simple join in the table itself.
    user10447332 Newbie
    Handle: user10447332
    Status Level: Newbie
    Registered: Oct 20, 2008
    Total Posts: 227
    Total Questions: 153 (152 unresolved) >
    What a record! and most of the time you don't care to follow/revisit the thread also!.

  • Creating a Web Service from EJB 3.0 - J2SE 5.0 Collection mapping problem

    Hi,
    Apologies if this is the wrong forum, I'm not quite sure where it fits in.
    I have some Toplink JPA entity beans that I access through a session bean. I am then trying to create a web service based on the session bean by deploying it to a 10.1.3 application server. This is based on the documentation at http://download.oracle.com/docs/cd/B31017_01/core.1013/b28764/web_services002.htm#CHDJEDDH
    The two entity beans are like:
    public class Event {
    private java.util.List<EventDetail> eventDetailList;
    public Event() {
    public void setEventDetails(java.util.List<EventDetail> eventDetailList) {
    this.eventDetailList = eventDetailList;
    public java.util.List<EventDetail> getEventDetails() {
    return eventDetailList;
    public void addEventDetail(EventDetail eventDetail) {
    this.eventDetailList.add(eventDetail);
    public class EventDetail {
    public EventDetail() {
    The session bean has a method like:
    List<Event> listParents();
    When this is deployed to the application server I expected a complex type like ListOfEventDetail to be generated in the WSDL, as shown in http://download.oracle.com/docs/cd/B32110_01/web.1013/b28975/apptypemapping.htm#sthref966, and the Event complex type would have an element of ListOfEventDetail. Instead the Event complex type looks like this:
    <complexType name="Event">
    <sequence>
    <element name="eventDetails" type="ns1:list" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="EventDetail">
    <sequence/>
    </complexType>
    and ns1:list appears in a different schema:
    <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.oracle.com/webservices/internal/literal" targetNamespace="http://www.oracle.com/webservices/internal/literal" elementFormDefault="qualified">
    <import namespace="http://wsdl/"/>
    <complexType name="list">
    <complexContent>
    <extension base="tns:collection">
    <sequence/>
    </extension>
    </complexContent>
    </complexType>
    <complexType name="collection">
    <sequence>
    <element name="item" type="anyType" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </schema>
    However, if I change the getters and setters for eventDetailList in Event to setDetails and getDetails like this:
    public void setDetails(java.util.List<EventDetail> eventDetailList) {
    this.eventDetailList = eventDetailList;
    public java.util.List<EventDetail> getDetails() {
    return eventDetailList;
    the WSDL is generated as I expected:
    <complexType name="EventDetail">
    <sequence/>
    </complexType>
    <complexType name="Event">
    <sequence>
    <element name="details" type="tns:ListOfEventDetail" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="ListOfEventDetail">
    <sequence>
    <element name="item" type="tns:EventDetail" minOccurs="0" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    After messing around with various combinations of things, it seems that if the getters and setters have more than just the initial capital letter the (eg getTheThings instead of getThings) the WSDL gets messed up. Does anyone have any ideas what is going on here?

    Using <autotype> and <source2wsdd> to generate what I need. Now WL seems happy.

  • Old Photos in my Collection can no longer be seen on My iPhone

    I am using an iPhone 5S 32GB running on iOS 8 (latest update).When I am checking my collection of photos and I go to my oldest files these appear as black boxes and I cannot access them. I migrated on May to this iPhone and used iCloud for the backup (Payed for 50GB  space). I was wondering if there is any way to solve this issue or if its a Software/Update. Please help me with this since I value this photos and wouldnt want to lose them.

    See:
    * [[Images or animations do not show]]
    * http://kb.mozillazine.org/Images_or_animations_do_not_load
    It is possible that you clicked "Block Images" in the right click context menu while trying to save an image.
    *A way to see which images are blocked is to click the favicon (<i>Site Identification</i> icon) on the left side of the location bar.
    *A click on the "More Information" button will open the Security tab of the "Page Info" window (also accessible via "Tools > Page Info").
    *Open the <i>Media</i> tab of the "Page Info" window.
    *Select the first image and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.
    *You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    *You can see all image exceptions in Tools > Options > Content: Load Images: Exceptions

  • My mac. com email can no longer be collected.

    Since I upgraded to Mavericks, I have lost the ability to collect email from my secondary mac.com account. I can still read by signing into iCloud, but not in Mail. The settings were automatically entered for me and are greyed out, so I can't change them.  Any ideas on how to solve this problem? They would be appreciated.

    Troubleshooting is a process of elimination.
    Eliminate Mail
    A few users have issues like this where Mail simply fails. You can eliminate Mail as the source of the problem by testing in Postbox and MailMate. Both have demos. If your account fails to connect in another source, then the problem is with account or an issue on your Mac.
    http://www.postbox-inc.com/
    http://freron.com 
    Thunderbird is also a free email client you can try.
    Eliminate your User's folder
    CREATE A NEW USER
    Go to System Preferences --> Create a New User in Users & Groups (Accounts. in SL) Switch to the New User by logging out under the Apple in the Menu Bar.
    Do you still see the issue?
        If yes, then the problem is with your base files.
        If no, then the problem is in your User's folder.

  • Search no longer working with image collection software

    I use both Skyscraper (unfortunately recently discontinued by Fortunate Bear) and HyperImage from Kavasoft to collect images off the Internet. Both have worked fine prior to Mavericks, but I now find that neither will collect images via a standard search using Google as the engine. I've also tried Yahoo! as the engine with the same negative results.
    I short, I have always been able to enter a parameter in either program, say "George Washington", and have the software start to collect images based on that paramater. Neither will do that now, which leads me to believe that Mavericks is somehow interfering with this functionality. If I look at the activity logs of either program, there is no activity whatsoever.
    Does anyone have any insight on this or use either of these two programs? I've tried to contact Fortunate Bear but they don't even have the program listed on their website any longer. (It's a bit strange since they just bought it last year!) I haven't yet heard back from HyperImage.
    Thanks for any input!

    Try running a repair disk permissions. This is done via the Disk Utility application. Reply if you need help to do this.
    Also, do you have another application you can scan with? Note that Preview will use Image Capture, so you need some other application. As a test, you could download Picasa from Google which works well with TWAIN scanners.
    Pahu

Maybe you are looking for

  • Images in a table grid

    hello, I have this problem I am not able to sort in a simple way. I have a DB table filled with image URLs. I would like to display a grid of, say 4 rows and 4 columns displaying 16 images at a time, with pagination. How can I do it? Data tables don'

  • Blackberry 8830 World Edition -- won't play internet video

    I cannot get my Blackberry 8830 World Edition to play internet video, such as YouTube videos, etc. When I click to play them on my phone, I get this message:  "a problem occurred when trying to render page" Can anyone help?

  • How To Uninstall Background Apps Installed With CC

    Hello, I attempted to install the PhotoshopCC onto a Windows OS7 computer - which went drastically wrong. I performed an uninstall - yet that left a background app that now runs even though I have no Adobe applications running. How do you uninstall t

  • Where's the $100 million advertisemen

    Its been months since news that ceo Sim declared war on apple with its marketing campaign - but I have yet to notice significant ads like the Ipod's U2 tv spots, which I think is terrific... almost as good as the heineken beer commercial Has there be

  • Grant problem for scott

    Hi, I have given sysdba privilage to scott as below.. grant sysdba to scott; but below query not working when i run it with scott user. error "ora-00942:table doesn't exits" SELECT owner, directory_name, directory_path FROM dba_directories; SELECT d.