How Do I output Custom CRM Fields?

There is currently no reference or insertion method to obtain these very easily but it can be done.
Note: This topic assumes you have already made your custom fields.
Step 1:
Create a Test Page or go to a test page you may have.
Step 2:
Launch the module manager
Step 3:
Select the Securezone options and go to insert an Customer update details form.
Step 4:
When you click the link you will see the CRM fields dropdown appear, Choose the custom field set you made.
Step 5:
Insert the form into the page.
Step 6:
If you Click the HTML view and scroll to where it has inserted the custom CRM fields and look at the source you will see that there is the module tag code you need.
<tr>
      <td><label for="CAT_Custom_201289_72865">Secondary Support Manager Email</label><br />
      <input type="text" class="cat_textbox" id="CAT_Custom_201289_72865" name="CAT_Custom_201289_72865" maxlength="1024" value="{module_customerfield,72865,201289}" /></td>
</tr>
{module_customerfield,72865,201289} is what your after.
Step 7:
Copy the module code and use as you need to in your templates. Please note that these will only work when logged in and only for that person who is logged in.
So, what is this good for?
You may want to show a company Logo in the template when they have logged in for example. This is perfect for this.

I'm trying to get this to work to no avail...
I have ceated an Extended CRM Field that has a series of check boxes. I inserted the "Edit Customer Details" form on a page. In the custome record I just want to display the selection of the field, not the entire list of checkboxes. I also wanted to use tis field (The selected checkbox) in the checkout form. Anyway the code looks like this:
          <tr>
                <td><label>Premium Seating Boxes</label><br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_0" value="PSB 1 - Regina Pats" />PSB 1 - Regina Pats<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_1" value="PSB 2 - CKCK TV" />PSB 2 - CKCK TV<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_2" value="PSB 3 - Molson Breweries" />PSB 3 - Molson Breweries<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_3" value="PSB 4 - Coca-Cola" />PSB 4 - Coca-Cola<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_4" value="PSB 5 - All-Rite Plumbing" />PSB 5 - All-Rite Plumbing<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_5" value="PSB 6 - Dilawri Group" />PSB 6 - Dilawri Group<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_6" value="PSB 7 - Yara-Sask Ferco" />PSB 7 - Yara-Sask Ferco<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_7" value="PSB 8 - Leipert Financial" />PSB 8 - Leipert Financial<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_8" value="PSB 9 - Evraz" />PSB 9 - Evraz<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_9" value="PSB 10 - SaskTel" />PSB 10 - SaskTel<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_10" value="PSB 11 - Evraz" />PSB 11 - Evraz<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_11" value="PSB 12 - Brandt Tractor LTD." />PSB 12 - Brandt Tractor LTD.<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_12" value="PSB 14 - Viterra" />PSB 14 - Viterra<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_13" value="PSB 15 - Leader Post" />PSB 15 - Leader Post<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_14" value="PSB 16 - The Co-Operators" />PSB 16 - The Co-Operators<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_15" value="PSB 17 - Mosaic" />PSB 17 - Mosaic<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_16" value="PSB 18 - Harvard Western Insurance" />PSB 18 - Harvard Western Insurance<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_17" value="PSB 19 - Regina Pats" />PSB 19 - Regina Pats<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_18" value="PSB 20 - Bayer Corp." />PSB 20 - Bayer Corp.<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_19" value="PSB 21 - Fries Tallman" />PSB 21 - Fries Tallman<br />
                <input type="checkbox" name="CAT_Custom_434349_142115" id="CAT_Custom_434349_142115_20" value="PSB 22 - Sask Gaming" />PSB 22 - Sask Gaming
                <script type="text/javascript">function setSelectedCheckbox(radioObj,options) {optionsToSelect = options.split(',');for(var i = 0; i < radioObj.length; i++) {radioObj[i].checked = false;if(optionsToSelect.indexOf( radioObj[i].value) != -1 ) {radioObj[i].checked = true;}}}; setSelectedCheckbox(document.getElementsByName('CAT_Custom_434349_142115'),'{module_custo merfield,142115,434349}');</script>
                </td>
            </tr>
So I grabbed the section {module_customerfield,142115,434349} and iserted it in the form but it doesn't display anything at all. Is this because it's checkboxes? Any help on this would be greatly appreciated.

