Multilevel collection

i have a table that contain 3 columns such as
name productid product .
i have the following data
john 123 table
john 345 sofa
john 678 chair
lee 123 table
lee 456 bed
rod 745 bed
and so on
i want to store this in a multilevel pl/sql table using bulk collect and search by string so that if i pass "john" and " table" as a parameter to my procedure
i should get
123 table
if you have a better solution than using pl/sql table, i will also welcome it. thanks

no i cannot do that because the problem is that the input is dynamically taking from another table and validation is done using one single query. i need to put the table content into some kind of pl/sql object so i can look up the values.
how can i do that

Similar Messages

  • Multilevel Collections Basics.

    I am new to collections in general. It looks like I need a multilevel collection to hold 3 fields (three parts of a phone number). For simplicity, I assumed that I will get only 1 record from the cursor. I think I just don't know the syntax to populate multilevel collection, but may be I'm not even defining it correctly. Thank you.
    Below is my simplified example:
    DECLARE
    CURSOR c_dt (id in number) is
    select *
    from dev_team;
    r_dt c_dt%rowtype;
    TYPE t_phone is RECORD
    (phone1 dev_team.phone1%type,
    phone2 dev_team.phone2%type,
    phone3 dev_team.phone3%type);
    TYPE t_collect_phone is TABLE OF t_phone
    index by pls_integer;
    --trying to declare multilevel collection.
    collect_phone t_collect_phone;
    BEGIN
    --let's assume that the cursor always returns a single record.
    open c_dt (45740);
    fetch c_dt into r_dt;
    --trying to populate the multilevel collection.
    collect_phone(1) := t_collect_phone ('1','2','3');
    END;
    --Error Message: "No function t_collect_phone exists in this scope"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    My appologies:
    instead of:
    collect_phone(1) := t_collect_phone ('1','2','3');
    I should have:
    collect_phone(1) := t_collect_phone (r_dt.phone1, r_dt.phone2, r_dt.phone2);
    That doesn't change anything though. Same error.

  • Creating data at multilevel collection

    Dear Experts,
    Objective: Want to store Table of Orderstatus_Type in a collection.
    Herewith i have explain the my objects
    Create or Replace Type Orderstatus_Type as Objects
         Status Varchar2(50),
         Statusdate Timestamp
    Create or Replace Type Morderstatus_type is table of Orderstatus_type;
    Previous type are created under a schema. While running the my below function I am getting error
    Create Or Replace Function Ord_Test Return Morderstatus_Type Is
    Cursor c1 is SELECT O.ORDER_ID,O.REF_ORDER_ID,OA1.VALUE DELIVERY_DATE,OA2.VALUE INSPECTION_DATE, S.EPS_STATUS,SV.EPS_STATUS_VALUE,OS.STATUS_CHANGE_DATE      
    FROM  EPS_ORDER O,EPS_ORDER_STATUS OS,EPS_ORDER_STATUS_LU LU, EPS_STATUS S,EPS_STATUS_VALUE SV,
          (SELECT * FROM EPS_ORDER_ATTRIBUTES WHERE KEY = 'DELIVERY_DATE')   OA1,
          (SELECT * FROM EPS_ORDER_ATTRIBUTES WHERE KEY = 'INSPECTION_DATE') OA2 --,CLIENT_ORDER_STATUS_SUB SS
    WHERE O.ORDER_ID = OS.ORDER_ID AND OS.EPS_STATUS_ID = S.EPS_STATUS_ID AND OS.EPS_STATUS_VALUE_ID = SV.EPS_STATUS_VALUE_ID
    AND LU.EPS_STATUS_ID = S.EPS_STATUS_ID AND LU.EPS_STATUS_VALUE_ID = SV.EPS_STATUS_VALUE_ID
    AND O.ORDER_ID = OA1.ORDER_ID(+) AND O.ORDER_ID = OA2.ORDER_ID(+)
    --AND SS.EPS_STATUS_ID = S.EPS_STATUS_ID AND SS.EPS_STATUS_VALUE_ID = SV.EPS_STATUS_VALUE_ID AND SS.SUBSCRIBE_FLAG = 1
    And O.Order_Id = 588
    ORDER BY O.ORDER_ID;
    Vmord_stat Morderstatus_Type := Morderstatus_Type();
    Begin   
         For I In C1 Loop
             Vmord_Stat.Extend;
              VMord_Stat(i) := Orderstatus_Type(I.Eps_Status,I.Status_Change_Date);                                            
         End Loop;      
         Return(Vmord_Stat);
    End;
    Error:
    FUNCTION Ord_Test compiled
    Warning: execution completed with warning
    17/22          PLS-00382: expression is of wrong type
    17/11          PL/SQL: Statement ignored
    Kindly help me to resolve this.
    Thanks in advance
    Kanish

    Hi,
    Below are some examples how to work with your types in PL/SQL.
    declare
    a Orderstatus_Type;
    b MOrderstatus_type := MOrderstatus_type();
    c Order_Type;
    begin
      a := Orderstatus_Type('aa',null);
      b := MOrderstatus_type(a);
    DBMS_OUTPUT.PUT_LINE('b.last = ' || b.last);
    DBMS_OUTPUT.PUT_LINE(null);
      b.extend;
    DBMS_OUTPUT.PUT_LINE('b.last = ' || b.last);
    DBMS_OUTPUT.PUT_LINE(null);
      b(b.last) := Orderstatus_Type('bb',null);
    DBMS_OUTPUT.PUT_LINE('b(1).Status : ' ||b(1).Status );
    DBMS_OUTPUT.PUT_LINE('b(2).Status : ' ||b(2).Status );
    DBMS_OUTPUT.PUT_LINE(null);
      c := Order_Type(1,100, date '2013-01-01', date '2013-02-02',b);
    DBMS_OUTPUT.PUT_LINE('c.Statustype(1).status : ' ||c.Statustype(1).Status );
    DBMS_OUTPUT.PUT_LINE('c.Statustype(2).status : ' ||c.Statustype(2).Status );
    DBMS_OUTPUT.PUT_LINE(null);
      b.extend;
      b(3) := Orderstatus_Type('cc',null);
    DBMS_OUTPUT.PUT_LINE('b(1).Status : ' ||b(1).Status );
    DBMS_OUTPUT.PUT_LINE('b(2).Status : ' ||b(2).Status );
    DBMS_OUTPUT.PUT_LINE('b(3).Status : ' ||b(3).Status );
    DBMS_OUTPUT.PUT_LINE(null);
      c.Statustype.extend;
      c.Statustype(3) := Orderstatus_Type('DD',null);
    DBMS_OUTPUT.PUT_LINE('c.Statustype(1).status : ' ||c.Statustype(1).Status );
    DBMS_OUTPUT.PUT_LINE('c.Statustype(2).status : ' ||c.Statustype(2).Status );
    DBMS_OUTPUT.PUT_LINE('c.Statustype(3).status : ' ||c.Statustype(3).Status );
    DBMS_OUTPUT.PUT_LINE(null);
      for x in c.Statustype.first .. c.Statustype.last loop
        DBMS_OUTPUT.PUT_LINE('c.Statustype(' || x || ').status : ' ||c.Statustype(x).Status );
      end loop;
    end;
    b.last = 1
    b.last = 2
    b(1).Status : aa
    b(2).Status : bb
    c.Statustype(1).status : aa
    c.Statustype(2).status : bb
    b(1).Status : aa
    b(2).Status : bb
    b(3).Status : cc
    c.Statustype(1).status : aa
    c.Statustype(2).status : bb
    c.Statustype(3).status : DD
    c.Statustype(1).status : aa
    c.Statustype(2).status : bb
    c.Statustype(3).status : DD
    Please look at the PL/SQL manual at:
    PL/SQL Collections and Records
    Regards,
    Peter

  • MD4C - Multilevel order report with a selection of production/process order

    Hi Experts,
    We have this request:
    We need to check the availability check for different production orders, with multilevel mode, but the tcode MD4C accepts only one production order.
    We have seen that we can actually use the same tcode with different sales orders.
    Someone tell me if it is possible to change the screen on production orders or tell me which FM can be used in a Z report ?
    Thanks in advance
    Marco Ferrari

    Dear Macro ,
    Are you really particular on MD4C ?
    I would rarher say there are good report in SAP standard , available to fullfill your requirement .Why do not you try the blelow report for your requrement :
    1.COOIS
    2.COHV
    3.CO46
    In COOIS -Choose Order Header  and Select Collective availability check -Enter Order Type and Plant  and hit execute button .
    It will give you the result what you are looking for and also goto Header after execution -Select colourful chekcer box "Select Lay out " Change as you wish too with your required field information in display column
    Hope this will be helpful
    Try and revert
    Regards
    JH

  • Individual/collective req ind

    Dear experts,
    I'm using MTO. I have multilevel bom structure. I have faced a problem.
    For example I have a material in level2 followed individually according to customer order. I want the level3 materials to be managed collectively. I'm setting all the materials collective indicator in 3rd level. But sometimes I forget to create the MRP view of the 3rd level material. Then the system plans the requirements of 3rd level according to 2nd level and as the 2nd level followed individully this 3rd level  material is also planned individually.
    My question comes: Is there any way to define the system plan the materials always collectively if mrp view does not exist or if I don not set any indicator.

    Hi,
    Yes you can set the collective/Indual indicator with out MRP view also..
    In the BOM you can set..
    In component details there got a Explosion type for this explosion type in the background setting set as collective requirement and assign the same in the BOM items.
    hope clear..
    Revert me if any issue
    Regards,
    Ravi

  • 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.

