Flowing Grouped objects

Hi All,
I am working on a product catalog in InDesign 6 and need some help flowing grouped objects (2 images and 1 text frame) through a 3 column 2 row layout. How do I set it up so when I add more products/grouped objects the current products flow to the next cell or even next page? I'm stuck! Any help on this would be greatly appreciated!

Use anchor object to anchor image to text, then when move text the image move with it.

Similar Messages

  • Error while creating MV replication group object

    Hi,
    I am getting error while creating replication group object. I tried to create using OEM and SQLPlus
    OEM error
    This error while creating M.V. rep. group object
    There is a table or view named SCOTT.EMP.
    It must be dropped before a materialized view can be created.
    In SQLPLUS
    SQL> CONNECT MVIEWADMIN/MVIEWADMIN@SWEET
    Connected.
    SQL>
    SQL> BEGIN
    2 DBMS_REPCAT.CREATE_MVIEW_REPOBJECT (
    3 gname => 'SCOTT',
    4 sname => 'KARTHIK',
    5 oname => 'emp_mv',
    6 type => 'SNAPSHOT',
    7 min_communication => TRUE);
    8 END;
    9 /
    BEGIN
    ERROR at line 1:
    ORA-23306: schema KARTHIK does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 2840
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 773
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 5570
    ORA-06512: at "SYS.DBMS_REPCAT_SNA", line 82
    ORA-06512: at "SYS.DBMS_REPCAT", line 1332
    ORA-06512: at line 2
    Please not already I have created KARTHIK schema.

    Arthik,
    I think I know what may have happened.
    As I can see you are trying to create support for an updateable materialized view.
    You have to make sure the name of the schema that owns the materialized view is the same as the schema owner of the master table (at master site).
    From the code you have shown, I bet the owner of table EMP is SCOTT.
    From the other hand, you want to create materialized view EMP_MV under schema KARTHIK that refers to table SCOTT.EMP at master site.
    According to the documentation, the schema name used in DBMS_REPCAT.CREATE_MVIEW_REPOBJECT must be same as the schema that owns the master table.
    Please check the documentation at the link below
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14227/rarrcatpac.htm#i109228
    I tried to reproduce your example in my environment, and I got exactly the same error which actually confirms my assumption that the reason for the error is the fact that you tried to create the materialized view in a schema with different name than the one where master table exists.
    I'll skip some of the steps that I used to create the replication environment.
    I have two databases, DB1.world and DB2.world
    On DB2.world I will generate replication support for table EMP which belongs to user SCOTT
    SQL> conn scott/*****@DB2.world
    Connected.
    SQL>create materialized view log on EMP with primary key;
    Materialized view log created.
    SQL>
    SQL>conn repadmin/*****@DB2.world
    Connected.
    SQL>BEGIN
      2       DBMS_REPCAT.CREATE_MASTER_REPGROUP(
      3         gname => 'GROUPA',
      4         qualifier => '',
      5         group_comment => '');
      6*   END;
    PL/SQL procedure successfully completed.
    SQL>BEGIN
      2       DBMS_REPCAT.CREATE_MASTER_REPOBJECT(
      3         gname => 'GROUPA',
      4         type => 'TABLE',
      5         oname => 'EMP',
      6         sname => 'SCOTT',
      7         copy_rows => TRUE,
      8         use_existing_object => TRUE);
      9*   END;
    10  /
    PL/SQL procedure successfully completed.
    SQL> BEGIN
      2       DBMS_REPCAT.GENERATE_REPLICATION_SUPPORT(
      3         sname => 'SCOTT',
      4         oname => 'EMP',
      5         type => 'TABLE',
      6         min_communication => TRUE);
      7    END;
      8  /
    PL/SQL procedure successfully completed.
    SQL>execute DBMS_REPCAT.RESUME_MASTER_ACTIVITY(gname => 'GROUPA');
    PL/SQL procedure successfully completed.
    SQL> select status from dba_repgroup;
    STATUS                                                                         
    NORMAL                                                                          Now let's create updateable materialized view at DB1. Before that I want to let you know that I created one sample in DB1 user named MYUSER. MVIEWADMIN is Materialized View administrator.
    SQL>conn mviewadmin/****@DB1.world
    Connected.
    SQL>   BEGIN
      2       DBMS_REFRESH.MAKE(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => '',
      5         next_date => SYSDATE,
      6         interval => '/*1:Hr*/ sysdate + 1/24',
      7         push_deferred_rpc => TRUE,
      8         refresh_after_errors => TRUE,
      9         parallelism => 1);
    10    END;
    11  /
    PL/SQL procedure successfully completed.
    SQL>   BEGIN
      3       DBMS_REPCAT.CREATE_SNAPSHOT_REPGROUP(
      5         gname => 'GROUPA',
      7         master => 'DB2.wolrd',
      9         propagation_mode => 'ASYNCHRONOUS');
    11    END;
    12  /
    PL/SQL procedure successfully completed.
    SQL>conn myuser/*****@DB1.world
    Connected.
    SQL>CREATE MATERIALIZED VIEW MYUSER.EMP_MV
      2    REFRESH FAST
      3    FOR UPDATE
      4    AS SELECT EMPNO, ENAME, JOB, MGR, SAL, COMM, DEPTNO, HIREDATE
      5*      FROM   [email protected];
    Materialized view created.
    SQL>conn mviewadmin/******@DB1.world
    Connected.
    SQL> BEGIN
      2       DBMS_REFRESH.ADD(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => 'MYUSER.EMP_MV',
      5         lax => TRUE);
      6    END;
      7  /
    PL/SQL procedure successfully completed.And now lets run CREATE_MVIEW_REPOBJECT.
    SQL>   BEGIN
      2       DBMS_REPCAT.CREATE_MVIEW_REPOBJECT(
      3         gname => 'GROUPA',
      4         sname => 'MYUSER',
      5         oname => 'EMP_MV',
      6         type => 'SNAPSHOT',
      7         min_communication => TRUE);
      8    END;
      9  /
      BEGIN
    ERROR at line 1:
    ORA-23306: schema MYUSER does not exist
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 2840
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 773
    ORA-06512: at "SYS.DBMS_REPCAT_SNA_UTL", line 5570
    ORA-06512: at "SYS.DBMS_REPCAT_SNA", line 82
    ORA-06512: at "SYS.DBMS_REPCAT", line 1332
    ORA-06512: at line 3 I reproduced exactly the same error message.
    So the problem is clearly in the schema name that owns the materialized view.
    Now lets see if what would happen if I create the MV under schema SCOTT which has the same name as the schema on DB2.world where the master table exists.
    SQL>conn scott/****@DB1.world
    Connected.
    SQL>CREATE MATERIALIZED VIEW SCOTT.EMP_MV
      2    REFRESH FAST
      3    FOR UPDATE
      4    AS SELECT EMPNO, ENAME, JOB, MGR, SAL, COMM, DEPTNO, HIREDATE
      5*      FROM   [email protected];
    Materialized view created.
    SQL>conn mviewadmin/******@DB1.world
    Connected.
    SQL> BEGIN
      2       DBMS_REFRESH.ADD(
      3         name => 'MVIEWADMIN.MV_REFRESH_GROUPA',
      4         list => 'SCOTT.EMP_MV',
      5         lax => TRUE);
      6    END;
      7  /
    PL/SQL procedure successfully completed.And now lets run CREATE_MVIEW_REPOBJECT.
    SQL>   BEGIN
      2       DBMS_REPCAT.CREATE_MVIEW_REPOBJECT(
      3         gname => 'GROUPA',
      4         sname => 'SCOTT',
      5         oname => 'EMP_MV',
      6         type => 'SNAPSHOT',
      7         min_communication => TRUE);
      8    END;
    PL/SQL procedure successfully completed.As you can see everything works fine when the name of the schema owner of the MV at DB1.world is the same as the schema owner of the master table at DB2.world .
    -- Mihajlo
    Message was edited by:
    tekicora

  • Issue regarding [Work Flow] Business Object Event Raise in ABAP Program

    Hi All,
    I have one issue regarding [Work Flow] Business Object Event Raise in ABAP Program.
    Actual TDS is as below:
    If E message type written, raise Business object BUS2005 (Production order) Event PickShortage for production order passing warehouse, transfer request
    (BUS2065 Object key) in event container. Also include table of text version of error
    messages for this set of Transfer
    Request.
    Can anybody tell me how can i write it technically in ABAP Code.
    Can anybody solve this issue!
    Thanks in advance.
    Thanks,
    Deep.

    Hi,
    Can anybody solve above posted issue!
    Thanks,
    Deep.

  • Grouped objects not saved correctly

    I group objects (graphics and text), save the file, but when I open it again, grouped objects are moved, sometimes outside the slide. This seems to affect graphics dropped onto keynote, and only of they are grouped. Graphics & text produced inside keynote, using its graphing tools are displayed correctly.
    Anyone sees the same behavior? More importantly, anyone has a fix?
    Keynote 08
    OS 10.6.2

    Hi,
    I noticed that I can not change the precision on a column in one of my tablesProbably that's a FK column.
    For the other problem - probably it's caused by merge conflict and you have in the file symbols <<<<<< >>>>>> and non valid XML elements. You can try to replace the content of the file manually using version from repository. There will be better processing of suche cases in next release.
    Philip

  • Can't group objects in Captivate?

    Why no option to "group" objects in Captivate? -- not only is this standard in vector graphics programs (Freehand, Illustrator, Flash, even in Word), it's necessary for efficient editing.

    Hi there
    You may group, but the grouping is temporary.
    Note that Captivate is not a vector application. Instead it is a raster based applicaton. Perhaps that explains it?
    If you really would like to see it emerge as a future option, please submit a Wish Form to ask for it.
    Click here to visit the Wish Form/Bug Reporting Form
    Cheers... Rick
    Click here for Adobe Certified Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • CP5 - W7 - Nested/Grouped objects - Not possible

    Hi dear community,
    I use Photoshop, Premiere, after effects, and many other adobe produts...
    All of them have something in common, you can group or nest objects, vector based or pixel based media does not matter.
    In Premiere, yoy can group a film a title and some effects into a cilp, and then use that clip as a object.
    In Photoshop you can create folders under layers and use those to manage several objects at once.
    But what about captivate? Even the "not to be mensioned here PowerPoint" can group objects.
    Why is it so that within a company one does not reuse smart ideas and maby code?
    Do not get me wrong, I love all the posibilities with captivate, but explode sometimes on the small unessesary to forget to develop things.
    And to you who want to tell me about SHIFT, that is not what I am talking about
    Thank you for reading!
    // Daniel

    Hello,
    Sorry for that, must have been tired. The link is in the main page of these CP-forums, but here you have it too:
    Feature Request Form
    Lilybiri

  • Change center of grouped objects

    Hi,
    I am making a very simple animation and this might not be the best tool for it but I don't know another (and I'm using CS4).
    For each frame of the animation I have an artboard and in each artboard I move whatever objects need to be moved in that frame relative to the previous one.
    When I look at the movie, each frame is not properly aligned with the previous one and so my question.
    Is it possible to group all objects in a given frame and then define a center for all the whole group so that I can change this center to be a static point in the animation and then use that center to position all grouped objects relative to the artboard?
    Thanks in advance
    Pablo

    You can set a reference point in a symbol.
    But maybe you'd better show something ...

  • Enumerating members of a Group object

    Is there anything specific you must do to enumerate the �member� attribute of a group Object via JNDI.
    I am using an instance of ADAM as a test Directory. I can search for Group objects with no problem, but when I process the results/object attributes I find that the member attribute is always null ?

    The problem was with my Test Directory not my JNDI code - installed and populated a new instance of my ADAM test Directory and Group member enumeration is working fine now.

  • Resizing grouped objects keynote

    In keynote I would like to be able to resize grouped objects without maintaining proportionality - is this possible?
    The "Constrain Proportions" button is greyed out for grouped objects for me.
    I'm using version 6.2

    Why can't I resize grouped objects in the new Keynote without constraining proportions
    The only people who can give an informed answer are the Apple engineers, however they don't post in the user to user community.
    Keynote 5.3 certainly could do this, but the latest version of Keynote is a completely separate application with different tools and features and file format.
    You can let Apple know of your concern by using:     Apple Feedback

  • Regarding [Work Flow] Business Object Event  Raise in ABAP Program

    Hi All,
    I have one issue regarding [Work Flow] Business Object Event Raise in ABAP Program.
    Actual TDS is as below:
    If E message type written, raise Business object BUS2005 (Production order) Event PickShortage for production order passing warehouse, transfer request
    (BUS2065 Object key) in event container.  Also include table of text version of error
    messages for this set of Transfer
    Request.
    Can anybody tell me how can i write it technically in ABAP Code.
    Can anybody solve this issue!
    Thanks in advance.
    Thanks,
    Deep.

    Hi,
    Can anybody solve above posted issue!
    Thanks,
    Deep.

  • Last modified by for a user/group object

    Hi All,
    Is there any way to find out who has last modified the User/Group object in the portal.
    I can see the last account unlocked by for the user object. But is there any attribute to find out who has last modified the assigned groups/users for the user/group respectively or any change in the user/group profile.
    Thanks in advance,
    Siva
    Pts will be rewarded for useful answer.

    Hi Siva,
    as far as I know there is no standard way to find out who modified a user/group object in the portal. But I just checked the official API of <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IUser.html">IUser</a> (represents a portal user) and <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IGroup.html">IGroup</a> (represents a portal user group) and found out something interesting. <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IPrincipal.html">IPrinciple</a> (super object of IUser and IGroup) has a field LAST_MODIFIED_BY.
    Looks like you can write your own portal component, which allows you to find out who has modified your users last.
    Best regards,
    Martin

  • Grouping objects then moving the grouped objects

    In adobe Pro XI when I group objects and try to move the grouped objects only one of the objects move. I need to move all the objects at one time

    I'm not able to reproduce this issue.  Are you using the Edit Text & Images tool to select your content within Acrobat XI?

  • Animating grouped objects for ipad presentation

    I am working on a 134-slide timeline presentation in keynote that I'm designing on my Mac and then transerferring to an iPad. I have read that to avoid problems translating the presentation from a Mac to an iPad to avoid grouping objects that an effect will be applied to. I'm taking that to mean that includes animation? I have several slides where three different blocks of text need to dissolve into the frame at the same time. It makes sense to me to group these instead of applying a separate build to each text block but since reading that advice (found here: https://discussions.apple.com/docs/DOC-4114), I am concerned about what I should do.
    Does anyone have any answers that would either verify this advice or refute it?

    The information in the discussion you linked to is accurate and correct.
    This Apple support page verifies the issues involved in going from Mac to iPad.
    My own experience involves testing exhaustively all presentations that are destined for the iPad.  This can be very problematic when users disregard the guidlines set out below:
    Apple Knowledge Base Mac to iPad presentations

  • Powershell - Select-Object -Unique vs Group-Object

    Hi,
    I have the following problem with powershell.
    I have a list of strings call it $machine_list which
    I know there are duplicates.
    The following  code produces the following output:
    $machine_list.count -- 15375
    $a = $machine_list | Select-Object -Unique
    $a.Count -- 12134
    $b = $machine_list | Group-Object -NoElement
    $b.Count -- 12082
    I am trying to get a unique list and looking at different
    ways of doing it.
    So in my example above why are the counts different?
    Should they not be the same - $a.Count -eq $b.Count?
    I am hoping somebody can explain this in more detail to me.
    Also is there a way I can compare the results to see how they
    differ? (Comparing $a with the Name Values of $b).
    Thanks,
    Ward.

    Dirk - another way to think this out.  "group" means that each named group has a unique name.  In a list of strings the group name and object are identical so the list of group names is the list of identical strings.
    Select -unique and sort -unique produce an identical set of lists.  Select -unique, however, does not necessarily produce a sorted output although the output is guaranteed to be unique.  What you may be mixing up is that many learned to add sort
    in PowerShell V1 because they did not get a sorted output from a unique operation.  As I posted above, this issue has come up constantly as people start to learn databases.  A company that I used to work for wrote its own 'uniquing' code.  It
    always produced a sorted output as a byproduct of the method.  When we implemented SQL database technology the programmers could not understand why select unique in SQL did not produce a sorted output.  They constantly complained that it was a bug.
    In most cases we would like a uniquing operation or not sort the results.  Suppose I have a result set order a specific way.  Now I want group it on a column but I do not want the order of the records changed.  Grouping and select unique should
    not change the order.  There are many discussions in the database field as to why this needs to be.  I am not sure which set of standards PS follows.  In PS1 it appeared to follow the industry standard.  Maybe I will test it later.
    ¯\_(ツ)_/¯

  • Using grouped objects as drag and drop source

    I am creating a drag and drop interaction. I have an image grouped with a text area and would like to make them draggable together as a single drag source.
    However, even though they are already grouped, when I edit the drag and drop interaction, they can only be specified as separate sources.
    Is it possible to use grouped objects as a single source? How?

    Have tons of workarounds, but none for this. It is simply not possible to indicate a group as a drag object, you have to put everything in one object. Maybe if you explain what is in the group?

Maybe you are looking for

  • Everytime i open mail, it asks me to setup an email account

    Since i got my new mac book pro (late 2013 edition) i have been having challenges with Mail.  i haven't been able to set up my accounts. When i open mail, it asks me to set up my icloud mail account, and it doesn't show in the inbox.  when i try to c

  • Drop-down list to trigger instance manager

    I may have bitten off more than I can chew with this one, but I have two pages. One comprises a checklist of Y/N/NA drop-downs; the other page has a repeating table row. If the drop-down selection is N I want the Instance Manager to trigger a new row

  • SOLMAN_SETUP issue in J2EE config

    Hi, I'm configuring SOLMAN and in client 100 I'm runnign SOLMAN_SETUP and until step 3 of initial Configuration, everything was ok. I've created the SOLMAN_ADMIN on the first step, then the ABAP config, and on the step 3 when I click to open the popu

  • Creating tabular form using SQL query

    Hi, I need to create a tabular form using an SQL query so that multiple rows of a table are displayed on screen and are editable to the user. I have created this sort of form before using the Tabular Form wizard however for this form I need to enter

  • Photoshop Elements Organizer 9 loses files?

    I download files from the card reader with the Organizer GET PHOTOS. It creates thumbnails, makes new folders in My Pictures as usual. When I try th open a thumbnail I get a lost file error. The Organizer can see all files in My Pictures but the ones