Hiding objects and publishing

When I hide an object on my slide, it is still shows up
visibly when the project is published. The help menu seems to
confirm this. I find this extremely puzzling. If you hide an
object, it would only make sense that you did NOT want that object
to be seen on the published version. I want to include an object on
a template that the movie creator can turn off or on if they choose
that object to be seen.
Is there a work around for this? I am having the same problem
with the mouse cursor movement. If I hide the mouse cursor on the
slide, you still see it on the published version. Even weirder,
hiding the cursor appears to mess up the cursor movement on the
subsequent slide.
Has anybody produced a more detailed help guide to cursor
movement? The information in the manuals do not help at all, and I
am having a hard time figuring out if I am simply dealing with a
bug while doing everything right...
Regards, Suzan

Suzan,
Two suggestions:
1) Cover the print button with a highlight box and paste them
both onto each slide, telling the developers to delete the
highlight box on slides where they want the button to be visible to
users.
2) Since you likely only want to print "paused" slides, set
the On success action of the "pause" button to jump to next slide
and then move the print button to the right of the pause button on
the timeline. Then tell the developers to move the button to the
left of the pause button on the timeline if they want it to be
visible to users.
On the "timeline" shown below, if the Pause button is set to
jump to next slide, then the Print button will be present on the
slide but never visible to users
.....[.. Pause button || ..]....
................................................[..Print
button || ..]....
As for mouse starting points, Rick is exactly right. To
"specify" a custom starting position on a slide, you have to make
sure it ends in the desired spot on the PREVIOUS slide.
Try the following and see if it works for you:
Let's say you want to specify a custom mouse starting point
on slide 5.
1. Insert a new slide in front of slide 5 (we'll call this
the new slide 5).
2. Configure the new slide 5 as follows:
a) Display Time: 0.1 seconds
b) Transition: No Transition
c) Change the background image to be the same as the original
slide 5 (which is the new slide 6)
d) Position the mouse cursor where you want it to start on
the new slide 6.
When you run the movie, the new slide should flash by so
quickly that users won't really notice, but the mouse cursor will
be in the correct starting position on the next slide. If
necessary, you can also copy any foreground objects (text,
graphics, etc.) from the old slide to the new slide to increase the
visual similarity & make the transition more seamless.

