Please help in designing...

Hey Folks,
A new bee to Flex...Want to design and develop a flexible GUI in flex..Can any one help in designing the GUI?
Requirements
Database
I have four tables namely TableId, ColumnName, ColumnValue, PartyColumnValue
TableId
tableId int
tableName  varchar
eg :-
10
Test
ColumnName
columnId int
tableId int
columnName Varchar
eg:-
1001
10
Col1
ColumnValue
valueId int
columnId int
tableId int
valueName Varchar
eg:-
100101
1001
10
val1
PartyColumnValue
id int
valueId int
columnId int
tableId int
In the above manner I am storing the table names, column Names and column values
Flex Requirement(GUI)
On GUI there will be one combobox in which user has the option of selecting the table name
Once table is selected
1. Dynamic Table(DATAGRID in flex) should be displayed on GUI in which the columns will be the column name from the ColumnTable and each row should be the combobox in which the values will be multiple pertaining to the ColumnId and tableId.
2. Each row should be having the option to "save" individual row means the last column will be save button, it will get persisted in the PartyColumnValue table.
3. There should be option to save all the rows means "Save All" button to save all the rows it will get persisted in the PartyColumnValue table.
4. Once i saved the invidual row or all rows and then again if user selects the table from the combobox he should be able to see the persisited values.
5. There should be one "Add Column" button which will add the column by opening the popup and asking for the default values.
Can anyone help me in acheving this functionality?
Thanks In Advance!!!

Can anyone help without money?

