Record.FromList - undocumented/wrong how to use it?

On page 44 of power query language specification power query language it is mentioned that one can also contruct a record from a list
however when I try this
let
    s={[Name="a",Value=1],[Name="b",Value=2]} ,
    b=Record.FromList(s)
in
    b
I get 
Expression.Error: 1 arguments were passed to a function which expects 2.
Details:
    Pattern=
    Arguments=List
and I can't find a mention of this in the function categories list
BTW my overall goal is to convert from a column  "keywords" with entries consisting of a single string representing a dictionary (eg 
"gender:m,age:36"  ) into a column of records ( and then expand column)
nb each row may have different keywords 

Looks like we need to update the language specification and formula reference. Thanks for catching this!
In the Editor you can see what a library function should take by typing out the function name. For example, if you entered:
= Record.FromList
It will display the list of parameters it expects as well as some examples.  For Record.FromList, the first parameter is a list of values and the second parameter is a list of names. For the example above, it would be:
= Record.FromList({1, 2}, {"a", "b"})
-Alejandro

Similar Messages

  • How to use sony ic recorder with macbook pro, how to use sony ic recorder with macbook pro

    Anyone can help?  I realise there seams to be no software to syncronise my IC rec with my Mac.. I had one for my PC.. but not for Mac??

    instructions from Apple: http://support.apple.com/kb/HT3131

  • How i use java applet data grid i have many record i need show in grid

    hi master
    sir i have many record i want show all record in applet grid how i use grid in applet
    please send me sample code of java class how send many record to grid and applet code how use applet grid
    thanks
    aamir

    Duplicate post:
    how use the jtable in java applete
    Aamir,
    If you use JApplet then you can use JTable. Just do an Internet search for "JTable" and "applet".
    Good Luck,
    Avi.

  • How to use execute query For a single record

    Hi All,
    I am working with oracle forms 10g, I have developed a custom form.
    I the form user enter some data and click save in the menu and data get inserted into my table. Inside the insert statement i have hardcoded some values, Once data get inserted i cant able to see that values immediately in my text fields in my form.After requerying i can able to see the changes.
    For example I have a text field called Status, and the field is display only field. At that time of insert i have hardcoded as "INCOMPLETE". Once the user enter the data in the form and click save the data get inserted in to my table but i cant able to see the status, after i requery my form i can able to see the status.
    Here i do multi insert also.
    This is my insert statement
    BEGIN
    First_Record;
    LOOP
    IF :BANK_GUARANTEE_BLK.CHECK_IN_OUT = 'Y'
    THEN
    XXBANK_GUARANTEE_HEADERS.XXBANK_GUARANTEE_INSERT;(this is my package, here i have written my insert statement)
    --Execute_query;
    END IF;
    Exit when :System.Last_Record = 'TRUE';
    Next_Record;
    END LOOP;
    END;
    If user insert only one row and i gave Execute_query to refresh and bring the current data, but when i use execute_query Its brings up all the datas in the table.
    Can any one tell me how to avoid this and how to use execute_query for a single record.
    Thanks &regards
    Srikkanth

    Solved,
    The solution is
    set_block_property('LC_REQ_BLK',ONETIME_WHERE,'LC_PO_NUMBER='||:LC_REQ_BLK.LC_PO_NUMBER);
    go_block('LC_REQ_BLK');
    execute_query;
    Works fine.
    Regards
    Sri

  • HOW TO: Use Input tags to edit records

    The question has been asked, "What does using the BC4J Input data tags provide
    over standard HTML input fields?" It is true that either type of input field allows
    your JSP to take user input and update your BC4J datasource. Both types of input
    fields submit a name-value pair to a JSP processing page that bind the data with
    a datasource row and attribute. However, unless you use the BC4J Input data tags,
    users will not be able to edit data in existing records. To see the difference,
    use the JDeveloper DataPage Wizard to create an Insert Record form and an Edit
    Record form.</p>
    To create the Insert Record form:</p>
    <ol>
    [*]Use the Business Components Wizard to create an entity object and view object for a database table you can update.
    [*]In the same project or another project, if you wish, use the DataPage Wizard to create an Insert Form for the view object.
    [*]Look in your JSP project folder in the Navigator and notice that two pages were generated: one JSP to render the insert HTML form and the other JSP to process the incoming parameters.
    [*]Open the file VO_Insert.jsp and notice that it does not use the BC4J input data tags.
    </ol>
    In the Insert form, the input data tags are not needed to render static HTML form elements such as empty text fields. It is important to note, however, that the name of these text fields corresponds to the attributes of your selected view object. This is extremely important because the processing page looks for parameters corresponding to the names of the attributes to update the view object datasource.</p>
    Now, create the Edit Record form:
    <ol>
    [*]Use the DataPage Wizard again, but this time select Edit Form for the view
    object.
    [*]Open the file VO_Edit.jsp and notice that it uses the BC4J input data tags,
    which contain the prefix <jbo:Input ...>.
    [*]Look in your JSP project folder in the Navigator and again notice that two
    pages were generated: one JSP to render the edit HTML form and the other JSP
    to process the incoming parameters.
    [*]Open the file VO_Edit.jsp and notice that it uses the BC4J input data tags.
    </ol>
    In the Edit form, the BC4J input data tags are needed because in this case,
    the page has to query the current value of the record and place that data into
    the text field. The Edit form uses a second page to process the edited values.</p>
    To summarize the differences:</p>
    Use the <jbo:Input ...> data tags when you need to create an Edit Existing Record type of JSP page. This page will query the current data from the view object datasource and display it in each input field.
    OR
    Use standard HTML input fields when you do not need to query the database to show existing records. This is the case in a static Insert Record form where only empty HTML fields are rendered.
    The end goal of each Input tag is to supply a name-value pair to a processing
    page which will then update the database according to the value passed to it.
    For example in order to update the &quot;Ename&quot; column of the Emp table,
    a name-value pair such as Ename=&quot;smith&quot; must be passed via an HTML
    form to a processing page. The processing page will then be able to update the
    table with the new value of the attribute using the following code:
    <jbo:Row id="myrow" datasource="ds" rowkeyparam="MyRowKey" action="Update">
    <jbo:SetAttribute dataitem="*"/>
    </jbo:Row>
    </p>
    By setting the attribute 'dataitem=&quot;*&quot;' in the SetAttribute tag,
    it is able to update all database columns where a name-value pair is supplied.
    The SetAttribute tag must be used inside of the Row tag to allow an operation
    on a single row.</p>
    The Row tag is able to identify a specific row through the rowkeyparam attribute.
    The rowkeyparam takes the HTML request parameter that contains the value of
    a BC4J rowkey. It is the BC4J rowkey that uniquely identifies the row within
    a rowset. By default Row tag by default obtains the rowkey for the cu rrent row.
    (You can also specify the row when you want to perform a Find action as explained
    in the OTN topic &quot;How To: Navigating Using DataTags&quot;.)
    </p>

    Ok. I didn't understand your question.
    You have to do some settings for adding new  rows for the analysis grid in Analyzer. And in the new rows you can input the characteristic values. To enable the new rows
    In Analyzer - uncheck the setting Suppress New Lines in the proprties of the Analysis grid item.
    In WAD - Check the property Number of New Lines (NEW_LINES_COUNT) of Analysis grid item. You use this parameter to insert any required number of empty rows into the table. The parameter is set to 0 by default.

  • How to use built in microphone on ipad3 I have Siri on but no icon shows on my keyboard just want to record voice

    How to use built in microphone on ipad3 just for audio no dictation

    If you just want to record a a voice memo, use the included Voice Memos app. That has nothing to do with Siri.

  • I recorded an interview on my iPad using the iTalk app. How can I transfer that audio to my MacBook Pro? The file is too big to email.

    I recorded an interview on my iPad using the iTalk app. How can I transfer that audio to my MacBook Pro? The file is too big to email.

    Use DropBox. https://www.dropbox.com/help/84/en
     Cheers, Tom

  • How to use a recorded sound in voice memos as a ringtone.

    How to use a recorded sound in voice memos as a ringtone.

    You may have better luck dumping those to computer and using an application that includes the ability to scrub.
    Try the Mac App Store for choices.

  • I just got a new mac and use my external hard drive to save all my images to but whenever I go to save my photo to my hard drive it says I do not have write access....Whats wrong how do i fix this or do i need a new hard drive??

    I just got a new mac and use my external hard drive to save all my images to but whenever I go to save my photo to my hard drive it says I do not have write access....Whats wrong how do i fix this or do i need a new hard drive??@

    This is a Mac question not a Photoshop question, and I am a Windows users, but I can Google and this might be what you need to do:
    http://www.makeuseof.com/answers/change-read-permision-external-hard-drive-mac/

  • How to use search term2 in customer master record

    hi
    how to use search term2 in customer master record. can anyone tell me plz
    thanks
    monica

    Hi,
    Search Term 2
    Label used for search helps.
    Only uppercase letters are stored in this field. Your entries are converted automatically to uppercase letters.
    There are two of these fields for search terms. These fields can be used independently of each other.
    Procedure
    You can use your own criteria for entering the search term.
    Example
    You can enter the main part of the name or an organizational ID.
    For example, for the company "Hechinger & Sons", you could enter "Hechinger" as the first search term.
    The second search term could then be the name ID you use within your company, to help you identify your data later.
    Please check out the following link:
    http://help.sap.com/saphelp_47x200/helpdata/EN/01/a9b331455711d182b40000e829fbfe/frameset.htm
    Hope this helps.
    Please assign points as a way to say thanks.
    Regards,

  • How to use lock object? what we lock either total ztable or only record?

    Hi
    How to use lock object? what we lock either total ztable or only particular record?
    Don't tell create lock object on se11 with E letter & acll it in program with eENQUEUE & DEQUEUE.
    just tell me we will lock only particular record or total ztable?
    specify with example.
    Thanks.

    Hi
      Go to SE11, in the option 'Lock object' enter the name of your lock,
    begin with 'E', suppose 'EXXXX' And create. In tab 'Tables' fill the
    table name where the record you want to lock exist and select the
    lock mode. Lock mode can be shared and exclusive. If 'shared',
    when you lock the record, other can also read data, but can not
    modify. If 'exclusive', when you lock the record, other can neither
    read nor modify the record. After save and activate, you will get two
    function module.'ENQUEUE_EXXXX' to lock record,
    'DEQUEUE_EXXXX' to release lock on one record.
    When use this function module it only lock one record at a time. It
    does not lock the table.

  • How do I record my voice and other sounds using the microphone in my HP TouchSmart 15?

    I just recently got an HP TouchSmart 15 notebook PC and know very little about how to use it.  I'd like to use the onboard microphone to record my voice and other sounds, ending up with sound files that I can save and use in creating multi-media presentations.  Thanks for helping me learn how to do that!

    Hi,
    You can use Windows "Sound Recorder'
    Start Sound Recocrder
    Speak, Sing or may noises
    And stop when finish
    Save file
    To start Sound Recorder
    Windows 7: Click Start > All Programs > Accessories > Sound Recorder
    Windows 8 & 8.1: Hold down Win key then press Q > Type Sound R in Search box
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to use upload condition record program RV14BTCI

    Hi
    how to use upload condition record program RV14BTCI.
    kathir.

    Hi,
    To run this program we have to maintain Upload file in Application Directory,
    We have to maintain 3 levels of records in that file.. my feel you upload through BDC or LSMW.
    For your information,
    The batch input program RV14BTCI reads the parameters is necessary
    Giving sequential file and creates (depending on the data
    In the file seq) one or more batch input sessions.
    The data are seq file in the following structure expected:
    - The session a session intent (Table KOBTCI, Record 0)
    All other records until the next session, the intent
    Last session assigned to read
    - The head condition Sentence (Table KOBTCI, record 1)
    All other records until the next condition,
    Last read head appropriate rate
    This includes the corresponding condition
    Condition table
    - The key sentence of a Main (Table KOBTCI, record 2)
    It must be directly on the head set to follow
    It contains the key condition of the table
    + Detail fields
    - The season record has a subordinate clause (Table KOBTCI, record 3)
    The teams relate to the key sentence in the main
    Best Regards,
    KSK

  • How to use the DISPLAY RECORD Setup Command in an etext file?

    Hi All,
    How to use the DISPLAY RECORD Setup Command in an etext file?
    I want to display a <NEW RECORD> conditionally. The condition will be based on the data coming through from the xml file.
    Please help me with an example. The BI User guide also doesnt show any examples.
    Your help is appreciated.
    Rgds,
    Kiran Panditi

    Hi,
    You can use vb coding in BEx Analyser to calculate your unit price. For this you have to first display the attributes of your object "XYZ". Then you can use VB cosing to calculate the value for the unit price field.
    One more thing cna you clarify whether is it display attribute or variable ?
    Regards,
    Balajee

  • How to use temporarly table wid record type

    Hi,
    how to use temporarly table wid the record type wid this example
    declare
    type empcurtyp is ref cursor;
    type rectype is record (veid t.emp_id%type, vename t.ename%type);
    TYPE tabtype IS TABLE OF rectype;
    empcv empcurtyp;
    vtab tabtype;
    begin
    open empcv for select emp_id,ename from t;
    loop
    fetch empcv into vtab;
    exit when empcv%notfound;
    dbms_output.put_line(vtab.vename||vtab.veid);
    end loop;
    close empcv;
    end;
    here we hav table t and i m taking only two fields of the table t which r emp_id and ename.

    Try this
    declare
    type rectype is record (veid t.emp_id%type, vename t.ename%type);
    type empcurtyp is ref cursor return rectype;
    TYPE tabtype IS TABLE OF rectype;
    empcv empcurtyp;
    vtab empcv%rowtype;
    begin
    open empcv for select emp_id,ename from t;
    loop
    fetch empcv into vtab;
    exit when empcv%notfound;
    dbms_output.put_line(vtab.vename||vtab.veid);
    end loop;
    close empcv;
    end;

Maybe you are looking for

  • Dynamic filenames in RFC to FTP scenario

    Hi all, i am working on two interfaces, and have doubts about each of them, here they go: - Scenario1: RFCtoFTP --> some info is sent in some fields and i need to use these fields to generate files with the proper filenames (by concateating them or w

  • Regd. workflow and incompletion procedures

    Hi, can workflows or events be triggered from incompletion procedures?  for eg. when a sales order is incomplete and saved, a workflow should start, which handles the process... Regards, Vijay

  • How can I open a DCIM folder ?

    I have downloaded an iPhone photos folder in the DCIM but when I open open it There is not thing appear on it but it's appear that the folder size is 1 gb So how can I see my photos

  • How to record Real Delivery Dates to Customers?

    Hi I am working in the supply chain department of medium sized company, but I am not an SD expert (not even close),  but I got a "can't do" answer I would like to discuss with you in this forum. I am trying to monitor real delivery dates to customers

  • Adobe AIR accessibility

    hi, can anyone tell me how accessible Adobe AIR is? eg is it accessible to screenreaders? i read on the bbc iplayer website that "Adobe AIR is currently not accessible to screen reader users" and i just wanted confirmation of this. it also says that,