Maybe you are looking for

  • Can Not Use Air Disk for Time Machine Backup

    I have my Lacie 750 GB drive plugged into my AEBS, and it shows up on my network. I can not get Time Machine to recognize it so I can backup. I would appreciate any specific setup info. anyone has that can fix this problem. Thanks - Dudley Warner

  • Carrying and Forwarding agent mapping

    Dear All, I have to map a certain scenario where there are two plants at two different states and one ware house and 20 C& F agents spread across the country. 1)How should i map this in SAP? 2) Whether i should map the C& F agents as S.Loc or any thi

  • My iPad is dead after trying to Update

    I have about a 5yr old iPad. I plugged it into my MacBook Air to charge it, got a request to update iOS to 8.2. Then got error message 3014 saying it can't be updated nor restored. Now it won't launch. Went to Support based on the error message 3014,

  • Convert Date function to oracle

    The follwoing Sql for Sqlserver, what is the equivalent function in oracle. Need help on this. YTD: YOUR_DATE_FIELD between DATEADD(yy, DATEDIFF(yy,0,@Prompt('BEGIN_DATE','D',,mono,free)), 0) AND @Prompt('END_DATE','D',,mono,free) MTD: YOUR_DATE_FIEL

  • Forgot to deactivate PS before deinstalling it. Now I can't reinstall it on another computer. Help?

    Hey there! I've got a rather massive problem. I own the student versions of PS CS4 extended and PS CS5 extended. Now I bought a new laptop and wanted to install CS5 on the new one. It was installed on the old one and as I didn't know that you had to