Similar Messages

  • Please help locate Designer 6i Release 2  for Windows NT/2000/XP on OTN!

    Hi,
    Our Oracle Designer 6i Release 2 for Windows NT/2000/XP CD is damaged.
    Is there a ZIP file for Oracle Designer 6i Release 2 for Windows NT/2000/XP
    exist on OTN? Please provide the URL.
    Thanks for your help.

    Are you sure that you want 6i R2? R2 as I remember is pretty buggy. You really ought to upgrade to at least 6i R4.11. Given that you are already on 6i, this is a fairly painless upgrade.
    And the only reason that I wouldn't go ahead and upgrade to Designer 10g is if you are still supporting Oracle Forms in client/server mode.

  • Someone please help me Design the database of bill of materials

    I want to design the database of bill of materials which contain item and amount.
    So the amount of child will depend on amount of parent in term of ratio. For example
    A(1)               A(2)
    |         ---->     |
    B(2)               B(4)
    My problem is when i try to add the parent and child . Let A is the parent of B , If i try to add A to be the child of C
    I want B to come along with A as well. For example
    A                       C
    |     C  --->        |           For this I have to store the relation of all item in  my list to check that this item have a child or not if yes
    B                             A              The child must come along with its parent , What the Er-diagram
    should be for all of my requirement?
                                    |
                                    B

    >I want B to come along with A as well. For example
    You can do that, but that is not automatic. You need to do some programming.
    It is better to use hierarchyid representation of the tree over traditional FK referencing.
    Tree using hierarchyid example:
    http://www.sqlusa.com/bestpractices2008/orgchart/
    BOL: "Model Your Data Hierarchies With SQL Server 2008
    .....The manufacturing system behind automobiles; the organization of a country into states, counties, cities, and postal codes; the description of a home entertainment system—what do these things have in common? The simple answer is that each
    describes a hierarchy.
    SQL Server 2008 supports a new data type, HierarchyID, that helps solve some of the problems in modeling and querying hier­archical information. I will introduce you to this data type by discussing a pattern commonly used in manufacturing
    known as bill of materials (BOM), or bills. Starting with a brief discussion of BOMs, I will illustrate how this kind of data can be modeled. I will also present an implementation of this model in SQL Server 2005. Then I will show you how the HierarchyID data
    type can be used to implement the model in SQL Server 2008.
    Hierarchical Data
    Automobiles are amalgamations of many components, such as engines, drivetrains, electronics, and steering. In the United States, our geographic territories are divided into states and are then sub-divided into jurisdictions called counties.
    Counties are then further subdivided in different ways by different agencies. The United States Census Bureau, for example, composes them from Census Tract Areas. The U.S. Postal Service routes mail delivery by Zone Improvement Plan (ZIP) codes. Geographic
    information systems (GIS) may aggregate census tracts and ZIP codes together to provide users with a familiar spatial reference for an area.
    A recent trip to a local electronics store to evaluate a replacement home entertainment system pointed to a similar sort of hierarchical system—all the combinations of possible components and options left my head spinning! I wondered
    how such systems could be modeled and implemented in a database system.
    The relationship between an automobile and its engine represents a hierarchy: the automobile contains the engine. The relationship is the same for the drivetrain, the electronics, and the steering. The relationship is containment. A
    similar hierarchy can be observed in the relationship between the different groupings of geographic or census data.
    Hierarchies exist everywhere, yet implementing them in the context of a relational database frequently proves to be a challenge. A typical approach is to represent the hierarchy using a parent/child relationship with one or more tables.
    While this approach certainly works in many cases, it has a few shortcomings. Such solutions must carefully consider how the referential integrity will be maintained. And while querying the depth and breadth of such tables was considerably simplified in SQL
    Server 2005 with the introduction of recursive common table expressions, writing queries against these types of tables can still be problematic when joins against many tables are required.
    A Bill of Materials Problem
    A few years ago I was working on a system being developed by a manufacturing company to help their dealers specify the components needed to build center-pivot irrigation systems. The software produced a list of components needed to custom-build
    the desired pivot (the totality of a center-pivot irrigation system is simply referred to as a pivot within the industry). The required components were determined based on geography, soil type, and the intended crops planted in the areas to be covered as well
    as the hydrologic and structural considerations of the device itself.
    Underpinning the solution would be a SQL Server database. The purpose of the database was to store information about the components available to build the pivot. However, when we generated the specification for manufacturing, we needed
    to identify those components as BOMs.
    Some bills represented a collection of physical parts that would be assembled into a system component. For example, every pivot needed a pump to draw water from a well into the system. That pump might be electrically powered, meaning
    it needed a transformer and fuse box, too. Or the pump might be fuel powered, meaning it needed a tank, a fuel pump, and hoses to connect the pump to the tank. In either case, the required parts for the pump would be listed in a pump bill.
    The bill for a complete pivot would include a collection of other bills. For example, a standardized pivot might consist of a tree of bills for the pump, another tree of bills for the spans of pipe used to deliver water, and bills for any other equipment
    needed to build that pivot system."
    LINK: http://msdn.microsoft.com/en-us/magazine/cc794278.aspx
    Kalman Toth Database & OLAP Architect
    SELECT Query Video Tutorial 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Someone please help me Design the database of bill of materials with 1 item can have mutiple parent

    I got this sample from  Uri
    Dimant (MCC, MVP) ,
    The problem is i want 1 item to have multiple parent  but this example don t   let 1  item to have multiple parents. this is not suit for my objective. 
    CREATE TABLE Employees
      empid   int         NOT NULL,
      mgrid   int         NULL,
      empname varchar(25) NOT NULL,
      salary  money       NOT NULL,
      CONSTRAINT PK_Employees PRIMARY KEY(empid),
      CONSTRAINT FK_Employees_mgrid_empid
        FOREIGN KEY(mgrid)
        REFERENCES Employees(empid)
    CREATE INDEX idx_nci_mgrid ON Employees(mgrid)
    SET NOCOUNT ON
    INSERT INTO Employees VALUES(1 , NULL, 'Nancy'   , $10000.00)
    INSERT INTO Employees VALUES(2 , 1   , 'Andrew'  , $5000.00)
    INSERT INTO Employees VALUES(3 , 1   , 'Janet'   , $5000.00)
    INSERT INTO Employees VALUES(4 , 1   , 'Margaret', $5000.00) 
    INSERT INTO Employees VALUES(5 , 2   , 'Steven'  , $2500.00)
    INSERT INTO Employees VALUES(6 , 2   , 'Michael' , $2500.00)
    INSERT INTO Employees VALUES(7 , 3   , 'Robert'  , $2500.00)
    INSERT INTO Employees VALUES(8 , 3   , 'Laura'   , $2500.00)
    INSERT INTO Employees VALUES(9 , 3   , 'Ann'     , $2500.00)
    INSERT INTO Employees VALUES(10, 4   , 'Ina'     , $2500.00)
    INSERT INTO Employees VALUES(11, 7   , 'David'   , $2000.00)
    INSERT INTO Employees VALUES(12, 7   , 'Ron'     , $2000.00)
    INSERT INTO Employees VALUES(13, 7   , 'Dan'     , $2000.00)
    INSERT INTO Employees VALUES(14, 11  , 'James'   , $1500.00)
    WITH EmpCTE(empid, empname, mgrid, lvl)
    AS
      -- Anchor Member (AM)
      SELECT empid, empname, mgrid, 0
      FROM Employees
      WHERE empid = 1
      UNION ALL
      -- Recursive Member (RM)
      SELECT E.empid, E.empname, E.mgrid, M.lvl+1
      FROM Employees AS E
        JOIN EmpCTE AS M
          ON E.mgrid = M.empid
    SELECT * FROM EmpCTE
    My object is
    I want to design the database of bill of materials which contain item and amount.
    So the amount of child will depend on amount of parent in term of ratio. For example
    A(1)               A(2)
    |         ---->     |
    B(2)               B(4)
    My problem is when i try to add the parent and child . Let A is the parent of B , If i try to add A to be the child of C
    I want B to come along with A as well. For example
    A                       C
    |     C  --->        |           For this I have to store the relation of all item in  my list to check that this item have a child or not if yes
    B                            
    A              The child must come along with its parent , What the Er-diagram should be for all of my requirement?
        |
        B
    Base on the example that Uri
    Dimant gave me ,  i have to stroe 1 item wtih multi parents for example if b is a child of a And b  have c as child , When i insert D as a parent of B   , c will automatic come along with B , But this not seem gonna work.
    item   Parent 
     A      NULL
    B         A
    C         B
    B         D
    Am i wrong to go this way  , any idea

    thanks Uri
    Dimant
    I am
    little confuse about how can i write
    hierarchy sql  from this relation  , Thanks
    so far i got 
    WITH EmpCTE(cid, cname, pid, lvl)
    AS
      SELECT      cid , cname ,  children.pid , 0
      FROM            children INNER JOIN
      parents ON children.pid = parents.pid
      where  cid = 1
      UNION ALL
      SELECT      E.cid , E.cname ,  E.pid , M.lvl+1
      FROM       ( select  cid , cname , children.pid FROM  children INNER JOIN
      parents ON children.pid = parents.pid) AS E JOIN EmpCTE AS M
          ON E.pid = M.cid
    SELECT * FROM EmpCTE  

  • Design view is locked in Dreamweaver! please help!

    On Dreamweaver, after i save my website and close dreamweaver like at the end of the day, after i open it again it wont let me go into design view. And as far as i can see the coding is gone. How can i fix this? Am i doing something wrong when i save it? Please help!Design view

    You also do not have a site selected in your Files window. That is an extremely important step in DW.
    If you haven't defined a site, and/or aren't working from a defined site, you'll run into all kinds of problems with Dreamweaver. You'll notice in your screen shot, you have a Files window in the bottom right. The  dropdown in that window (currently showing Desktop) needs to have a site selected. If you haven't defined a site yet, follow the instructions here...
    GS-01: Defining a new site | Learn Dreamweaver CS5 & CS5.5 | Adobe TV

  • Help me design certificate services

    Hi  i  am planning ADCertificate Services with PKI and we are going to come up with 2 data centers. Each data center has 2 domain controllers. I would like to come up with Two-Tier CA Hierarchy. Is this the right approach if certificate services
    will be hosted on three machines, the offline Root CA wll be a physical machine in datacenter2 with one second tier CA in each data center as a virtual machine. please help me design certificates services if i am going wrong.

    first of all thnx for ur reply! actually you are some what right, but what i want is that a client comes and right like this for e.g; sqr(log(sin(n)))
    then this will first go to sqr server , then to log and at the end to the sin server which means that sin server will first return the value of the n to log and after the log is computed on the value which was return by the sin server, it will go to the log server and in the end the log server returns the log of that value to the client, as this phenomenon is called grid computing. this is the what i want...
    now, where i m stuck is that i know how to make a server and a client .. but i dont know how will i interact one server to the other and returning back the value ... pls help me with some coding of this or any tutorial if u have .. i will be vary glad if u help me in this i will really appreciate your corporation!
    thank you! waiting for ur reply
    Danish

  • Can someone please help me re-install my Creative Design 5.5 on my Mac?  My MacBook Pro recently crashed and had to have the hard drive replaced.  The back up from Time Machine is not reinstalling the program.  Since I have the download paid, and codes, I

    Can someone please help me re-install my Creative Design 5.5 on my Mac?  My MacBook Pro recently crashed and had to have the hard drive replaced.  The back up from Time Machine is not reinstalling the program.  Since I have the download paid, and codes, I need direction on how to reinstall -- HELP?

    Hi bodegakc,
    If you have the serial number then please use the below mentioned link to download the product you are looking for .
    CS5.5
    Also before installing Please go to Applications-->Utilities--> Adobe installers and if there is any uninstaller for CS5.5 , you can remove it and do a fresh install.
    You can also use creative cloud cleaner tool before installing.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Thanks
    Nikhil Gupta

  • When trying to open any of the 4 apps in  Adobe Creative Suite Design Standard I own outright, , I am unable to use the software and instead am being prompted to "Renew your Subscription to Creative Cloud".  Please help me

    I have purchased and used Adobe Products for 25+ years and I own CS6 Design Standard outright. 
    I  had previously  subscribed to Adobe Creative Cloud  but did not renew the annual subscription. 
    The CS6 Design Standard serial number is listed in my Adobe user account.    I have run the the Adobe Creative Cloud Cleaning tool, uninstalled  the Adobe Creative Cloud App and all other CC apps from my iMac.  I reinstalled  fresh copies of the CS6 software two different times, first from  my CS6 DVD disk and then from the  Adobe Download page.  During each installation of CS6, all seemed to run normally and I was prompted to enter the license number and it was accepted.  However, when trying to open the software after completing the installation, I am being prevented from doing so without renewing the Creative Cloud  subscription. 
    Who knows of a solution to this problem? 
    Contacting Adobe’s Chat support and Customer Support portal has not resulted in a solution, even though they have confirmed the license number as being accurate and linked to my account.  After weeks of waiting on their responses, yesterday I was told to go to the Forums to find a solution….Please Help Me….Thanks

    I am not familiar with the process involved with the link I am providing so please accept my apology if it is a repeat of something you have already tried...
    How do I prevent Creative Cloud from taking over my CS6 perpetual license?
    https://forums.adobe.com/thread/1584746

  • Please Help Me -- CS4 Design Premium and CS4 Production Premium on Same Machine

    We are a non-profit organization that gets donated software at a great price but you're limited to what's available. We bought the CS4 Design Premium Suite last year (CDs). I called the Adobe sales department to find out if I could run CS4 Design Premium on the same machine. They told me that I could. So I bought CS4 Design Premium as a download. It took a tremendous amount of time just to download the package, and once installed Premiere Pro would not run properly. I called tech support and spent 9+ hours on the phone and no resolution. They had me doing everything -- uninstalled both packages six times. They kept telling me I didn't have enough RAM (and I knew that was wrong because I have been editing using AVID before deciding to go with Adobe -- and I had the CS3 Adobe Premiere Pro, Soundbooth and Encore running on my E drive with no problem before I went ahead and bought CS4 Production Premium).
    I took my computer back to the company that built it and they suggested that I replace my graphics card and sure enough, Premiere Pro worked fine. Everything seemed to work fine in both packages except Adobe Acrobat. When I opened a pdf file, Acrobat asked for a serial number, but wouldn't accept my Design Premium serial number. I called tech support thinking they would give me a different serial number for Acrobat or something simple. Needless to say after 3 hours, and uninstalling the software again, they told me I couldn't run two CS4 suites on the same computer. Then a supervisor told me I could run both suites, but I would need to run a cleanup program, uninstall both of my suites and start again!
    All software in CS4 Design Premium installs except Acrobat. It is grayed out on the install screen as if it's already installed, and when I try to open a pdf file, the installer pops up, installs Acrobat, and asks for a serial number. When I enter the serial number, it gives me a red "x".
    SOMEBODY PLEASE HELP ME!
    I don't know where to turn now ... is there anybody in the United States that I can get help from?
    Can Adobe deactivate my CS4 Design Premium and Production Premium and send me the Master Collection CS4?
    Please help me if you can!

    This is a user to user forum that is not monitored officially by either Adobe Technical Support or Adobe Customer Support. The issue you raise with regards to trading two copies of a suite for one of another is nothing that anyone here can assist you with.
    Please contact Adobe Customer Support directly by phone. They are the only ones who can assist you with this.
              - Dov

  • Adobe in design cs2  crashes before it  can open - Please HELP!!

    Dear Wise ones:
    I have been using my ID CS2 for years and all of  a sudden I went to open it one day and it crashed before it opened.  I tried this several times, sent  crash reports to Adobe but when there  was no response from them I decided to try to reinstall the suite.   I did this according to the instructions (deleted the files/folders as per the instructions, uninstallled acrobat etc), then tried to open the newly re-installed InDesign  but it CRASHED again.  I called Adobe today and after being on hold for 35 minutes was told they could not help me with CS2 and I should try the forum so here I am.
    Attached is today's crash report.  It starts  with
    "<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE AdobeCrashReport SYSTEM
    "AdobeCrashReporter.dtd">
    <crashreport version="1"
    applicationName="InDesign" applicationVersion="4050"
    build="4.0.5.688">
    <time year="2010" month="1" day="25" hour="19"
    minute="57" second="2" />
    <user host="laptop.local" />
    <system
    platform="macintosh" osversion="10.4.9" ram="512" machine="Power Macintosh"
    model="PowerBook6,4" cpuCount="1" cpuFreq="1333333328" busFreq="166402287"
    />
    <crash exception="Read Only Memory Exception"
    instruction="81830000">
      <backtrace crashedThread="0">
       <thread
    index="0">
        <stackStatement index="0" address="0x0874d1b8"
    symbolname="_GetPlugIn"/>
        <stackStatement index="1" address="0x0874d440"
    symbolname="_GetPlugIn"/>"
    etc. etc. (as mentioned, full report is attached)
    So far, the othe programs in CS2 open.
    Please please help me.  I have a show that opens in the beginning of March and I depend on In Design to make my artwork.
    Believe me , if I could afford to go out and upgrade my MAC and version of CS, I would but unfortunately I cannot do that at this time.
    Is there anything I can do to solve this problem?
    I truly appreciate your time and assistance.
    Thank you,
    Jane

    Well, the zip file works for me. The stack trace is not exactly enlightening:
       <thread index="0">
        <stackStatement index="0" address="0x0874d1b8" symbolname="_GetPlugIn"/>
        <stackStatement index="1" address="0x0874d440" symbolname="_GetPlugIn"/>
        <stackStatement index="2" address="0x2c040ff4" symbolname="__ZN7Command11DoImmediateEs"/>
        <stackStatement index="3" address="0x06094bdc" symbolname="___code_start__"/>
        <stackStatement index="4" address="0x060948ac" symbolname="___code_start__"/>
        <stackStatement index="5" address="0x06619e84" symbolname="dyld_stub_binding_helper"/>
        <stackStatement index="6" address="0x0661a378" symbolname="dyld_stub_binding_helper"/>
        <stackStatement index="7" address="0x06616b94" symbolname="dyld_stub_binding_helper"/>
        <stackStatement index="8" address="0x06605ffc" symbolname="dyld_stub_binding_helper"/>
        <stackStatement index="9" address="0x0662551c" symbolname="_GetPlugIn"/>
        <stackStatement index="10" address="0x00002c58" symbolname="_main"/>
        <stackStatement index="11" address="0x000024fc" symbolname="__start"/>
        <stackStatement index="12" address="0x00002370" symbolname="___code_start__"/>
        <stackStatement index="13" address="0xbffffd54" symbolname="unknown"/>
       </thread>
    To me this implies something wrong with a plugin or a system library. Did you delete InDesign and your ~/Library/Adobe/InDesign folders before re-installing? Otherwise there might be something wrong with your OS...

  • I am missing "Warped Effects within my Space Designer.  Please help!!!

    I downloaded Logic Pro 9 off app store and it appears that I am missing "Warped Effects" within my space designer.  My friend is running exact same version of Logic Pro 9 and has this setting.  I do not understand why this setting is not present on my Logic.  I have downloaded all additional content besides the Jam Packs.  Please help me!!!  I really need the Warped Effects.  I do not understand how my download ended up without them.  Thanks.

    Have you double checked to make sure ALL the additional content was correctly downlaoded and installed by going back to Download Additional Ciontent and checking each of the items by clicking on each of the little Disclosure Triangles...and making sure they all say Installed?
    Alternatively you can simply click on the "Select All Uninstalled" button in the bottom left hand corner of the  "Downlaod Addtional Content' window and then click the Install button in the bottom right hand corner.. if it will allow you to.

  • PLEASE HELP! Installation errors with creative suite 5.5 design premium?

    I recently tried to install creative suite 5.5 design premium on to my home computer with windows vista home premium and it was all going fine then right at the end of the installation this message popped up please help??
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 14 error(s), 4 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
                    Family: Photoshop
                    ProductName: Adobe Photoshop CS5.1 Core_x64
                    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
                    Family: InDesign
                    ProductName: Adobe InDesign CS5.5 Icon Handler x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Player for Embedding x64 3.1
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: Shared Technology
                    ProductName: Photoshop Camera Raw (64 bit)
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeCMaps x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Linguistics CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobePDFL x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeTypeSupport x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Dreamweaver CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Photoshop CS5.1 Core depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Illustrator CS5.1 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe InDesign CS5.5 Application Base Files depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Flash CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

    i tried all the thinks listed and uninstalled then reinstalled creative suite 5.5 design premium and yet again this showed up at the end please help it mean nothing to me help!
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 17 error(s), 8 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
    Family: Photoshop
    ProductName: Adobe Photoshop CS5.1 Core_x64
    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
    Family: InDesign
    ProductName: Adobe InDesign CS5.5 Icon Handler x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Player for Embedding x64 3.1
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: Shared Technology
    ProductName: Photoshop Camera Raw (64 bit)
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeCMaps x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Linguistics CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobePDFL x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeTypeSupport x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.9E3C8AP-1022rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Design Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\CS5.5ServiceManager\lib\CSXS-Installer-Hook.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 130)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 130)
    ----------- Payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\SING\Mark II\SING.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 2)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 2)
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {5BDE0A1B-35BF-4224-A54F-73786EECDFC1} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_GBLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_GBLanguagePack\OEM(Seq 74)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe SING CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed

  • Problem while designing query please help

    Hi all,
    I have to query to find No of open cases, No of closed cases,
    Average of open cases, Average age of closed cases,
    Maximum of closed cases for a particulat Current assigne(char).
    my desired output is as follows.
    CurAssigne   Noofopencases   Noofclosed cases  Avgage(opencases) Max(open)
    CurAssigne1       10                      20                     8                              9
    CurAssigne1       18                      22                     9                              10
    My cube is consists of.
    4 Dimensions & 4 key figures
    4Dimensions are listed below.
    Business Partner{currentassigne, previousassigne,acmanager}
    createdon{createdonmonth,createdonday,createdtime}
    closedon{closedmonth,closedday,closedtime}
    Status{Latest case status-(2 status are available for each case - open,close)}
    above the objects between {} are chars.
    4 keys are listed below.
    no of cases.
    age
    first response time
    research time.
    Please help me to design this query friends..
    It's very urgent friends please help me.

    Hi,
    Please share your system configuration on which you are trying to install Ps CS6.
    Regards,
    Ashutosh
    Ps Installer QE

  • Please help design: how many AM, VO do I need?

    We have 2 Tabs, one display a list of employees, another display list of employees base on named search critiria (filterred result).
    both are based on same application module and same view object. for the 2nd Tab, just apply the critiria when user click search button.
    Problem: after do the search and display result on 2nd Tab, when I back to the 1st Tab, it show the same result as the 2nd Tab. the expected result is 1st Tab independant from 2nd Tab (without filterred result).
    So, should I use 2 seperate application modules to do this? I thought it is suggested that using 1 root module for a project.
    or, should I use 2 seperate view objects for this? if so, once I update through 1 VO, another VO may not notified underline data has been changed.
    Please help with this design. Thanks

    As I mentioned, 2 VO could cause inconsitent recould after updates.
    So, I guess I will have to execute query whenever enter the page.
    Queations is, what is potential problem of using 2 separate AMs? also, I do not quite understand what it is suggested 1 project 1 root AM.
    Thanks

  • Please help how to design query to implement this requirement.

    Dear Expert,
    Here is what I have and what the requirement is:
    I have a InfoCube:
    Dimensions:
    1. Material
    2. Currency
    Key Figures:
    1. Qty
    2. Amount
    We want to get the Qty and Amount by Material, but use Currency to be the filter.
    It means for example, if the Currency have CNY for one material, we need to show all the Qty/Amount, not only Qty/Amount in CNY.
    So please help give some idea about how to design the query to implement this requirement.
    Thank you,
    Andy

    Hi Andy:
    To accomplish your requirement you need to do 2 things:
    1. Create a Variable for the Currency (to be used as the Target Currency not as a filter for the Characteristic itself).
    2. Use the Standard Currency Conversion for the Amount Key Figure (Conversion Tab).
    This way, while executing the report you can select any currency you want and all the amounts will be converted to that currency.
    Take a look at this paper:
    "How to... Use Variables for Currency Conversion"
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/287bab90-0201-0010-f48e-cc55b0cd13d0?quicklink=index&overridelayout=true
    A more detailed explanation can be found on this article provided by Ramakrishna Gattikoppula:
    "Currency Conversion in BI 7.0"
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0d5bf96-b19b-2c10-e3b6-e2f12a3de99a?quicklink=index&overridelayout=true
    In summary, to work with the Standard Currency Conversion you need to define 4 things:
    - Exchange Rate Type.
    - Source Currency.
    - Target Currency.
    - Time Reference.
    Regards,
    Francisco Milán.
    Edited by: Francisco Milan on May 31, 2010 11:19 AM