Similar Messages

  • Publishing Projects with Web Objects and YouTube Interactions

    How do I publish projects with Web Objects and YouTube interactions to ensure they appear in my published project?
    I am trying to publish my project, which contains Web objects and YouTube interactions, and they will not appear if I publish them either as swf or html (sometimes the Web object will appear, but not the YouTube interactions). Both objects work if I preview them on the stage.

    Hi,
    You need to copy your published output to any web server to make Web Objects and Yout Tube interaction work.
    Regards,
    Mayank

  • Script to stop and start Business Object and its components

    Hi Guru
    I have installed Business Objects and few of its componenents.
    Please assist where I can find a proper script to do a clean stop and start of its services.
    My server is Windows 2008 SP2.
    Target services to have a scripts are;
    1. MySQL server 5.1.
    2. Apache Tomcat 5.5.20.
    3. BW Publisher Service 12.
    4. Server Intelegence Agent.
    Appreciate some assistance here. Thanks!
    -Ace-

    All of those components are available as Windows services. You can use the relevant
    net stop
    commands to stop them.
    Regards,
    Stratos

  • Takes time to Save and publish

    Project server 2010 + SQL server 2005 sp3
    When the users make the required changes and when they try to save and publish it takes them around 15 seconds to complete.
    What would cause that to happen, and how can one improve the performance?
    Satyam.

    Let's try to look at it in a different way! When you save and publish a project there will be a series of job which will be triggered in the queue like Project Save from Project Professional, Project Publish, Reporting Project Publish etc.
    Please let us know which among this is taking time.
    [Please note some of the jobs gets pushed into the queue at the same time so I would suggest that you monitor the queue as soon as the save and publish is triggered and track the time taken for the jobs to complete]
    Below I have also listed some of the recommended DB maintenance queries
    1. Check size of Shadow Tables : http://support.microsoft.com/kb/2598007
      i. Run the below query on both the Draft and Published databases
    select count(*) from MSP_TASK_CUSTOM_FIELD_VALUES_SHADOW 
    select count(*) from MSP_ASSN_CUSTOM_FIELD_VALUES_SHADOW 
    select count(*) from MSP_PROJ_RES_CUSTOM_FIELD_VALUES_SHADOW
    select count(*) from MSP_PROJ_CUSTOM_FIELD_VALUES_SHADOW 
    select count(*) from MSP_PROJ_CUSTOM_FIELD_VALUES_SHADOW 
      ii. Run the below query on Published database only
    select count(*) from MSP_RES_CUSTOM_FIELD_VALUES_SHADOW
    2. Update Statistics: Updates query optimization statistics on a table or indexed view. By default, the query optimizer already updates statistics as necessary to improve the query plan; in some cases you can improve query performance by using UPDATE STATISTICS
    or the stored procedure sp_updatestats to update statistics more frequently than the default updates (References: http://technet.microsoft.com/en-us/library/ms187348.aspx, http://blogs.technet.com/b/projectadministration/archive/2009/12/04/sql-server-settings-for-performance-recommendations.aspx) 
    Run the below query on all the four Project databases
    sp_updatestats
    3. Defragment all the four Project Server databases by running the below query on each of the databases to help improve the performance(This mentions Project 2007 bus is applicable for Project 2010 as well): http://support.microsoft.com/kb/943345
    SET NOCOUNT ON
        DECLARE @objectid int
        DECLARE @indexid int
        DECLARE @command varchar(8000)
        DECLARE @baseCommand varchar(8000)
        DECLARE @schemaname sysname
        DECLARE @objectname sysname
        DECLARE @indexname sysname
        DECLARE @currentDdbId int
        SELECT @currentDdbId = DB_ID()
        PRINT CONVERT(nvarchar, GETDATE(), 126) + ': Starting'
        -- Loop over each of the indices
        DECLARE indexesToDefrag CURSOR FOR 
        SELECT 
            i.object_id, 
            i.index_id, 
            i.name
        FROM 
            sys.indexes AS i
        INNER JOIN 
            sys.objects AS o
        ON
            i.object_id = o.object_id
        WHERE 
            i.index_id > 0 AND
            o.type = 'U'
        OPEN indexesToDefrag
        -- Loop through the partitions.
        FETCH NEXT
        FROM
            indexesToDefrag
        INTO 
            @objectid, 
            @indexid,
            @indexname
        WHILE @@FETCH_STATUS = 0
        BEGIN
            -- Lookup the name of the index
            SELECT 
                @schemaname = s.name
            FROM 
                sys.objects AS o
            JOIN 
                sys.schemas AS s
            ON
                s.schema_id = o.schema_id
            WHERE
                o.object_id = @objectid
            PRINT CONVERT(nvarchar, GETDATE(), 126) + ': ' + @schemaname + '.' + @indexname + ' is now being rebuilt.'
            -- Fragmentation is bad enough that it will be more efficient to rebuild the index
            SELECT @baseCommand = 
                ' ALTER INDEX ' + 
                    @indexname +
                ' ON ' + 
                    @schemaname + '.' + object_name(@objectid) + 
                ' REBUILD WITH (FILLFACTOR = 80, ONLINE = '
            -- Use dynamic sql so this compiles in SQL 2000
            SELECT @command =
                ' BEGIN TRY ' + 
                   @baseCommand + 'ON) ' +
                ' END TRY ' +
                ' BEGIN CATCH ' +
                   -- Indices with image-like columns can't be rebuild online, so go offline
                   @baseCommand + 'OFF) ' +
                ' END CATCH '
            PRINT CONVERT(nvarchar, GETDATE(), 126) + ': Rebuilding'
            EXEC (@command)
            PRINT CONVERT(nvarchar, GETDATE(), 126) + ': Done'
            FETCH NEXT FROM indexesToDefrag INTO @objectid, @indexid, @indexname
        END
        CLOSE indexesToDefrag
        DEALLOCATE indexesToDefrag
    4. Recompile Stored Procedures: Empty the stored execution plans for the below stored procedures from the cache and then recompile them so that the new execution plan get things working faster (Reference# http://blogs.msdn.com/b/brismith/archive/2012/09/19/when-your-project-server-queue-slows-down.aspx)
    Draft DB 
    EXEC Sp_recompile MSP_ProjQ_Lock_Next_Available_Group 
    EXEC Sp_recompile MSP_ProjQ_Get_Status_Of_Jobs_List 
    Published DB 
    EXEC Sp_recompile MSP_TimesheetQ_Get_Status_Of_Jobs_List 
    EXEC Sp_recompile MSP_TimesheetQ_Lock_Next_Available_Group
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • How to compile and publish after modified a .java file?

    Hello,
    I am a newbie to Business Object. I am now working on a server that installed BusinessObjects Enterprise, to develop and run BO reports. I need to edit some java codes of the InfowView. I found that there are some .java, .class, .jar files under the installed folder. I know that it is a struts framework and I can find which .java file to edit, but I don't know how to compile and publish the codes. Is it necessary to install any development tool to do it?
    Regards,
    Philip

    Since you are using CSV, you can read a line at a time and then use String.split() on it. One you have it split, you upload to your DB using JDBC or if your in the MS world and cannot get a JDBC driver, then use the JDBC/ODBC bridge.

  • What are replications objects and subscriptions???

    Hello All,
    I am working with CRM 5.0
    I want to know what are replications objects and subscriptions and how it is work with sites and BDocs? The process is not clear to me and how is the relationship between them?
    Regards
    Jacopo Francois

    Hello Jacopo,
        The CRM Middleware course material CR500/CR540/CR550 details out the concepts of a Replication Obj,Publication and Subscription.
      Let me try and illustrate this concept with a real-world example. This is normally the example I provide whenever I train employees.
    What do you do when you want to subscribe for SAP Netweaver magazine published from SAP Press?
    1) SAP Press publises a number of SAP magazines. So, first you select the publication of your choice. Your publication = "SAP Netweaver".
    2) Next, you have to subscribe for it in the website by furnishing your credit card details, shipping address and the duration of your subscription. So, that becomes your subscription. So, a publication can have many subscriptions (sent by many people)
    The replication object is just the abstraction which collects all the publications and their corresponding subcriptions and relates them a particular Bdoc type. Normally, the name of a replication object = Name of the Bdoc type. E.g. BUPA_MAIN. Replication objects can be bulk objects or simple intelligent objects depending on whether mass data or filtered data is desired. Naturally, there will not be any subscriptions for a bulk replication object.
    Now, once you have created a site and have done its configuration, you can associate the site to a number of replication objects depending on what type of data would the site be interested in.
    Hope you are now able to figure out the meaning of these MW terms and understand the relationship between them.
    Please reward with points if this helps!
    Thanks,
    Sudipta.

  • Timeline problems with caption boxes when viewing and publishing

    Hello,
    I have several captions within one frame and am adjusting the timeline so they do not all appear at once.  When I do this and preview or publish I can only see the first caption - the second/third does not preview or publish.  However if I change the timeline so all captions appear at they are visible when previewing and publishing.
    I would greatly appreciate some help with this.
    Thankyou
    Alison

    Hi there
    You need to adjust the pause point of your Button object. At least I think it's a Button. Can't tell for certain because I'm in the midst of a visual migraine and it's affecting my vision. I suppose it might be a Text Entry Box. They look the same on the Timeline.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • How to set timer intervals for object + and a motion for entering stage

    Hi, I am making a simple game but I have a couple problems/queries.
    1) My game is a touch an object and you get a point game, currently the objects appear randomly over the screen, however I am trying to get it to slide into the screen similar to the Fruit Ninja game, but not limited to entering from one side, does anyone know how to set this?
    2) As I mentioned above my objects appear randomly, I have set a timer when I change the timer from 800 to another number, it just makes all the objects on the screen last for 800 milliseconds all at the same time then disappear and appear somewhere else on the screen for another 800 milliseconds and it repeats, what I am trying to do is make them come at different intervals, for example:
    Object 1 - constantly appears, so when the 800 millisecond is over, it comes back on a different part of the stage
    Object 2 - I want it to appear every 5 seconds, so when the 800 millisecond is over it will come back on the stage in 5 seconds, but not instantly like Object 1
    But I have no idea how to do this :/ anyone have the code needed for me to do this?
    Sorry for the long questions, I only asked because I really am stuck, I have been trying to do this for over 2 weeks now.
    Thanks very much.
    My Code
    [Code]
    //importing tween classes
    import fl.transitions.easing.*;
    import fl.transitions.Tween;
    import flash.utils.Timer;
    //hiding the cursor
    Mouse.hide();
    var count:Number = 60;
    var myTimer:Timer = new Timer(1000,count);
    myTimer.addEventListener(TimerEvent.TIMER, countdown);
    myTimer.start();
    function countdown(event:TimerEvent):void {
    myText_txt.text = String((count)-myTimer.currentCount);
    if(myText_txt.text == "0"){
    gotoAndStop(5)
    //creating a new Star instance;
    var star:Star = new Star();
    var box:Box = new Box();
    var bomb:Bomb = new Bomb();
    //creating the timer
    var timer:Timer = new Timer(800);
    var timerbox:Timer = new Timer(850);
    var timerbomb:Timer = new Timer(1000);
    //we create variables for random X and Y positions
    var randomX:Number;
    var randomY:Number;
    //variable for the alpha tween effect
    var tween:Tween;
    //we check if a star instance is already added to the stage
    var starAdded:Boolean = false;
    var boxAdded:Boolean = false;
    var bombAdded:Boolean = false;
    //we count the points
    var points:int = 0;
    //adding event handler to the timer;
    timer.addEventListener(TimerEvent.TIMER, timerHandler);
    //starting the timer;
    timer.start();
    function timerHandler(e:TimerEvent):void
              //first we need to remove the star from the stage if already added
              if (starAdded)
                        removeChild(star);
              if (boxAdded)
                        removeChild(box);
              if (bombAdded)
                        removeChild(bomb);
              //positioning the star on a random position
              randomX = Math.random() * 800;
              randomY = Math.random() * 1280;
              star.x = randomX;
              star.y = randomY;
              star.rotation = Math.random() * 360;
              box.x = Math.random() * stage.stageWidth;
              box.y = Math.random() * stage.stageHeight;
              box.rotation = Math.random() * 360;
              bomb.x = Math.random() * stage.stageWidth;
              bomb.y = Math.random() * stage.stageHeight;
              bomb.rotation = Math.random() * 360;
              //adding the star to the stage
              addChild(star);
              addChild(box);
              addChild(bomb);
              //changing our boolean value to true
              starAdded = true;
              boxAdded = true;
              bombAdded = true;
              //adding a mouse click handler to the star
              star.addEventListener(MouseEvent.CLICK, clickHandler);
              box.addEventListener(MouseEvent.CLICK, clickHandlerr);
              bomb.addEventListener(MouseEvent.CLICK, clickHandlerrr);
    function clickHandlerr(e:Event):void
              //when we click/shoot a star we increment the points
              points +=  5;
              //showing the result in the text field
              points_txt.text = points.toString();
                        if (boxAdded)
                        removeChild(box);
              boxAdded = false;
    function clickHandler(e:Event):void
              //when we click/shoot a star we increment the points
              points++;
              //showing the result in the text field
              points_txt.text = points.toString();
              if (starAdded)
                        removeChild(star);
              starAdded = false;
    function clickHandlerrr(e:Event):void
              gotoAndPlay(5);
    [/Code]

    The only thing that affects TopLink is the increment by, as increasing this is what allows TopLink to reduce the number of times it needs to go to the database to get additional numbers. Ie, an increment value of 1 means TopLink needs to go the database after each insert; an increment value of 50 allows it to insert 50 times before having to get a value from the sequence. The cache on the sequence object in the database affect the database access times. While it may improve the access times when the sequence number is obtained from the database, but I believe the network access to obtain the sequence is the greater concern and slow down for most applications. It all depends on the application usage and design though - an increment (and application cache) of 50 numbers seems to be the best default.
    I cannot say what effect the cache vs nocache settings will have on your application, as it will depend on the database load. Only performance testing and tuning will truly be able to tell you whats best for your application.
    Best Regards,
    Chris

  • Object Message Publishing problem.

    I am creating an object message and publishing it.
    Inside the listener(in the onMessage Listener) when I try to access the object, like
    ((ObjectMessage)message).getObject();
    it gives me a Deserialize error and the linked exception is ClassNotFoundException.
    I am just creating a simple object implements serializable.
    I am using the webLogic jms provider and no matter where I set the classpath to simple object it gives me this exception.

    Yeah, I had that problem.
    It was giving a problem because it could'nt find the class during running, but while compiling it was finding it.
    So I created a batch file and set the class path to this object message class and it worked fine.
    And one more thing.
    You need to set the class path inside the providers execution command file.
    For example if it is webLogic that you're using then,
    you need to set the classpath to this class inside
    startWebLogic.cmd

  • Difference between abap object and function

    hi all,
    i read the book on abap object of the difference between abap object and classical abap.
    i know that there is only 1 instance of a specific function group but somehow i still not so clear why subsequent vehicle cannot use the same function. i also can use the do and loop to call the function? if cannot then why?
    hope can get the advice.
    thanks
    using function *********
    function-pool vehicle.
    data speed type i value 0.
    function accelerate.
    speed = speed + 1.
    endfunction.
    function show_speed.
    write speed.
    endfunction.
    report xx.
    start-of-selection.
    *vehicle 1
    call function 'accelerate'.
    call function 'accelerate'.
    call function 'show_speed'.
    *vehicle 2
    *vehicle 3
    *****abap object*******
    report xx.
    data: ov type ref to vehicle,
             ov_tab type table of ref to vehicle.
    start-of-selection.
    do 5 times.
    create object ov.
    append ov to ov_tab.
    enddo.
    loop at ov_tab into ov.
    do sy-tabix times.
    call method ov->accelerate.
    enddo.
    call method ov->show_speed.
    endloop.

    Hi
    Now try this:
    REPORT ZTEST_VEHICLEOO .
    PARAMETERS: P_CAR   TYPE I,
                P_READ  TYPE I.
    *       CLASS vehicle DEFINITION
    CLASS VEHICLE DEFINITION.
      PUBLIC SECTION.
        CLASS-DATA: MAX_SPEED   TYPE I,
                    MAX_VEHICLE TYPE I,
                    NR_VEHICLES TYPE I.
        CLASS-METHODS CLASS_CONSTRUCTOR.
        METHODS CONSTRUCTOR.
        METHODS ACCELERATE.
        METHODS SHOW_SPEED.
        METHODS GET_SPEED EXPORTING E_SPEED TYPE I.
      PRIVATE SECTION.
        DATA: SPEED      TYPE I,
              NR_VEHICLE TYPE I..
    ENDCLASS.
    *       CLASS vehicle IMPLEMENTATION
    CLASS VEHICLE IMPLEMENTATION.
      METHOD CLASS_CONSTRUCTOR.
        NR_VEHICLES = 0.
      ENDMETHOD.
      METHOD CONSTRUCTOR.
        NR_VEHICLES = NR_VEHICLES + 1.
        NR_VEHICLE  = NR_VEHICLES.
      ENDMETHOD.
      METHOD ACCELERATE.
        SPEED = SPEED + 1.
        IF MAX_SPEED < SPEED.
          MAX_SPEED   = SPEED.
          MAX_VEHICLE = NR_VEHICLE.
        ENDIF.
      ENDMETHOD.
      METHOD SHOW_SPEED.
        WRITE: / 'Speed of vehicle nr.', NR_VEHICLE, ':', SPEED.
      ENDMETHOD.
      METHOD GET_SPEED.
        E_SPEED = SPEED.
      ENDMETHOD.
    ENDCLASS.
    DATA: OV     TYPE REF TO VEHICLE,
          OV_TAB TYPE TABLE OF REF TO VEHICLE.
    DATA: V_TIMES TYPE I,
          FL_ACTION.
    DATA: V_SPEED TYPE I.
    START-OF-SELECTION.
      DO P_CAR TIMES.
        CREATE OBJECT OV.
        APPEND OV TO OV_TAB.
      ENDDO.
      LOOP AT OV_TAB INTO OV.
        IF FL_ACTION = SPACE.
          FL_ACTION = 'X'.
          V_TIMES = SY-TABIX * 2.
        ELSE.
          FL_ACTION = SPACE.
          V_TIMES = SY-TABIX - 2.
        ENDIF.
        DO V_TIMES TIMES.
          CALL METHOD OV->ACCELERATE.
        ENDDO.
        CALL METHOD OV->SHOW_SPEED.
      ENDLOOP.
      SKIP.
      WRITE: / 'Higher speed', VEHICLE=>MAX_SPEED, 'for vehicle nr.',
                VEHICLE=>MAX_VEHICLE.
      SKIP.
      READ TABLE OV_TAB INTO OV INDEX P_READ.
      IF SY-SUBRC <> 0.
        WRITE: 'No vehicle', P_READ.
      ELSE.
        CALL METHOD OV->GET_SPEED IMPORTING E_SPEED = V_SPEED.
        WRITE: 'Speed of vehicle', P_READ, V_SPEED.
      ENDIF.
    Try to repeat this using a function group and I think you'll undestand because it'll be very hard to do it.
    By only one function group how can u read the data of a certain vehicle?
    Yes you can create in the function group an internal table where u store the data of every car: in this way u use the internal table like it was an instance, but you should consider here the example is very simple. Here we have only the speed as characteristic, but really we can have many complex characteristics.
    Max

  • What's the difference between a not-initialed object and a null object

    hi guys, i wanna know the difference between a not-initialed object and a null object.
    for eg.
    Car c1;
    Car c2 = null;after the 2 lines , 2 Car obj-referance have been created, but no Car obj.
    1.so c2 is not refering to any object, so where do we put the null?in the heap?
    2.as no c2 is not refering to any object, what's the difference between c2 and c1?
    3.and where we store the difference-information?in the heap?

    For local variables you can't have "Car c1;" the compiler will complain.That's not true. It will only complain if you try to use it without initializing it.
    You can have (never used, so compiler doesn't care):
    public void doSomething()
       Car c1;
       System.out.println("Hello");
    }or you can have (definitely initialized, so doesn't have to be initialized where declared):
    public void doSomething(boolean goldClubMember)
       Car c1;
       if (goldClubMember)
           c1 = new Car("Lexus");
       else
           c1 = new Car("Kia");
       System.out.println("You can rent a " + c1.getMake());
    }

  • Anchored objects and first line in InDesign CS3

    Hi, thanks for reading. I know that when you want an achored object at the beginning of a text block to all push away ("wrap around") the text, including the first line, you have to put it into a line before that.
    What I don't like about it, is that I then have an empty first line and everything else is pushed one line down. Now I could move the whole textbox up, to fit to the rest of my layout, but that's not the way one should work in InDesign. Is there a way to get around the first line?

    T-
    Select the anchored object and put text wrap on it. Then select the anchored object and go to Object/Anchored Object/Options. Select Position: Inline and set the Y Offset to the negative number that aligns your text where you want it.

  • How to create dynamic View Object and Dynamic Table

    Dear ll
    I want to create a dynamic view object and display the output in a dynamic table on the page.
    I am using Jdeveloper 12c "Studio Edition Version 12.1.2.0.0"
    This what I did:
    1- I created a read only view object with this query "Select sysdate from dual"
    2- I added this View object to the application module
    3- I created a new method that change the query of this View object at runtime
        public void changeVoQuery(String dbViewName) {
            String sqlstm = "Select * From " + dbViewName;
            ViewObject dynamicVo = this.findViewObject("DynamicVo");
            if (dynamicVo != null) {
                dynamicVo.remove();
            dynamicVo = this.createViewObjectFromQueryStmt("DynamicVo", sqlstm);
            dynamicVo.executeQuery();
    4- I run the application module for testing the method and I passed "Scott.Emp" as a parameter and the result was Success
    5- Now I want to show the result of the view on the page, so I draged and dropped the method from the data control as a parameter form
    6- I dragged and dropped the view Object "DynamicVo" as a table and I choose "generate Column Dynamically at runtime". This is the page source
    <af:panelHeader text="#{viewcontrollerBundle.SELECT_DOCUMTN_TYPE}" id="ph1">
            <af:panelFormLayout id="pfl1">
                <af:inputText value="#{bindings.dbViewName.inputValue}" label="#{bindings.dbViewName.hints.label}"
                              required="#{bindings.dbViewName.hints.mandatory}"
                              columns="#{bindings.dbViewName.hints.displayWidth}"
                              maximumLength="#{bindings.dbViewName.hints.precision}"
                              shortDesc="#{bindings.dbViewName.hints.tooltip}" id="it1">
                    <f:validator binding="#{bindings.dbViewName.validator}"/>
                </af:inputText>
                <af:button actionListener="#{bindings.changeVoQuery.execute}" text="changeVoQuery"
                           disabled="#{!bindings.changeVoQuery.enabled}" id="b1"/>
            </af:panelFormLayout>
        </af:panelHeader>
        <af:table value="#{bindings.DynamicVo.collectionModel}" var="row" rows="#{bindings.DynamicVo.rangeSize}"
                  emptyText="#{bindings.DynamicVo.viewable ? 'No data to display.' : 'Access Denied.'}"
                  rowBandingInterval="0" selectedRowKeys="#{bindings.DynamicVo.collectionModel.selectedRow}"
                  selectionListener="#{bindings.DynamicVo.collectionModel.makeCurrent}" rowSelection="single"
                  fetchSize="#{bindings.DynamicVo.rangeSize}" filterModel="#{bindings.DynamicVoQuery.queryDescriptor}"
                  queryListener="#{bindings.DynamicVoQuery.processQuery}" filterVisible="true" varStatus="vs" id="t1"
                  partialTriggers="::b1">
            <af:iterator id="i1" value="#{bindings.DynamicVo.attributesModel.attributes}" var="column">
                <af:column headerText="#{column.label}" sortProperty="#{column.name}" sortable="true" filterable="true"
                           id="c1">
                    <af:dynamicComponent id="d1" attributeModel="#{column}"
                                         value="#{row.bindings[column.name].inputValue}"/>
                </af:column>
            </af:iterator>
        </af:table>
    when I run the page this error is occured
    <Nov 13, 2013 2:51:58 PM AST> <Error> <oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter> <BEA-000000> <ADF_FACES-60096:Server Exception during PPR, #1
    javax.el.ELException: java.lang.NullPointerException
    Caused By: java.lang.NullPointerException
    Can any body help me please
    thanks

    Have you seen Shay's video https://blogs.oracle.com/shay/entry/adf_faces_dynamic_tags_-_for_a
    All you have to do is to use the dynamic table to get your result.
    Timo

  • Is Active Directory's ExtensionAttributes9 a field in user object and how to retrieve it in the class type userprincipal?

    Hi, I'm using VS2012.
    I want to use this ExtensionAttributes9 field to store date value for each user object.  I use UserPrincipal class, a collection of these objects are then bind to a gridview control.  Is ExtensionAttributes9 a field in AD user object? 
    How can I access it and bind to the gridview?
    If this field isn't available then what other field can use?
    Thank you.
    Thank you

    UserPrincipal is basically a wrapper around DirectoryEntry:
    http://msdn.microsoft.com/en-us/library/system.directoryservices.directoryentry.aspx and only provides a subset of the Active Directory, although the most common, attributes that are available for the user object.  The attribute that you
    seek is not one of them.
    By utilizing the method that I provided you a link to, it will return the underlying DirectoryEntry that was used to build the UserPrincipal object and should allow you to access the attribute that you seek.
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • Iterating through master view objects and child view objects in same page

    I am working on a project using ADF UIX and Business Components.
    I have an application module with two view objects one the master view object and the second the detail object. They are related via a view link.
    I would like to iterate through the master view objects displaying a customer name as bold text and then below each customer name I'd like to display the detail records in a table via the detail view object i.e. a seprate table for each customer.
    Is this possible - I haven't had much luck!?
    Thanks in advance.

    That's because
    $(".ms-vb2 a").
    is bringing back all the pieces that have that class with an anchor on the whole page, not just the ones in the .ms-wpContentDivSpace
    I don't know the exact syntax, but I think you need to iterate through all the '.ms_vb2 a' items as well - there are multiple ones, and do something like this inside your other grouping
    $(".ms-vb2 a").each(function(index) {
        var val=$(this).html();
       var val2=val.replace(/_/g," ")
       $(this).html(val2);
    That's not quite right but maybe that will help.
    Robin

Maybe you are looking for

  • Cover appearing incorrectly (newbie question)

    Hi, I'm creating my first epub-using EPUB 3, making it reflowable, so it should be pretty straightforward. I've got most everything working, including the TOC. It's great. But the cover is not exporting in the expected way. When I open the epub in iB

  • Exporting a file but the page is a blank pdf..

    Hi all, Im having trouble exporting my document at the moment. I do the usual file, export, save etc.. then when i open the pdf it is just a an almost blank page with everything missing. This has never happened before. Could it be because I have over

  • Help in Junit

    hi there i have downloaded Junit3.8.2 the zipped file to C:\Program Files\Java\ and i extract the file in the same place and i have been trying to run a very simple test from the command line but i've been getting errors Exception in thread "main" ja

  • Order of images

    I just updated to a canon mark iii from a mark ii and therefore had to update my version of Lightroom. I downloaded the trial version of LR 4.4 and imported my first set of images.  However, the images are not in the order in which I shot them. I att

  • Admin tool: login.jsp

    When we access the admin tool login page login.jsp we only get an empty page (with just the body html tags) Nothing else. The jsp examples in our 9.2 database installation (not iAS) seem to work OK. We have made the post-installation tasks as describ