How to get Caption of custom metadat

Hi everybody,
I tried to change tha page "Workflow in queue". I would like to add my custom field.
I don't have a problem to add custom metadata field, but I have problem with the Caption.
This code doesn't get the Caption of the field xInvoice_Number:
<$exec setValue("ColumnProperties", "headerLabel", getFieldConfigValue("xInvoice_Number", "fieldCaption", "Caption"))$>
Can you help me how to get the Caption of custom metadata filed?
Thank you
Martin

Check this link out: http://docs.oracle.com/cd/E21764_01/doc.1111/e10726/c06_core_ref.htm#CSIDO374
Two questions:
- have you set up Field Caption for your custom field in Configuration Manager?
- if not, does your string "Caption" exist in your resources (still, I think you should use the lw() function)

Similar Messages

  • How to get username from customer email id.

    Hi experts,
    How to get username from customer email id.I am using transaction XD02.
    I would be thankful for your kind replies .
    Regards,
    Sachin Hada

    Hi sachin,
    Re: Email id field
    Regards,
    Sravanthi

  • How to get Capacity And Custom Attribute Data Through Powershell

    how to get Capacity And Custom Attribute Data Through Powershell

    Hi Nitesh,
    Great command from Martin.
    Also find a article to configure the Quota:
    http://technet.microsoft.com/en-us/library/aa998353(v=exchg.141).aspx
    Thanks
    Mavis Huang
    TechNet Community Support

  • How to get active programs/custom ABAP developments for past 6 months?

    All,
    Is there any transaction/table/program/FM to get active programs for past 6 months?
    Intention here is to get actively used custom ABAP developments.
    Regards,
    Sree

    Hi Sree,
    I usually look up the activity in transaction ST03N (Workload analysis). In most systems the standard activity statistics are available for up to three months. You can extend the period of course, see this [thread|ST03N Data; for further details.
    Once in the transaction, switch to expert mode. Under Workload node, expand 'Total'. Double click on the desired range you want to analyze. Switch to 'User Data' tab in the right window and in the lower left pane under 'Analysis View', double click 'Transaction Profile'.
    The # of steps roughly estimates how many times a particular transaction has been executed.
    Best regards,
    Asim

  • How to get content of custom fields that were created via the EEWB for CIC?

    Hi
    Can anyone tell me how to get the content of custom fields that were created via the EEWB for CIC? This is required at a time when the data has not been written to the database.
    I would like to know how to read this data in the CRM_APPOINTMENT_MERGE method of CRM_APPOINTMENT_BADI.
    Thanks

    Hi Michael,
    I have a requirement to replicate custom setype data created for CRM sales order to R/3 sales order.These fields have been created at item level.
    Do you know the set of steps to achieve the same.
    Any help would be appreciated.
    Thanks,
    Chamu

  • How to get module wise custom objects

    Hi ,
    How to get all the list of custom objects ( Eg : zreports, ztransactions, zscripts, zsmartforms,zwebdynpro components ..... )
    and how to segregate them which module wise ( FI / MM / SD .... )
    I am using Tadir for getting the custom objects. Please suggest how to segregate module wise.
    Thanks

    Hi,
    Entities are related to components by the package they are contained in.
    Have a look at the table TDEVC.
    Kind regards,
    Valentin

  • How to get data for custom feilds for standard datasource

    i have extracted CRM standard datasource 0CRM_OPPT_I.
    In RSA6 i slected feilds which i want to trnasfer to B Iand i also added some custom feilds.
    and then i went to RSA5 and i activated datasource.then i went to RSA3and  i extracted.
    In rSA3 selection screen all the custom feilds are selcted.
    after extraction if i go to LIST,only some of the custom feilds data is displaying remaining feilds displayed as blank data
    please tel me how to get data
    Thanks in advance
    HP

    Hi Hari,
    Sorry for late reply.
    Once you have done the proper mapping by using the transaction BWA1
    you need to write the BADI code which can be accesible from the following path:
    Go to transaction SPRO
    SAP Implementation guide ->Integration with other mySAP components ->Data transfer to the Business Information Warehouse->
    Settings for the application specific datasources (CRM) ->
    Settings for BW adapter->Execute Badi :BW adapter :Enhancement of datasources in messaging flow.
    Select you the datasource enhancement implementation it will open the BADI Implementation..
    go To interface tab and double click on the method..it takes you to the ABAP screen where you need to write the logic to populate the custom fields..
    Please feel free to mail back if you have any quries.
    All the Best..
    Thanks
    SK

  • How to get and set custom tag attributes

    How do i get and set custom tag attributes from a jsp page?

    Not sure if this is what your looking for, but....
    example...
    < taglibprefix:testtag attribute1="x" attribute2="y">
    ...of course, the attributes have to be defined in your taglib (.tld) file

  • How to get sharepoint document library metadata details from sql?

    I am creating a windows form application , in which user selects document library and after clicking on button I am creating an excel file which displays all document name with its metadata information.
    The select query which I am querying to SQL Server is:
    DECLARE @listId AS UNIQUEIDENTIFIER = 'c8508816-a7fb-43f1-82d1-62d79cbaf8e6';
    DECLARE @fileNameFilter AS VARCHAR (250) = NULL;
    DECLARE @dirFilter AS VARCHAR (250) = NULL;
    SELECT DISTINCT
    d.Id AS 'FileId',
    d.WebId AS 'WebId',
    d.SiteId AS 'SiteId',
    d.DirName AS 'DirName',
    d.LeafName AS 'FileName',
    ISNULL(d.Size,0) AS 'Size',
    d.UIVersion AS 'UIVersion',
    ISNULL(d.InternalVersion,0) AS 'InternalVersion',
    ISNULL(d.ETagVersion,0) AS 'ETagVersion',
    d.Type as 'Type',
    aud.tp_Created AS 'Created',
    ui.tp_Login AS 'CreatedBy'
    FROM AllDocs AS d
    INNER JOIN
    AllUserData AS aud
    ON d.Id = aud.tp_DocId
    INNER JOIN
    UserInfo AS ui
    ON aud.tp_Author = ui.tp_ID
    WHERE d.ListId = @listId
    AND (@fileNameFilter IS NULL
    OR d.LeafName LIKE '%' + @fileNameFilter + '%')
    AND (@dirFilter IS NULL
    OR d.DirName LIKE '%' + @dirFilter + '%');
    By using this query I am able to get the file name, its directory name, version but I want to fetch all data like custom fields with this query. I don't know which table to query for custom fields and content type fields.
    Please help.

    Hello,
    MS never suggest to query content database directly. If you do this then you are on risk and can face performance issue.
    if you really wants to get document name and it's metadata then use lists.asmx in windows application. This is standard way to get data from site.
    http://msdn.microsoft.com/en-us/library/dd490727%28v=office.12%29.aspx
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to get captions to go with pictures when saving to a flash drive?

    I JUST SPENT ABOUT 2 WEEKS GETTING NAMES OF PEOPLE AT MY GRANDDAUGHTERS WEDDING AND ADDING TO THE CAPTIONS ALONG WITH PLACE PICTURE WAS TAKEN AND DATE. 
    i JUST COPIED  AND PASTED THEM FROM ADOBE PHOTOSHOP ELEMENTS 10 TO A FLASH DRIVE.  HOWEVER, NO CAPTIONS.  hOW DO i DO THAT?????

    OK, for your family to do that, you don't really want to have the caption written on the picture:  for them to "delete it to print just the picture", that caption would have to be saved as a separate layer, and the image saved in a format that supports layers like PSD or TIF.  Then, your family members would have to mess around with some kind of image editing software that would allow them to hide that layer with the caption before printing it, and so on....
    Here's what to try (and you can test the procedure yourself on your computer):
    Right-click on a photo in the Organizer and choose "Add Caption".
    Write your caption and click "OK".
    Use File...Export As New File(s) to export that image to your flash drive.
    Use Windows Explorer to look at the image on your flash drive.  At the bottom of the Windows Explorer window, you'll see the various pieces of info about the picture, and your caption will be listed as the "Title".
    Although you have to do steps 1 and 2 one-at-a-time for each photo, when you're done with those steps, you can highlight all the images and do step 3 for all of them at once.
    Does that accomplish what you're looking for?
    Ken

  • How to get value in custom field(Part OF BOL) in search result view.

    Hi All,
    I am new to CRM WEBUI and i am facing issue in populating value in one field of search result view.
    Current requirement is .
    On product f4 , we get search help and search result view.
    one custom field need to be added in search result view ( for eg any description field).
    This description field is already  available in one of z relation  maintained in PRODUCT root object.
    Solution tried so Far:
    1. We enhance one Standard Product structure and add that description field .
    2. Add new  field( description) in result view context node as attribute by using bol attribute.
    3. Customize search result view and display that description field in result.
    By doing above three steps, field is available in  search result view.
    but issue is we are not able to get values.
    1st Approach: write code in getter and setter method . Pass the relation name and get the property of description  field
    in setter method, set the property.
    Issue : we were not able to sort the values on this description field. so scrap this 1st approach
    2nd Approach: In Event EH_Onsearch Help, we try to use collection wrapper to get current value of description
    by using relation name .
    We use component controller to set the value of description since  searchresult view-conext node->result node is bound to one comp controller node.
    but this solution also does not work..
    Please advice us  what approach we should use to get value in description field  and sorting should also work.
    Thanks in Advance.

    Hi Girish,
    1. We enhance one Standard Product structure and add that description field .
    2. Add new  field( description) in result view context node as attribute by using bol attribute.
    3. Customize search result view and display that description field in result.
    By doing above three steps, field is available in  search result view.
    but issue is we are not able to get values.
    1st Approach: write code in getter and setter method . Pass the relation name and get the property of description  field  and by using this approach we are able to get value but sorting was not working so we disable the sorting as it was not required by business.
    if u need sorting on that field.
    then u should go for value node approach and write code for getting value in get set method
    and for sorting also , need to write code.
    This is my understanding on this .
    Please reward if this solution is helpful

  • How to get list of custom objects used in abap report program?

    Hi friends,
    I have a requirement in which I have to scan the entire abap report and retrieve list of custom objects used in it for example custom tables, data elements, structures, table types etc,. Is there any provision in SAP like fuction modules to do this functionality?  As of now I am coding everything manually where so many possibilities are there for all kinds of objects. Provide your answers and suggestions...
    Thanks,
    Nastera

    Hi,
    The best way to do this is environment analysis. Follow the steps:
    1. Open se38, type in the program name (don't click on on display/change or create button, stay on first screen only)
    2. Click on environment analysis button (hot key SHIFT+F4)
    3. It will throw a pop-up, which will ask for type of object you want to see, which are linked /used by this program. select all (or may be if you are only interested in Tables, then select table only)
    4. Hit 'Enter'
    You will get the full list of all objects used in this report program. Just note down the one which starts with Z or Y and that's it.
    Cheers,
    Anid

  • How to get rid off custom installed theme completely and revert back to mavericks theme(system default)

    Recently, I tried installing a third party theme in my macbook pro (OSX mavericks_10.9.5 installed). Once installation got over i could notice that it was not properly installed in my retina display so i thought of reinstalling the same. Re-install could not be done properly because the theme was a hacked version. The installer theme packages effected the GUI of my system and thus it upgraded some of my core services applications to its custom theme format. So is there any solution to revert those services back to its default state.? Or is there any any way to get these installed format back to older format(icons and stuffs).?Or will it resolve the issue if i try installing the new OSx Mavericks (Productivity tool) from the AppStore?.Please let me know if you guys have got something the issue.
    Please help me.

    Paul--you are a life-saver!! Worked great. I did have to look around to make sure I was getting 4.9 instead of 4.7 (even when the file was named 4.9 at techspot.com), but I finally got the right file, did the install as you suggested, and everything is now fine. One note, though, that I haven't seen mentioned in any of this thread: when I first tried to open up iTunes after getting back to 4.9, the following message appeared: "The file iTunes Library.itl cannot be read because it was created by a newer version of iTunes." I merely went to the old .itl file that was created when I did the update to iTunes 5, renamed it, moved it over to my now new 4.9, and iTunes opened fine. My library was a few days out of date, because of the few days' lag from the time I did the iTunes update, but that was easily taken care of, and everything's now working fine. Thanks again!!!

  • How to get user detail (Customer number) in Visual Composer

    Dear All
    I am developing a Sales Order Search application for Customers of my company.
    Whenever customer logs in to the portal and access this application, he will get the information on Sales Orders created by him.
    VC application should capture the customer number of the user and execute the BAPI.
    I am not able to capture the customer number of the customer logged in.
    In our portal implementation, customer number is a customized entry in Identity management.
    Using User Data in VC is not helping me as I am not able to see customer number in it.
    Kindly help.
    Regards
    Vineet Vikram

    Hi
    It is resolved now.
    Regards
    Vineet

  • How to change order of custom metadata fields in the properties tab

    Hello all
    i have added some custom properties in a folder on the km content but i can not arrange the properties in any logical order.
    your help please
    Thanks
    Ronen

    Hi Ronen,
    you can
    If you have defined the properties working now, you know this path: System Administration - System Configuration - KM - Configuration - CM - Global Services - Property Structures.
    There you have the property structure DefaultPropertiesStructure using the property group all_groups.
    all_groups consists of system, custom ... etc. in the order the tab strips come up when using details for a resource. Within each group, under group items the property or the property group to be rendered appears (in the order they get rendered). This holds recursively for all groups.
    If you have defined your properties within group "custom", just arrange them in Group Items in the order you like.
    Hope it helps
    Detlev

Maybe you are looking for

  • Grid or light box type report in SSRS 2012

    Hi I am trying to create a grid report like a light box type display in SSRS. I want to display images horizontally across the report and then down. I am using VS 2013. I understand from my searching that this can be done using a matrix control and g

  • FTP_CONNECT: User ------- has no access authorization for computer -------.

    Hi, could anyone please help me resolve the following issue: When i run the code below, it comes back saying "could not connect to "host". When tried to run in debug or test the FM "ftp_connect" it says "user ..... has no access authorization for com

  • Creating worksets??

    Hi all,       Is there any way of creating a workset programmatically? I've created an iView & added it to a page programmatically.Now,I wud like to add my page to a workset. Any help wud be greatly appreciated. Thanks & Regards, M.Subathra

  • How can I edit original e-mails from friends?

    I've been able to do this w/Firefox 3.6.2 on my previous computer & present one ever since my first install. I would open e-mail, click on it & was able to delete or add text. Two days ago I was using backspace to remove text & decided to highlight a

  • Transform cells to columns in SSIS

    Hi everybody, first i have to say, iam really new in SSIS and i try something. I have an OleDB filled from a Excel Sheet. That works great. The excel Sheet or the table in this case contains data in following format: Cell 1 - Contains Year Value Cell