Issue modeling data from Coldfusion cfc

Problem:  Configure return type in  Flash Builder  (using with Coldfusion) Mysql 5 driver (testing using localhost with CF also acting as the web server)
I have tried going thru the steps presented in the video presentations for hooking Flash Builder to Coldfusion query data.  I provide a name for a Custom data type, provide variables (that are optionally required by the CFC), and then proceed.  The operation comes back with the following message.
The operation returned a response of the type "Object"
You may either update server code to fix the return data or CLICK OK to set "Objecdt" as the returntype of this operation
In all of the videos I have watched, Flash Builder auto-magically introspected the table that was being called and knew the data types of  each piece of the data returned by the  query. In my case, I get the above message and cannot proceed.
CFM Testing
I have tested the query by calling the CFC method via a coldfusion page and dumping the result.  Everything is works with that.
Action:
I would like to get past the problem and learn what if anything I am doing wrong with this.  Your input is appreciated.  I have been learning CF and am getting pretty comfortable with that product. I would like to move forward with Flash Builder. I have some basic knowledge of Flex 3.
Thanks for your help
Background:
CFC signature
    <cffunction name="getJewels" access="remote" returntype="any">
        <cfargument name="jType" type="string" required="no" />
        <cfargument name="jActive" type="boolean" required="no" />
        <cfargument name="jOrder" type="boolean" required="no" />
Server Settings > Settings Summary
Report generated on Jul 08, 2009 11:07 AM
This report shows the status of all ColdFusion configuration settings. To display the area of the ColdFusion Administrator where you can edit the group settings, click any of the groups in the report.
Version Information
Server Details
Server Product
ColdFusion
Version
8,0,0,176276
Edition
Developer
Serial Number
Operating System
Windows XP
OS Version
5.1
Adobe Driver Version
3.6 (Build 0017)
JVM Details
Java Version
1.6.0_01
Java Vendor
Sun Microsystems Inc.
Java Vendor URL
http://java.sun.com/
Java Home
C:\ColdFusion8\runtime\jre
Java File Encoding
Cp1252
Java Default Locale
en_US
File Separator
Path Separator
Line Separator
Chr(13)
User Name
SYSTEM
User Home
C:\
User Dir
C:\ColdFusion8\runtime\bin
Java VM Specification Version
1.0
Java VM Specification Vendor
Sun Microsystems Inc.
Java VM Specification Name
Java Virtual Machine Specification
Java VM Version
1.6.0_01-b06
Java VM Vendor
Sun Microsystems Inc.
Java VM Name
Java HotSpot(TM) Server VM
Java Specification Version
1.6
Java Specification Vendor
Sun Microsystems Inc.
Java Specification Name
Java Platform API Specification
Java Class Version
50.0
This is the dataset I am trying to get at.
dstones
CF data source name
dstones
Description
Dancing stones databases
Driver
MySQL5
JDBC URL
jdbc:mysql://localhost:3306/hmsollie?
Username
root
Login timeout
30  seconds
Long text buffer size
64000
Timeout
1200  seconds
Maintain connections
Yes
Interval
420  seconds
Restricted SQL operations
Disable connections
No
Data & Services > Flex Integration
Enable Flash Remoting support
Lets a Flash client connect to this ColdFusion server and invoke ColdFusion Components (CFCs).                NOTE: Disabling this feature also disables ColdFusion server monitoring and multiserver monitoring.
Enable Remote Adobe LiveCycle Data Management access
Lets LiveCycle Data Services ES connect to this ColdFusion server through RMI                and use CFCs to read and update data that supports a                Flex application. If you are not using this feature, disable it.                This does not affect LiveCycle Data Services ES integrated in to the ColdFusion installation.
Server Identity:
If you are running more than one instance of ColdFusion on this machine, you must           configure each instance with a unique ID.
Enable RMI over SSL for Data Management
Lets you use Secure Socket Layer (SSL) encryption for the RMI communication between Flex and ColdFusion.                This is not required unless you are transmitting authentication information or confidential                data between Flex and ColdFusion over an unsecured network. You must provide a keystore file and keystore password.                For instructions on how to create a keystore file, see the online Help.
Full path to keystore:
Keystore password:
Select IP addresses where LiveCycle Data Services are running
To secure the LiveCycle Data Services ES integration point, the hosts that are allowed to perform Data Management operations are restricted. If you are running LiveCycle Data Services ES on a different computer, specify its IP address here. By default, only the local computer can perform Data Management operations in ColdFusion.
IP Address
View or Remove selected IP addresses where LiveCycle Data Services ES are running

