How to change the index (?) (position of subforms inside other subforms) using code?

Hi, let say I have something like this (flowed positioning):
Main subform
     subform A
     subform B
     subform C
And I want, by code to change them to:
Main subform
     subform C
     subform A
     subform B
How can I do that?
Thanks.

1. What is it you want to do exactly?
Seems like you want to get the last subform, insert it at the first position and then have the subsequent subforms beneath the subform placed on first position...
2. That's it?
3. Can you have more subforms than only 3?
4. Does all the three subforms has the same fields inside them?
5. Or you just want to change the position of the flowed subforms?

Similar Messages

  • How to Change the Alias name for Internet user in SU01 tr code through cod?

    Hi Guys,
                 My req is we have to change the Alias name(SU01 tr code) for the existing users thru code.So can anybody tell me how to change the Alias name like which we do it in SU01 tr code thru code or FM.?
                Is there any FM for tha changing Alias Name?
    Thanks,
    Gopi.

    Hello Gopi Anne ,
                                 You can use the following FM / BAPI :
    BAPI_USER_CHANGE
    MY_BAPI_USER_CHANGE
    For BAPI_USER_CHANGE :
    You need to make use of the IMPORT parameter :
    ALIAS     TYPE     BAPIALIAS                               User Name Alias
    ALIASX     LIKE     BAPIALIASX                               User alias change flag
    Thanks,
    Greetson

  • How to change the background color of a cell in datagrid using flex3

    i want to change the background color of a cell.....how can i achieve this.....and also i want to know how a spacing cane be done between cells in a datagrid...plzzz help me???

    The only way I can see to do this is to use an item renderer for your cells.  This is really scruffy and would need tyding up, and maybe with a little more time could do better or someone else may have an idea but none the less this works.
    Define a custom component as below;
    This has logic to see what the value of the data is proveided by the dataprovider for the row, and if it matches the conditions in this case is equal to 5 sets the background color.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="88" height="26" dataChange="doColor()" borderColor="#000000" borderStyle="solid"
        backgroundAlpha="1">
        <mx:Script>
            <![CDATA[
                private function doColor():void {
                    if (data.value == 5) {
                        setStyle('backgroundColor', 0xcccccc);
                    } else {
                        setStyle('backgroundColor', 0xffffff);
            ]]>
        </mx:Script>
    </mx:Canvas>
    Now just apply the item renderer in the datagrid and that will do it.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"  xmlns:ns1="*">
        <mx:Script>
            <![CDATA[
                import mx.collections.ArrayCollection;
                [Bindable]
                private var ac:ArrayCollection = new ArrayCollection([
                    {value : 1},
                    {value : 2},
                    {value : 3},
                    {value : 4},
                    {value : 5},
                    {value : 6},
                    {value : 7},
                    {value : 8},
                    {value : 9},
                    {value : 10}
          ]]>
        </mx:Script>
        <mx:DataGrid x="40" y="36" width="408" height="193" dataProvider="{ac}">
            <mx:columns>
                <mx:DataGridColumn headerText="Column 1" dataField="value" itemRenderer="MyComp"/>
                <mx:DataGridColumn headerText="Column 2" dataField="col2"/>
                <mx:DataGridColumn headerText="Column 3" dataField="col3"/>
            </mx:columns>
        </mx:DataGrid>
    </mx:Application>
    I hope this helps
    Andrew

  • How to change the response of human task if we are using the skip rule

    Hi,
    We have developed the request workflow in OIM11g for this we are using the Beneficiary Manager approval composite to approve the request by his manager.
    We are using the skip rule in the human task component to skip the user if the requester is beneficiary manager.
    After the skip rule is executing the the request is going to failed state because of the response it is sending to the OIM
    The skip rule is working as expected but the response sending to OIM is COMPLETED instead of APPROVE.
    Please let us know the steps to change the response to Approve after the skip rule is executed or how to add the response COMPLETED in OIM.
    Thanks

    You will have to write a conditional block outisde the task where you would check if the skip condition is met and if yes then you will have to hard code the approved conditions into the payload for the task outcome.
    <assign name="SetAutoApproveConditions">
                            <copy>
                                <from expression="string('APPROVE')"/>
                                <to variable="ApprovalTask_1_globalVariable"
                                    part="payload"
                                    query="/task:task/task:systemAttributes/task:outcome"/>
                            </copy>
                            <copy>
                                <from expression="string('COMPLETED')"/>
                                <to variable="ApprovalTask_1_globalVariable"
                                    part="payload"
                                    query="/task:task/task:systemAttributes/task:state"/>
                            </copy>
                        </assign>HTH,
    BB

  • How to change the NAT type to Open on a Imac using bridged connections

    Hey everyone I have a problem. I play xbox live with my friends and i just moved and dont have a wireless adapter anymore. so i have bridged connections with my imac and xbox via ethernet. It works perfectly, but the only problem is that when i connect it say that my NAT type is strict. To play with all my friends i need a open NAT type. Does anyone know how to make the NAT type on the Imac open. And i do have a D-link router model DIR-625. When i called D-link they said to port forward, i did and it still didnt work, they said it must be the fire wall on the mac, microsoft said the same thing, that it might be the fire wall. I checked the fire wall and it said "All Incoming connections are allowed".
    I would really much appreciate it if someone helped me. Thank you!

    Yes, most likely. Microsoft has provided a list of XBox LIVE!-compatible routers. Since the OS X Internet Sharing feature is limited, there is no way to configure port mapping or placing the XBox in a DMZ with it. Typically, you either use a compatible router or configure port mapping/DMZ for non-compatible routers.

  • How to change the default position of context menu item? (C#)

    Hi,
    I have included a calendar context menu item with my Outlook Addin. But by default, its positioned at the last as shown in the picture below:
    I need a way to make it as the fourth item instead of last one. Also, I want set an icon for the same. How can I do that?
    Appreciate if you can give some sample examples.
    Thanks in advance.
    Thanks Prasad

    Hello Prasad,
    The
    Customizing Context Menus in Office 2010 article in MSDN describes the basics.
    You can specify the IdMso value of the built-in control after/before you need to insert your own:
    <button id="MyBtn" label="MyButton" insertBeforeMso="OpenSelectedItems" />
    See
    Office 2013 Help Files: Office Fluent User Interface Control Identifiers 
    for IdMso values.

  • How to change the index page of tomcat to a specific page in a  web app.

    hi all
    i am trying to figure out a way to change default application to a specific web application deployed in tomcat, so that when you type localhost:8080, it will start with the web app. basically i want to get ride of the context or map the context to the default page. i.e. map this http://localhost:8080/example/ to http://localhost:8080/. thanks.

    maybe i didn't explain myself clearly as to what i needed to do.
    i have created a web application and deployed into tomcat 5.5 with a context of "example". the path looks something like this: $catalina_home/webapps/example. in order to access the application, i need to type http://localhost:8080/example in the browser. is there any way to change it so that when i type http://localhost:8080, it will take me to my web application without accessing the tomcat index page.
    thanks.

  • How to change the row position in a datatable

    I am storing my list of lists in a datatable :
    DataTable table = new DataTable();
    for(int i = 0; i < info.Count; i++)
    table.Columns.Add(names[i]);
    for(int col = 0; col < info.Count; col++)
    for(int rows = 0; rows < info[col].Count; rows++)
    DataRow r = table.Rows.Add();
    r[names[col]] = info[col][rows];
    However the problem is that it is stored diagonally. Meaning that the first column is shown on rows 0-3, the second column 4-7 and so on. I want all the columns to be stored in positions 0-3. How can I do that ?

    "What would you suggest instead of datatable? I just want to show info of my lists that's all."
    Show in a control such as the WinForms's DataGridView or something similar?
    If you do not known the number and type of columns in advance then yes, using DataTable is a convenient way to do that as binding the grid to the list of lists won't work. Well, if the number of rows you can consider populating the grid control directly.
    If you do know the number and type of columns it's in general preferable to create a class to hold the information that corresponds to a row and then use a list of objects of that class. That list can easily be displayed in a grid control.

  • How to change the column position for address in BP

    Hi,
    My user want to move up the column of "Attention To" just after "Address Name", I tried in UI(Matrix) but seems UI (2007) doesn't support that kind of operation in Matrix. I am wondering if we can do something inside SAP. Apparently the address is a matrix, but why there is no setting like form setting for this matrix?
    Thanks,
    Lan

    Hi.....
    Open Business Partner Master Data Window.
    Open Address Tab.
    Now click on Form setting as it goes enable at Addess Tab. It also works in case of Contact Person......
    It happens in SAP 8.8 and SAP 2007B, 2005B.......
    Regards,
    Rahul

  • How to change the index(appearance) of the array

    Attachments:
    array.vi ‏7 KB

    Right click choose customize
    Switch to Customize mode
    Right click and choose edit items.
    I hope that is what you are asking.
    Ben
    Message Edited by Ben on 08-21-2008 07:31 AM
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction
    Attachments:
    Advaced_Customize.PNG ‏15 KB
    Switch_To_Customize.PNG ‏9 KB
    Edit_Items.PNG ‏6 KB

  • How to transfer the attributes of one page to other without using submit

    hi friends,
    I have faced a prob when i use submit to transfer the parameter from page1 to page 2 i can get the parmeter in page 2. But when u try to implement through action of onclick i cannt able to fetch the value of the parameter in the jsp page2. is there is any other option equivalent to request.getParmeterValues. in setting the attribute.
    can any one give me the solution to overcome this prob it will be appreciated and thanked by me.

    Hi Anand,
    We can send request to server with submitting the page.
    why dont you try using xml over http.
    This is some thing like thru java script you can pass the values to some Servlet, construt the object there, while returning from the servlet just put your response thru printwriter pw object like pw.print(response);
    In java script you can mensioned to retrieve the servlet result.
    check the following code, it would help you
    EXPLORER_xmlHttp = new ActiveXObject("Microsoft.xmlHttp");
    serverURL = "someUrl.com"+ "method=" + "callMethod.do";
    EXPLORER_xmlHttp.open("POST",serverURL,true);
    EXPLORER_xmlHttp.setRequestHeader("ClientType","HTML");
    EXPLORER_xmlHttp.onreadystatechange = Return_Method_onready;
    (control will come from servlet to the above method)
    set the other headers what ever you want...
    then set the input parameters
    EXPLORER_xmlHttp.send(inputAttr);
    from Servlet you get the response directly to the javaScript method which you specified.
    this is how it works.
    Regards
    Jyothi Prakash

  • How to change the tab on a web browser

        Hello,
    I do not know how to change the (index.html) tab. When you have several of the tab on your browser open, the name appears in the middle of tab, mine continues to say the INDEX.html. I just need to know how to go into dreamweaver and change the title tag. In the actual HTML I have changed it and it still hasn't worked. please help, thanks!

    Oh I see. You also posted another question about the page not working on mobile devices
    http://forums.adobe.com/thread/1342179
    The page name in the browser tab comes from the text inside the <title> tag.
    Line 5: <title>INDEX.html</title>

  • How to get the index of Mult column list box

    Hello all,
    I need small help. Please help me.
    Is there is any property to change the "Multi column list box" row index position dynamically?
    I want to change the index position at runtime like below.
    Munna
    Solved!
    Go to Solution.

    It's called Top Left Visible Cell. There aren't that many properties there.
    Try to take over the world!

  • How to change the size of cursor

    How to change the size of cursor  in flash,when we use dynamic text box or input text box the cursor is covering the whole height of the text box.is there any way to reduce the size of cursor

    In input text box while entering some value, the blinking of cursor is covering the whole text box,
    When i use the code
    Selection.setFocus(instance name of text)
    The cursor blinking is covering the whole text box height

  • How to change the color of the text field of form

    Hi ,
    Is there any way to change the color of the text field of the form........
    Thnx in advance .......
    Cheers,
    Eman

    Hi Bob. I'm new to these forums and I'm not sure of protocol and exactly how this is supposed to work, so If I'm doing this wrong then please excuse me and let me know.
    I liked you solution on 'How to change the color of an Item on a form' using <blink>.
    I'm new to this application and coding as well so its kind of foreign to me.
    Working on a Report Page,
    I would like to have item, :P1_JOB_NO blink when the difference between sysdate and :P1_DATE_DUE < 7 days.
    I can identify the job_no which should blink by using the sql statement:
    SQL> select job_no from oax_projects07 where
    2 (sysdate - date_due < 7) and
    3 emp_name = 'GARY PILKENTON';
    JOB_NO
    20060627 050
    But I dont know the proper syntax to make it blink,
    or when to plug the syntax into.
    ie, is it a process, a validation, etc.
    Do you have any advice for me?

Maybe you are looking for

  • HDMI doesn't support HDCP.

    What could be the cause of the issue? Was having a great time enjoying the iTunes content until recent updates causes such matter. Is Apple team looking into this?

  • How to create a home page (with flash images) in Oracle Portal  10g

    Hi, I want to create a home page in Oracle Portal 10g using flash images. How to create all those things ? Weather it should be created in pages or pagegroups or HTML portlet / some other. please help me.

  • HAVING PROBLEM WITH N82

    I HAVING A PROBLEM REGARDING TO N82 CAMERA'S FLASH LITE WHEN EVER I TRY TO CAPTURE A PICTURE ITS DO NATHING MEANS THE CAPTURE BUTTON UNRESPONED WHEN I PRESS IT AND NO FLASH LITE  ON BUT WHEN I CHANGE THE MODE TO LANDSCAPE OR SPORT IT TOOK A PICTURE B

  • Reading Additional info for Material Document (Movement Types 313, 201)

    Hi SAP Gurus, I am currently working on a requirement for Material Document Interface. <u><b>The Requirement is as below:</b></u> (1) The user creates/modifies a material document using MB01/MB03/MIGO for movement types 313 and 201 separately. (2) Th

  • Acknowledgments in scenario having enhanced interface determination

    Dear Experts, I have noticed that in case of Idoc sender scenarios where PI is having an enhanced interface determination, the acknowledgments are not sent back to R/3. Is this something standard or is there a way to enable the acknowledgements in th