Programmatically Change DataBindings.cpx

Hi
I am using JDeveloper 11.1.1.3.
I have been trying to programmatically change data source connections in one of our applications. I first tried doing it in the application module. I could successfully create a new root AM, and query the new database, but was not sure of how I could refresh the VO to show the data from the changed database.
My second attempt was to create 2 separate AM's. I then added the VO to a JSF page and in the bindings created a pageFlow scope parameter, which I programmatically populated from a drop down list. This was successful. However that requires the development team to duplicate the AM's for each database exactly.
So my next attempt would be to have only one AM and try and change the configuration in the DataBindings file. The reason I would like to attempt this, is when I click on a DataControl in the DataControl Usage section of the DataBindings file, I see that in the Property Inspector for the DataControl, there is a Configurations property drop down list that contains all the available configurations for the AM. I would like to know if this can be accessed from code at runtime.
Any advice on how to achieve this or if it is possible would be welcomed.
Regards.
Leon.

hi leond,
I have done the same thing to change the application module configuration at runtime but its not working in my application.
actually I have one selectonechoicelist in Jspx page here I'm changing the configuration name but its not getting reflect either in table or console.
<af:selectOneChoice label="connection" id="soc1" autoSubmit="true"
                               valueChangeListener="#{schemachange.changecon}"
                                   partialTriggers="t1">
                <af:selectItem label="hr" value="HRSharedAMShared" id="si2"/>
                <af:selectItem label="scott" value="ScottSharedAMShared"
                               id="si1"/>
              </af:selectOneChoice>
<af:table value="#{bindings.LocationsView1.collectionModel}"
                        var="row" rows="#{bindings.LocationsView1.rangeSize}"
                        emptyText="#{bindings.LocationsView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                        fetchSize="#{bindings.LocationsView1.rangeSize}"
                        rowBandingInterval="0"
                        selectedRowKeys="#{bindings.LocationsView1.collectionModel.selectedRow}"
                        selectionListener="#{bindings.LocationsView1.collectionModel.makeCurrent}"
                        rowSelection="single" id="t1" width="581"
                        partialTriggers="::soc1">
                <af:column sortProperty="LocationId" sortable="true"
                           headerText="#{bindings.LocationsView1.hints.LocationId.label}"
                           id="c3">
                  <af:outputText value="#{row.LocationId}" id="ot4">
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.LocationsView1.hints.LocationId.format}"/>
                  </af:outputText>
                </af:column>
                <af:column sortProperty="StreetAddress" sortable="true"
                           headerText="#{bindings.LocationsView1.hints.StreetAddress.label}"
                           id="c2">
                  <af:outputText value="#{row.StreetAddress}" id="ot2"/>
                </af:column>
                <af:column sortProperty="PostalCode" sortable="true"
                           headerText="#{bindings.LocationsView1.hints.PostalCode.label}"
                           id="c1">
                  <af:outputText value="#{row.PostalCode}" id="ot5"/>
                </af:column>
                <af:column sortProperty="City" sortable="true"
                           headerText="#{bindings.LocationsView1.hints.City.label}"
                           id="c5">
                  <af:outputText value="#{row.City}" id="ot1"/>
                </af:column>
                <af:column sortProperty="StateProvince" sortable="true"
                           headerText="#{bindings.LocationsView1.hints.StateProvince.label}"
                           id="c4">
                  <af:outputText value="#{row.StateProvince}" id="ot3"/>
                </af:column>
              </af:table>backing bean code
    public String changecon(ValueChangeEvent valueChangeEvent)
        FacesContext fctx = FacesContext.getCurrentInstance();
        ELContext elctx = fctx.getELContext();
        Application app = fctx.getApplication();
        ExpressionFactory efactory = app.getExpressionFactory();
        ValueExpression vex = efactory.createValueExpression(elctx, "#{bindings}", Object.class);
        DCBindingContainer bindings = (DCBindingContainer) vex.getValue(elctx);
        if (bindings.getDataControl().getDef().getConfiguration() == "HRSharedAMShared")
            bindings.getDataControl().getDef().setConfiguration(valueChangeEvent.getNewValue().toString());
        else
            bindings.getDataControl().getDef().setConfiguration(valueChangeEvent.getNewValue().toString()); //("HRSharedAMShared");
        bindings.getDataControl().resetState();
        System.out.println("configuration name:\t" + bindings.getDataControl().getDef().getConfiguration());
        DCIteratorBinding iter = bindings.findIteratorBinding("LocationsView1Iterator");
        iter.executeQuery();
        System.out.println("iter rows:\t" + iter.getEstimatedRowCount());
        return null;
}can we do it on model layer also is their any way?
even I have created the applicationModule Instance in util class at model layer but its returning the proper data at console but not in the GUI table.
so please tell me the best way to achive it.
Thanks