Sunil,
     I have found the problem. When initialy given the arguments list to fill in "Configure Return Type", I filled in a string argument as "E".  This gives a return of object.  To accurately use the Configure Return Type, I needed to just fill in a string as E.
See the Screen Prints on the error
I have tested the following functionality and it appears to work ok
1.  I have tested with no parms to the CFC query method
2. I have tested  using Dynamic SQL based on variables set before the query in a  CFC method
3. I have tested passing one string argument in from Flash Builder  to a CFC method
4. I have tested passing a string and boolean argument From Flash Builder to a CFC method
For 3 and 4, I had make some slight changes o set the arguments that were being sent to CFC in Flash Builder before the call
It all worked.
**** New Issue ***
I have another runtime issue involving states that I uncovered in my testing where buttons are the screen were being covered up when I used some of the DataGrid Controls.  If I can repeat it, I will post it and then let you guys let me know how to work around this.
I am a Flex/AS Novice, so I may be mis-understanding something on this new issue.
Thanks.

Similar Messages

  • Issue in Data from DSO to DSO Target with different Key

    Hello All,
    I am having Issue in Data from DSO to DSO Target with different Key
    Source DSO has Employee + Wage + Post numner as key and Target has Employee + Wage Type as key.
    DSO semantic grouping works like Group By clause in sql, is my understanding right ?
    Also if someone can explain this with a small example, it would be great.
    Many Thanks
    Krishna

    Dear, as explained earlier your issue has nothing to do with semantic grouping .
    Semantic grouping is only usefull when you have written a routine in the transformation for calculations and in error handling .
    Please go through this blog which explains very clearly the use of semantic grouping .
    http://scn.sap.com/community/data-warehousing/netweaver-bw/blog/2013/06/16/semantic-groups-in-dtp
    Now coming to your above question
    DSO 1
    Employee WageTyp Amount
    100          aa          200
    200          aa          200
    100          bb          400
    100          cc          300
    If we have semantic group as Employee .   If we have Employee as key of the target DSO and update type as summation .
    then target DSO will have
    Emp                Amount
    100                 700
    200                 200
    In this case Wage type will be the last record arriving from the data package . If the record 100  cc  300 is arrivng last then wage type will be cc .
    2) Case 2
    DSO 1
    Employee WageTyp Amount
    100          aa          200
    200          aa          200
    100          bb          400
    100          aa          300
    if we do Semantic grouping with Emp and Wage Type   If we have Employee and wage type as key of the target DSO and update type as summation .
    then target DSO will have
    Emp     Wage      Amount
    100          aa          500
    200          aa          200
    100          bb          400
    Hope this helps .

  • Issues Migrating Data from SQL Server to Oracle

    Good morning, I'm currently trying to migrate data from a SQL Server 7 Database to Oracle 11GR1.
    I've followed the steps outlined in the guide that's on OTN and for the most part it worked well, the Data Model Capture, transformation and generation worked fine but when i try to do an online data migration the parallel DataMove threads stop working, i have no errors at all on the migration log they just don't pickup new tables to migrate data.
    After looking at the last tables they tried to migrate i noticed that this happens when the table has a text, timestamp or image column on Sql Server which translate to CLOB, RAW[50] and BLOB columns on Oracle.
    I'm i missing something here or just flat out doing something wrong with these datatypes?
    Oh btw i'm using SQL Developer 2.1 December Edition plus the jtds 1.2.5 drivers for SQL Server.

    As you don't have an error message it is difficult to diagnose. You could perform the offline data load for those failiing tables and continue to use the online method for all others.
    Another option would be to log a service request and to provide some demo data to analyse the root cause.

  • External Hard Drive issues- Transfering data from NTFS to Mac

    Hi. I need help deciding the best way to get my files from my NTFS external hard drive to be read/write able on my Mac Laptop (late 2008 macbook, 13inch). I know I need to reformat both of the NTFS external drives I own to either FAT32 or Mac OS (journaled), however I am unsure what the best way to do this.
    The apple Genius told me to do the following:
    Using my Windows running laptop, copy data from NTFS drive to a safe place on PC.
    Reformat drive to FAT32
    Copy files from windows running laptop back to hard drive.
    This sounds great, but I have been warned that FAT32 has many limitations. I have 66 GB of music and photos on the drive.
    Clarifaction of what the limitations with FAT32 are, and any advice is greatly appreciated. I mean, how do people switch their data from PC to Mac? There has to be an easier answer.
    THANKS!

    Hi Kassluv17;
    Before we can tell you the best solution, you must tell us where you wish to end up. Do you plan to migrate over to the Mac and have nothing to do with the PC in the future or are both a Mac and a PC in your future.
    Allan

  • Send form data from Coldfusion to ASP

    I need to send form data from CF to ASP.
    I submit a CF page and validate it on my end with another CF
    page, which then needs to post the results to an asp page on
    another site. The post has to be sent via SSL and I don't need to
    and cannot receive any status message back from the remote ASP
    site. Any suggestions would be greatly appreciated. I was thinking
    some type of cfhttp, but I am not very familiar with its usage.
    Thanks!

    It doesn't matter what type of page you are sending to as
    long as it can handle the data that is sent. Either a form or
    cfhttp will work.

  • Issue loading data from PSA to Cube

    Hi Gurus:
    I have a strange issue.  My DELTA load to ODS from R/3 come thru fine.  However, the load fails while moving
    from ODS to the cube.  The error is in 'Fiscal Year/Period'.  It is a straight 1:1 map in update rules.  If I bring the
    data just to PSA there is no error.  But when the data moves from PSA to cube, one record in each of the 2
    packages the valiue of Fiscal Year/Period changes from "012/2009" to "015/2009".
    Any idea why this might be happeing and suggestions on How can I move this data to cube?
    Thanks in advance and a very happy New Year!
    Best.....PBSW

    Are you using or copying Busines Content in your start routines?
    In the SD data extractors, the Fiscal Year/Period was provided WITHOUT a Fiscal Variant.
    In the Start Routine, the Fiscal Variant was hard coded to "K4" (I think).
    If you are using the code and a Fiscal Calendar other than the Hard coded one, you might get this type of error.
    If so, consider setting the Fiscal Variant as a constant in the update rules.
    Good Luck,
    John Hawk

  • Issue Putting Data from ArrayCollection into List

    I'm having trouble getting data that has been pulled from a textArea and put into an ArrayCollection to be displayed in a List.  The data is being saved and then read as a file from local storage.  When I run the application, nothing appears in the created list even though I get no compile-time errors.
    Here is my List code:
    <fx:Script>
    <![CDATA[
    import dh.DataHandling;
    import mx.collections.ArrayCollection;
    import mx.collections.ArrayList;
    import mx.events.FlexEvent;
    import spark.effects.SlideViewTransition;
    [Bindable]
    private var dataR:DataHandling = new DataHandling();
    protected function button1_clickHandler(event:MouseEvent):void  // pushed home button
    var svt:SlideViewTransition = new SlideViewTransition(300, SlideViewTransition.SLIDE_RIGHT);
    navigator.pushView(views.HomePage, event.relatedObject, svt);
    ]]>
    </fx:Script>
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:actionContent>
    <s:Button label="Delete"/>
    <s:Button label="Home" click="button1_clickHandler(event)" skinClass="skins.homeButtonSkin"/>
    </s:actionContent>
    <s:Image x="0" y="-80" height="603" source="mainapp1.jpg"/>
    <s:List  id="myCardsList" x="10" y="10" width="1004" height="500" top="0" bottom="0" left="0" right="0"
      dataProvider="{dataR.cards as ArrayCollection}">
    <s:itemRenderer>
    <fx:Component>
    <s:MobileIconItemRenderer label="{data.textTitle}"/>
    </fx:Component>
    </s:itemRenderer>
    </s:List>
    Here's the "saving/reading the file" class used in creating the ArrayCollection:  ( DataHandling.as )
    package dh
    public class DataHandling
    import flash.events.IOErrorEvent;
    import flash.filesystem.File;
    import flash.filesystem.FileMode;
    import flash.filesystem.FileStream;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var cards:ArrayCollection = new ArrayCollection();
    public var file:File;
    public var fileStream:FileStream;
    public var fileName:String = "Initial String";
    public var directory:String = "SimpleSaveFromAIR";
    public var textTitle:String;
    public function DataHandling()
    public function add():void
    // new object
    var card:Object = new Object();
    card.tcard = textTitle;
    //card.mtext1 = mtext1.text;
    ///card.mtext2 = mtext2.text;
    cards.addItem(card);
    public function save():void
    // create file object (resolve user's directory, add own directory)
    file = File.documentsDirectory.resolvePath(directory + "\\" + fileName);
    // FileStream for writing the file
    fileStream = new FileStream();
    // open the file in write mode
    fileStream.open(file, FileMode.WRITE);
    // Write the ArrayCollection object of cards to the file
    fileStream.writeObject(cards);
    // close stream
    fileStream.close();
    public function read():void
    // get correct path
    file = File.documentsDirectory.resolvePath(directory + "\\" + fileName);
    // read if exists
    if(file.exists)
    // FileStream for reading the file
    fileStream = new FileStream();
    // open the file in read mode
    fileStream.open(file, FileMode.READ);
    // Read the ArrayCollection object of cards from the file
    cards = fileStream.readObject() as ArrayCollection;
    //close Stream
    fileStream.close();
    else
    // some sample data + save if file does not exist
    cards = new ArrayCollection();
    var card:Object = new Object();
    card.tcard = "Sample Title";
    card.mtext1 = "Sample Text";
    cards.addItem(card);
    save();

    Off topic: I noticed you are binding the label value of the renderer to the data.  It's recommended that you use the labelField property on the List instead for better performance on mobile, for example:
    <s:List  id="myCardsList" labelField="textTitle" ...>
      <s:itemRenderer>
        <fx:Component>
          <s:MobileIconItemRenderer />
        </fx:Component>
      </s:itemRenderer>
    </s:List>

  • Plz help upgrade issue moving data from char type structure to non char typ

    Hi Experts
    plz help its very urgent
    Data :workout(5000) .
    FIELD-SYMBOLS : <FS_WORKOUT> TYPE ANY.  
    workout = '         u' .
    ASSIGN WORKOUT TO <FS_WORKOUT> CASTING TYPE C .
                      BAPISDITM = <FS_WORKOUT>.
    i am getting dump after BAPISDITM = <FS_WORKOUT>.
    i think i am getting the dump bcoz i am moving character type structure to non character type structure but i think with field symbols we can remove this issue thats y i used it but its not working plz help me
    its very urgent
    *dump is :*
    Short text
        Data objects in Unicode programs cannot be converted.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "ZSDR0009" had to be terminated because it has
        come across a statement that unfortunately cannot be executed.
    How to correct the error
        Use only convertible operands "dst" and "src" for the statement
           "MOVE src TO dst"
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "UC_OBJECTS_NOT_CONVERTIBLE" " "
        "ZSDR0009" or "ZSDR0009_I02"
        "USER_COMMAND"
    thanx in advance

    i got d solution in this thread
    Hi all,
    data: gv_line(6000) type c.
    Bvbapkom = gv_line.
    But i am getting the Error like : gv_line and Bvbapkom are not mutually convertable.
    Note: Bvbapkom is a Structure
    How do i solve this ?
    Mahesh
    KR  
    Posts: 210
    Registered: 11/24/06
    Forum Points: 0 
      Re: gv_line and Bvbapkom are not mutually convertable.  
    Posted: Nov 30, 2007 8:40 AM    in response to: KR         Reply 
    Hi ,
    i got the solution
    ANSWER:
    Field-symbols: <X_Bvbapkom> type x,
    <X_gv_line> type x.
    Assign: Bvbapkom to <X_Bvbapkom> casting,
    gv_line to <X_gv_line> casting.
    <X_Bvbapkom> = <X_gv_line>.
    Nasaka Ramakris...  
    Posts: 4
    Registered: 1/19/08
    Forum Points: 20 
      Re: gv_line and Bvbapkom are not mutually convertable.   
    Posted: Jan 19, 2008 7:42 AM    in response to: KR         Reply 
    Hi Check this answer.
    ANSWER:
    Field-symbols: <X_Bvbapkom> type x,
    <X_gv_line> type x.
    Assign: Bvbapkom to <X_Bvbapkom> casting,
    gv_line to <X_gv_line> casting.
    <X_Bvbapkom> = <X_gv_line>.

  • Web service issues in migrating from ColdFusion 9 to 10

    I'm troubleshooting a problem a client is having with their migration from CF9 to CF10. A webservice call that previously worked, no longer is working. When I call it from my CF10 server, I get this error:
    C:...\cfusion\stubs\WS-853189522_2...\service.java:10: class, interface, or enum expected package ...;
    The ellipses are to replace proprietary files paths and names.
    When I add the cfinvoke attributes wsversion and refreshwsdl, I get a "Unable to read WSDL from URL: .../service.asmx?WSDL" error instead of the above error. I also changed the default ws version from 2 to 1 in the CF Administrator, with no change. Are there any other known issues with CF10 that would interfere with a webservice call that worked in an earlier version?

    I found the answer, and it turned out to be quite simple. After making the change to the default webservice version in CF Admin, I needed to restart the server. It now works, although I am curious as to why adding the wsversion attribute to the cfinvoke tag calling the webservice didn't work. My concern now is that if they add an Axis 2 webservice call in the future that they may run into this problem again.

  • Back dated goods issue early date from the Goods Reciept

    Hi Experts,
    Can somebody explain the reason why, system allows to record backdated goods issue if goods reciept exist on later date.
    Furether details:
    First, If i wants to do Goods Issue on 1st of the month which point stocks are zero - System will not allow
    Second, goods reciept recorded on 10th of the same month
    Third, after the Goods reciept system allows me to do GI for step 1 by inserting posting date 1st of the month
    Thanks
    KW

    The reason for the system behaviour is that at the time of goods issue, the system onlyvalidates whether sufficient stock is available in the posting period and not on the specific posting date. So as described, if you specify a previous date, the stock for the date may be negative, but actually you stock value is always correct.
    If you are posting the goods issue in the previous period, the system will issue an error message. But if the postings occur in the same period with different dates, the system will not issue any error.

  • Pentax Lens Model Data in Aperture

    I have finally figured out how to get Aperture to display Lens Model EXIF data for Pentax cameras.
    The problem is that Aperture is looking for that date in one specific field, but Pentax stores it in another. The solution is rather like what we did back when Aperture could not import PEF files. Using exiftool, it's possible to copy the the lens model data from the field Pentax puts it in to the field Aperture expects to find it in.
    This is a procedure you can use (a) for importing new pictures and (b) modifying selected pictures in your Aperture library.
    Assuming you've installed the exiftool library, here are the steps I have used successfully:
    1. Have the pictures you want modified in a folder +in your user folder+. For this example, we'll call the new folder "lenschange." These might have been exported from a project or imported from a camera. I have verified this works on PEF and JPGs.
    2. Open the terminal and type the following command exactly except put your actual user folder name in place of "YourUserFolderName":
    exiftool '-Lenstype>Lens' /Users/YourUserFolderName/lenschange (hit return)
    It will take exiftool a while to do this. It will open each file, move the lens model data, and write a new file, renaming the old one with _original at the end of the filename.
    3. Import the new files into Aperture wherever your want them.
    You should now see the Lens model data in the "Lens Model" field for the EXIF data.
    Clunky, yes; but if you really want that data visible in Aperture, this is (for now) how it has to be done.
    Message was edited by: Lawson Stone

    clawhammer, OMG that is VERY strange. Given what I have read like using exiftool in terminal and sRGB vs adobe profile that this works is odd. Obviously the theory that Aperture is looking for the lens info in the wrong place is not totally true.
    Here's what I did with one Pentax. pef image. In the adjustment HUD in the 'RAW Fine Tuning" brick (Aperture 2.1.2) I switched from 2.0 to 1.1 then back. For a very quick moment I saw the lens info appear in the metadata for Lens. But it went right back to blank. BTW the 1.1 image was awful (green!). So I tried the same thing with 2.0 to 1.0 and back. This time it stuck and I can see the lens info "smc PENTAX-DA 50-200mm F4-5.6 ED".
    To me this is very weird. Obviously it is there somewhere AND accessible to Aperture but either Apple or Pentax is screwing up. Now this is only one image but now I'm thinking can I use Automator or AppleScript to run through my whole library to make the correction (man this would take a lot of time). And then how could I automate this on download.
    I'd be forever grateful if either Apple corrected what now seems like a very simple problem or some script guru solved the library conversion and the download issue with a one step process. Clearly the info is still there so HEY APPLE FIX THIS!

  • Spry Data Sets and CFCs?

    So, I've got the Spry Data Set working reading an XML file:
    http://brad.melendy.com/projects/ajax/spry/test1.cfm
    Which seems to work, the ID column sorts on click, all is
    well. The actual
    file it is reading is located here:
    http://brad.melendy.com/projects/webservice/employee.xml
    Then, I have it set to read the same data from my CFC in this
    version here:
    http://brad.melendy.com/projects/ajax/spry/test2.cfm
    This isn't working? But I can see the data when I open the
    CFC directly in
    my browser like this:
    http://brad.melendy.com/projects/flex/DataTest4/employees.cfc?method=FindAll
    So finally, here is my code on test2.cfm that isn't working?
    <!--- START CODE --->
    <script src="../../../SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="../../../SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var ds1 = new
    Spry.Data.XMLDataSet("
    http://brad.melendy.com/projects/flex/DataTest4/employees.cfc?method=FindAll",
    "response/data/row",{sortOnLoad:"id",sortOrderOnLoad:"ascending",distinctOnLoad:true});
    //-->
    </script>
    </head>
    <body>
    <div spry:region="ds1">
    <table>
    <tr>
    <th spry:sort="id">Id</th>
    <th>FirstName</th>
    <th>LastName</th>
    <th>OfficePhone</th>
    </tr>
    <tr spry:repeat="ds1" spry:setrow="ds1">
    <td>{id}</td>
    <td>{firstName}</td>
    <td>{lastName}</td>
    <td>{officePhone}</td>
    </tr>
    </table>
    <!--- END CODE --->
    The two files test1.cfm and test2.cfm are the same except for
    the source of
    the XMLDataSet which is the static XML document in test1.cfm
    and the full
    URL to the CFC in test2.cfm.
    Thanks for any tips, this is exactly how it is suppose to
    work according to
    the livedocs but it isn't.
    ...Brad

    I figured this out, my problem was that although IE was
    displaying identical
    XML documents from my CFC and employee.xml, the output
    produced by the CFC
    was not a true xml document. I'm not sure exactly what was
    making it fail
    to be seen as an xml document, but after updating the code to
    use <cfxml>
    the document was created properly and then Spry could see the
    data and
    display it.
    "Brad Melendy" <[email protected]> wrote in
    message
    news:[email protected]...
    > So, I've got the Spry Data Set working reading an XML
    file:
    >
    >
    http://brad.melendy.com/projects/ajax/spry/test1.cfm
    >
    > Which seems to work, the ID column sorts on click, all
    is well. The
    > actual file it is reading is located here:
    >
    >
    http://brad.melendy.com/projects/webservice/employee.xml
    >
    > Then, I have it set to read the same data from my CFC in
    this version
    > here:
    >
    >
    http://brad.melendy.com/projects/ajax/spry/test2.cfm
    >
    > This isn't working? But I can see the data when I open
    the CFC directly
    > in my browser like this:
    >
    >
    http://brad.melendy.com/projects/flex/DataTest4/employees.cfc?method=FindAll
    >
    > So finally, here is my code on test2.cfm that isn't
    working?
    >
    > <!--- START CODE --->
    > <script src="../../../SpryAssets/xpath.js"
    > type="text/javascript"></script>
    > <script src="../../../SpryAssets/SpryData.js"
    > type="text/javascript"></script>
    > <script type="text/javascript">
    > <!--
    > var ds1 = new
    > Spry.Data.XMLDataSet("
    http://brad.melendy.com/projects/flex/DataTest4/employees.cfc?method=FindAll",
    >
    "response/data/row",{sortOnLoad:"id",sortOrderOnLoad:"ascending",distinctOnLoad:true});
    > //-->
    > </script>
    > </head>
    >
    > <body>
    > <div spry:region="ds1">
    > <table>
    > <tr>
    > <th spry:sort="id">Id</th>
    > <th>FirstName</th>
    > <th>LastName</th>
    > <th>OfficePhone</th>
    > </tr>
    > <tr spry:repeat="ds1" spry:setrow="ds1">
    > <td>{id}</td>
    > <td>{firstName}</td>
    > <td>{lastName}</td>
    > <td>{officePhone}</td>
    > </tr>
    > </table>
    > <!--- END CODE --->
    >
    > The two files test1.cfm and test2.cfm are the same
    except for the source
    > of the XMLDataSet which is the static XML document in
    test1.cfm and the
    > full URL to the CFC in test2.cfm.
    >
    > Thanks for any tips, this is exactly how it is suppose
    to work according
    > to the livedocs but it isn't.
    >
    > ...Brad
    >
    >

  • Extracting Record Model information from RMPS(RMS)

    Hello gurus,
    Have anyone dealt with extracting record model data from RMPS, showing it in Portal.
    Any standard functionality?

    Hello Kairat,
    Please go through the below link, it provides you the essential information.
    https://help.sap.com/saphelp_nw70/helpdata/EN/90/18413a38cec628e10000000a11402f/frameset.htm
    And you can post the Records and Case Management related quires in the document management forum.
    Regards
    Keerthika

  • Powerpivot Error on Refresh -- "We couldn't get data from the data model..."

    I'm using Excel 2013 and Windows 8.1.  I have a spreadsheet I've been using for over a year, and I've just started getting this error message when I try to refresh the data.
    "We couldn't get data from the Data Model.  Here's the error message we got:
    The 'attributeRelationship' with 'AttributeID' - 'PuttDistCat9' doesn't exist in the collection"
    Any idea how I can fix this problem?  I haven't changed anything related to that particular attribute.  All the data is contained in separate sheets in the workbook, so there are no external sources of data.
    Thanks.
    Jean

    Thanks for all the suggestions.
    I found a slightly older version of the spreadsheet that still refreshes properly, so I don't think I have any issues with the version of Excel or Power Query.  (I've had this same error before, and I believe I applied the hotfix at that time.)
    I think this problem started after I updated a number of the date filters in the pivot tables.  I haven't made any changes to the data model, and the only updates I've made were to add data (which I do all the time), and to change the date filters on
    the pivot tables.
    As suggested, I added a new pivot table querying one table (the table with the attribute that shows up in the error message), and it worked fine.  I can also refresh this pivot table.
    Then I tried adding a pivot table which went against several tables in the data model (including the table in question).  The pivot table seemed to return that data properly.  However, when I tried to refresh it, I got the same error message ("we
    couldn't get data from the data model..."). 
    Dany also suggested running the queries one at a time to see which one is in error.  Without checking all the pivot tables, it appears that any which use the table "HolePlayedStrokes" generate the error (this is the table with the attribute
    mentioned in the error message).  Pivot Tables without that particular table seem to refresh OK.  Unfortunately, that is the main table in my data model, so most of the pivot tables use it.
    Any other suggestions?  I'd be happy to send a copy of the spreadsheet.
    Thanks for all the help.
    Jean

  • Authorization Issue while Data Preview from HANA View

    Hi Experts,
    We are using BW on HANA. We have created DSOs (info provider) in BW and generated HANA views from there. We have also created analysis authorizations in BW for authorization relevant characteristics. In HANA, we are able to go to the generated analytic view and preview the data from it successfully.
    Now I have created a test user and assigned a custom role with below authorizations to this user in HANA:
    - bw2hana/../REPORTING role (this role is automatically created by activation of DSO in BW).
    - Roles MODELING, MONITORING, CONTENT_ADMIN, USER.
    - Multiple system privileges although not needed, like REPO.EXPORT, REPO.IMPORT, etc.
    - Analytic Privilege  _SYS_BI_CP_ALL
    - Package Privilege: REPO.READ for all required packages (tried with ROOT package also).
    In BW system also, the test user has analysis authorizations providing access to the relevant info objects.
    But when I am trying to preview data for HANA view, I am getting attached error (also listed below):
    "Cannot get the data provider outline
    SAP DBTech JDBC: [2048]: Column store error: Search table error: [2950] user is not authorized"
    I tried to trace the situation is HANA and got below details in 2 trace files:
    indexserver_alert_saphana.trc:
    [6433]{416977}[66/-1] 2014-10-14 00:59:27.541187 e CalcEngine       ceAuthorizationCheck.cpp(02365) : AuthorizationCheckHandler::addAPsToSearchObject: Error during converting SqlAPs to Query entries
    indexserver_saphana.31003.075.trc
    [6433]{416977}[66/-1] 2014-10-14 00:59:27.541197 i TraceContext     TraceContext.cpp(00702) : UserName=TEST_SSO, ApplicationUserName=<<computer name >>, ApplicationName=HDBStudio, ApplicationSource=csns.modeler.datapreview.providers.ResultSetDelegationDataProvider.<init>(ResultSetDelegationDataProvider.java:118);csns.modeler.actions.DataPreviewDelegationAction.getDataProvider(DataPreviewDelegationAction.java:278);csns.modeler.actions.DataPreviewDelegationAction.run(DataPreviewDelegationAction.java:242);csns.modeler.actions.DataPreviewDelegationAction.run(DataPreviewDelegationAction.java:127);csns.modeler.command.handlers.DataPreviewHandler.execute(DataPreviewHandler.java:53);org.eclipse.core.commands
    [6433]{416977}[66/-1] 2014-10-14 00:59:27.541187 e CalcEngine       ceAuthorizationCheck.cpp(02365) : AuthorizationCheckHandler::addAPsToSearchObject: Error during converting SqlAPs to Query entries
    Do you know what this "Error during converting SqlAPs to Query entries" actually means"? How can we resolve this issue? The authorization is working properly for our user ids. But we need to provide restricted access for business users so trying to create test user and custom role.
    Thanks
    Nitesh Gupta

    Hi Pinaki and Prabhith,
    Yes, my issue was resolved. Sorry, missed to updated here.
    I was just a beginer for BW on HANA Security at that time and didn't know many small things. The solution was pretty simple.
    Whenever you assign analysis authorizations to a user in BW, you also need to generate corresponding HANA authorization. This is done through tcode RS2HANA_CHECK tcode. This tcode converts  BW analysis authorizations into HANA analysis authorizations and assign to the HANA user. You can see generated HANA authorization table RS2HANA_AUTH_STR in both BW and HANA.
    Once the HANA authorizations are successfully generated for a user, he should be able to see data from Views.
    Let me know if this solves issues. Then I will close this thread.
    Thanks

Maybe you are looking for

  • 23" Display did not come on after disconnecting

    Recently powered down Mac Pro (2007) and relocated to another room along with 23" Cinema display. Powered on and display did not come back on. Checked connection to computer. Only other connection to display is USB from Apple keyboard. Any suggestion

  • Youview picture too dark - On Demand buffering pro...

    Hi - I'm new to Youview but not to BT Broadband.  So when my Humax box arrived Thursday I had everthing installed and working with 20 minutes.  I have a 3 year old Sony 32 inch Freeview TV (not latest tech but with HDMI) - so was looking forward to H

  • Bluetooth OPP Help - Samsung A640 Phone

    Hey everyone. I recently bought a phone from sprint, a Samsung A640, which is a bluetooth phone. I even more recently got an iMac, which also has bluetooth. Now, when I try and sync the phone with the computer(namely my address book), something odd h

  • Data packets not updated in PSA

    Dear Friends, Can anybody help me on this topic. A process chain is in error and the error message is "Data records were marked as incorrect in the PSA" how can i maintenance the PSA to upload the relevant data packet or is there any other way to  ed

  • Animationsvorgaben werden nicht angezeigt?!

    Ich habe angefangen Adobe After Effects ( CS5 ), jedoch ist mir aufgefallen das mir keine Animationsvorgaben angezeigt werden. Ich habe auch schon ein Haken bei Animationsvorgaben gemacht, doch es hat sich nichts verändert! Bitte um Hilfe! Danke im v