Output 15, generator expressions for custom fields?

I am currently creating a customer with Siebel CRM On Demand. The customer is envisioning followed quantity sold every month and would like specific unit. Ideally, I would like to implement the custom fields for units and another for the recipes. In our demo account, I am able to create custom fields and assign a field type and create a function in the default domain.

However, I noticed in the Siebel CRM client version there is NOT the same features to create mathematical expressions for a custom field? Nobody knows what happened to this feature? Is there a way to bypass? I need people ideas!

-Nicole

Try asking in the forums "Siebel CRM On Demand" which can be found here:

http://forums.Oracle.com/forums/category.jspa?categoryID=162

Axel

Tags: Oracle

Similar Questions

  • Verification of empty tags using generator expressions for XPATH

    I create multiple filters in a mediator for several parallel tracks. I am trying to move the Ombudsman towards the right adapter DB according to what tags are empty in the incoming XML file. The XML has a required tag 1 and 3 in option. Then for the expression, I use the generator expressions for loading the tag name, and then put either [text()] or [not (text ())] immediately after each tag with one 'and' the 3 optional elements in between. The problem I have is that they always return false. By example, if I enter a value for an optional tag and put [text()] after him, it is false. What is the correct way to check if an element has text or not?

    Thanks in advance!

    Hello
    Its not to recognize the func getVariableData... try instead this:
    string-length (XPath) > 0
    ex: string-length($in.body/imp1:manoj/imp1:C1) > 0

    It works... Deployment of happy :)

  • Generate values for automatic fields

    Dear gurus,

    I want to generate automatic value for each field in the form, as for example in the course of field OLM code or any field in any application how can I fill with automatic generated value each time as sequence concatenated with some characters?

    Thank you

    Visit this link
    http://apps2fusion.com/apps/14-FWK/195-OA-framework-R12-extension-example

    Thank you

  • WebApp Custom Fields with liquid

    With the liquid rendering engine tags in webapps have changed.

    For example, in the layout of the list I could view the name of the Web application element by using the following tag: {tag_name_nolink. with liquid I use:{{name}}

    But for custom fields webapp, what is the equivalent liquid?

    Example:

    I have a tag called "reserved". I can output the use of tag: {tag_Reserved by}. With the liquid how would display the same tag?

    Am I missing something?

    Lynda

    Words Mario to see what is available, not only on the web apps but to access a custom field because it has a name that can be spaces etc you do as follow:

    {{it. ["My custom field"]}} is how you get a custom fields data.

  • Create a virtual report machine include: Pool of resources with custom fields

    Hello

    I would like to create a VM report that includes the name of the virtual host computer and Discription, as well as the virtual machine Resource Pool belongs too.

    I would also report to query for custom fields, provide the names, values, and to give it in a format that works with export-csv.

    I have a start on the script and it included as an attachment.

    How should I go about adding custom fieldsvalues?

    How can I add the name of the Resource Pool of the report?

    Thank you in advanced for your help.

    Tim

    The problem with the CustomFields, is that I don't know how they are defined on a guest.

    It's a problem when you want to make an Export-Csv thereafter. The cmdlet can handle variable-length items in the table very well.

    That's why I put 1 CustomField in 1 rank.

    $report = @()
    Get-ResourcePool | %{
         $rpName = $_.Name
         $_ | Get-VM | %{
              $vmName = $_.Name
              $_.CustomFields | %{
                   $report += New-Object PSObject -Property @{
                        ResPool = $rpName
                        VM = $vmName
                        CustomName = $_.Key
                        CustomValue = $_.Value
                   }
              }
         }
    }
    $report | Export-Csv "C:\report.csv" -NoTypeInformation -UseCulture
    

    BTW, the Export-Csv cmdlet is a standard cmdlet. Has nothing to do with Dmitri.

    Note that the script in this format requires PowerShell v2 RTM

    ____________

    Blog: LucD notes

    Twitter: lucd22

  • Question regarding setExtent and getPreferredWidth for the custom field

    I am trying to understand the difference between getPreferredWidth and setExtent, which relate to the width of a custom field.

    I create a field that may be greater than the width of the screen. The field is made up of cells (for example columns and lines or cells, such as a table). The cells contain text, shapes, lines, color, etc. When I display the field I only paint the visible columns on the screen and allow the user to use the trackball to accomplish the columns out of the screen.

    At present, getPreferredWidth returns the total width of the field without all the empty columns, is longer than the width of the screen. I use the same value in setExtent for width. GetPreferredWidth must return the size of the field that is painted on the screen - the total width less the width of the columns out of the screen? I have the same question about setExtent - width either in total, longer than the screen width or the width of the part of the field that is painted on the screen?

    If I use the width of what is painted on the screen or the other of these methods, then the width changes when the user scrolls through the field. As the user scrolls, I calculate the number of columns will agree to a width of the screen and paint these columns. Is it a problem to have the PreferredWidth and the setExtent change width? I read that setExtent is called only when the Manager sets this field, so that the changes will not be recognized.

    It seems to work in two ways in a few simple tests, but I was just curious as the value of width that is right.

    Thank you!

    Mark

    When a field has changed in a way that requires the update of the screen (for example, after scrolling offset changes), simply call invalidate() from this area. That will eventually lead to paint (Graphics) for the field. At this point, you return the update field. (If only part of a field - as a single cell - needs to be updated, there invalidate() versions that accept arguments where, for efficiency, you can limit the update for just this part.)

    If I understand your needs, you can achieve the effect desired in the paint method. You can use the current dimensions of the field, the cutting of the graphics area, and your internal roll compensates to decide what to paint and what to delete. Let your custom field leave white space where you decide of doesn't make is not part of a cell. There is no need to change the scope of the field.

    If you go about it by changing the dimensions of the field, and then you ask the system to play much more work he has to do. If the custom field is the only field on the screen, it won't make much difference in the behavior (although there may be performance). With more than one field, it can be weird effects. For example, suppose that your custom field is one of several fields in a HorizontalFieldManager and you change the field width. When the HorizontalFieldManager recalculates its own layout, it will change the horizontal position of the fields to the right. The effect on the user, I think, would be really confusing: as the custom field parade, parties to the right of the screen could bounce left and right as the changed width field. I can't imagine that's what you want.

    Here's another way to think about this: absent some bit of style, your custom field would prefer be exactly wide and high enough to show all without scrolling. So the width and height would be based on adding the appropriate cell widths and heights, regardless of what actually is on the display. (It's also a long time that you do not have something fanciful.) If the optimum height is a function of the width available - as with sheathed on the line of text - you would implement this logic in the layout method. You then have no use for autonomous preferred width and height).

  • Problem in designing a custom field for the display of paragraph

    Hello

    I need to develop a custom field that is supposed to act as a RichTextField with the additional of the hyperlink feature as seen in the web pages. I have a few paragraphs of text with an id associated with each of them. A paragraph may have link to another paragraph. I think that the hyperlink is actually like a button.

    My screen will consist of a single paragraph. If any hyperlink (id) in this paragraph is preesed then the screen reloads with another paragraph (id in a hurry).

    My problem is to develop a custom field for the display of this paragraph.

    Point: several lines of text without interruption. Some of the text may be bold, italic. a text can be the hyperlink.

    Now I'm stuck. I have no ideas how I can start with. Can someone give me please suggestions as to how I can start with?

    Thanks in advance

    Bika

    I have a different Suggestion.

    If you are using an ActiveRichTextField, you get two things:

    (1) the ability to shape a field using different fonts:

    Comment - formatting text in a RichTextField
    Article number: DB-00124
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800345/...

    (2) the ability to create "links" automatically using string models

    How to-to comparison models in the BlackBerry smartphone to provide a user experience integrated applications
    Article number: DB-00525
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/...

    Using models of string, I think you'd be able to create ' hot-link in your text, which the run Menu item was able to process you want.

    Just an idea.  Hope this works for you.

  • How can I access the recipient "subordinate" in the expressions for the participant to ApprovalTask generator type "by the expression" value?

    Hello

    How can I access the recipient "subordinate" in the expressions for the participant to ApprovalTask generator type "by the expression" value?

    I can access some details of the beneficiaries of the workload, but how to access direct subordinates?

    TIA

    Leo

    Well, as I said, if you need to get a list of all rollover (for whatever logic you have), making calls to IOM to find the list of users whose Manager is the person in your composite.

    Sorry if I am wrong again.

  • Is it possible for 2 or more FxV strike filters to change the same custom field?

    Hello

    is it possible to have 2 (or more) FxV hit update the same custom field filters?  I know that the filters 2 or more successful can update the same metric, but not what I need.

    I have a filter tube set for each stage of a procurement process of several steps (such as beginning, calculateOrder, processPmt).

    In the first filter of success, I have extracted something similar to a username.  That the same info is in the other two hit filters for each step of the process.  If the FxV user performs a search on the 3rd filter, that is processPmt, then in results research they won't see all of the data that in are extracted by the first hit (start) filter.   So I tried to add a custom field to the 3rd hit filters which also extracts the data of the user ID and her add her to the same custom field, but it won't let me because this field is already used.

    ideas?

    THX

    "mark".

    Mark,

    I can be missing what you are trying to do, but you should be able to use a custom field in another filter of success.  You want to ensure that you choose the name already in use, as opposed to the 'new custom field".  So for the update/addition to hit the 'user name' field, you'd like this screenshot.

    You set the condition and choose setting the value to append or reset as you wish.  And then save the filter hit.

    Was what you were trying to do, or something else?

    Jeff

  • How long does it take for the custom field created in SFDC appears in the list of field mapping?

    How long does it take for the custom field created in SFDC appears in the list of field mapping? I hit the refresh field button, but it does not appear after 5 min. I just need to have patience?

    I had the same problem yesterday, I think it took about 10-15 minutes to appear.

  • [Solved] Custom field for organizations

    I want to add a custom field to each organization.
    In this case our own unique customer reference ID.

    -Max 128 characters
    -No visible to users in the Organization
    -Only editable and searchable by the system administrators of the Organization of the system.
    -Editable via the RESTful API

    Is this possible in vCloud Director? And if not, you have any suggestions for a solid solution?

    Thanks in advance!

    Well, it's really a security issue with deleting and editing the data.

    I don't know if it's OK in your case, but if it is possible to map the Organization to a VCC of concrete supplier, then you can put the metadata in the provider VDC, with the key, the Organization ID. Provider metadata VDC are visible and editable by Sys Admin.

    #Hristo

  • One for the era: how to get this output using REGULAR EXPRESSIONS?

    How to get the bottom of output using REGULAR EXPRESSIONS?
    SQL> ed
    Wrote file afiedt.buf
    
      1* CREATE TABLE cus___addresses    (full_address                   VARCHAR2(200 BYTE))
    SQL> /
    
    Table created.
    
    SQL> PROMPT Address Format is: House #/Housename,  street,  City, Zip Code, COUNTRY
    House #/Housename,  street,  City, Zip Code, COUNTRY
    SQL> INSERT INTO cus___addresses VALUES('1, 3rd street, Lansing, MI 49001, USA');
    
    1 row created.
    
    SQL> INSERT INTO cus___addresses VALUES('3B, fifth street, Clinton, OK 74103, USA');
    
    1 row created.
    
    SQL> INSERT INTO cus___addresses VALUES('Rose Villa, Stanton Grove, Murray, TN 37183, USA');
    
    1 row created.
    
    SQL> SELECT * FROM cus___addresses;
    
    FULL_ADDRESS
    ----------------------------------------------------------------------------------------------------
    1, 3rd street, Lansing, MI 49001, USA
    3B, fifth street, Clinton, OK 74103, USA
    Rose Villa, Stanton Grove, Murray, TN 37183, USA
    
    SQL> The REG EXP query shouLd output the ZIP codes: i.e. 49001, 74103, 37183 in 3 rows.
    Published by: user12240205 on June 18, 2012 03:19
    /* Formatted on 2012/06/18 17:25 (Formatter Plus v4.8.8) */
    SELECT REGEXP_SUBSTR ((REGEXP_SUBSTR (full_address, '[^,]+', 1, 4)), '[[:digit:]]+') RESULT
      FROM cus___addresses
    
  • Helps with the syntax of the workflow for the custom field

    I created a custom field called 'qualified Date '. Our current workflow is at work,

    (PRE ("< SalesStage > '") <>[< SalesStage >]) AND (PRE ("< SalesStage >") = 'Lead')

    The goal is that whenever the opportunity is taken from the stage of lead, it is called.
    However, I don't want the full qualified date when a lead is moved to Closed/Lost.

    Any suggestions on how to change this workflow to make that happen.

    We have a similar workflow, and we use a slight variation of what has suggested Shilei.
    PRE ("< SalesStage > '") <>[< SalesStage >] AND PRE ("< SalesStage >") = 'Lead' AND FieldValue ("< SalesStage > '") <>' closed/lost '.

    Good luck
    Thom

  • "Do not put the laptop near devices such as TV speakers/fridge that generates a strong magnetic field" what is the effect of this?

    Original title: do not put the laptopn close device suas: a fridge that generates a strong magnetic field of the speakers on the TV? What is the effect of the magnetic field, causing the laptop?

    Do not put the laptopn close device suas: a fridge that generates a strong magnetic field of the speakers on the TV? What is the effect of the magnetic field, causing the laptop?

    Hi stuckfree,

    Magnets are used in computers for various purposes, for example in the hard drives. Several parts of a laptop computer may be affected by a magnet. More commonly known as material element affected by magnets is the hard drive.

    That is not exactly true. Hard drives are well protected against most of magnetism, and most even use a magnet to turn, but many strong magnets and electromagnets can and will damage a hard drive. More likely to be affected is the BIOS of your computer (Input\Output base system) ROM, which shows how to use the basic components and boot into the operating system to your motherboard.

    So it's best to avoid placing computers\laptops close to all these devices.

  • I need a Set accessor for custom data

    The vSphere API exposes a SetField method to handle custom fields stored in the object, but I was able to sort out how to access with the perl SDK.

    http://www.VMware.com/support/developer/VC-SDK/visdk41pubs/ApiReference/Vim.CustomFieldsManager.html

    Yesterday, I was able to sort out how to access these custom data.  Details of my rather inelegant solution are found here:

    http://communities.VMware.com/message/1891199#1891199

    While it works fine, it is creating a dependency on the structure of the object's data, rather than using its published interfaces; that is fragile to changes in underlying libraries.  If anyone can point me to an object-> method() documented to do so, I would be grateful.

    But tonight my goal is to find a way to set the values of these custom fields.

    sub update_custom_data_by_name {
      my $self = shift;
      my $vm = shift;
      my $custom_field_name = shift;
      my $custom_field_new_value = shift;
    
      print 'Our value starts as: ' . Dumper $self->extract_custom_data_by_name($vm,$custom_field_name);
      my $value;
      foreach my $field ( @{$vm->get_property('availableField')} ){
        if( $custom_field_name eq $field->{'name'} ){
          my $key = $field->{'key'};
          foreach $value ( @{$vm->get_property('customValue')} ){
            # $field->setField($key,$custom_field_new_value);
            if( $value->{'key'} eq $key ){
              $value->{'value'} = $custom_field_new_value;
              print Dumper( $value );
              $vm->update_view_data();
              last;
            }
          }
        }
      }
    
      my $confirmed_field_value = $self->extract_custom_data_by_name($vm,$custom_field_name);
      return $confirmed_custom_field_value;
    }
    

    Commented the call to-> setField died as planned to call an undefined method.  While it is defined in the underlying API, it is not exposed by the perl bindings.

    The Dumper() call in the second nested condition shows me the value I'm looking for.  While I have this practical value, I so go ahead and -> update_view_data() before leaving the scope.  However, after the bombing of this loop, pulling this value (using the new method from last night to this effect), me gives UNDEF, so I know I'm an impact, even if not update its value I intend.

    My output looks in part like this:
    
    Our value starts as: $VAR1 = 'DEV';
    $VAR1 = bless( {
                     'key' => '10006',
                     'value' => 'Staging.Refurbish'
                   }, 'CustomFieldStringValue' );
    Our updated custom value is now: $VAR1 = undef;
    

    Can someone please tell what it is that I'm missing here?

    Take a look at these examples that show you how get/set of custom fields to vCenter:

    Download

    http://communities.VMware.com/docs/doc-10220

    Set

    http://communities.VMware.com/docs/doc-14586

    http://communities.VMware.com/docs/doc-10550

Maybe you are looking for

  • Satellite P750 - guaranteed date wrong

    Hello world! I just got a message from Tempro saying that my warranty will expire soon. The thing is that I bought my laptop on Amazon.de on February 3, 2013. Looking at the date recorded, it is said 2012. This is completely wrong and I know that I h

  • can not access google play movies and tv app

    I tried to access google game films and television, but he wouldn't take my password

  • Unable to print error: is not an ethernet driver

    Original title: Printer does not print Please help me I'm so aggravated. I have a Samsung laptop, RV520. I onstalled a HP Photosmart all-in-one wireless printer C4580, scanner, copier with the instalation disk. It wouldn't work so I had to go buy an

  • Search for text in the option in Windows Search 4.0 Preview pane doesn't work do not

    I use XP SP3.  I recently downloaded Windows Search 4.0. When the Windows search results window opens, I noticed that it is possible to search for text in the preview pane.  I click on a file and go to OPTIONS > COMPONENT of VISUALIZATION, but see th

  • Problem of updates. Error 80070005.

    Updates problem On my computer says windows could not check the updates... an error occurred... code 80070005. -What this means and how can I solve this problem?