Multiple LOV attributes in different popups.

Hello,
I am using JDeveloper 11.1.1.3. In my page i have several buttons that open different popups. In every popup, i have created a 'select one choice' from my VO with its corresponding table (the view's table). This is mainly to implement a customized search page. However, since all attributes are linked to the same VO every time i run my program and enter a popup, the same value of the 'select one choice' attribute is seen in all other popups. Meaning, if the first popup has the "File Name" attribute and the second has "File Number", both show "File Name" or vice versa (depending on which popup i used first! I tried setting partial triggers on the SOC to the buttons, but this didn't work. Can this be fixed without creating multiple VOs?
Thanks,
Mohamed.

Hello Timo,
Yes each soc is based on the same vo. Like you said it's taking the id the same for every soc i'm using. A sample code for two popups is the following:
<af:popup id="popup1" contentDelivery="immediate"
                                binding="#{popupBean.tablePopup2}" autoCancel="disabled">
                        <af:dialog id="dialog2" title="Filter By File Number"
                                   type="none">
                          <af:selectOneChoice value="#{bindings.LOVReference1.inputValue}"
                                              label="#{bindings.LOVReference1.label}"
                                              required="#{bindings.LOVReference1.hints.mandatory}"
                                              shortDesc="#{bindings.LOVReference1.hints.tooltip}"
                                              id="soc2"
                                              contentStyle="width:318px"
                                              autoSubmit="true">
                            <f:selectItems value="#{bindings.LOVReference1.items}"
                                           id="si2"/>
                          </af:selectOneChoice>
                          <af:spacer width="10" height="10" id="s12"/>
                          <af:table value="#{bindings.SearchAC21.collectionModel}"
                                    var="row"
                                    rows="#{bindings.SearchAC21.rangeSize}"
                                    emptyText="#{bindings.SearchAC21.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.SearchAC21.rangeSize}"
                                    rowBandingInterval="0"
                                    selectedRowKeys="#{bindings.SearchAC21.collectionModel.selectedRow}"
                                    selectionListener="#{bindings.SearchAC21.collectionModel.makeCurrent}"
                                    rowSelection="single" id="t4"
                                    styleClass="AFStretchWidth">
                            <af:column sortProperty="Filename" sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.Filename.label}"
                                       id="c23">
                              <af:outputText value="#{row.Filename}" id="ot22"/>
                            </af:column>
                            <af:column sortProperty="Nbr" sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.Nbr.label}"
                                       id="c19">
                              <af:outputText value="#{row.Nbr}" id="ot23">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.SearchAC21.hints.Nbr.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Issuedate" sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.Issuedate.label}"
                                       id="c20">
                              <af:outputText value="#{row.Issuedate}" id="ot24">
                                <af:convertDateTime pattern="#{bindings.SearchAC21.hints.Issuedate.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="ReferenceNbr"
                                       sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.ReferenceNbr.label}"
                                       id="c21">
                              <af:outputText value="#{row.ReferenceNbr}"
                                             id="ot21"/>
                            </af:column>
                            <af:column sortProperty="Signature" sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.Signature.label}"
                                       id="c22">
                              <af:outputText value="#{row.Signature}"
                                             id="ot20"/>
                            </af:column>
                            <af:column sortProperty="Subject" sortable="false"
                                       headerText="#{bindings.SearchAC21.hints.Subject.label}"
                                       id="c24">
                              <af:outputText value="#{row.Subject}" id="ot19"/>
                            </af:column>
                          </af:table>
                          <af:spacer width="10" height="25" id="spacer124"/>
                        </af:dialog>
                      </af:popup>
                      <af:popup id="popup2" contentDelivery="immediate"
                                binding="#{popupBean.tablePopup3}">
                        <af:dialog id="dialog3"
                                   title="Filter By Reference Number" type="none">
                          <af:selectOneChoice value="#{bindings.LOVReference1.inputValue}"
                                              label="#{bindings.LOVReference1.label}"
                                              required="#{bindings.LOVReference1.hints.mandatory}"
                                              shortDesc="#{bindings.LOVReference1.hints.tooltip}"
                                              id="soc1" autoSubmit="true"
                                              contentStyle="width:318px">
                            <f:selectItems value="#{bindings.LOVReference1.items}"
                                           id="si1"/>
                          </af:selectOneChoice>
                          <af:spacer width="10" height="10" id="s13"/>
                          <af:table value="#{bindings.SearchAC2.collectionModel}"
                                    var="row"
                                    rows="#{bindings.SearchAC2.rangeSize}"
                                    emptyText="#{bindings.SearchAC2.viewable ? 'No data to display.' : 'Access Denied.'}"
                                    fetchSize="#{bindings.SearchAC2.rangeSize}"
                                    rowBandingInterval="0"
                                    selectedRowKeys="#{bindings.SearchAC2.collectionModel.selectedRow}"
                                    selectionListener="#{bindings.SearchAC2.collectionModel.makeCurrent}"
                                    rowSelection="single" id="t3"
                                    styleClass="AFStretchWidth"
                                    partialTriggers="::soc1">
                            <af:column sortProperty="Filename" sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.Filename.label}"
                                       id="c14">
                              <af:outputText value="#{row.Filename}" id="ot14"/>
                            </af:column>
                            <af:column sortProperty="Nbr" sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.Nbr.label}"
                                       id="c13">
                              <af:outputText value="#{row.Nbr}" id="ot18">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.SearchAC2.hints.Nbr.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="Issuedate" sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.Issuedate.label}"
                                       id="c15">
                              <af:outputText value="#{row.Issuedate}" id="ot13">
                                <af:convertDateTime pattern="#{bindings.SearchAC2.hints.Issuedate.format}"/>
                              </af:outputText>
                            </af:column>
                            <af:column sortProperty="ReferenceNbr"
                                       sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.ReferenceNbr.label}"
                                       id="c17">
                              <af:outputText value="#{row.ReferenceNbr}"
                                             id="ot16"/>
                            </af:column>
                            <af:column sortProperty="Signature" sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.Signature.label}"
                                       id="c18">
                              <af:outputText value="#{row.Signature}"
                                             id="ot17"/>
                            </af:column>
                            <af:column sortProperty="Subject" sortable="false"
                                       headerText="#{bindings.SearchAC2.hints.Subject.label}"
                                       id="c16">
                              <af:outputText value="#{row.Subject}" id="ot15"/>
                            </af:column>
                          </af:table>
                        </af:dialog>
                      </af:popup>The value is always taken:
<af:selectOneChoice value="#{bindings.LOVReference1.inputValue}{code}
I found a workaround which is to add multiple VOs in my application module and use every one to a different attribute. But, i don't find this solution effective!
Thanks,
Mohamed.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Using multiple LOV popups in a multi-row updatable report but save to 1 col

    Hi,
    I'm trying to generate a multirow updatable report, which has only 1 writeable column. There is a read-only column that indicates the type of value that the writeable column should contain (it's a varchar2). The second column will be a LOV popup.
    I can create the report by setting the 2nd column to a LOV and it's fine, however I really want the LOV to be different, depending upon the value of the first column for the row.
    For example, if the first column is "list" then I want the popup to show all my "lists"
    If the first column is "role" then I want to the popup to show all my "roles".
    There will be a mixture of values within the entire rowset.
    I've so far managed to use a case statement to generate different LOV popups, which are displayed as required but the returned data isn't written back to the correct field.
    If I use the same p_idx value then there is only one javascript function created and it always stores the data in the first rows column.
    If I use unique p_idx values, then it works better but selecting a value for the 2nd row will store it there but also overwrite the 1st rows value as well.
    My SQL for the report currently looks like this (cut down for clarity)
    SELECT RULACTPRMIDD, /* PK */
    CASE PRMNME /* type */
    WHEN 'list' THEN
    APEX_ITEM.POPUPKEY_FROM_QUERY(2,rulactprmval,
    'SELECT LSTNME r, LSTNME d FROM LSTLST', 0)
    WHEN 'role' THEN
    APEX_ITEM.POPUPKEY_FROM_QUERY(2,rulactprmval,
    'SELECT ROLNME r, ROLNME d FROM PDRROL', 0)
    END dynamic_popup
    FROM CPNRULACTPRM
    I can't think of an example where i've seen this done within the Apex development environment otherwise I would refer you to that.
    An alternative option would be to pass the type of value required to the same LOV and then get the LOV query to only show the appropriate values - i'll look into this as a workaround option.
    thanks

    User478832,
    I didn't look thru all the code but I have a feeling your problem is the 9th line in the On Demand process. (the 9th line in this post anyway)...
    htp.prn('<option value="' || rec.cpc_name|| '">' || rec.cpc_name|| '</option>');
    You modified your query to get a different column but your returning the same column later: rec.cpc_name x2
    I assume you want to display NAME and return ID so change it like this...
    htp.prn('<option value="' || rec.cpc_id || '">' || rec.cpc_name|| '</option>');
    Let me know if that helps...
    Dan

  • How to Apply adjustment layers to multiple layers that have different blending modes ...

    How to Apply adjustment layers to multiple layers that have different blending modes  and keep the colours the same as the adjusment done?
    I work in Animation painting Backgrounds.  My files are sometimes upwards to 200+ layers.
    I will use adjustment layers to quickly balance colours and constrast on top of those many many layers.
    The only way that I know of how to apply adjustment layers it to every single layer  ( by applying I mean I need to get rid of the adjustment layers because we cant use them in production but i need the new colours be applied to all layers underneath ) in a psd is to manually do it By duplicating the adjusment layer 200+ times and  then merging each layer to one of those adjustment layers so that that layer can take the adjustment layers effect permanently.
    The issue is that Within Those 200 layers I have some layers set to Multiply or OVERLAY.    IT obviously wont apply the adjustment layer properly to those layers because those layer blend mode affect the layers under them. The colour wont be the same anymore in the spots that had the multiply blended mode.
    HEres an example of a simple File.  to show what i mean.
    https://dl.dropboxusercontent.com/u/3408266/ball%20layers.jpg
    https://dl.dropboxusercontent.com/u/3408266/ball.psd
    I have 2 adjustment layers up top.  I need to get rid of them by applying them to each layer! I cannot merge any of the layers. We need all those layers for production.
    I can apply the adjustment layers manually and this works GREAT for all Layers set to normal.  THey take on the colour change just FINE.
    However, The issue is that layer 6 and layer 4 are both set to mutiply and this screws up the colour once i apply the adjustment layers to each layer manually...
    How can i apply my adjustment layers to a file like this with some layers being set to multiply while keeping the layers exactly the same configuration  and The new colour taking efffect exactly how i looks before i apply the adjustment layers?
    Now the simple solution is to merge the multiply layers to the layer that it affects HOWEVER I NEED those multiply layers to be seperate! 
    I'm assuming what I want to do is impossible? Hope this isnt confusing.  As far as i know its impossible to do what I want it to do.  but just wanted to ask and see.
    I would REALLY REALLY love to talk to a adobe programmer/ technician/pro working at adobe about this.  Theres just no way to get in touch with anyone... =(
    any thoughts ?

    Sure... if you want to put it that way. Either way its not the desirable outcome. 
    its just frustrating that theres no way to apply adjustment layers to hundreds of layers while keeping them in the same configuration ( blendmodes,  layer order ,  without merging)  while keeping the same end result.
    works great if all your layers are set to normal though..    But I really need to keep shadow layers seperately and be able to adjust on the fly aswell as apply those adjusment to all my layers.
    I suppose that just isnt possible.   I understand the math required for this would be tremendous/ complicated if something like this would ever be implemented.  Would be nice if adobe could come up with some solution to this.  Its really a huge issue in my work flow and theres no alternatives.    How else can I adjust colours to 100+ layers  with a few clicks that lets me play around the the adjustment until im happy with the outcome.    Really wish i could adjust and the quickly apply that adjustment to all my layers regardless of blend mode.   LIke If the Layers with blendmode could somehow take the properties of the adjustment layer and keep adjusting those layers undereathe on top of that blended mode that its doing...   

  • I subscribed to iTunes Match and would like to sync my music on multiples devices that have different Apple IDs within the same iCloud family.

    I subscribed to iTunes Match and would like to sync my music on multiples devices that have different Apple IDs within the same iCloud family.
    Can someone indicate the way to proceed?
    Thanks.

    Hi,
    You can't use family sharing or multiple Apple IDs with iTunes match.
    ITunes match is only attached to Apple id that you used to subscribe.
    Jim

  • Can you run multiple APEX listeners for different instances on the same server

    Please confirm that we can run multiple APEX listeners for different instances on the same server?  Is it an xml setup configuration or do we need to do more??
    Thank You,
    Tony Miller
    SmartDog Services
    Austin, TX

    Yes.. Just exactly what I was looking for...
    Thanks Jari!!
    Thank You,
    Tony Miller
    SmartDog Services
    Austin, TX

  • Managing multiple iOS devices on different Apple accounts from the same iMac

    May be a very simple question to answer, but can I manage multiple iOS devices on different Apple accounts from the same iMac?
    I ask as whilst I'm totally Mac'd, my partner who has her own Apple account has a Winows laptop and experiences problems updating iOS software on her iPhone 4S and iPad 3 Gen via the laptop. I'm thinking the problems may be overcome if we manage her iOS devices through my iMac.

    Thanks dwb .... I thought there'd be a catch .... not to keen on all that media and apps on my iMac!
    The specific problem is that whenever she updates to the latsest version of iOS using the latest iTunes for Windows on her PC laptop she seems to lose something in the process. One time she lost all her texts and the other day when updating to 5.1.1 she lost all her reminders. Not the end of the world but frustrating and shouldn't really happen and doesn't happen to me using the iMac and OSX.

  • InfoPackage to load multiple flat file for different plant

    Hi
    There is a requirements to load the data from multiple flat files by different plant into BI which source data is coming from other system. Each flat file has it own naming convention.
    As data has to load via infopackage into the targeted cube. Then I have to create multiple infopackage in order to load the data according to the number of flat files that provided. However, new plant will be created due to expansion of bussiness. If that is the case, additional infopackage is required to create as and when there is a new plant. 
    Is there a way to create a infopackage to load the data from flat file by plant? Your advice is much appreciated.
    Thanks and regards
    Kang Ring

    Hi,
    The best way I can suggest is....
    1. Create a folder in AL11 for your requirements.
    2. In InfoPackage under Extraxction Tab you can have File Name , just side of this you can fine ABAP Routines ICon there you click on that and asks Name give some and then it will takes to your into ABAP Code there you can access the AL11 and then write code in such way that to take file irrespective of the File name, whatever the file is there in that Folder it ahoud take from that AL11 Folder path.
    3. Load the Data using PC.
    4.At the end of the PC Delete the File in AL11 folder , becasue we don't need it for next load.
    Else
    See the thread
    Re: Automation of load from application server
    Thanks
    Reddy
    Edited by: Surendra Reddy on Jun 4, 2010 11:03 AM

  • Multiple lov in singlr form!!

    Hi
    I have a table called responsibility(userID,resID,userResID,Active,Date),user(userId,name). In this resID,userID are foreignKey's. i want to set LOV for userID,resID and Active fields within a single JSP form. we could able to generate LOV for single field using jsp element wizard and data webBean.How to do for multiple fields?.I m getting some JBO error while doing multiple lov's in single jsp.
    Pls let me know the solution..
    thnks,..

    What I typically do in the case where there are multiple barcodes on a form is use the label as the parent element to the rest of the fields on the form. Loop through each of the barcodes in the results from the decode and then place each of them into their own result node of a single XML document. Doing this, you can change the number of barcodes on your form without having to re-code.

  • SSIS project - read multiple flat files with different formats

    hi all,
    i need to import multiple flat files with different formats into different tables of the sql server database and not able to figure out the best way out in ssis to do so...
    please advise the possible methods in ssis to do so and if possible the process which can be dynamic as file names or columns might change in future.

    Hi AK1987,
    To import flat files with dynamic columns, we can use Script Task inside a Foreach Loop Container to parse the first row of the flat file to get the columns names and save them into a .NET variable, then, we can create “Create Table” script based on this
    variable, and then store the script into a SSIS package variable. After that, we create a staging table based on the package variable, load the flat file data to the staging table. Eventually, we load data from the staging table to the destination table. For
    the detail steps, please walk through the following blog:
    http://www.citagus.com/citagus/blog/importing-from-flat-file-with-dynamic-columns/ 
    Regards,
    Mike Yin
    TechNet Community Support

  • How to return multiple tags (based on different checks) in a for loop?

    Hi,
    I'm trying to return multiple elements, based on different checks that are done in the XQuery, within a for loop. But I'm getting syntax errors at any attempt to do this.
    This is the structure of what I'm trying to do:
              <ActionList>
         <ACtion>
    let $total := count(...)
    for $x in (1 to $total)
         let $lineItems := $someVariable/*:Items/*:Item[$x]
         return
              if(...)
                        <Qty1>{...}</Qty1>
                             else     ""
                        if(...)
                        <Qty2>{...}</Qty2>
                             else ""
                   {                                       if(...)
              <Qty3>{...}</Qty3>
                             else ""
              <LinesList>
                             let $totalcount(...)
                             for $y in (1 to $totalcount(...)
                                  let $DTL := $someVariable*:DTL[$y]
                             return
                             <Line>
                                  <Carrier>{...}</Carrier>
                                  <Path>{...}</Path>
                                  <CA>{
                                       if(...)
                                            data($$someVariable/*:CA)
                                       else
                                  }</CA>
                                  <RE>{
                                       if(...)
                                            data($someVariable*:CA[@XX="RG"])
                                       else
                                  }</RE>
                                  <Time>{
                                       if(...)
                                            data($someVariable*:CA[@XX="BN"])
                                       else
                                                                     </Time>
                                  </Line>
                        </LinesList>
                                                 </ACtion>
                                                 </ActionList>
    I'm not able to return elements without having their father being returned as well, I just want to iterate over those fields and, based on that verification, decide whether they should be returned or not.
    Can someone please advise?

    An example anyway...
    Input document ($d) :
    <ns0:Items xmlns:ns0="http://my.company.org/my-namespace">
      <ns0:Item type="A">
        <ns0:Qty>2</ns0:Qty>
        <ns0:UnitPrice>10.00</ns0:UnitPrice>
        <ns0:DTL>
          <ns0:Article>ART001</ns0:Article>
          <ns0:DispatchDate>2012-01-20</ns0:DispatchDate>
          <ns0:Destination direct="1">Location1</ns0:Destination>
        </ns0:DTL>
        <ns0:DTL>
          <ns0:Article>ART002</ns0:Article>
          <ns0:DispatchDate>2012-01-21</ns0:DispatchDate>
          <ns0:Destination direct="1">Location2</ns0:Destination>
        </ns0:DTL>
      </ns0:Item>
      <ns0:Item type="B">
        <ns0:Mass>5</ns0:Mass>
        <ns0:Unit>kg</ns0:Unit>
        <ns0:DTL>
          <ns0:Article>ART003</ns0:Article>
          <ns0:DispatchDate>2012-01-20</ns0:DispatchDate>
          <ns0:Destination direct="1">Location3</ns0:Destination>
        </ns0:DTL>
        <ns0:DTL>
          <ns0:Article>ART004</ns0:Article>
          <ns0:DispatchDate>2012-01-21</ns0:DispatchDate>
          <ns0:Destination direct="1">Location4</ns0:Destination>
        </ns0:DTL>
        <ns0:DTL>
          <ns0:Article>ART005</ns0:Article>
          <ns0:DispatchDate>2012-01-22</ns0:DispatchDate>
          <ns0:Destination direct="2">Location5</ns0:Destination>
        </ns0:DTL>
      </ns0:Item>
    </ns0:Items>XQuery :
    declare namespace ns0 = "http://my.company.org/my-namespace";
    <DispatchInfo>
      for $i in $d/ns0:Items/ns0:Item
      return
      <Parcel>
        if ($i/@type = "A")
          then <Amount>{xs:decimal($i/ns0:Qty * $i/ns0:UnitPrice)}</Amount>
          else <Weight>{concat($i/ns0:Mass, " ", $i/ns0:Unit)}</Weight>
      , for $j in $i/ns0:DTL
        return
        <Article>
          <Num>{data($j/ns0:Article)}</Num>
        , <Dt>{data($j/ns0:DispatchDate)}</Dt>
        , if ($j/ns0:Destination/@direct = "1")
            then <Dest>{data($j/ns0:Destination)}</Dest>
            else ()
        </Article>                 
      </Parcel>
    </DispatchInfo>Output :
    <DispatchInfo>
      <Parcel>
        <Amount>20</Amount>
        <Article>
          <Num>ART001</Num>
          <Dt>2012-01-20</Dt>
          <Dest>Location1</Dest>
        </Article>
        <Article>
          <Num>ART002</Num>
          <Dt>2012-01-21</Dt>
          <Dest>Location2</Dest>
        </Article>
      </Parcel>
      <Parcel>
        <Weight>5 kg</Weight>
        <Article>
          <Num>ART003</Num>
          <Dt>2012-01-20</Dt>
          <Dest>Location3</Dest>
        </Article>
        <Article>
          <Num>ART004</Num>
          <Dt>2012-01-21</Dt>
          <Dest>Location4</Dest>
        </Article>
        <Article>
          <Num>ART005</Num>
          <Dt>2012-01-22</Dt>
        </Article>
      </Parcel>
    </DispatchInfo>

  • RE: Multiple asset posting with different dates

    Hello can we post and transfer multiple asset codes with different posting dates to different asset in one single transaction i have use ABUMN with multiple selection but it is not provide to use different posting date for different asset codes.
    Regards
    Abhisekh Mandal

    ABUMN is supporting multiple assets but not multiple dates.  Post twice with two different dates.
    Srinivas

  • Are Transient VO & attributes handled differently ?????????????????????????

    Hi All,
    i'm using jdev10.1.2, adf bc's and jsp's. I'm having a transient attribute problem. I can populate these values fine, but subsequently if i try and manipulate these transient attributes, their values are all null. I've handled these tranient attributes exactly as you would any regular attribute. i just cant understand why they're not behaving as i would expect.
    So my question is, are the transient attributes handled differently??? Is there a property i need to set that i'm missing? do they need to be inserted into views in a special?
    If anyone could shed any light in the subject i would be most grateful or even if anyone could point me towards a good site on the subject.....
    Thanks,
    Liz

    Liz,
    Have a look at section 28.6 of the ADF Developer's Guide for Forms/4GL Developers (version 10.1.3.1.0 - I don't have the equivalent 10.1.2 version handy. It says, in part:
    Transient view object attributes are not passivated by default. Due to their nature, they
    are usually intended to be "read only" and are very easily recreateable. So, it often
    doesn’t make sense to passivate their values as part of the XML snapshot. However,
    by checking the Passivate checkbox on the Attribute page of the View Object Editor
    for any transient attribute, you can declaratively configure it to be
    passivation-enabled.
    Hope this helps,
    John

  • Error: Set type Z contains multiple-value attributes

    Hi forum,
    I have a problem when i try to assign a set type with the same value but diferent name on another set type to the same product category.
    This is the detail of the error but i dont know where i have to set this indicator:
    If you set this indicator for a particular hierarchy, all categories and set types in this hierarchy are created in the PME.
    This gives you the following extended maintenance options at category level:
    You can assign set types with multiple-value attributes
    You can restrict value ranges and maintain default values for attributes of customer set types.
    Any sugerence about this?
    Regards and thanks in advance,
    Mon

    Hi Nelson,
    I create two set types, the description is not the problem. I have discover that when i try to assign these attributes in the same set type or in other appears this error.
    The set types have the same values. For example:
    zcountry1. Values: sp - spain. fr - france.
    zcountry2. Values: sp - spain. fr - france.
    When i try to configurate the comm_hierarchy in my category appears this error:
    Set type zcountry2 contains multiple-value attributes.
    Diagnosis
    The set type ZGAME5 contains multiple-value attributes. It cannot be assigned to the category as extended maintenance has not been activated.
    Procedure
    Multiple-value attributes are stored in the PME. If you want to use the set type ZGAME5, you must set the Extended Maintenance Options indicator for the hierarchy.
    Extended Maintenance Is Possible for the Hierarchy
    Definition
    If you set this indicator for a particular hierarchy, all categories and set types in this hierarchy are created in the PME.
    This gives you the following extended maintenance options at category level:
    You can assign set types with multiple-value attributes
    You can restrict value ranges and maintain default values for attributes of customer set types.
    Where is this indicator¿? in R3?
    So, these are the steps...can anybody help to me?
    Regards and thanks in advance.

  • Multiple report servers - with different uifont.ali

    Can we have multiple report servers with different NLS_LANG?
    They all should be started as windows service. Also I would like to have them look at different uifont.ali. The reason is that we want to have the same report run with different fonts in different languages. This way I can map the fonts in uifont.ali as I want.
    Is it possible?

    I don't think this is possible with multiple reports servers with one Oracle 9iAS home. You will have to install multiple 9iAS, in different Oracle homes.
    This also means that you have different URL's (port numbers) for the two environments.
    I have used this configuration before to install a test and production environment on one web server. Changing the conf files, variables etc. in the test environment doesn't influence the production environment that way.

  • Can a single HID report descriptor support multiple touch screens with different sizes?

    Hi Experts:
    I have a question for specifying touch monitor sizes in the HID report descriptor:
    Can ONE HID report descriptor support multiple touch monitors with different sizes ?
    Thanks in advance
    leo

    My screen shot is from AA9, and I have seen that the UI for AAX is vastly different, but...
    Choose Paper Source from Page Size should be the "one-touch" solution your looking for.
    In my test, my Konica-Minolta Bizhub failed to detect the proper paper trays, but Acrobat correctly spooled the pages.

Maybe you are looking for

  • Just download iTunes 6.0 and now it won't open

    I just downloaded the newest version of iTunes 6.0. Now iTunes will not open for me at all! When i try opening it is says an error has occurred and will close. When I click on what the error report contains it says this, AppName:itunes.exe AppVer:6.0

  • Connecting Apple TV to Bluetooth speakers

    Loving Apple TV; but my TV built in speakers are poor. Currently I've plugged in some external speakers; but I'd like to connect my Bluetooth enabled Creative externals to the Apple TV; but Bluetooth in settings can't seem to find anyting. Creative j

  • Adding a second internal drive: missing cable?

    I recently purchased a Quad G5, to which I want to add a second internal drive. However, when I opened up the unit, only the smaller power supply cable was present. The wider controller cable seems no where to be found. I pulled the drive from my Dua

  • Apache HTTP proxying for load balancing only to a group of non-clustered WL servers

              Hi,           We're running WL Server 6.1 SP 2 on Solaris 2.8.           For the Apache HTTP proxy plugin, if you use the WebLogicCluster http.conf option,           do the WL servers you want to load balance across have to be part of a Web

  • AppStore: Update all doesn't work.

    I can't update all Apps the same time. I just can update 1 each time. There is no Log-In when I push the Update all button.