Similar Messages

  • How to change default encoding in DataBindings.cpx

    Hello,
    How to change default encoding in DataBindings.cpx,
    on windows-1251 for instance?

    I've filed Bug# 3147045 for this. Our DataBinding.cpx file and UIModel XML files seem to be getting hardcoded to use the ISO-8859-1 encoding. Our ADF Business Components XML files correctly pickup the IDE encoding.

  • ADF BC : Ant and XSLT to modify bc4j.xcfg and DataBindings.cpx

    hi
    Before I deploy my ADF BC / ADF Swing application I would like to use Ant to make some changes to bc4j.xcfg and DataBindings.cpx
    (see also "Defining ADF Business Components Runtime Properties for ADF Swing Applications" in the JDeveloper documentation)
    I would like DataBindings.cpx to point to the correct configuration and bc4j.xcfg to only contain the configuration information that is required.
    I created some XSLT transformation stylesheets to help me with that, see this example application:
    http://verveja.footsteps.be/~verveja/files/oracle/AntXsltConnectionSwitchStuff-v0.02.zip
    question
    Does JDeveloper itself provide any features to automatically make changes to DataBindings.cpx (and bc4j.xcfg) before deployment?
    many thanks
    Jan Vervecken

    repost

  • Problem in Moving DataBindings.cpx and DataControls.dcx

    I tried to move the two files DataBindings.cpx and DataControls.dcx to another folder (ie. from default folder adfmsrc/taskform to adfmsrc/taskform/formA ), I changed the *"Package"* property in each file, and modified *<DataControlRegistry>* tags in adfm.xml to pointing to the new paths, and redployed the task form.
    But when I log in the worklist app, my task form showed me an error that it failed to find my DataControls.dcx from the original folder (ie adfmsrc/taskform ).
    Could anybody tell me what other changes are required? Thanks in advance.
    Ps: I am using version 11g, 11.1.1.2.0

    Problem sovled:
    Forgot to change the *<dataControlUsages>* tag in DataBindings.cpx :(
    Thanks for viewing :)

  • XML-Parser-Problem ? DataBindings.cpx

    Hello,
    Ok -I just will formulate my question somewhat different: It is possible that the XML-Parser has a Problem ? Please see the stuff below.
    I just got a warning:
    Project: D:\ORAJDev101320\jdev\mywork\LoginJSF\ViewController\ViewController.jpr
    D:\ORAJDev101320\jdev\mywork\LoginJSF\ViewController\src\login\DataBindings.cpx
    Warning(11,15): <Line 11, Column 15>: XML-24521: (Fehler) Element nicht abgeschlossen: 'Application'
    for the following xml file when compiling my sampe books (chapter9) code:
    <?xml version="1.0" encoding="UTF-8" ?>
    <Application xmlns="http://xmlns.oracle.com/adfm/application"
    version="10.1.3.40.66" id="DataBindings" SeparateXMLFiles="false"
    Package="login" ClientType="Generic">
    <pageMap>
    <page path="/home.jsp" usageId="homePageDef"/>
    </pageMap>
    <pageDefinitionUsages>
    <page id="homePageDef" path="login.pageDefs.homePageDef"/>
    </pageDefinitionUsages>
    </Application>
    After trying a little bit it turned out that the message disappears when
    the :
    Application xmlns="http://xmlns.oracle.com/adfm/application"
    is rewritten to
    Application xmlns="http://xmlns.oracle.com/adfm/Application"
    (Application with a upper first A)
    I have to point out that previously I did not by hand coding in this file.
    Is this a known issue.?
    And will/could these change do cause other/addition problems somewhere ?
    Andre
    Message was edited by:
    andreml
    null

    How about adding this tag <dataControlUsages/>? My JDev doesn't complain about your content.
    just my 2 cents
    --olaf                                                                                                                                                                                                                                               

  • Migration issues with DataBindings.cpx Jdev 10.1.2 to 10.1.3

    Hey Guys,
    I have had a look at the docco for migrating between JDeveloper 10.1.2 and 10.1.3 in relation to the databindings.cpx file with no luck. Anyway, with no changes other than the migration, the deployment will fail because it cant find the databindings file:
    oracle.jbo.NoDefException: JBO-25002: Definition DataBindings.cpx of type Application Definition not found
    Web xml with this error:
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>DataBindings</param-value>
    </context-param>
    So, i copied the bindings file to the view package which is standard for new applications created in 10.1.3 but then get this error message:
    oracle.jbo.InvalidDefNameException: JBO-25004: Definition name view/DataBindings.cpx for type Application Definition is invalid
    Web xml with this error:
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>view.DataBindings</param-value>
    </context-param>
    Any help would be appreciated because a simple migration solution is required in order for us to use the new version on existing apps.
    Cheers Dave

    Hi,
    OID, Contentdb, BPEL P.M. on contentdb AS
    Regards,
    Jigar

  • DataBindings.cpx ADF

    Hello!
    I have a problem with the file in the subject. JDeveloper 9.0.5.2.1618 seems to assume that for every project the file DataBindings.cpx is ALWAYS called DataBindings.cpx, unfortunately this drags some unwanted problems with it.
    Description of the problem:
    I am working on a pretty big project that consist of many "modules" I define a JDeveloper project for every "module".
    This because every module can be standalone or run in a main application which works with internal frames. It seems that when run in the internal frame if I start project1 it works, If I start project2 it does not work giving the "ViewObject not found or something like that" exception obviously each project uses different databindings. However if I rename DataBindings.cpx to Projectname.cpx for every project and explicitly tell the application to load projectname.cpx it works but if I have to add some databound components it Creates a NEW Databindings.cpx so I have to manually merge them.
    Workaround:
    Rename manually in the filesystem the file Databindings.cpx to whatever you like hoping that you do not need to change anything in the project later.
    In Jdeveloper 9.0.3 and 9.0.4 the DataBindings.cpx was called projectname.cpx and there was no problem.
    Am I doing something wrong or this is a bug?
    Regards,
    Mario UDina

    I have found out the problem!! Once you create a form that creates DataBindings.cpx, in the filesystem outside of JDeveloper rename the file using the name you gave the project. If the project is testProject then your cpx file will be called testProject.cpx only and only if the cpx file is called as the project name JDeveloper will not be creating DataBindings.cpx but it will add new entries in testProject.cpx file. Simple but powerful. No fancy ant stuff and one less thing to worry about. It would be nice if an ADF developer would confirm this.

  • 11gTP4: DataBindings.cpx pageDefinitionUsages page ids

    Hi JDev team
    I notice in JDev 11gTP4 that when creating data bound web pages, which automatically creates the associated DataBindings.cpx entries for the associated page def file, that the pageDefinitionUsages page ids now look like this:
      <pageDefinitionUsages>
        <page id="view_UserDetailsPageDef" path="view.pageDefs.UserDetailsPageDef"/>
        <page id="view_DummyClientsInputFormPageDef"
              path="view.pageDefs.DummyClientsInputFormPageDef"/>
        <page id="view_xTemplatePageDef"
              path="view.pageDefs.xTemplatePageDef"/>
      </pageDefinitionUsages>However in JDev 10.1.3 JDev it would have looked like this:
      <pageDefinitionUsages>
        <page id="UserDetailsPageDef" path="view.pageDefs.UserDetailsPageDef"/>
        <page id="DummyClientsInputFormPageDef"
              path="view.pageDefs.DummyClientsInputFormPageDef"/>
        <page id="xTemplatePageDef"
              path="view.pageDefs.xTemplatePageDef"/>
      </pageDefinitionUsages>In particular notice the changing id values, in 11g it now includes the prefix "view_".
    I'm wondering if this is deliberate as if we wish to access the bindingContainer in a backing bean via a call to bindingContext.findBindingContainer(String), based on our old assumptions of the BindingContainer name format we'll have trouble in getting this code to work. This becomes even more difficult because we don't necessarily know that the findBindingContainer method uses the ids from the DataBindings.cpx file.... as a first port of call I was looking at the Id in the actual PageDef file which doesn't include the prefix "view_" in 11gTP4. Confusing.
    As such to make is easier if you're going to introduce this change, can I suggest you make sure the PageDef Id matches the pageDefinitionUsages page id in the DataBindings.cpx file as default when JDev creates the underlying PageDef/DataBinding entries automatically for the user? This way they wont get mislead by a different PageDef id from the entry in the DataBindings file.
    In addition if you're going to use the prefix, can I also suggest you include a prefix for the complete package name structure, such as "view_pageDefs_"?
    Cheers,
    CM.

    Hi,
    I think we open up a can of worms if refactoring should change the IDs as well because it would mean that the whole application code needs to be parsed and - even worse - all applications that use bindings as part pf an ADF Library usage. I think the best option to handle this is to ensure that a predictable pattern is used when creating the page IDs.
    [Chris] This becomes even more difficult because we don't necessarily know that the findBindingContainer method uses the ids from the DataBindings.cpx file.... as a first port of call I was looking at the Id in the actual PageDef file which doesn't include the prefix "view_" in 11gTP4. Confusing.
    Not really, because findBindingContainer is a method exposed on the binding context and therefore must be within the databindings.cpx file. Of course this requires some basic understanding of ADF that you and I have but that maybe will cause the confusion among developers starting with the technology.
    I'll file a tracking bug pointing to this thread for the developers to make up their mind on whether it is possible to use the same IDs for pageDef files and databindings.cpx. There must be some reason for why this has been changed.
    Frank

  • "XML File not found for the Container DataBindings.cpx" error after deploy

    Hello,
    I have a problem with my JSP-Javaproject. Local works all fine but when i deploy my project to a Oracle Aplication Server i allway get this XML-File-Not-found exception:
    oracle.jbo.NoXMLFileException: JBO-26001: XML File not found for the Container DataBindings.cpx
    In my EAR-File the DataBindings.cpx is at:
    \WEB-INF\classes\
    My JSP-File:
    <jbo:ApplicationModule id="AippackageModule" definition="DataBindings.DataModule" releasemode="Stateful" />
    My web.xml:
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>DataBindings</param-value>
    </context-param>
    My DataBindings.cpx:
    <?xml version='1.0' encoding='windows-1252' ?>
    <Application xmlns="http://xmlns.oracle.com/adfm/application" id="DataBindings"
    Package="" ClientType="Generic">
    <pageMap>
    </pageMap>
    <pageDefinitionUsages>
    <page id="eonerrorPageDef"
    path="de.avacon.ahb.system.tools.pageDefs.eonerrorPageDef"/>
    </pageDefinitionUsages>
    <dataControlUsages>
    <BC4JDataControl Configuration="AppModuleLocal"
    Package="model.data"
    xmlns="http://xmlns.oracle.com/adfm/datacontrol"
    id="DataModule">
    <Parameters/>
    </BC4JDataControl>
    </dataControlUsages>
    </Application>
    What can i do?
    Thanks, steve

    Adding the dependency in the ViewController fixed this for me.
    I'm using two AppModules in the controller and the second one wasn't being picked up.
    I was able to fix this by:
    Go to the Project Properties, select Dependencies, edit the Dependent Projects and Archives, find the model that's failing and add a tick in the Build Output box.
    The model should now be picked up in the ViewController's DataBindings.cpx source file, though I did have to restart JDev for this to be picked up.
    HTH
    Phil

  • VA01 ATP incorrecct results when delivery date is programmatically changed

    Hi Guru's,
    When creating or modifying a sales order (VA01 & VA02), we need to programmatically assign the delivery date a) for certain customers or b) when the delivery priority is changed from downs to regular order and visa-versa. For examples: 1) user enters a delivery date 02/01/2012, the program (userexit_check_vbep) will automatically replace it with a calculated
    date (i.e.. 2/20/2012). 2) if user changes the delivery priority from regular order to a downs order, the program will automatically replace delivery date to current date.
    But are getting incorrect ATP results when requested delivery date (based on what user enters in VBAP-LPRIO "delivery priority") is programmatically changed and then user manually enters the date and run ATP (see steps 8 & 9 below).  
    VA01 execution steps:
    1) Used VA01 and entered a material of quantity 1, requested date 2/01/2012, delivery priority = regular. Date was overwritten automatically with program calculated date 2/20/2012 as expected.
    2) ATP automatically ran successfully for the initial entry.
    3) I then changed the delivery priority from regular order to downs order & requested delivery date was automatically changed to current date 02/01/2012 as expected.
    4) ran ATP manually and all is well.
    5) I then changed the delivery priority back to a regular order and date was automatically changed back to 02/20/2012 as expected.
    6) I ran ATP manually and again all is well.
    7) I then manually changed the delivery date 02/25/2012.
    Incorrect / bad results:
    8) ATP then passed back 2 sub-items lines with the quantity of 1 each. The quantity on the main line item is doubled to 2.
    9) I then tried to delete the main line item manually to start all over, but the transaction just hangs because it tries to go to ATP, but cannot resolve what to delete.
    Do you have any suggestions to help resolve this?   
    The following SAP user-exits were modified:
    a) MV45AFZB
      1) userexit_check_vbap
      - for certain customers (a custom "override days" field stored in VBAP is populated), delivery date is automatically calculated using this field (i.e.  current date + override days).   If user entered date < calculated date,   calculated date is used (xvbep-edatu).
      - If user changes delivery priority, xvbep-edatu will be set automatically to either the calculated date (regular order) or current date (downs order).
      2) userexit_check_vbep : if user enters a delivery date (vbep-edatu), it is checked against calculated delivery date & overwritten, if it is < calculated date.
    b) MV45AFZZ - userexit_move_field_to_vbap :
      - override days is determined & delivery date is automatically calculated. If user entered date < calculated date, calculated date is used (xvbep-edatu).
      - If user changes delivery priority, xvbep-edatu will be set automatically to either the calculated date (reg.order) or current date (downs order)
    Reason for updating xvbep: if only vbap-lprio or vbap-override (custom field) fields are changed, the VBEP user exit routines (userexit_move_field_to vbep or userexit_check_vbep)  do not run.  Change to xvbep does trigger userexit_check_vbep.
    Please advise.
    Joe

    This is not an SD question and should be moved to ABAP forum. It seems to me that the issue is not with incorrect ATP but with the subitems / main item updated incorrectly. This needs to be resolved by a developer who wrote the user exit. Most likely either a user exit is triggered when not expected or a wrong line updated, etc. Debugger should be helpful.
    Also instead of setting delivery priority, why can't the users just change the delivery date to current date? This seems just as easy to me...

  • How to programmatically change the cell color of an ADF table ?

    Hi all,
    I have an ADF table with some fields on it. Depending on the value of a field named, say, "F1", I would like to change its background color.
    So far I can change the field color with this EL expression inside the InlineStyle table column property:
    font-size:medium; background-color:#{viewScope.myBean.setColor};
    where setColor is a bean function, in where I access the field "F1" via binding, parse its value, and return the right value - so far, so good.
    The bad thing is, the InlineStyle affects that field in all the rows of the table, while I would like to change only the field in the rows, which have that specific value in it.
    So for example having the rows:
    F1
    abc#1 ----> currently selected row
    cde#2
    efg#3
    I want to change the background color to all the F1 fields which have a "1" after the '#' and let the other "F1" row cells background color stay unchanged.
    But as you can imagine, the InlineStyle affect the "F1" background color in all the rows (assuming that the first row of the table is selected).
    So the question: how to access a single cell of a row in an ADF table, and programmatically change its background color ?
    So far I can iterate through the ADF table with:
    BindingContext bindingctx = BindingContext.getCurrent();
    BindingContainer bindings = bindingctx.getCurrentBindingsEntry();
    DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
    DCIteratorBinding dciter = bindingsImpl.findIteratorBinding("aTableIterator");//access the iterator by its ID value in the PageDef file
    RowSetIterator rsi = dciter.getRowSetIterator();
    System.out.println("rsi getrowcount = " rsi.getRowCount());+
    Row row = null;
    +if (rsi.getRowCount() > 0) {+
    row = rsi.getCurrentRow();
    System.out.println("row attr = " Arrays.toString(row.getAttributeNames()));+
    System.out.println("class : " row.getAttribute("F1").getClass().toString());+
    +}+
    +while (rsi.hasNext()) {+
    row = rsi.next();
    System.out.println("row attr = " Arrays.toString(row.getAttributeNames()));+
    +}+
    Regards,
    Sergio.

    Hi,
    I mean a specific cell within a row.
    Here are two pictures that show an ADF table with two rows and some fields on it:
    https://skydrive.live.com/?cid=7D3084D8BF755808&id=7D3084D8BF755808!107&sc=documents#cid=7D3084D8BF755808&id=7D3084D8BF755808!107&sc=documents
    bild_A is what I have, bild_B is what I would like. Note that:
    in bild_A the first row contain a yellow background color for the field F4 and an orange background color for the field F5. This is correct, because F4 has an "1" at the end of its string value, and F5 has a "3" at the end. So far so good.
    But the second row (again, bild_A) has also the fields F4 with yellow background color, and the field F5 with orange background color, even if the value in both fields is 0.
    What is should be, is shown in bild_B.
    The problem is that the solution provided affects all the cells of the column, while I need to change the background color of a single cell, and leave the other unchanged (see bild_B).
    I hope that clarify a bit :)
    Sergio.

  • Can I Programmatically Change the Active Group on a Hypertrend in DSC?

    I would like to know how to programmatically change the active group of a hypertrend in Labview DSC.  I saw a link which said it can be done in Lookout.  But in the DSC module, the active group is read only.
    I know of a hard way to do it.  I could save the hypertrend settings as xmlSettings to a temporary file.  The active group is one of the settings.  I could then change the active group in this text file to point to the new group and then reload the settings.  But this is not a clean way of dong it.
    Anyone know if there is a easy way?
    Solved!
    Go to Solution.

    I found a way to do it but its not very clean.  I dont know why there is not a function to change the current group.
    Here is how I did it.

  • How to programmatically change the password of user accounts in PDF Generator

    I am using 4 user accounts for multi-thread converting Word documents to PDF in PDF Generator ES3, and I have to update the password of those user accounts. Does PDF Generator ES3 save the password somewhere on the Windows 2008 server? Can I programmatically change the password of those accounts other than updating them manually from LiveCycle Admin console?
    Thanks,
    Will

    Not in LiveCycle API.
    Changing user account password is related to Operating System.

  • Can you programmatically change the width of columns in a table control\indicator

    Is it possible to programmatically change the width of columns in a table control\indicator ie to fit to width of the data or in my case the header information.

    Create a property node (or reference) and use the 'Active Cell' property to select which column you want to change and then use the 'Cell size'--> 'Width' property to change the size.
    "There is a God shaped vacuum in the heart of every man which cannot be filled by any created thing, but only by God, the Creator, made known through Jesus." - Blaise Pascal
    Attachments:
    table.vi ‏33 KB

  • Programmatically change the query used to generate Oracle Reports

    I have two queries. Depending on some parameter value, I would like to use one of these queries to generate my report. Is it possible to programmatically change the SQL query used to generate the Oracle Report.
    Thanks

    There are two options:
    - The easy way
    In the report paper layout create two frames, one for each query , and at runtime
    display only one based on your parameters. (using format triggers on the frames)
    - the not so easy way (but more elegant)
    create the query at runtime using xml customizations using the examples from
    the following documentation:
    http://download-
    uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_xml.htm#i1006734
    16.3 Creating XML Data Models
    16.4.1.3 Applying an XML Report Definition in PL/SQL
    16.4.1.3.2 Applying an XML Definition Stored in Memory
    Regards and Good Luck
    Ionut S

Maybe you are looking for

  • Outlook 2007 Calendar Permissions

    Hello Ever since changing from exchange 2010 to exchange 2013 all of our users have issues with giving permissions and sharing their calendars. We have realized that when giving/doing the permissions on outlook 2010 it works. When doing this on 2007

  • Splitting of Purchase Order line items

    Hi gurus, Can somebody please tell me the step by step process for splitting PO line items under different percentages with account assignment. Thanks

  • Caller Name ID on DROID 4 disappears too quickly

    I just added the Caller Name ID for Mobile Devices feature to my phone; when I get an incoming call, I briefly see a Network Message that shows who is calling but this message only stays up for about a second before it vanishes. If I'm not already st

  • Problem bei Diashow mit Photoshop eElements 5.0

    Ich erstellt gerne Diashows mit Photoshop Elements 5.0. Das geht schnell und bietet ausreichend Gestaltungsmöglichkeiten. Toll finde ich, dass ich auch kurze Videos, die ich mit meinem Fotoapparat aufgenommen habe, in die Diashow integrieren kann und

  • Query string

    Hi, What is the easiest way to get query string parameters in Adobe Edge Animate CC? /Daniel