Maybe you are looking for

  • How to Use the Same Library?

    I have two users on my Mac, myself and my girlfriend. I would like to just use one library iphoto instead of switching to her desktop and back to mine. How do i let my photo library accessable to both of us no matter what user name we are under.

  • Cannot install Exchange 2013 on Server 2012 R2

    I receive the following error when attempting to install Exchange Server 2013 on the same machine running Windows Server 2012 R2 Essentials: "An unsupported operating system was detected. Exchange Server 2013 Client Access and Mailbox Server roles su

  • I have Adobe Photoshop albumstarter edition3.2 and have lost my unlock code

    I was doing some things and unfortunaly had some retsrted my photo shop starter album with many pictures.. now I need my unlock to open it. I see that now they will not resend one. What program should I start to recapture these phots... and will Inee

  • IMovie help for a newbie

    I am new to the Mac world and could use some help. I am attempting to upload a video I shoot using the built in camera on iMovie to Vimeo. I cannot get the audio to sync with the video on Vimeo. I know there are specific settings I should have...but.

  • Why can't I sign in to FaceTime or iMessages?

    I can't seem to sign in to FaceTime or Messages in my iPad. It always says that the user name or password is wrong but I can sign in to App Store with no problem. My iPad was recently exchanged for another identical because there was an issue with 4G