INCLUDE BDCRECX1 not displaying selection text in selection screen.

In my BDC program in using INCLUDE BDCRECX1, When i execute program in selection screen i am not getting selection texts.
what is the problem?

You are not getting selection texts because you have not maintained text symbols in your BDC program,

Similar Messages

  • Hi, unable to display full text on selection screen

    hi all
    please any one tell me how one can display full text on selection screen because whatevery i have defined in text for selection screen variable is not displaying full text, some letters are missing.
    for example :
    Poste(s) du document de facturation       
    above text i want to display on selection screen.
    but only  Poste(s) du document de factur
    is displying. some letters are missing
    please try to solve this
    thanking in advance

    Hi Raj,
    Check this..
    SELECTION-SCREEN COMMENT fmt name.
    Additions
    1. ... FOR TABLE dbtab
    2. ... FOR FIELD f
    3. ... MODIF ID mod
    4. ... ID id
    Effect
    Generates a comment on the selection screen. For the name name , there are two options:
    name takes the form TEXT-xxx where xxx is a three-character name for a text symbol. In this case, the contents of the text symbol are displayed at runtime, i.e. the text cannot be changed dynamically. name is another eight-character name. Here, you create a field with the name name in the length specified in the format fmt< /> and it is then generated as an output field on the selection screen. The contents of these comments must therefore be set at runtime (e.g. at INITIALIZATION or - in the case of comments in the database include program DBldbSEL - in the routine INIT of the database program SAPDBldb . They can also be changed when the selection screen is being processed.
    Note
    The field name is generated automatically and so cannot be defined with DATA .
    With comments, you must always specify a format fmt (see variant ULINE ).
    Note
    You must program a new line yourself via the format fmt .
    <b>Example
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 10(20) TEXT-001
                       FOR FIELD PARM.
      SELECTION-SCREEN POSITION POS_LOW.
      PARAMETERS PARM LIKE SAPLANE-PLANETYPE.
    SELECTION-SCREEN END OF LINE.
    This code displays a 20-byte long comment followed by the parameter at the normal position ( POS_LOW ) on the same line. If the user presses F1 for both objects, the documentation of SAPLANE-PLANETYPE is displayed.</b>
    Regards,
    Raj

  • Embedded fonts do not display (-) in text

    Hi all,
    I have embedded few fonts in my project.
    Some of them do not display - in text. Those fonts also fails in winword, word is also not able to transcode - in those fonts.
    In word it shows that block instead of -. Any idea how to display - for these type of fonts.
    Fonts are GillSansST,HelvesticaST,SnellST.
    Thanks,
    -CK

    I found that problem was with fonts it self only.
    When fonts were generated - was not included in it.

  • Rename selection text from standard screen

    Hi expert,
    I want to change selection text in standard screen.
    (i.e "Business Area" in AS02 become "Unit Area")
    The only I know if that is a custom program, I can rename the selection text by GoTo--> Text Element --> Selection Text Menu.
    But when I open Selection Text from Standard Program, there is a warning "Untranslated texts from master language DE will also be displayed"
    and when I continue, the list of selection text is BLANK.
    If I change it from Data Element, It will impact the Standard Screen that use that Data Element. I only want to change for AS02.
    How can I rename it?
    Thanks,
    Andreyus

    check this [click here|http://help.sap.com/saphelp_nw70/helpdata/en/e3/960a0beb0711d194d100a0c94260a5/content.htm]
    [click here 2 |MCVE (QM LIMS) - Rename of Selection Criteria options;
    or
    from SO10 --
                         utilities --
                                          copy from client.
    give source and target name of text.
    here in target name you suppose to give some z name there and finally execute.
    [ref|MCVE (QM LIMS) - Rename of Selection Criteria options;
    Edited by: koolspy on Jul 13, 2011 3:55 PM
    Edited by: koolspy on Jul 13, 2011 3:56 PM

  • Firefox page images do not display only text and links

    New desktop (not this one) with windows 8.1 Pro, Firefox 29, Norton Internet security. When I go to many of the Firefox pages images do not display, only text and links. This is true for the "get add-ons" page. I can search for add-ons, but when I try to install one, the installation fails. Is there a security setting in windows or NIS that is blocking Firefox images and installations? The Firefox installation went smoothly without error. Other sites do not have this problem.

    Wow! I never would have thought of that! My time settings were incorrect when I set up the PC, and I thought I set them. I did have the day, date, and time set correctly. But I did not have AM/PM set right. So, I was off by 12 hours. I corrected it and, voila, all works well.
    I'm so happy now, because I can now get all the security extensions I've grown to love:
    - NoScript
    - Ghostery
    - Better Privacy
    - Adblock Plus
    You guys are great! Thank you so much for your help.

  • SuperFrench is found but this font can not display any text

    "SuperFrench" font comes from Autodesk. this fonts's real file name is supef__.ttf
    If it is placed in C:\Windows\Fonts folder then it is available for Windows native apps such as MS Excel.
    Java GraphicsEnvironment finds "SuperFrench" font
    but this font can not display any text.
    This happens in both Java6(1.6.0_34) and Java7(1.7.0_06)
    try this
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class FontTest01 {
      public static void main( String[] args ){
        FontTest01 app = new FontTest01();
        app.run();
      void run() {
        String fontName = "SuperFrench"; //** SuperFrench font
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        String[] existFontNames = ge.getAvailableFontFamilyNames(Locale.ENGLISH);
        boolean fontExists = false;
        for( int i=0 ; i<existFontNames.length ; i++ ){
          if( existFontNames.equals( fontName ) ){
    fontExists = true; break;
    if( fontExists==false ){
    System.out.println( fontName +" does not exist" );
    System.exit(-1);
    JLabel label = new JLabel( "ABCDEFG" );
    Font font = new Font( fontName, Font.PLAIN, 20 );
    System.out.println( font.getFontName() );
    label.setFont( font );
    JFrame f = new JFrame();
    f.add( label );
    f.setSize( 180, 120 );
    f.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    f.setVisible(true);
    Edited by: TadashiOhmura on 2012/06/17 23:04
    Edited by: TadashiOhmura on 2012/06/18 7:50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Thank you for your replay.
    I face the same trouble with JavaFX
    I report this problem into Jira and filed as RT-22641
    Some members of Oracle developer team write comments for this issue.
    http://javafx-jira.kenai.com/browse/RT-22641
    This font has some irreguler structure.
    I hope Java font system will deal with it.

  • Qosmio X305 screen not displaying like my desktops LCD screen

    My screen seems to be displaying dull images.
    I'm kinda concerened, because it's an LCD screen, and its not displaying like my desktops LCD screen.
    I put the brightness up, and that helped to see the images better, but they still are not of the quality they should be.
    Is there a way to fix this? Or is that just how it is?

    Many Desktop LCD Monitors can get very bright, much brighter than most notebooks. So it may just be how it is. Perhaps you could go to the shops and compare it to other X300's on display.
    Try resetting or modifying the Contrast/Colour/Brightness settings in the nVidia control panel.

  • Hebrew fonts from drop-down box not displaying in text box.

    I am using InDesign CS 5.5 on a Mac 10.8.4.
    When in ID, the fonts I am seeing on the Font dropdown menu when I try to use in a text box are not displaying correctly. They only display as boxes. The fonts are in the Hebrew language. They are properly installed in the FontBook.
    Please help!! Thank you.

    Reema,
    I followed most of your steps. I have a question reg. step 3 ie populating data in node 1.
    Here is my code:
    method WDDOINIT .
    types: begin of zs,
    zktokd type kna1-ktokd,
    end of zs.
    data: handle1 type ref to if_wd_context_node,
    begin of zstruct,
    zktokd type kna1-ktokd,
    end of zstruct,
    zitab type table of zs.
    handle1 = wd_context->get_child_node( name = 'NODE1' ).
    *select ktokd into corresponding fields of zstruct from kna1.
    *append zstruct to zitab.
    *endselect.
    zstruct-zktokd = 'Sold-to party'.
    append zstruct to zitab.
    zstruct-zktokd = 'Goods recipient'.
    append zstruct to zitab.
    zstruct-zktokd = 'Payer'.
    append zstruct to zitab.
    zstruct-zktokd = 'Bill-to party'.
    append zstruct to zitab.
    zstruct-zktokd = 'Prospective Customer'.
    append zstruct to zitab.
    zstruct-zktokd = 'Competitor'.
    append zstruct to zitab.
    zstruct-zktokd = 'Sales partners'.
    append zstruct to zitab.
    zstruct-zktokd = 'Hierarchy Node'.
    append zstruct to zitab.
    zstruct-zktokd = 'Named List of Accounts'.
    append zstruct to zitab.
    zstruct-zktokd = 'Distribution center'.
    append zstruct to zitab.
    zstruct-zktokd = 'Payer'.
    append zstruct to zitab.
    handle1->bind_table( new_items = zitab ).
    endmethod.
    Please let me know if this is the best way to populate the node and then bind the table values from the node to the drop down box.
    Thanks and Regards.

  • Included subview not displaying when run, only in editor

    Hallo -- I have a page called home.jsp that contains a subview.
    home.jsp looks like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <%@ page language="java" contentType="text/html; charset=iso-8859-1" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <f:view>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <h:panelGrid width="100%" columns="1">
         <h:panelGroup>
              <h:outputText value="Hello?"/>
         </h:panelGroup>
         <h:panelGroup>
              <h:panelGrid width="100%" columns="2">
                   <h:panelGroup>
                        <f:subview id="navigationPane">
                             <jsp:include page="subview/navigationPane.jspf" flush="true" />
                        </f:subview>
                   </h:panelGroup>
                   <h:panelGroup>
                        <h:outputText value="Hello-o-o-o...?"/>
                   </h:panelGroup>
              </h:panelGrid>
         </h:panelGroup>
         <h:panelGroup>
              <h:outputText value="Where's my subview?"/>
         </h:panelGroup>
    </h:panelGrid>
    </body>
    </html>
    </f:view>
    [/code:1:ccbd93ceb2]
    And the file in the subview, named [b:ccbd93ceb2]navigationPane.jspf[/b:ccbd93ceb2] in the subfolder [b:ccbd93ceb2]/subview[/b:ccbd93ceb2] looks like this:
    [code:1:ccbd93ceb2]<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <h:panelGrid width="20%" columns="1" id="navigationPane">
         <f:facet name="header">
              <h:outputText value="Navigation Pane"/>
         </f:facet>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoHome" action="gotoHome" immediate="true" style="text-align: center">
                        <h:outputText value="home"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByCustomer" action="viewByCustomer" immediate="true" style="text-align: center">
                        <h:outputText value="view by customer"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="viewByJob" action="viewByJob" immediate="true" style="text-align: center">
                        <h:outputText value="view by job"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form id="quickSearchBeanForm">
                   <h:panelGrid columns="3">
                        <h:outputText value="Search By Option:"/>
                        <h:panelGroup>
                             <h:selectOneMenu id="quickSearchBean_searchByOption" value="#{navigationPaneBean.quickSearchBean.searchByOption}">
                                  <f:selectItems value="#{navigationPaneBean.quickSearchBean.searchByOptions}"/>
                             </h:selectOneMenu>
                        </h:panelGroup>
                        <h:message for="quickSearchBean_searchByOption"/>
                        <h:outputText value="Search For:"/>
                        <h:inputText id="quickSearchBean_searchFor" value="#{navigationPaneBean.quickSearchBean.searchFor}"/>
                        <h:message for="quickSearchBean_searchFor"/>
                   </h:panelGrid>
              </h:form>
         </h:panelGroup>
         <h:panelGroup>
              <h:form>
                   <h:commandLink id="gotoAdmin" action="gotoAdmin" immediate="true" style="text-align: center">
                        <h:outputText value="admin"/>
                   </h:commandLink>
              </h:form>
         </h:panelGroup>
         <f:facet name="footer">
              <h:form>
                   <h:commandLink id="logout" action="logout" immediate="true" style="text-align: right">
                        <h:outputText value="logout" style="text-align: right"/>
                   </h:commandLink>
              </h:form>
         </f:facet>
    </h:panelGrid>
    [/code:1:ccbd93ceb2]
    Just to be really clear, here is the dierctory structure for the relevant files:
    [code:1:ccbd93ceb2]/web
    |
    |
    |--/pages
    |   |
    |   |
    |   |--/app
    |   |   |
    |   |   |
    |   |   |--/subview
    |   |   |   |
    |   |   |   |--navigationPane.jspf
    |   |   |
    |   |   |
    |   |   |--home.jsp
    |   |
    |   |
    |   ...
    |
    ...[/code:1:ccbd93ceb2]
    My problem is that the subview will not display when I run the web app. In the design view I can see it just fine, but when I browse to home.jsp when running, all I get is this (from view source):
    [code:1:ccbd93ceb2]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>Untitled Document</title>
    </head>
    <body>
    <table width="100%"><tbody><tr><td>Hello?</td></tr>
    <tr><td><table width="100%"><tbody><tr><td></td><td>Hello-o-o-o...?</td></tr>
    </tbody></table></td></tr>
    <tr><td>Where's my subview?</td></tr>
    </tbody></table>
    </body>
    </html>
    <script type="text/javascript">
    <!--
    function getScrolling() {
        var x = 0; var y = 0;
        if (document.body && document.body.scrollLeft && !isNaN(document.body.scrollLeft)) {
            x = document.body.scrollLeft;
        } else if (window.pageXOffset && !isNaN(window.pageXOffset)) {
            x = window.pageXOffset;
        if (document.body && document.body.scrollTop && !isNaN(document.body.scrollTop)) {
            y = document.body.scrollTop;
        } else if (window.pageYOffset && !isNaN(window.pageYOffset)) {
            y = window.pageYOffset;
        return x + "," + y;
    //-->
    </script>
    [/code:1:ccbd93ceb2]
    Does anyone have any idea why this might not be working?
    I'm really stumped!
    Cheers,
       doug.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    http://forum.java.sun.com/thread.jspa?messageID=3413354&#3413354

  • Safari not displaying certain texts on YouTube pages properly

    Hi, I've been having this weird problem with Safari for almost two months now even before the 5.1.4 update. I even went to Apple Genius with my macbook pro and they said the problem is minor and should be fixed with the new update (5.1.4), but the problem still persists!
    Basically, whenever I go on YouTube for EVERY/any video and click on the "more info" button to look at the information spread on videos, all the remaining texts and links are "invisible." I have to literally highlight everything in the information spread in order to permanently display the texts, links, etc after enlarging the information tab. I've tried updating everything (Safari--both 5.1.3 and 5.1.4, OSX, repairing disk permissions, all settings are on in Safari, etc) to NO AVAIL! It's so frustrating and annoying. I'm not that tech savvy, so I don't quite understand what kind of problem this applies to whether CSS, JAVA, Flash, or whatever else. A genius bar representative said it's not Flash (which I also updated and reinstalled a few times), since I can load and watch videos perfectly fine. He was able to reproduce the problem on one of the macbook airs at the store and that's when he said the problem should be fixed with the newest update. Obviously not. Please help me resolve this issue or at least, understand it. It's really frustrating. Chrome and other browsers work perfectly fine with YouTube on my MacBook as well.
    Here is a screenshot of what I am talking about:
    http://i39.tinypic.com/1zmh26o.png
    Thank you in advance!

    Hi,
    Yes, he was able to reproduce it on a macbook air, but he never told me how or anything else. Just that it was a "minor" problem with codes and should be fixed with the newest update.
    Also, I went to the Safari menu and the Style sheets set to none has always been set. I reset Safari as you said, and when I opened it again, it was really slow at loading any of my Top Sites (clicked on YouTube). Missing info spread (invisible) still persists...
    I opened a guest account and the problem also occurs with Safari there, so I know this is a system wide glitch. I'm so close to erasing and reinstalling the OSX system out of frustration. (I have all my important files backed up so I dont actually mind doing this).

  • Numbers not displaying certain text.

    I use Numbers to create invoices. Previous versions of numbers would display and print but not export certain text. In version 9 the same text will not even display. Any way to fix without opening all my old invoices in a previous version of Numbers?

    Can you be more specific as to what is not displaying or printing or exporting?
    Which version are you using. I ask because you said "previous versions would..." which implies Numbers '08 and Numbers '09, the only two previous versions. From that, and your profile of OS X 10.9.1, I would assume your question is about Numbers 3.  But then you made a statement about Numbers "9" as the version you are having the problem with.
    What are you exporting to? Excel, CSV, PDF?
    Maybe a screenshot would help?

  • Drop down in report for selection texts on selection screen

    Hi,
    I have a selection screen for a custom report on which there is a selection-option for entering text-symbol value from selection texts of the same report.
    Could anybody please let me know how to put a drop-down so that users can see selection texts before entering into this free form field.
    Otherwise, could anybody let me know which table stores text symbols of the report?
    Regards
    Kasi

    Hi,
    Here is the sample code for dropdown list box in the selection-screen,
    SELECT-OPTIONS: LB_MACRO_KOART    MYLIST(1)  5  COMMENT.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM ADD_VALUES_TO_KOART.
      COMMENT = 'Account type'.
    END-OF-SELECTION.
    *&      Form  add_values_to_koart
          text
    -->  p1        text
    <--  p2        text
    FORM ADD_VALUES_TO_KOART .
      TYPE-POOLS: VRM.
      DATA: MY_LIST  TYPE VRM_VALUES,
            VALUE LIKE LINE OF MY_LIST.
           i_tab TYPE TABLE OF bseg WITH HEADER LINE.
      DATA : BEGIN OF I_TAB OCCURS 0 ,
             KOART TYPE C,
             END OF I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'A'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'D'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'K'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'M'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'S'.
      APPEND I_TAB.
      CLEAR I_TAB.
    Regards,
    Azaz Ali.

  • Crystal Report for Enterprise not displaying Long Text from BEx

    Hello,
    I am creating a report using SAP Crystal Report for Enterprise 4.0 (Version 14.0.2) and the source of data is BEx query via OLAP connection created using IDT. I am using SAP BusinessObjects BI platform 4.0.
    The Characteristic (which is hierarchy) in the Rows section of the BEx Query is set to display long text and as such, it displays long text when the query is executed in the BEx Analyzer. However, when it comes to Crystal Report, the short text is displayed in the report. Can I display long text in the Crystal Report? How?
    Thanks,
    KP

    Venkat,
    Thanks for your response. Please note, however, the transaction RAD1 does not exist. Let me provide more details about the current settings of the InfoObject.
    The Characteristic is 'Item' (0CS_ITEM) and upon going to RSA1 >  Modeling > InfoObjects > Item (0CS_ITEM) > Right Click > Display > Business Explorer (tab) > Text Type is set to 'Long Text' and BEx description is set to 'Long description' already.
    When I run/execute the query with this Item characteristic, the results in BEx Analyzer is showing appropriate long text, however, Crystal Report for Enterprise shows short text only
    K
    Edited by: Kumar Pathak on Feb 3, 2012 6:18 PM

  • Displaying Medium Text in Variable screen (WAD)

    Hello Experts,
    When I run one of my reports in BEx, the input help for an infoobject shows key, Short Description and Medium Description. But the same report when I run in WEB it does not show the Medium Description but only the key and Short Description is getting displayed. I have selected short and medium description for that infoobject at all the levels.
    Could you please tell me how to show also the Medium Description along with in WEB input help.
    Thanks a lot.
    Rajat

    Arun,
    I am using BW 3.0B. The default display is specified in BW BEx Tabstrip in IO Definition (in RSA1) is Medium Text.
    My problem is: When I run the report on Web and select the value for characteristic variable of this infoobject (by clicking on the browse link next to text box) , I see Key and Short Text in the list. Whereas my Client requirement is that he wants to see Key and Medium Length Text in the Variable option list.
    On BEx Analyzer, i can see Key, Short Text and Medium Text in the Variable slection screen. But it is not giving the same result on Web.
    I have checked all the properties in web template.. like data provider, web template, result table properies.. I also tried to change BEx description property to Medium text as well. But it is not working.

  • Indesign CC does not display linked PDF image on screen

    On Mac1 (10.6.8) When I imported a PDF file into Indesign CC 9.1 as a linked image - the image would come in as usual, however the image would not appear on my screen. Only a blank page box.
    I can see the thumbnail image of the imported PDF in the links palette correctly.
    However, on my page it appears as a blank box.
    Selected Hi-res preview, and still it appears as a blank box.
    I export to PDF, and the image is there as it should be on the exported PDF.
    I tried the same image on Mac2 (10.8.3) with Indesign CC.
    The imported image appears correctly on the page. (no blank box)
    I saved that file and opened it on Mac1 that is having the problem displaying the image.
    Mac1 again does not display the image, instead it is a blank box.
    Tried the same image import in Cs6. No issue on either mac1 or mac2
    What could be causing the imported PDF not to display on the page in Indesign CC?
    Has anyone else come across this problem?

    Hi
    Are you still facing the same issue ?
    Please refer to these threads for steps that you can try :
    Edge Animation not working properly
    Edge Animate not working in Muse Browser Preview, But works in Edge Preview
    http://tv.adobe.com/watch/learn-adobe-muse-cc/integrating-adobe-edge-animate-graphics/
    Thanks,
    Sanjit

Maybe you are looking for

  • Test-path where a directory in the path is variable

    My company has a series of fax lines and associated file shares. Faxes are processed & then dropped off into these file shares. From that point a service runs about every 60 seconds to look for files in these directories to import into a database. If

  • WDJ application running on old blackberry but not on OS 6.0

    Dears, We have custom webdynpro applications ment to run on blackberry device and things are going fine. But in Blackberry OS 6.0 or similar latest devices the same application is not working fine. We have NW 7.0 SP13 . Pleaes help to resolve this is

  • WirelessLan/Media Player

    I plan to buy wireless Media Player PRISMIQ or NMP-4000.   I have one Mega 180 with AMD XP 2500+. In order to watch video smoothly with wireless media player I need fast data flow. IEEE802.11b which is installed in Mega 180 is not fast enough.  So I

  • G-Tech Mini vs. 'Regular' G-Tech External Hard Drive

    Noticed in local Apple Store that the mini version of the G-Tech HD was $40 more with half the stated storage space. Why the difference? How do both products compare in use for video storage & editing in iMovie or Final Cut?

  • Through MRP duplicate PR's generated

    Hello, My scenario is based on planed delivery time system has given for existing PO exception message 20 then created new PR's. So my question is how I can delete the PR's which has been generated through MRP. are  there any specific tables to find