List inside List

Hi!
I have a problem, i hope sameone can help me.
I would like create a list inside another list. the problem is that even if i create another list, the display is always the same, so it is not inside the previous list!
I mean:
I have a list with 4 form and inside a form how can I put another list?
THANKS!

This is the code:
I have a list:
form1
form2
form3
form3
when i click in form 1 i have a ChoiceGroup.EXCLUSIVE
inside this form1 i have a botton "send":
if(c==send)
solotipo();
This is the "solotipo" method:
void solotipo()
mDisplay=Display.getDisplay(this);
int num = 5;
nomi=new List("Nome",List.IMPLICIT);
for (int j=0;j<num;j++)
nomi.append("Form "+j,null);
mDisplay.setCurrent(nomi);
but it doesn't work!!!
Can sameone help me?
thanks!

Similar Messages

  • How to find out list of procedures and functions inside a package

    How I can find out the list of Procedures and Functions inside a Package.

    Look at ALL_PROCEDURES and ALL_ARGUMENTS.

  • How do I delete uninstalled Apps from the iPhone app list that is shown inside iTunes on my PC after sychronizaton?

    To clarify and to not receive the answers of those who doesn't read more than 2 lines of a post: I am not asking how can I delete backups to free space in iCloud nor how to hide the purchase history!!! those things I already know...
    to be clearer please let me explain what I mean by "list inside the iTunes of my PC". To access the list to which I am reffering you must take this steps:
    1) Connect the iPhone to the PC. This should open iTunes if not already opened and activate the synchronization between iPhone and PC.
    2) After syncronization and eventual backup in the iTunes window on the top right side it appears the tab "iPhone".
    3) Click said tab "iPhone" to see its content. In the top bar you can see 9 tabs: "Summary", "Info", "Apps", "Music", "Movies", "TV Shows", "Books", "Photos" and "On This iPhone".
    4) Click the 3rd tab, the one named "Apps", in this window on the left side you have the full list of the apps and on the right side you can see how these apps are arranged inside the device (inside home screens and folders).
    I am referring to this particular list, the one on the left side of this page. See, I ricently run out of space in my iCloud so I decided tidy things up. I deleted all of the old backups both form iCloud and from PC and I hid all of the Apps that I no longer use from my purchase history.
    now, the point is, every time I go to this particular list I can still find all of the apps, even those uninstalled from the device and removed from the purchase history...
    In this list the apps that are still installed on my divece have got the "remove" button at its side and those which are not have got the "install" button... my point is that I went to great lengths to clean everything and still I can't seem to find a way to remove unwanted apps from this particular list...
    I do suspect that it is because I have to restore some registry inside the iPhone itself... The point is that I don't want these apps to appear on this list anymore but I don't know how to clear it... Any help? Have I been clear?
    thanks

    That list includes all the apps that you installed to your device directly from iTunes on the computer, or which were purchased on the iOS device and subsequently transferred to iTunes on the computer.
    If you right click on any item in that list and choose "Show in Windows Explorer" it will open your iTunes application installer directory on your computer, which should be:
    C:\Users\User\Music\iTunes\iTunes Media\Mobile Applications
    In there are all your saved application installers (*.ipa files).  You need to delete those actual installer bundles and then make sure to NOT allow the "transfer purchased content" when you sync or backup in iTunes (as that will just put them back on your hard drive).
    One caveat to removing those, is that if you ever wish to keep a specific release of a particular app, and the developer replaces the iTunes/App store version with something else, your sole source for your older version will be your own stored copy of it.  So for example, when PDF expert released their iOS 7 update, and charged everyone full price for it, if you wished to keep using the previous version on your own devices, then you needed to keep a copy of the installer on your own computer as that older version is no longer available in the store front.

  • How to refresh the list of select one choice which is inside a table?

    Hello I am using Jdeveloper Version 11.1.2.1.0.
    The table is a normal table that is made to look like a treeTable.
    For some rows are or can be parents with Parent_vo_group_id = null and other are children with parent_vo_group_id = vo_group_id of the parent...
    If a children changes its parent_vo_group_id to null it can become a parent as well.
    I am having a select one choice inside a table column. The list comes from the same table with column Name:
    <af:table value="#{bindings.VoGroupAdminView2.collectionModel}" var="row"
                                                      rows="#{bindings.VoGroupAdminView2.rangeSize}"
                                                      contentDelivery="immediate"
                                                      visible="#{bindings.VoGroupAdminView2Iterator.currentRow != null}"
                                                      fetchSize="#{bindings.VoGroupAdminView2.rangeSize}"
                                                      partialTriggers="::soc1" styleClass="AFStretchWidth"
                                                      rowBandingInterval="0" editingMode="clickToEdit"
                                                      binding="#{adminGroupManagementBean.groupTable}"
                                                      selectionListener="#{adminGroupManagementBean.groupSelectionListener}"
                                                      rowSelection="single" id="t5">
                                                <af:column sortProperty="#{bindings.VoGroupAdminView2.hints.Name.name}"
                                                           sortable="false" styleClass="columnData"
                                                           headerClass="tableHeader"
                                                           headerText="#{bindings.VoGroupAdminView2.hints.Name.label}"
                                                           id="c1">
                                                    <af:inputText value="#{row.bindings.Name.inputValue}"
                                                                  requiredMessageDetail="Please enter a group name"
                                                                  label="#{bindings.VoGroupAdminView2.hints.Name.label}"
                                                                  required="true" id="it7" immediate="true" autoSubmit="true"
                                                                  columns="#{bindings.VoGroupAdminView2.hints.Name.displayWidth}"
                                                                  maximumLength="#{bindings.VoGroupAdminView2.hints.Name.precision}"
                                                                  shortDesc="#{bindings.VoGroupAdminView2.hints.Name.tooltip}"
                                                                  contentStyle="#{row.ParentVoGroupId eq null? 'font-weight:bold' : 'padding-left:20px'}"
                                                                  valueChangeListener="#{adminGroupManagementBean.groupNameChangeListener}"
                                                                  partialTriggers="soc2">
                                                        <f:validator binding="#{row.bindings.Name.validator}"/>
                                                    </af:inputText>
                                                </af:column>                                   
                                                <af:column sortProperty="#{bindings.VoGroupAdminView2.hints.ParentVoGroupId.name}"
                                                           sortable="false" styleClass="columnData"
                                                           headerClass="tableHeader"
                                                           headerText="#{bindings.VoGroupAdminView2.hints.ParentVoGroupId.label}"
                                                           id="c4">
                                                    <af:selectOneChoice value="#{row.bindings.ParentVoGroupId.inputValue}"
                                                                        label="#{row.bindings.ParentVoGroupId.label}"
                                                                        simple="true" immediate="true"
                                                                        required="#{bindings.VoGroupAdminView2.hints.ParentVoGroupId.mandatory}"
                                                                        shortDesc="#{bindings.VoGroupAdminView2.hints.ParentVoGroupId.tooltip}"
                                                                        id="soc2" autoSubmit="true"
                                                                        unselectedLabel="&lt;null&gt;"
                                                                        valueChangeListener="#{adminGroupManagementBean.parentIdValueChangeListener}"
                                                                        visible="#{row.bindings.ChildrenCount.inputValue eq 0 ? true : false}">
                                                        <f:selectItems binding="#{adminGroupManagementBean.selectOneChoiceList}"
                                                                        value="#{row.bindings.ParentVoGroupId.items}"
                                                                       id="si2"/>
                                                    </af:selectOneChoice>
                                                </af:column>
                                            </af:table> My select one choice uses the same iterator as the table.
    <iterator Binds="VoGroupAdminView2" RangeSize="-1" DataControl="AppModuleDataControl"    id="VoGroupAdminView2Iterator"/>The table uses this view called VoGroupAdminView:
    Select t1.vo_Group_id,     
           t1.name,
           t1.Vehicle_Owner_Id,
           t1.Graphical_Symbol,
           t1.Lm_Comment,
           t1.Parent_Vo_Group_Id ,
           decode (t2.children_count, null, 0, t2.children_count) as children_count
           from
    (SELECT VoGroup.vo_Group_id,     
           VoGroup.name,
           VoGroup.Vehicle_Owner_Id,
           VoGroup.Graphical_Symbol,
           VoGroup.Lm_Comment,
           VoGroup.Parent_Vo_Group_Id
      FROM VO_GROUP VoGroup
    START WITH VoGroup.Parent_Vo_Group_Id IS NULL
    CONNECT BY VoGroup.Parent_Vo_Group_Id = PRIOR VoGroup.Vo_Group_Id
    order SIBLINGS by VoGroup.name) t1,
    (select parent_vo_group_id, count (parent_vo_group_id) as children_count from vo_group
    group by parent_vo_group_id) t2
    where t1.vo_group_id = t2.parent_vo_group_id (+)the ParentVoGroupId attribute has list of values from this view object called VoGroupAdminLov:
    SELECT
        VO_GROUP.NAME,
        VO_GROUP.VEHICLE_OWNER_ID,
        VO_GROUP.PARENT_VO_GROUP_ID,
        VO_GROUP.VO_GROUP_ID
    FROM
        VO_GROUP
    WHERE  VO_GROUP.PARENT_VO_GROUP_ID is null
    and VO_GROUP.VO_GROUP_ID <> ?
    order by  VO_GROUP.NAMEI want to refresh the list of values in the select one choice everytime when i add a new row in the table, delete row in the table or change the value of select one choice component.
    What I have tried:
        public void parentIdValueChangeListener(ValueChangeEvent valueChangeEvent) {
            this.setValueToEL("#{row.bindings.ParentVoGroupId.inputValue}", valueChangeEvent.getNewValue());
            BindingContainer bc = BindingContext.getCurrent().getCurrentBindingsEntry();
            DCIteratorBinding voGroupAdminIterator = (DCIteratorBinding)bc.get("VoGroupAdminView2Iterator");
            Key selectedGroupKey = voGroupAdminIterator.getCurrentRow().getKey();
            AppModuleImpl am = (AppModuleImpl)ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
            am.getTransaction().postChanges();
            am.getVoGroupAdminView2().executeQuery(); //refresh the table view object;
            am.getVoGroupAdminLov1().executeQuery(); //refresh the list of values view object
            voGroupAdminIterator.invalidateCache();  //remove the cache of the iterator
            voGroupAdminIterator.setCurrentRowWithKey(selectedGroupKey.toStringFormat(true)); // set the selected row again.
            RichSelectOneChoice soc =
                (RichSelectOneChoice)FacesContext.getCurrentInstance().getViewRoot().findComponent(":pt1:t5:soc2");
            AdfFacesContext.getCurrentInstance().addPartialTarget(soc);
            AdfFacesContext.getCurrentInstance().addPartialTarget(this.groupTable);    
        }When i am adding a new row to the table its select one choice list is refreshed but only for the new row. The rest rows have not updated list of values for their select one choice components.
        public String addGroupButtonAction() {
            AppModuleImpl am = (AppModuleImpl)ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
            ViewObjectImpl voGroupAdminView = am.getVoGroupAdminView2();
            Row newRow = voGroupAdminView.createRow();
             newRow.setNewRowState(Row.STATUS_INITIALIZED);
            voGroupAdminView.insertRowAtRangeIndex(0, newRow);
            am.getTransaction().postChanges();
            return "null";
        }Edited by: 897833 on Mar 19, 2012 9:07 AM

    I made a button to refresh the value of select one choice and it doesn't work yet.
    So I just move one of the
        public String refreshParentIdSOCButtonAction() {
            BindingContainer bc = BindingContext.getCurrent().getCurrentBindingsEntry();
            DCIteratorBinding voGroupAdminIterator = (DCIteratorBinding)bc.get("VoGroupAdminView2Iterator");
            Key selectedGroupKey = voGroupAdminIterator.getCurrentRow().getKey();
            AppModuleImpl am = (AppModuleImpl)ADFUtils.getApplicationModuleForDataControl("AppModuleDataControl");
            am.getTransaction().postChanges();
            am.getVoGroupAdminView2().executeQuery();
            am.getVoGroupAdminLov1().executeQuery();
            voGroupAdminIterator.invalidateCache();
            voGroupAdminIterator.setCurrentRowWithKey(selectedGroupKey.toStringFormat(true));
            AdfFacesContext.getCurrentInstance().addPartialTarget(this.parentIdSelectOneChoice);  //refresh the binded SOC as you said
            AdfFacesContext.getCurrentInstance().addPartialTarget(this.parentIdSelectOneChoiceList); //refresh the binded list even
            AdfFacesContext.getCurrentInstance().addPartialTarget(this.groupTable); //refresh the table it is in;
            return null;
        }Edited by: 897833 on Mar 23, 2012 2:58 AM

  • How to create a secondary list of alv grid inside the function module

    Hi All,
    My requirement is to create a RFC function module to display the alv grid of one table.
    i have created that.
    while clicking on the records of the alv it should open the secondary list of another table.
    My problem is it is not fetching the records of the internal table of the primary list since it is created inside the function module(FUNCTION...ENDFUNCTION).
    pls help me on this.
    Thanks in Advance.

    hi,
    READ TABLE sel_sheet INTO wa_sheet INDEX rs_selfield-tabindex.
    here sel_sheet is the internal table for the primary list..
    i called the function module "reuse_lav_grid_display" inside Function...Endfunction.
    so when i am using  READ TABLE sel_sheet INTO wa_sheet INDEX rs_selfield-tabindex.
    inside the user command perform therecords in this internal table is not populating..
    pls help me on this.
    thanks in advance.

  • How to parse a custom text file (with custom separators) to a list inside a table

    Hi,
    i'm trying to parse +/-50 product detail html web pages to a combined PQ table showing each product and all sub-products inside their package :
    let
        Source = Folder.Files("N:\sample\Product_Details"),
        TransformedColumn = Table.TransformColumns(Source,{{"Content", Lines.FromBinary}}),
        RemovedOtherColumns = Table.SelectColumns(TransformedColumn,{"Content", "Name"}),
        DuplicatedColumn = Table.DuplicateColumn(RemovedOtherColumns, "Content", "Copy of Content"),
        #"Expand Content1" = Table.ExpandListColumn(DuplicatedColumn, "Content"),
        FilteredRows = Table.SelectRows(#"Expand Content1", each Text.Contains([Content], "/h1")),
        #"Expand Copy of Content" = Table.ExpandListColumn(FilteredRows, "Copy of Content"),
        FilteredRows1 = Table.SelectRows(#"Expand Copy of Content", each Text.Contains([Copy of Content],">• ")),
    ---> try outs :
        TransformedColumn2 = Table.TransformColumns(FilteredRows1,{{"Copy of Content",Lines.FromText}})
         TransformedColumn3 = Table.TransformColumns(TransformedColumn2,{{{"Copy of Content",">• "},Text.splitAny}}),
         #"Expand Copy of Content1" = Table.ExpandListColumn(TransformedColumn2,{"Copy of Content",">• "})
    in
        #"Expand Copy of Content1"
    So the code here above...
    _ list all HTML Files of the folder
    _ create, for each file of the table, 1 row of data per line from inside the related HTML page
    _ filter the lines to retrieve the Product Package name of each HTML page
    _ create, for each "package entry" of the table, 1 row of data per line from inside the related HTML page
    _ filter the lines to retrieve the sub-product Package details of each HTML page (one single line without carriage return)
    ---> stuck
    So now for each "Package" entry row I've a text cell containing a list of sub-products separated by ">• " characters and I would like to convert this text to a list separated at each >• so I could afterward expand it to 1 row
    per sub-product (with package name as first cell of the row)
    normally Lines.FromText( sould provide the option to define a custom separator but when nested inside Table.TransformColumns(
    I cannot find where to put this optionnal field !
    I've search for some explanations on http://office.microsoft.com/en-us/excel-help/power-query-formula-categories-HA104122363.aspx but syntax transformation due to nesting isn't explained and samples doesn't cover much cases of usage they only cover
    obvious usage with no option !
    Can somebody help me on this ?

    Oh I see. I missed the part about it being separate rows when I read your post the first time.
    How about this... first do the Table.SplitColumn operation and then use the Unpivot operation. Doing this through the UI is pretty simple, but you can go straight through the formula language if you want to. The formula is Table.UnpivotOtherColumns.
    Here's a simplified example:
    let
        Source = #table({"Column1","Column2"},{{1,"a,b,c,d"},{2,"e,f,g"},{3,"h"}}),
        SplitColumnDelimiter = Table.SplitColumn(Source,"Column2",Splitter.SplitTextByDelimiter(","),{"Column2.1", "Column2.2", "Column2.3", "Column2.4"}),
        Unpivot = Table.UnpivotOtherColumns(SplitColumnDelimiter,{"Column1"},"Attribute","Value"),
        RemovedColumns = Table.RemoveColumns(Unpivot,{"Attribute"})
    in
        RemovedColumns
    There's probably a way to do it with Lines.FromText, but I think this is a bit simpler. It can all be done with clicks in the UI.

  • How do I print a list of files inside a portfolio?

    I have been using Acrobat to make portfolios of pdf's for a short while.  I would like to print a list of the files inside the portfolio.  tx

    A custom JavaScript to write the report:
    function ProtfolioContents() {
    var bResult = false;
    // make sure there are data objects
    if (this.dataObjects != null) {
    // create report
    var rep = new Report();
    rep.size = 1.7;
    rep.color = color.black;
    // title for report
    rep.writeText("Summary of files within the PDF portfolio: " + this.documentFileName + "\n");
    // what is reported
    rep.writeText("Format : [index] [filename] [description] [size] [MIME Type\n\n");
    //get the objects
    var d = this.dataObjects;
    rep.indent(20);
    rep.color = color.blue;
    // for each item
    for (var i = 0; i < d.length; i++)
    // write line of report
    rep.writeText(i + ": " + d[i].name + " : " + d[i].description + ' | ' + util.printf("%,0 .0f bytes", d[i].size) + ' | ' + d[i].MIMEType )
    // end of report detail
    rep.color = color.black;rep.
    writeText("\n -- END OF LIST --");
    // open the report
    var docRep = rep.open("members_of_" + this.documentFileName);
    bResult = true;
    } // end for loop of dataObjects of portfolio
    } // end PortfolioContents
    if( ! ProtfolioContents() ) app.alert('Must not be in PDF');

  • Message Mapping UDF for lookuping of a value inside field's list of values

    Hey everyone,
    For a FI mapping I'm working on, I was wondering if somebody has some Java UDF which lookups for a value inside the whole list of values which the mapping gathered for a specific field?
    Thanks,
    Ben

    source code --
    //write your code here
    JCO.Repository myRepository;
    // Change the logon information to your own system/user
    JCO.Client myConnection = JCO.createClient(
    // all the client information namely client ,user id pwd etc
    myConnection.connect();
    // create repository
    myRepository = new JCO.Repository( "SAPLookup", myConnection );
    // Create function
    JCO.Function function = null;
    IFunctionTemplate ft = mRepository.getFunctionTemplate("xxxxx"); //Name of RFC
    function = ft.getFunction();
    // Obtain parameter list for function
    JCO.ParameterList input = function.getImportParameterList();
    // Pass function parameters
    input.setValue( a , "xxxxx" ); //import parameter of RFC, a is input argument.
    myConnection.execute( function );
    String ret = function.getExportParameterList().getString( "XXXX" ); //export param
    myConnection.disconnect();
    return ret;
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a03e7b02-eea4-2910-089f-8214c6d1b439
    File Lookup in UDF
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/file%2blookup%2bin%2budf
    Lookupu2019s in XI made simpler
    /people/siva.maranani/blog/2005/08/23/lookup146s-in-xi-made-simpler
    SAP XI Lookup API: the Killer
    /people/alessandro.guarneri/blog/2006/03/27/sap-xi-lookup-api-the-killer
    Webservice Calls From a User Defined Function.
    /people/bhavesh.kantilal/blog/2006/11/20/webservice-calls-from-a-user-defined-function

  • Find and item Search not working inside custom list in sharepoint 2013

    HI,
    In Sharepoint 2013 , i configured the Search. it is working in home page search Box and Find item search box  inside custom list as well But one particualr custom list  Find an item is not working. Any clue ?Thanks in Advance
    Thanks
    sanjay pradhan  

    Hi,
    According to your description, my understanding is “find an item” search box in a custom list not work in your environment.
    As search box and “find an item” search box in your home page are working, so the search service application is working.
    Do you have any customzation to the particular custom list ?
    If No, I suggest you can full crawl the data in Central Administration ->Manage Service Application->” Search Service Application”-> Manage Content Sources” to test if it works. 
    Also, please check if you have set "Allow items from this list to appear in search results" in list settings->Advanced Setting to true
    Best Regards
    Jerry Guo
    TechNet Community Support

  • Item & List tabs inside the upper ribbon is no more displayed

    I have an issue tracking list , and when  I first added the list there were two tabs named “Item” & “List” tabs inside the upper ribbon , which will be shown automatically. this applies for all the views such as “All items”, “My submissions”,
    etc. view.
    But I have edited the “All Item” view to add a Script Editor web part , and after that the “Item” & “List” tabs will no longer displayed unless the user select an item .. so can anyone advice how to force the “Item” & “List” tabs to be shown by default
    The view looks as follow, when the page loads, where no "item" or "list" tabs will be shown:-
    but when i select one item the tabs will be shown :-
    Thanks

    Hi,
    According to your description, you might want to display the “Item” & “List” tabs all the time.
    This is a by design behavior which should also be reasonable cause the tabs in ribbon will show/hide based on the focus status of a special web part in the current
    page, we might get different tabs when we focus on different web part.
    I would suggest you leave it what it is now, in most scenarios, users would be able to get used to such a scenario: click on the list view web part, ribbon and tabs
    appear, perform the operations.
    In the link provided in the previous post, applying an custom script with setTimeout() function to display the tabs forcibly will make users get confused if they are
    working on other kinds of web part the current page.
    Feel free to reply if there still any question.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Formatted Search inside a Price List

    Hi,
    Is it possible to put a formatted search inside a Price List which will auto-update?
    I created a query which looks at Special Prices tables OSPP and put an FMS in Price List 10. However, this FMS does not auto-update - it only updates when I click the "magnifying glass" of the formatted search. It would be cumbersome to click all items one-by-one.
    Thanks,
    Ajay Audich

    Hi...
    I understand that your formatted search is applied to the price column in your list of Charges 10. You've proven that their execution is made when leaving the modified column "Manual"? ..
    This column can fill it with one and then clicking on the column header.
    Best regards,

  • Reset value by default for drop doown list inside a  valueChangeListener

    Dear all,
    I have two drop down list.
    A valueChangeListener for the dropdown1.
    Inside the valueChangeListerner i set the value to null for the dropdown2.
    But after that the setter of the dropdown2 is call with the previous value selected by the user.
    Why?
    My bean are in request scope.
    But I create a reset button and in that case it works but it 's not what i want.      
    I look at now the JSF cycle, and I notice that the process events is called before the Update Model Values
    I try to call FacesContext.getCurrentInstance().renderResponse() .
    It doesn't work in fact.
    Any idea?

    It doesn't work.
    But I find finally a way.
    for each component I want to reset ,I specify a binding attribute.
    and in my actionListener method ( I have attribute immediate at true, I don't know if it linked)
    I call folowing code:
    component.setSubmittedValue(null);
    component.setValue(null);
    component.setLocalValueSet(false);
    but apparently i can use also the method: resetValue()
    but it works well

  • Long list inside IN Iterator

    Hi All,
    We are having performance issues (in terms of ELAPSED)TIME) in one query containing long values inside IN list.
    SQL
    SELECT A.RIC,B.DATE FROM SEC WHERE
    act_flg=1 and
    exchangecode IN ('ENP', 'LSE', 'OSL','HEL','ENA','ENB','CPH','MIL','VIR','LIS','MCE','GER','STO','SWX''VIE','JNB','ISE','TLX','IST','INS');
    Composite Index is created on act_flg & exchangecode col.
    If i put only 3-5 values inside IN list, then Oracle optimizer will pick up index and hance query will return rows in less then a sec.
    But in FTS, it is degrading up to 3 min.
    Is there any way through which i can utilize existing index ?
    (INDEX HINT can not be used as CODE CHANGE is not permitted.)
    -I played with diff hisograms but still index is not getting used.
    Regards,
    Bhvaik Desai

    Hi,
    try setting the "valuePassThru" property to true on the component. Normally list values are their index.
    Frank

  • How to Display a Calender upon clicking the dropdown list inside a table co

    Hi,
    I have a Listbox inside my table control and I need to Display a Calender upon clicking the dropdown list.
    Can any body help.
    Srinivas

    Hi,
    Try this:
    On your customizing screen,
    PROCESS ON VALUE-REQUEST.          
        Field T_ZT-SDATE
          module create_dateselect.
    In your main program:
    module create_dateselect.
    data:p_date like sy-datum.
    CALL FUNCTION 'F4_DATE'
       EXPORTING
         holiday_calendar_id = 'CN'                   
         display = ' '
       IMPORTING
         select_date = p_date
       EXCEPTIONS
         OTHERS = 4.
    t_zt-sdate = p_date.
    endmodule.
    Regards,
    Pole

  • List selectedItem inside GridItemEditor

    I have a List inside a GridItemEditor.  To make it reusable for many columns, I make the dataProvider and labelField variables, since they are different for each column. The labelField of the List typically matches the column.dataField .
    [Bindable] public var dp:ArrayCollection;
    [Bindable] public var lf:String;
    <s:TextInput id="t"  prompt="filter as you type" change="t_changeHandler(event)"/>
    <s:List id="l"   dataProvider="{dp}" labelField="{lf}">
    How do I return the value of the labelField property in l.selectedItem?  Typically, I have a fixed property (e.g. list.selectedItem.firstName), but in this case I need it to return the value of labelField as it varies by column.
    override public function get value():Object {
                                                                          return l.selectedItem[labelField]  ????; // don't know the syntax?
    override public function save():Boolean
                                                      data[column.dataField] = value;
    Thanks,
    Don

    Thank you.  Works great.  I'm just getting used to cases where you don't use the dot syntax when dealing with Objects and ArrayCollections.
    Appreciate the help.
    Don

  • Ios 7: Can I reorder list items inside of a reminder category?

    I do know how to reorder the header section for the main reminder categories.
    I thought I read that you can reorder the list items inside as well, but haven't been able to find instructions for that.
    (For example, I'd like to reorder my grocery list so that certain items are listed together...)
    Is this possible?

    Hmmm. This technique works for me on the header sections, like "Chores" and "Grocery".
    After an instant of holding, the category label expands slightly and I can drag it.
    So it should work the same way inside...
    I have 3 list items in grocery; I'm pressing and holding on the middle item, and .... nothing.
    It seems to be reading my touch, though, because I can subsequently swipe left to get the buttons.
    I'm still stuck... But thanks for testing it on your phone.

Maybe you are looking for