Similar Messages

  • How do I output custom CRM fields on a Customer Orders list layout template?

    I am familiar with using {module_customerfield, 123456, 789123} to show custom CRM fields for Customers, however I would like to know if I there is a way to do that for Orders. I have a Customer Orders list layout template with a table:
    Reference#          Details                         Name
    {tag_orderid}        {tag_ordername}         {module_orderfield, 168113,509283}
    Is there a way in BC to output custom CRM Order fields?

    I am familiar with using {module_customerfield, 123456, 789123} to show custom CRM fields for Customers, however I would like to know if I there is a way to do that for Orders. I have a Customer Orders list layout template with a table:
    Reference#          Details                         Name
    {tag_orderid}        {tag_ordername}         {module_orderfield, 168113,509283}
    Is there a way in BC to output custom CRM Order fields?

  • Accessing Custom CRM Fields using {module_data}?

    I know I can access CRM data on the site using {module_data version="v3" resource="customers"}.
    Is it possible to access the Custom CRM fields using the {module_data} tag? If so, how do I do that?

    Hi Lynda,
    Vote, comment and add your 2cents to the idea thread of this same idea. And use your powers of persuasion to get BC to hurry up on this feature!
    https://forums.adobe.com/community/business_catalyst/developer_forum/content?filterID=cont entstatus[published]objecttypeobjecttype[idea]
    Please vote, your voice counts.

  • How can I look up a user's details by a custom CRM field?

    Hi all,
    I'm researching the possibility of using BC to record brick-and-mortar sales to site members who have a membership card. The way I imagine this would work in the site is that each user on BC would have a barcode field containing their membership card's barcode number. After each sale, the checkout person would scan the customer's membership card, and BC (using a web form) would record a case for the sale. Initially, there would be no data recorded on the monetary value of the sale, just the fact that the customer bought something.
    I've had no trouble setting up the CRM field for the user's barcode, but I'm having some difficulty with the web form to record the sale. BC requires that it record the full name and email address of the customer as well as any other fields I might add (ie. the barcode), and it would be too cumbersome to enter these each time a customer with a membership card bought something.
    I think a possible solution would be to look up the customer's name and email address from their barcode number using Javascript and then populate those fields in the form. I'm quite capable of writing the JS to accomplish this, but I haven't found a way of getting that information out of BC. Do you know if there is a way to do that? Or is there another way of solving this problem that I haven't thought of? Thanks in advance for any pointers you can offer!
    Cheers,
    Rohan

    h.put(Context.INITIAL_CONTEXT_FACTORY," ********what should i use here???????*************************")
    Each app server provides their own jndi factory class. For ex for weblogic it is weblogic.jndi.WLInitialContextFactory. SInce you are using sun app server, check if there are any examples to find out or the docs.
    private static String url="http://localhost:4848
    Since the client is in a different machine the localhost is not going to work here. provide the url or the machine name of the system in which ur sunapp server is running. In addition u will need to have the stubs of the remote interfaces in ur client machine.

  • Report Painter: How to add new(customer specific) field to CCSS table

    Dear Experts,
    We have requirement to display the orders based on Profit center or Profit center groups in report painter. So in report library(6O1), we want to add fieild PRCTR or any customer specific field(ZPRCTR) to CCSS table. Could you please let us know how to add field ?
    or is possible to add customer specific field(ZPRCTR) in CCSS and link that field to Profit Cetner(PRCTR) and profit center group.
    Please help us..
    Thanks in advance

    You can check the below OSS notes:-
    <https://service.sap.com/sap/support/notes/929889>
    <https://service.sap.com/sap/support/notes/522581>
    <https://service.sap.com/sap/support/notes/43493>
    Regards,
    Gaurav

  • How to add a custom Project field in the "OData Projects Data.odc" connection file? Project server 2013

    Hi,
    I created a project Enterprise field named "Countries and Cities" which contains a lookup table with information such as "USA.Seattle". How can I add this field in the oData connection file?
    Thanks 

    Paul,
    How do you write the custom field name
    "Countries and Cities" which contains 2 spaces?
    I always get the error:
    "We couldn't get data from the Data Model, Here'is the error message we got:
    The content of the data feed is not valid for an Atom feed."
    Thanks

  • How to make a custom infotype field the time constraint 1?????

    Hello everyone I have this challenging question for gurus to answer it.
    In custom created infotype for OM Ii have that field called ZZJOBID. When infotype was created I assigned the time constraint 1 for that infotype. That time constraint was base on OBJID not on ZZJOBID. Now the problem I am encountering is when I assign the 2nd ZZJOBID  with time span 01011800-12319999 it overwrite the 1st assign ZZJOBID.
    for the requirement reason I have to use PO10( not po03). If I change the time constraint to 3 which let me have the multiple records but I am losing the delimit and other functionality which comes with time constraint 1.

    Suresh,
             you are wright when you say that ' Time Constraint is for the Infotype/Subtype record and cannot be based off a field.' The OM infotype runs on bases of Object such as Organizational Unit, Job, etc... The point I was trying to draw is I am looking for a way that allow me to work via TC PO10 which run on Organizational Unit along with different ZZJOBID (with same begda and endda, if needed).

  • How do I output the "Customer Type"

    I am want to hide some content in a secure zone based on the "Customer Type".
    How do I output this CRM field?

    What class is your req variable? If your using a HttpServletRequest, then there is no method req.setContentType("");
    In the HttpServletResponse this is for telling the web browser or receving medium what kind of mime type to expect.
    And what package is the HttpConnection class from?
    I think more precise info is required before this question can be answered.

  • How to export custom metadata fields

    How do I export custom metadata fields (or even the DATE) to a text or spreadsheet? Why does Aperture have dozens of metadata choices, but only allows a few to be exported?

    You can try Automator which must be installed already in your computer. Create a new workflow, on the left pane select Aperture to see a list of actions, select "get selected items" and "extract metadata", and drag both to the right most pane. there you'll choose the Tag names to extract from the images already selected inside aperture and choose an output method, tabbed text should work fine for a spreadsheet. Hope it works.

  • IS-RETAIL: How to update custom enhancement field using BAPI?

    Hi gurus,
    Like ECC BAPI: BAPI_MATERIAL_SAVEDATA,
    This BAPI(BAPI_MATERIAL_MAINTAINDATA_RT) is specific for IS-RETAIL to create and update material master data.
    But now If I append one custom field "ZFIELD" to end of table MARA, my question is how to update this custom enhancement field(ZFIELD) using BAPI(BAPI_MATERIAL_MAINTAINDATA_RT)
    Thanks in advance!

    Hi DongHai,
    I suggest you create your own BAPI. Just copy the codes in BAPI_MATERIAL_MAINTAINDATA_RT and add your custom fields. If you want to append the data of the custom field in table MARA, first, you have to create a structure table then goto SE11, type MARA and display. Click the APPEND STRUCTURE then choose the structure that you've created. Hope this will help.
    Rewards if useful
    Regards,
    Mark

  • How to embed custom search field in toolbar

    My organization wants to integrate the Zoom Search Engine by
    Wrensoft with RoboHelp 7. We want to embed the search input field
    for Zoom in the main toolbar of the Help window. The skin editor in
    RoboHelp does not provide an easy way to do this. I can add a
    custom button that links to the custom search form, but I cannot
    figure out how to embed a custom search field in the toolbar. Does
    anyone have any experience or direction you can provide us?

    I very much doubt that can be done. There's a topic on my
    site about integrating ZoomSearch but the start point of any search
    is a field that ZoomSearch provides in the htm page it creates.
    Getting that field onto your toolbar is going to be outside the way
    Zoom was designed.
    Your developers would have to pull apart the mechanics of
    that page and figure it out, if it can be done.
    Have you tried approaching WrenSoft to see if they can
    suggest anything?
    Personally I think it is going to be a massive effort for
    minimal benefit. What's the objection to clicking a button that
    provides a page with the field and the results? If you get the
    field into the toolbar, the search page has still got to display to
    show the results.

  • How to display output without fieldnames in write statements

    hi,
    can any one tell how to get output with all fields values of a table without writing fieldnames in write statement.
    giv proper code for this task.Thaks in advance.

    hiii
    if you want to write just values then you can use write statement only ..no need to do anything else.simply write as follows
    LOOP AT t_customer INTO fs_customer.
      WRITE:/ fs_customer-customer_no,
              fs_customer-customer_name,
              fs_customer-customer_amount.
    ENDLOOP
    reward if useful
    thx
    twinkal

  • Customer specific field.........

    hi,
    1- How can i  create customer specific fields for PROJ DEF. & WBS.
    2- how it will come on the PS WBS or Proj. Def. Screen

    Hi,
    You can create Customer Specifc field through Enhancement of Configuration. You need to go to transaction CMOD & define the enhancement. ABAPer will be required for this purpose.
    Hope this will help you.
    Regards,
    Rakesh Pradhan

  • How to delete custom AET fields in CRM 7.0 Web UI

    Hello gurus,
    When I want to delete a custom AET field created by a mistake or for exercising purposes only, the UI Config tool markes it for deletion by changing a status to "Marked for Deletion" (a garbage bucket icon). My question is how to proceed further, i.e. eliminate the field completely. Do I need to manually delete the fields from the "Append" structures in the corresponding CRMS_xxxx Attribute structure, or do something like this?

    Hi,
    note: please do not delete the field manually from SAP GUI.
    AET is able to create and delete custom field. The deletion process happens always in 2 steps.
    1. you select which field you want to delete and press on delete icon. This will mark the field to be deleted.
        As long, you do not "Save and Generate". This deletion mark will not be persisted and the complete deletion of the field will not be executed. Having this mechanism, you are always able to cancel the deletion.
    2. If you really want to delete the field. Press on "Save and Generate". "Save" will persist the deletion mark for the field.
        And "Generate" will do the "Delete" generation.
    Please don't forget to remove the field from the UI configuration, when you configured the field in any UI Config before.
    Regards,
    Steve

  • How to create a custom report and include multiple extended CRM database?

    I have created a number of CRM databas extensions and applied all there fields to my contacts and cases.
    I might have for example:
    - Additional address details
    - Business information
    - Quote Details
    - Trade Referees
    I know how to run a custom report and that I can select any one of these extra CRM databases as a filter and included them in the report. Is there a way though to add more than one (preferrably all) of the extra CRM databases to the report?
    The onely ways I can see it work is by either include all fields in one extra CRM database (not ideal) or bu running multiple reports and merge them somehow in Excel.
    Is there another way that I am not aware off?
    Thanks for your help,
    Jerun

    Hi Jerun,
    There's no way to do that. You'll need to run separate reports and merge them in Excel.
    -m

Maybe you are looking for