How to retrieve/query composition association data

Hi guys,
I have requirement to query retrieve data from appointments Follow-Up table. What I see in UI designer Follow-Up data list is mapped to composition association
By structure I see that actually it is BusinessTransactionDocumentReference association, but in Apportunity's TI there is no query or other visible configuration how these following records are filtred out.
That why I have question - how can I access in my PDI coding to this FollowUp association so I could grab UUIDs and retrieve these appointments?
Thanks,
Uldis

Hello Uldis,
Composition associations are just a pointer from a parent node to a child node and vice versa (ref. documentation SDK1405 p.679). So accessing the data in the nodes should not be problematic.
Perhaps with more information on your context's issue, somebody could help you.
In which Business Object are you? A Custom one or a standard BO?
What is the screen you are in for this Data List?
Thanks,
Regards,
Jacques-Antoine

Similar Messages

  • How to retrieve the multiple rows data on PDF form in a web service method using WSDL DataConnection

    How to retrieve the multiple rows data on PDF form in a web service method using WSDL DataConnection.
    I have a multiple rows on PDF form. All rows have 4 textfields. I want to submit the multiple rows data to a method defiened in webservice.
    Unable to retrieve the data in multiple rows within webservice method.

    Hi Paul,
    I'm now able to save the retrieved xml in a hidden text field and create dynamic table, and I'm able to fill this table from the XML, but the problem is that I could not find the correct way to loop on the xml, what I'm trying to say, the table will have number of rows with the data of the first row only, so can you tell me the right way to loop on the xml!
    this is my code
    TextField1.rawValue=xmlData.document.rawValue;
    xfa.datasets.data.loadXML(TextField1.rawValue, true, false);
    for(var i=0; i<count; i++)
    xfa.form.resolveNode("form1.P1.Table1.Row1["+i+"].Num").rawValue = xfa.datasets.data.record.num.value;
    xfa.form.resolveNode("form1.P1.Table1.Row1["+i+"].Name").rawValue = xfa.datasets.data.record.name.value;
    Table1.Row1.instanceManager.addInstance(true);
    Thanks
    Hussam

  • How to retrieve start and end date values from sharepoint 2013

    Hi,
    How to retrieve start and end date values from new event form of calendar in SharePoint foundation2013
    Thanks
    Gowri Balaguru

    Hi Srini
    Yes i need to have parallel flow for both and in the cube where my reporting will be on monthly basis i need to read these 2 master data and get the required attributes ( considering last/first day of that month as per the requirement).......but i am just wondering this is common scenario....while there are so many threads written for populating 0employee from 0person......don't they have such requirement.....
    Thanks
    Tripple k

  • How to retrieve day between two dates?

    Hi all,
    Hope doing well,
    sir i am retrieving day between two dates in sql server like this.
    select datediff(day,'2012-10-03 00:00:00.000','2012-10-05 00:00:00.000')
    and getting result that is: 2
    but how this type of query i'll use in oracle?
    thanks,

    Just do minus
    diff := date_variable2-date_variable1;The difference sill be in days.
    If you want just the differences in days (Neglecting time part)
    diff := trunc(date2)-trunc(date1);

  • HT5624 I have an expired email account linked to icloud and don't know the password and can't reset the password due to not receiving emails anymore with the email account. Any ideas on how to retrieve the songs and data?

    I have an icloud account linked to an email address that is no longer in service.  I do not have the password for the account and am trying to retrieve the songs and data from the cloud to use on new apple device.  Any way to get a new password, able to open the expired account, without having that email account active?

    Hi there clarethasimmons,
    You may find the information in the article below helpful.
    Apple ID: Changing your Apple ID
    http://support.apple.com/kb/ht5621
    -Griff W.

  • How to retrieve GP process context data by GP API

    How can I retrivev the context data of GP process instance by using GP API, just like the funtionality in GP Monitor?

    Hi,
    Please check these links
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/01754e5ba20c4be10000000a11466f/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/bd/996642c4764454e10000000a1550b0/content.htm
    Thanks and Regards,
    Prabhakar Dharmala

  • How to retrieve the text associated with a link annotation

    Hello
    In Acrobat, I created a link using the Select tool. I selected the text which I wanted to create a link.
    After with a C++ plug-in, I want to retrieve the text associated with a link annotation. Which is the function which makes it possible to find the text?
    Regards
    David G

    ok thanks for ur reply now my question regarding about ur first three message..
    U told using quad we finding their rectangle dimensions and then compare that with link annatation title. So then we retrieve link annataion right..
    Ya i already done like u told.. But i have one problem so plz solve dis..
    Problem--- see my code below
    for(int nWordCounter = 0; nWordCounter < nWordCount; nWordCounter++ )
    pdNWord = PDWordFinderGetNthWord(pdWordFinder, nWordCounter );
    PDWordGetNthQuad(pdNWord, nWordCounter, &quad);
    blh = ASFixedRoundToInt32(quad.bl.h);
    blv = ASFixedRoundToInt32(quad.bl.v);
    brh = ASFixedRoundToInt32(quad.br.h);
    brv = ASFixedRoundToInt32(quad.br.v);
    tlh = ASFixedRoundToInt32(quad.tl.h);
    tlv = ASFixedRoundToInt32(quad.tl.v);
    trh = ASFixedRoundToInt32(quad.tr.h);
    trv = ASFixedRoundToInt32(quad.tr.v);
    char *a = (char*)Asmalloc(20);
    sprintf(a, "%d %d %d %d %d %d %d %d", blh, blv, brh, brv, tlh, tlv, trh, trv);
    In dis code, the quad values of blh, blv, brh, brv, tlh, tlv, trh and trv are same for all words(pdNWord). so pls help me for dis proble..
    thanks in advance
    Raghu N

  • How to optimize query that returns data based on one matching and one missing field joining two tables

    Hi all,
    Here is what I am trying to do. I have 2 tables A and B. Both have a fiscal year and a school ID column. I want to return all data from table B where all school IDs match but fiscal year from A is not in B. I wrote 2 queries below but this took
    2 minutes each to process through 30,000 records in table B. Need to optmize this query.
    1) select 1 from table A inner join table B
    on A.SchoolID=B.SchoolID where A.Year not in (select distinct Year from table B)
    2) select distinct Year from Table A where School ID in (select distinct School ID from table B
    and Year not in (select distinct Year from table B)

    Faraz81,
    query execution time will depend not only on your data volume and structure but also on your system resources.
    You should post your execution plans and DDL to generate data structures so we can take a better look, but one think you could try right away is to store the results of the subquery in a table variable and use it instead.
    You'll also benefit from the creation of:
    1. An index for the B.SchoolID column.
    2. Statistics for the Year column in table B.
    You can also try to change the physical algorithm used to join A to B by using query hints (HASH, MERGE, LOOP) and see how they perform. For example:
    select 1 from table A inner HASH join table B
    on A.SchoolID=B.SchoolID where A.Year not in (select distinct Year from table B)
    As the query optimizer generally chooses the best plan, this might not be a good idea though, but then again, without further information its going to be hard to help you.

  • How can i query report between date item

    Hi All,
    my report query like this
    </code>
    SELECT PROJECT_STATEMENT.PROJECT_STATEMENT_ID,
    PROJECT_STATEMENT.CREATE_DATE,
    PROJECT_STATEMENT.DOC_NO,
    PROJECT_STATEMENT.LISTS
    FROM PROJECT_STATEMENT
    WHERE TO_CHAR(PROJECT_STATEMENT.CREATE_DATE) BETWEEN TO_CHAR(:P3341_START_DATE)AND TO_CHAR(:P3341_TO_DATE)
    AND PROJECT_STATEMENT.CATEGORY_BUDGET = 2
    AND PROJECT_STATEMENT.STATUS = 1
    AND PROJECT_STATEMENT.BUDGET_TYPE = 8
    </code>
    i try to select date from 2 item is start date and stop date with this query but it does't work how can i do this? please help me...
    my APEX Version is 4.1 and oracle 11g
    Edited by: 963456 on 5 ต.ค. 2555, 8:11 น.

    Hi,
    Try this
    SELECT PROJECT_STATEMENT.PROJECT_STATEMENT_ID,
      PROJECT_STATEMENT.CREATE_DATE,
      PROJECT_STATEMENT.DOC_NO,
      PROJECT_STATEMENT.LISTS
    FROM PROJECT_STATEMENT
    WHERE PROJECT_STATEMENT.CREATE_DATE  BETWEEN TO_DATE(:P3341_START_DATE,'<fmt>')
      AND TO_DATE(:P3341_TO_DATE,'<fmt>')
    AND PROJECT_STATEMENT.CATEGORY_BUDGET = 2
    AND PROJECT_STATEMENT.STATUS = 1
    AND PROJECT_STATEMENT.BUDGET_TYPE = 8Where &lt;fmt&gt; is the Date Format Mask of the two page items.
    Converting dates to varchar2 and then comparing them is not the way to do it.
    Cheers,

  • How to retrieve all my backup data after iphone 4 has been restored as new?

    did a factory restore on my iphone 4 today and set it up as a new phone in my itune, last time when i restored from backup, all my older data were synched to my phone... but now i'm clueless about how to get all that back, where are my data once the phone was set as new? ps. i'm not very tech savvy, please refrain from using terms i might not understand, lol...
    Message was edited by: cute0206

    This link provides the data that is included with your iPhone's backup.
    http://support.apple.com/kb/HT1766
    No iTunes content is included with your iPhone's backup - no music, movies, tv shows, and 3rd party apps. All iTunes content on your iPhone should be in your iTunes library on your computer.
    Although contacts are included with your iPhone's backup, contacts are designed to be synced with a supported address book application on your computer and should be available on your computer with or without an iPhone or any cell phone which can be lost or stolen.
    Photos transferred from your computer should remain on your computer.
    Photos and videos in the Camera Roll are also included with your iPhone's backup and can/should be imported by your computer as with any other digital camera. Any of the photos/videos imported from the Camera Roll that you want available on your iPhone can be transferred from your computer as with any other photos/videos. If you don't import from the Camera Roll and you don't restore your iPhone from your iPhone's backup, all previous Camera Roll items will not be restored.

  • How to retrieve query string value from the URL in my portlet

    Hi,
    When user clicks on "Advance Search", i am redirecting to page in the community. At the same i am adding some more values to the query string (to the URL).
    My URL will look like this.
    http://ctp-mc0149/portal/server.pt?space=CommunityPage&parentname=CommunityPage&parentid=0&in_hi_userid=200&cached=true&control=SetCommunity&PageID=202&CommunityID=200&searchType=2
    Now in one of my portlet in that page, i want to retrieve the query string values from the URL.
    Please help me regarding this.
    Thanks in advance.
    Thanks,
    sreekanth.

    Hi,
    Look at the following threads,
    For programmatically getting the iview properties,
    Programmatically getting iView Properties
    Also,
    Get Properties of IView Programmatically
    Permanent change of iView property programmatically
    Hope these threads help u.
    Regards
    Srinivasan T

  • How to retrieve Numbers from xml data

    if I have this data..
    <bids>
    <bid_tuple>
    <userid>U01</userid>
    <itemno>1004</itemno>
    <bid>40</bid>
    <bid_date>1999-03-05</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U03</userid>
    <itemno>1007</itemno>
    <bid>175</bid>
    <bid_date>1999-01-25</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U05</userid>
    <itemno>1007</itemno>
    <bid>200</bid>
    <bid_date>1999-02-08</bid_date>
    </bid_tuple>
    <bid_tuple>
    <userid>U04</userid>
    <itemno>1007</itemno>
    <bid>225</bid>
    <bid_date>1999-02-12</bid_date>
    </bid_tuple>
    </bids>
    stored in xmltype table called bids
    I want to run this query...
    select extract(OBJECT_VALUE,'/bids/bid_tuple/itemno/text()').getnumberval() from bids;
    it give me .. 1.0011E+63
    Which I DO NOT NEED
    I need numbers not string since extract or extract vlaue will return string AND using getNumberVal() will give me this strange result
    I need it since I want to compare the result with data from relational table
    Thanks

    NinaOracle wrote:
    select extract(OBJECT_VALUE,'/bids/bid_tuple/itemno/text()').getnumberval() from bids;That extracts and concatenates all itemno text nodes from the document into a single (possibly long) string.
    With getNumberVal you then try to convert the string to a (possibly big) number, hence the display "issue".
    If you want to break the XML into relational rows and columns, XMLTable is your choice :
    SQL> SELECT x.itemno
      2  FROM bids b,
      3       XMLTable(
      4        '/bids/bid_tuple/itemno'
      5        passing b.object_value
      6        columns
      7         itemno number path '.'
      8       ) x
      9  ;
        ITEMNO
          1004
          1007
          1007
          1007

  • How to retrieve the doc format data from the database?

    Hi Experts,
         I need to retrieve the doc files ( Cv's) from data base to my presentation server. In order to do that what is the field I can use?

    You can use officecontrol UI element for displaying doc files.
    below are some important links
    [Office Control|http://help.sap.com/saphelp_nw04/helpdata/en/5d/a0b16a9d2e4e4d8b2322af6728263f/content.htm]
    [example|http://help.sap.com/saphelp_srm40/helpdata/ru/ef/3483789514b748b6fe1f145e9685ab/content.htm]
    thanks
    sarbjeet singh

  • How can i query oracle database data to xml file with c++?

    I want query data to xml file directly in my c++ application .
    I know the oracle XSU provide interferce for query data to xml
    file directly.
    But XSU for oracle8i does not support c++.
    I do not know if XSU for oracle9i support c++.
    can you tell me?
    If i do not use XSU to finish my applicayion.
    what interface that oracle provide can help me do my work?
    thank you !

    BTW why do you want to migrate oracle database data to db2 database? Any specific project requirement like Parallel run with Oracle database (e.g data replication)? Or any other issues - Cost? Manageability? Availability? Business requirements?
    Do you need to do a day-to-day data transfer or it is for permanent migration?

  • How to retrieve module table usage data from Repository?

    Hi,
    I would like to retrieve some basic data about my application system's modules, like module name, module componenet name list, base table and lookup table name of the module component, base table operations (insert, update, delete). Did some one do it by using the Designer API? I read the the docs, but it does not look as a to simply thing for me. In Designer 1.3 I could figure out the RDBMS views, but with versioning in 6i/9i it just seem too complicated for me.
    Could any one please post an example here?
    Thank you in advance.
    Regards,
    Tamas Szecsy

    begin
    jr_context.set_workarea('XXXX'); -- Workarea name
    end ;
    select cmc.*
    from ci_application_systems cas
    , ci_app_sys_modules cam
    , ci_module_components cmc
    where cas.irid = cam.application_system_reference
    and cam.module_reference = cmc.general_module_reference
    and cas.name = 'XXXX' -- APP name

Maybe you are looking for

  • Crashing Apple Apps

    Has anyone else seen this? Every now and then, one of my Apple apps starts crashing, to the point where the application becomes unusable. A couple of months ago, it was Contacts, which would crash everytime I tried to get address information from any

  • (re)pushing and removing network printers deployed through GP

    Hi, We're deploying our printers through Print Management, "Deploy with Group Policy" per user. All seems to be working pretty well, but I have a few questions: 1. How can a client remove the printers that were pushed? I've tried a batch script that

  • How to convert date format dd.mm.yy into yyyymmdd?

    Hello experts, how to convert date format dd.mm.yy into yyyymmdd? Thanx Axel

  • Sync iPhone 4S without outlook 2010

    How can I sync my iPhone 4S with Outlook 2010 calendar?

  • Can't find certain songs

    I heard a song on youtube and I tried to look it up on iTunes. It wasn't there. I googled it and somebody said it was only on the irish version of iTunes??? I'm not even sure what that is.