Setting column count dynamically for a Group

Hi Experts,
i want to set the column count dynamically for a group.
Thnks,
Ramani.

You probably mean you want to change the colCount value for a GridLayout (assigned to a Group), right?
To change this property from a view controller method, you can
- create a boolean context attribute "changeColCount" and set it to true in the controller method
- check this flag in method wdDoModifyView(), access the GridLayout instance and change the colCount value
- reset the flag afterwards
Armin

Similar Messages

  • The iPad doesn't seem to want to set up an email for a "group" in my contacts. On my iMac, when I type the name of a group, the email addresses of everyone in the group appear in the "To" line of a new message. Not so with the iPad. Help?

    The iPad doesn't seem to want to set up an email for a "group" in my Contacts. When I type the name of a group in the "To:" line of a new message on my iMac, all the email addresses of the group automatically appear. Not so with my iPad. Help?

    Apparently Groups are not supported in the Mail App on the iPad. Read this thread and see Michael Morgan's post for a workaround.
    https://discussions.apple.com/message/13084823#13084823

  • How to set the Default Dashboard for a Group

    Hello,
    we have, in our project, two groups defined in the dashboard; How can we set the Default Dashboard for each Group?
    Actually every user of both groups at logon views the "my dashboard" page.
    Thank you

    hi
    check this http://obiee101.blogspot.com/2008/06/obiee-directing-user-to-default.html
    also this..
    http://bvellinger.blogspot.com/2008/04/default-dashboard-obiee.html

  • Appraisal: Setting Column/ Row Access for substatus

    Dear All,
    I was setting column & row access for the Appraisal template.
    I have already set it for the three main status i.e. "In Planning", "In Review" & "In Process".
    But i am unable to set it for different substatuses i.e. substatus of status "In Process". Actually i want to give different access for different substatus of the main status.
    Looking for your valuable advice.Please consider this matter as urget.
    Thanks & regards,
    Tarun

    Hi Tarun
    How did u do it thru ABAP? Could you kindly explain me in detail? Have u changed any standard FM? Please explain
    Thank you in advance

  • How can i set the Header colors for a group ui element

    Hi All,
                  I Created a View Container in that i crated 2 views. In first view i created a group and in second
    view also i created a group. I want to set The First view group header colour as Golden colour and for second view group heder colour as Green colour. Please any one help me on this.
    Thanks&Regards,
    Bhargava.

    Dear Jean,
                     i creted the theam. in the Complex Element Group i changed the Primary group colour to Golden Colour and secondry group colour to Green Colour. but in my application for all group's header it iis taking the golden colour.
                             in my senario i have 2 views in view container. each view have the separate Group ui element. i wan to set golden colour for first view's group and Green colour for the Second View Group.
    how can i do that.
    Thanks&Regards,
    Bhargava.

  • 10g: unable to set default dashpoard (portalpath) for multiple groups

    Hi All,
    I am facing a problem while setting portal path for multiple groups.
    I have two RPD groups and each group need to have it's own default dashboard as a lending page.
    We are using RPD authentication and can't use database table to save portalpath for each user or group.
    What have I tried so far is as follows:
    We have two groups Group1 and Group2 which need to have default dashboard as *\shared\_portal\dashboard1* and *\shared\_portal\dashboard2* respectively.
    Approach 1: Create a Session INIT block with the following query:
    select case when 'Group1' = ':GROUP' then '\shared\_portal\dashboard1' else '\shared\_portal\dashboard2' end from dual
    Result: Failed - As all the users are directed to '\shared\_portal\dashboard2'. Somehow *':Group'* isn't getting the GROUP assigned.
    Even tried replacing ':GROUP' with 'VALUEOF(GROUP)' in SQL query, however it didn't help.
    Any help with achieving the same functionality will be appreciated.
    Regards,
    Kansal

    Kansal,
    Here you go...make use of below example and change as per you need.
    Create a SESSION - INIT BLOCK with this in query...Say PPIB
    SELECT CASE WHEN 'VALUEOF(NQ_SESSION.GROUP)' = 'DASH_usr' THEN '/shared/test' WHEN 'VALUEOF(NQ_SESSION.GROUP)' = 'DASH_ctr' THEN '/shared/test1' END FROM DUAL
    Assign a variable to it with name PORTALPATH and default to anything say '/abc/'
    This will work for sure...You can test this in RPD as well.
    Hope this helps

  • How to set column heading dynamically?

    Hi:
    How can I set a column heading dynamically -by PL/SQL code- ?
    Regards,

    Hi,
    Create a formula field, and return desired heading depending on your conditions, and use that field as the column header.
    Regards,
    Manu.

  • Logical Aggregate Column (count(distinct)) Does Not Group for SQL Server DB

    When utilizing the count(distinct column_name) aggregate function within a Logical Fact source in the Business Model and Mapping layer in the RPD file the output in BI Answers is not grouping correctly for SQL Server 2008 database sources only. All Oracle database sources represent the same aggregate column correctly within BI Answers.
    I am using OBIEE version 10.1.3.3.3
    Does anyone know how to resolve this issue?
    Thanks in advance,
    Kyle

    I thought that I would update my current findings with this issue. If you display the report in BI Answers as a Pivot Table view the aggregate column displays properly, it does not in a Table or Compound Layout view for some reason. I am still working with Oracle Support on this.

  • How can I create events dynamic for a Group/List?

    Hey,
    atm I'm programming a little application where i want to add elements to my center-pane.
    Simpyfied I got:
    - Center Pane : here shall the elements appear on right click in bottom-pane. This pane shall be used as anything like a playground where you can drag/drop and connect items from the bottom-pane
    - Bottom Pane: here I got about 180 elements which are quite equal. This is sth like a menu of items which you can use. I realised them in java classes extended from a parent class with differend calulations.
    What I want:
    I want to create an event handler for EACH of the "menu" elements dynamically. Just sth like:
        for (int i = 0; i < basic_menu_list.size(); i++)
          final Element el = hbox_bottom.getChildren().get(i);
          hbox_bottom.getChildren().get(i).setOnMouseClicked(new EventHandler<MouseEvent>()
            public void handle(MouseEvent event)
              if (event.isSecondaryButtonDown())
                playground.add(el);
                redrawPlayground();
        }But as i expected this doesnt work...
    Now my question:
    How can I solve this problem? Is there any option to listen to all elements of a group without hard-coding every single listener?
    Thanks for your help,
    Martin

    Hello User,
    Why did you expect that it wouldn't work?
    You have an example with "transition" apply on a bunch of circles in the Getting Started with JavaFx (http://download.oracle.com/javafx/2.0/get_started/jfxpub-get_started.htm)
    Here a basic example class...
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.TextBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.Pane;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class HelloWorld extends Application {
        //~ ----------------------------------------------------------------------------------------------------------------
        //~ Methods
        //~ ----------------------------------------------------------------------------------------------------------------
        public static void main(String[] args) {
            // Entry point
            Application.launch(args);
        @Override
        public void start(Stage mainStage) throws Exception {
            Pane pane = new Pane();
            Scene scene = new Scene(pane, 200, 200);
            VBox vBox = new VBox();
            TextBox input1 = new TextBox();
            TextBox input2 = new TextBox();
            vBox.getChildren().addAll(input1, input2);
            for (Node input : vBox.getChildren()) {
                input.setOnMouseClicked(new EventHandler<MouseEvent>() {
                        public void handle(MouseEvent event) {
                            System.out.println("test click");
            pane.getChildren().add(vBox);
            mainStage.setScene(scene);
            mainStage.setVisible(true);
    }Niculaiu

  • Set Output Dir Dynamically for File Adapter

    Hi,
    How can we set the output dir depending on a variable from the BPEL process the to write a file to a dynamic directory?
    As we can do for the filename...
    Please advise
    Thanks
    JO

    judging by the lack of responses to your post, i think it's safe to assume that it is not currently possible to dynamically set the directory used.
    Toby

  • Where to set creationPolicy and borderThickness for s:Group?

    I'm porting a Flex 3.1 application to Flex4.5.
    Here is the Flex 3.1 code:
    <mx:Canvas creationPolicy="auto" borderThickness="0" ...>
         <mx:HBox >
              <mx:Image .... />
         </mx:HBox >
    </mx:Canvas >
    This is the Flex 4.5 code I got so far:
    <s:Group ...>
        <s:layout >         
             <s:HorizontalLayout ..... />
        </s:layout >    <mx:Image ...  />
    </s:Group>
     ~I could not find the place to set createPolicy and borderThickness with Flex 4's s:Group. Is Flex 3's mx:Canvas equivalen to s:Group in Flex4?
    I know s:Panel has the creationPolicy, but I do not want to use Panel. Any suggestions? Thanks.

    Group's aren't skinnable.  I think the intent is that they're job is  simply to manage layout, so if you want a border, you wrap your group in  another component like BorderContainer.
    As for  creationPolicy, I'm guessing that you're Canvas was being used in one of  the mx Navigator classes (TabNavigator, Accordion, etc.).  You can wrap  your BorderContainer in a NavigatorContent component to manage creation  policy.
    <s:TabNavigator>
        <s:NavigatorContent>
             <s:BorderContainer>
                 <s:Group>
                 <s:Group>
             </s:BorderContainer>
        <s:NavigatorContent>
    </s:TabNavigator>
    Message was edited by: -Hob

  • Set field cataglog dynamically for an editable table

    Hi All,
    I have a requirement where to show a table whose field catalog will be changed conditionally( dynamically )  and that table has to be editable, in that table few columns could be  Drop down fields and few columns are disabled and few can be normal editable fields.
    What is the best way to do it, this i can achieve very well by in dynpro with CL_GUI_ALV_TABLE  class, i am new to WDA , so i couldn't find the good solution.. whether to use direct table element or ALV component. can i acheive the above functionality with either of the option.
    Appreciate your help.
    Regards,
    Shiva.

    Hi Shiva,
    Visible Colums:
      DATA: ALV_CONFIG_TABLE  type REF TO CL_SALV_WD_CONFIG_TABLE.
      DATA: wd_table_usage TYPE REF TO if_wd_component_usage.
      DATA: wd_table TYPE REF TO iwci_salv_wd_table.
      DATA: column_settings TYPE REF TO if_salv_wd_column_settings,
                 column  TYPE REF TO cl_salv_wd_column.
    Create an instance of ALV component created ALV_COMP is usage name
      wd_table_usage = wd_this->wd_cpuse_alv_comp( ).
      IF wd_table_usage->has_active_component( ) IS INITIAL.
        wd_table_usage->create_component( ).
      ENDIF.
      wd_table = wd_this->wd_cpifc_alv_comp( ).
      alv_config_table = wd_table->get_model( ).
      column = column_settings->get_column( 'MANDT' ).
      column->set_visible( if_wdl_core=>visibility_none ).
    There are many other Methods in class cl_salv_wd_column.
    For editable Colums (and DropDown e.g.) have a look at this tutorial:
    [SND-Tutorial - Conditionally Assigning Colors and Input Enable to ALV Columns|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/f0625002-596c-2b10-46af-91cb31b71393]
    Hope it helps!

  • Setting an endpoint dynamically for a business service

    I need to set an endpoint for a business service dynamically in the message flow of a proxy service. I'm basically doing what it says in this article(page 9 under heading - Registry per Individual Domain):
    http://e-docs.bea.com/alsb/docs26/pdf/deploybestprac.pdf
    I've gone to the link to the User guide that it gives in there for "Using Dynamic Routing". And I've pieced together most of what I need to do. I have a dummy business service with a dummy URL. I'm making a service callout and getting and endpoint back and saving that endpoint address to a variable. (that's all in a stage in a pipeline node.) Then I dynamically route it to dummy business service. The part I don't know how/where to do is reassign the dummy business service's endpoint to the endpoint I got back from my service callout.
    Can anyone help me with this?
    Thanks,
    Brittany

    Try with a 'Dynamic publish to service' action with:
    <ctx:route isProxy="false">
    <ctx:service>{ $yourBusinessService }</ctx:service>
    </ctx:route>
    where $yourBusinessService is the variable hosting the uri of your business service.
    Regards
    ferp

  • How to set queue names dynamically for MQ Adapter - SAP XI

    Hi Friends
      I have a scenario where I should send a message to multiple queues ( more like broadcasting ) using a single communication channel of MQ Adapter. The scenario is like this
    1. If the message content contains value '111' then message should go into Queue A, Queue B, Queue C
    2. If the message content contains value '222' then message should go into Queue A, Queue B
    I will store the content values inside a table ( value and queue names ) and can pick it up inside BPM but want to know how to change the queue name property of MQ series adapter. I will do this inside a loop so the message can be sent to multiple queue names but want to know how to change the queue name property of receiver communciation channel.
    I appreciate the help in providing the answer.
    thanks
    Kannan

    Amaresh
      Thanks for your answer but my question is specifically targeted towards MQ adapter and the queue name which has to be dynamically changed. I can do the dynamic changes for file adapters but want to know how to change the queue names in message mapping or inside BPM.
    regards
    Kannan

  • Setting multiple album images for a group.

    I want to put multiple images for CDs that I have (Front, back, inside of booklet, etc). Can I do this for an entire CD or do I need to do each song separately?

    You can add multiple album artwork images to multiple tracks at the same time, but not through the Multiple Song Get Info pane. Each time you drag an image onto the Artwork box in this pane, the previous image is erased.
    To add multiple images, select your tracks in the main iTunes Window, and make sure that Artwork box under the Source Menu is visible. Then just drag the image you want to add to the tracks onto this pane, but make sure you FIRST add the image you want to appear FIRST. There isn't any way to reorder the images in a group of tracks - that has to be done in the individual track's artwork pane (Get Info>>Artwork tab).
    Lita

Maybe you are looking for

  • Error While Creating DB link

    Hi All, My OS: Windows Server 2003 DB Version: 10.2.0.1 I created a Public Database Link on my server so that user can access the database using database link. The command i issued is create public database link 10g_11g_link connect to test identifie

  • Strange behavior - icon thumbnail instead of image - CC@OSX10.10

    Hi, my CC (@OS X 10.10.3) showing a strange behavior using vanishing point filter. After defining grid and try to paste the image OS X paste the icon thumbnail instead of the image, Many thanks in advance!! br Joachim

  • Also I need ndiswrapper support for solaris 10

    I have a linksys -G type router and my computer uses a Linksys Wireless-G PCI Adapter with SpeedBooster which works in Linux like mandrake , debian systems like knoppix and kanotix but their are some buggy like debian also that don't let me change th

  • No clearing data generated

    I have run F110 payment, payment documents and dme is generated, in fbl3n, vendor all have cleared documents, but I set up clearing document type in payment method configuration, why cleared document type for that vendor is generated? how to generate

  • Using Web Dynpro to bypass a r/3 selection screen

    Hello, Very new to portal development and looking to see if there is a way to do this. Overview: I created a WebDynpro to display R/3 information in a table via an iView. This information contains R/3 report variants based on user security. The user