Data not visible in table o/p when compiled with webdynpro compiler

Hi,
I am using a Z BAPI to retrieve data from backend ECC6 server and show it using a VC application.
When I compile this VC application using FLASH(FLEX2), the data is shown in the table, whilst if the VC application is compiled using Webdynpro compiler, the data is not shown in the table.
The No. Of Rows  parameter has been updated with 10.
Please suggest what can be done so that data is shown when compiled with Webdynpro compiler.
Regards,
Ranu

Hi Ranu,
WebDynpro Compiler only supports Webservices.
You can look at the below link to get into full details -
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/vc/limitationsofWeb+Dynpro
Regards,
Vipin Vijayan.

Similar Messages

  • Navigational attribute data not visible in BEx Report

    Hello All,
    I am facing following problem in one of my BEx reports:
    I am fetching data from an ODS. With other columns of ODS,  I have also to show few navigational attributes( which are master data of some info-object) . In report the corresponding data in navigational attributes is not visible for few records, although when I see the master data of this Info-object (whose navigational attributes I have to include), in  Adm. Wrkbench the data is visible. I wonder what step is missing.
    Many Thanks for helping me out.
    Best Regards,
    Sumita

    Hi Roberto,
    While trying to activate the Infoobject's master data (by right-click) I get the following message,
    "Lock NOT set for: Loading master data attributes"
    And the data is not activated.
    Can you please suggest what needs to be done.
    Thanks & Regards,
    Sumita

  • Why does IBA not include the table of contents when exporting to PDF?

    Why does IBA not include the table of contents when exporting in PDF? I can seee the TOC in iBooks Author but when I want to see what it looks like in a regular PDF, the TOC does not show up.

    Strange question you ask here. Not sure why that is relevant to "why" IBA won't publish a table of contents in a PDF.
    But since eyou asked, it's simple, I want to author some books in IBA and also see what they look like - completed - in PDF. Again, any suggestions as to a work around so I don't have to cut and paste back into Pages?

  • I have just purchased a new macbook and need to sync my iphone with itunes, i understand that you can only sync your phone with one itunes account. I do not want to wipe my iphone when syncing with this new itunes account. Any advice welcome

    I have just purchased a new macbook and need to sync my iphone with itunes, i understand that you can only sync your phone with one itunes account. I do not want to wipe my iphone when syncing with this new itunes account. Any advice welcome

    1) authorize iTunes on the new machine for your iTunes store account(s)
    2) connect your device and right-click or control-click it in the iTunes Source list, then choose transfer purchases from the shortcut menu that appears.
    3) sync the device
    iTunes will wipe the iPhone but, since you transferred your purchases in the previous step, your content will be in your library and you can re-populate the iPhone with it.

  • PDF form data not visible when opened in Illustrator CS5

    I've been searching the forums but have been unable to find an answer to my specific problem.
    I've created a form using Adobe Acrobat Pro. The PDF form fields are then populated with data via Netsuite. When I open the PDF (with data) in Acrobat all of the information shows up, however when I open the PDF in Illustrator CS5 the field data is not visible. Is there a way to force the data to be visible when opened in Illustrator?
    Thanks in advance for any help!

    You could try first flattenening the fields. This converts the field appearances to regular page contents. You can do this with JavaScript, PDF Optimizer, or a Preflight fixup.

  • Data not visible in ODS

    Dear All,
    I have loaded the data to the ODS through a falt file . the load was successful and when i tried to see from contents the data is not visible.
    But when iam seeing indiviually from all the tables the data is visible.
    Pls give valuable answers ..
    Thanks ,
    Mahima.

    Hi Mahima,
    To see the data in ODS, you need to activate it by going to Manage screen of the ODS and then click on the Activate button at the bottom of the screen.
    Choose the appropriate request from the list and click Start.
    After activating the data will move to the Active Table of the ODS and you can see it through contents.
    Cheers!
    Amit

  • Loaded data not visible for Reporting?

    Hi all,
       In the info cube, the data is not visible for reporting, How can i make it available for reporting,
    When i select the Manage option from the context menu of the cube and select the Requests Tab, i get a pop up message that tells
    " There is an inconsistency between the load status of the data and the option of reporting on this data.
    There is data in the InfoCube/ODS object that is OK from a quality point of view, but is not yet displayed in reporting.
    The problem, for example, is to do with request 0000018049, number REQU_F4ZBFRMDGBULE9WCUN3R5UX5X."
    How do i find out the inconsistancies?
    PS: All the requesta are delta upload
    Thanks n regards
    Girikumar

    Hi Girikumar
    Use the RSRV transaction and check the inconsistency of the cube ..If any inconsistency is there repair that with the repari option in the toolbar..
    Let me knwo if it not resolved..
    Bye
    Shu Moh..

  • Data not pipulating into table

    Hi sdns,
    i have dreated 2 classes:-  1)main
                                            2)sub
    <h5>code of main:-</h5>
    public class main {
         Collection plist = new ArrayList();
         Connection conn = null;
         Statement st;
         public void get_details()
         try
    Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");     
    conn = DriverManager.getConnection( "jdbc:microsoft:sqlserver://10.10.30.25:1433;databaseName=TrackingSystem","sa","sa" ) ;
    st = conn.createStatement();
    String str = "select * from [Project Table]";
    ResultSet rs = st.executeQuery(str);          
    String a = rs.getString(1);
    String b = rs.getString(2);
    String c = rs.getString(3);
    while(rs.next())
    pdetails rec = new pdetails();
    rec.setEname(a);
    rec.setRname(b);
    rec.setDid(c);
    plist.add(rec);
    catch(Exception e)
    public Collection getPlist() {
    return plist;
    public void setPlist(Collection collection) {
    plist = collection;
    <h3>code of pdetails</h3>
    public class pdetails {
    private String Ename;
    private String Rname;
    private String Did;
    public pdetails()
    Ename = new String();
    Rname = new String();
    Did = new String();
    public pdetails(String Ename,String Rname,String Did)
    this.Ename = Ename;
    this.Rname = Rname;
    this.Did = Did;
    public String getDid() {
    return Did;
    public String getEname() {
    return Ename;
    public String getRname() {
    return Rname;
    public void setDid(String string) {
    Did = string;
    public void setEname(String string) {
    Ename = string;
    public void setRname(String string) {
    Rname = string;
    I have created a jar file for this classes And imported as a model in my web Dynpro Application.
    And mapped it to component controller.
    And from there to view controller.
    I had a view with a table .
    I created the table by using template of table.
    And Binded it to the context of the view.
    And the code i have written in the WDDOINIT() method is:-
    IWDMessageManager msg = wdComponentAPI.getMessageManager();
    try
    Collection c;
    c= new ArrayList();
    main m = new main();
    m.get_details();
    c = m.getPlist();
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    catch (Exception e) {
    // TODO: handle exception
    msg.reportWarning("Sorry");
    But data is not getting populated in my table.Anything i have to add to my code.
    Or else have i done anything wrong in my code
    Please help me in this Regard.

    What I mean is replace these 2 lines:
    wdContext.nodePdetails().bind(c);
    wdContext.nodePdetails().invalidate();
    with this code:
    wdContext.nodePdetails().invalidate(); // erase previous search results
    for (int i=0; i<c.size(); i++) { //iterate
    SomeObject o = (SomeObject) c.get(i);  // store record in temp variable
    PdetailsElement e = wdContext.nodePdetails.createPdetailsElement(); //create context element
    e.setPropA(o.getPropA()); // set properties of context element
    etc. // set properties of context element
    wdContext.nodePdetails.add(e); // add context element to context node
    I assume that you have bound the table to nodePdetails, andt that this node has cardinality 0..n.
    Also, the elements of this node contain the 3 strings that you want to display in the table.
    So when you iterate over the collection that is the result of your query,
    you create a new element of the context structure (Pdetail) and set the 3 string values.
    Finally add each context element that was created to the context node (add).
    Hope this helps, good luck.

  • Field data not visible in Association Applet

    Hi all,
    There is a vanilla applet "Organization Assoc Applet" of type association list based on business component "Assignment Group Organization"which has two list columns namely Division and Organization.To this applet I added one more list column based on a vanilla field Main Phone Number,but after compiling when I checked data for field Main Phone Number is not visible but as usual data for other two fields(Div and Org) were visible.
    Could someone help me in this?
    Thanks,
    Sambit

    Hi,
    Where you've added the column? to the Base or Query applet template?
    May help you:
    ==========
    Open the Applet in web layout and check the selected Application, it should match your application.
    If you don't see the Application follow thiw:
    in tools --> View --> Toolbars --> Configuration Context
    if the selected Application is the correct one then go to "Applet web template" --> select the wanted template --> goto the web template items --> make sure that no duplicate "item identifire" exist!
    Good luck

  • Data not visible in query output

    Hi Gurus
    I have a report which is being published at the portal but the data is not visible for it...now when i check the query for that report and try to run it. i still don't see any data..now on further analysis when i use the same filters used in the query on the multiprovider on which the query is created i can see the data and when i run the report in RSRT, i can  see the data...but don't know why its not visible when i execute the query or the report on the the portal....plz suggest..points will be awarded..

    Hi Akash
    Check the query with Bex Analyzer; If it give you the correct result then It might be configuration problem with your JAVA settings..
    Please try And also run Support Desk Tool
    (SAP Note 937697 ) to figure out the configuration Issues....
    Regards
    Vivek Tripathi

  • Creation of a table with static data(not a DB table)

    Hi
    I need to display a table with some static data in an OAF page. This table is not a DB table. It is like an HTML table
    I have placed the following query
    SELECT 'A1','B1' FROM DUAL UNION SELECT 'A2',B2' FROM DUAL in the VO. But it is returning a single row which is acting as the header of the table.
    Can anyone help me to create the table with 2 rows inserted in it.
    Thanks
    Edited by: gsaxena on Aug 4, 2009 3:04 AM
    Edited by: gsaxena on Aug 4, 2009 5:24 AM

    Hi
    Please execute your VO inside the CO of table region ,right now it is not getting executed,thats y it is giving just column names
    use the following code PR method of CO
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject oav = (OAViewObject)am.findViewObject("XXVO");
    oav.first();
    let me know in case of any issue
    thanx
    Pratap

  • Footer is not visible in Table control?

    Hi All
    I am using Table control, Footer is not visible. It is shhowing in layout, but in browser it is not showing. In properties it is checked. And Right side scrolling is working fine, but footer is not visible. We have to set programitically?? Help Please
    Cheers,
    Venkys.

    >
    sarbjeet  singh wrote:
    > From EHP4 onwards paginator has been replaced by this right scroll bar.
    >
    > if you want that back
    >
    > adding the following two parameters to the Web Dynpro Application will bring it back
    >
    > WDLIGHTSPEED (leave the value field blank)
    > WDTABLENAVIGATION set to PAGINATOR
    >
    >
    > thanks
    > sarbjeet singh
    Althought this technically will bring back the paginator; I really strongly recommend against doing this.  By turning off lightspeed you resort back to the old rendering engine.  You give up all the performance improvements that lightspeed provides.  You also give up access to new UI elements and features - like drag and drop, flashIslands, threshold slider, etc.  It seems to me like way too high a price to pay just to go back the paginator.

  • Data not visible in ODS though available in PSA

    Dear All,
    I am working on BW where data extraction is from CRM. The client needs reports after survey is carried out in a set of questionnairres containing questions and answer. Currently four set of questionnairres is created in the dev server and sample data is updated.
    Till last week we were getting all the transaction data for all the questionnairres, now one of the questionnairres is modified and after extraction we find that for the modified questionnairres we are able to extract the corresponding questions and answer option upto the PSA but the data is not visible in the ODS.
    what could be the reson for the same?
    Any help will be suitable awarded with points!
    K Dengupto

    Hi ,
    Are requests reaching the DSO...IF yes Try to check whether your request in DSO is getting activated .
    Check whether  new field is added and same has been mapped through transformation.
    Did you try to see the monitor at the time of loading and try to trace the cause there if the requests are not getting updateded to the DSO
    Regards
    Rahul Bindroo
    Edited by: Rahul Bindroo on Feb 7, 2008 12:05 PM

  • Html link not visible as table header in jsp

    Hi,
    I am not sure if this question belongs to JSP forum, since it's happening in JSP page I am posting it here.
    I am seeing this strange problem, in my JSP page all the link are looking fine except some links in Table header. Here is the code snippet:
    <th align="left" width="30%"><html:link action="/myAction.do?sortBy=org&all=${param.all}">Organization Name</html:link></th>
    ENV is struts, jstl, html.
    Now the problem is the text Organization Name is not visible, although it's there and I can click it. If I click and drag mouse over it I can see it.
    Also if I put this link anywhere else e.g. <TD> I can see it.
    I am not sure why it's happening.
    Please help me.
    Abhishek

    Sounds like a style issue - is it the same colour as the background for some reason?
    What styles have you got applied to your <th> columns? The text in them?
    Are you using css?

  • Dashboard data not visible for the users - buffer issue?

    It occurred several times last weeks that some out of 7 dashboards are not visible to the Dashboard users.
    The scenario is the same all the time: users fills in the data, reviews it and posts some comments. Next morning the user canu2019t see the data in the system.
    What can be the problem?

    Hi,
    IF your Company has NEtweaver License and the SAPNET User has access right to download section, you must be able to add SP Stacks to Download Basket.
    If you have license and use have access, then please contact with local SAP Subsdiary for this problem.
    But to be able to download some patches, you must have Solution Manager & Maintanance Optimizer to approve the items in basket.

Maybe you are looking for