Add attribute to case managemet

Hi, I need to add a partner to case management as attribute. I do it. But I need to
show the name of the partner when i select it.
I have seen that some standard attributes take the description into screen.
I tried to change the data element, but don't work.
Thanks.
Ivan

Look to the clientListener tag with a type="load", within the document tag as follows:
<af:document>
<af:clientListener method="callSomeJavascriptMethod" type="load"/>
If you're loading javascript in addtion you need the resource tag:
<af:document>
<af:resource type="javascript" source="SomeJavaScriptFile.js"/>
<af:clientListener method="callSomeJavascriptMethod" type="load"/>
CM.

Similar Messages

  • How to add attributes in Cost Objects via Data Bridge?

    Hi everyone,
    I need your help. I want to know if is possible to add attributes via Data Bridge in Cost Objects tables like the country or address of a customer?
    Thanks for all.
    Sincerely,
    Pedro Sousa

    Hi,
    Jef is right you need to use the different values in the "Attribute Flag" field for creating attribute hierarchy using data bridge.
    For attribute Hierarchy you need to use option 12 & 15 depending on your requirement.
    12  - Attribute Assignment  - Used for assigning attribute to a member of the main hierarchy
    15  - Attribute Hierarchy only - used for creating hierarchy within attribute hierarchy.
    As mentioned by Jef for details you can refer the Data bridge user guide section 4.3.
    Regards,
    Niraj

  • How to add Attributes to an asset? [URGENT]

    Hi,
    We are developing an application that need to add attributes to an asset depending on Product associated. Someone knows how to add the attributes automaticlly?
    FYI. We have not licensed the Configurator module.
    Please need an answer ASAP.
    Thanks

    Hi,
    We are developing an application that need to add attributes to an asset depending on Product associated. Someone knows how to add the attributes automaticlly?
    FYI. We have not licensed the Configurator module.
    Please need an answer ASAP.
    Thanks

  • How to add attributes to a DATS type characteristic

    I need to add some attiributes to a 0CALDAY type of characteristic.  I need to be able to do automatic time conversion in my transformations (e.g. from Cal Day to Cal Month or Cal Year).  I also need to have intelligent variable offsets in my queries too (e.g. the month of January-01 with a negative offset of 1 would be 12, not 00). 
    However I need to add some attributes to this Calendar Day characteristic such as "day of the week", "Week Number", etc...
    I need this as attributes and not as seperate InfoObjects such as 0CALDAY, 0CALMON, AND 0CALYEAR.  I need to be able to use the same date throughout my entire report, but then using the nav attributes, restrict based on what they selected in the variable screen.

    Hi Adam,
    It is not possible to define your own time characteristics or add attributes to any time characteristic.
    Time characteristics form the time reference frame for many data analyses and evaluations. They are delivered with Business Content.
    Examples:
    -->Timecharacteristic with the largest granularity: Calendar Day
    (0CALDAY)
    -->Time characteristic with the smallest granularity: Calendar Year
    (0CALYEAR) or Fiscal Year (0FISCYEAR).
    -Vikram

  • How to add attributes in the xml tag

    hi,
    i have two tables employee,department
    employee table
    empno number,
    empname varchar2(100),
    deptno number,
    department table
    deptno number,
    deptname varchar2(100)
    i want xml file in the above mentioned two tables.The xml file is as follows,
    <?xml version="1.0" encoding="UTF-8" ?>
    <EmployeeInfo>
    <Data type="employee">
    <empno>1</empno>
    <empname>siva</empname>
    <deptno>10</deptno>
    </data>
    <Data type="department">
    <deptno>10</empno>
    <deptname>IT</empname>
    </data>
    </EmployeeInfo>
    can anybody please give plsql code for this requirement.i need to add attributes in the xml tag.Its urgent
    By
    Siva

    A general example (based on the OE sample data/tables)
    SQL>SELECT XMLElement("Emp",
      2                     XMLAttributes(employee_id AS "id"
      3                                  , '10' "dept"),
      4                     first_name||' '||last_name) as result
      5 FROM   employees e
      6 WHERE  department_id = 10;
    RESULT
    <Emp id="200" dept="10">Jennifer Whalen</Emp>

  • How to add attribute to groups.

    When I add a groups, Identity askme name of group and member for suscrib. I need add attribute to groups, attribute that not exits in groupsofuniquenames.
    Thanks

    Hi Venkat,
    We don't make any design changes in production box. Usually you make changes in Development box then transport that object with request to Quality box. You test the changed object there, if no inconsistancies found you will transport the object to Production box with same request.
    In development box, if you want to add the new attribute to the characterstic, you need to delete the complete data in the characterstic.
    Thanks
    Sreekanth

  • How to add attribute to Element with SAX

    Hi,
    I'm parsing XML document with SAX using DefaultHandler.
    How can I add attribute to start tag?

    Is this right????????????Yes, it's right. Everything everybody except you has said in this thread has been right.

  • How to add attribute to already existing tag?

    Hello!
    Could you help me, please. I need to add attribute maxlegth to <h:inputTextarea>, but I don't know how to do it. Maybe, you know?

    <textarea> don't support maxlength by spec. You can use JavaScript instead.
    Or if you really want to create a custom component with this attribute added, check following tuts:
    http://www.jsftutorials.net/components/index.html
    http://www-128.ibm.com/developerworks/java/library/j-jsf4/
    http://java.sun.com/javaee/javaserverfaces/customcomponents.html

  • How to add attribute to Item ?

    Hi,
    I have a problem concerning OCS -> Content Service. I try to find out how scaleable the tool is. Do you know is it possible to add attribute to the Item? For example how to add some link to Document in repository?
    Best regards

    Content Services support adding attributes (we
    support Categories which are named collections of
    attributes) to documents.
    We also have support for document and folder links.so, there is no problem with adding an attribute to a document? Attribute could consist of a collection of links to any Document (Document, Folder etc.)?
    Regards

  • Add attributes dynamically to xmlelement

    Hello,
    I'm trying to adding attributes dynamically to an xmlelement. All the attributes are stored in a table.
    So what I did is creating a column that holds the attributes in one line e.g.: "sal"="1000" mgr="9827"
    So now I've a query like this:
    select XMLElement(evalname ename)
    from emp;Which gives me:
    <scott></scott>
    <james></james>...
    What I want to do is add that attribute to the element so I get
    <scott "sal"="1000" mgr="9827"></scott>...
    What I tried is:
    select XMLElement(evalname e1.ename, XMLAttributes(e2.my_attributes))
    from emp e1, (select ename, '"sal"="100" "mgr"="9876"' my_attributes from emp) e2
    where e1.ename = e2.enameBut that results in:
    <SCOTT MY_ATTRIBUTES="&quot;sal&quot;=&quot;100&quot; &quot;mgr&quot;=&quot;9876&quot;"></SCOTT>Anyone an idea how to get arround this? I tried with updateXML but I still have the quotes that get escaped.
    Or is there a better way to dynamically add attributes that are stored in a table?
    Thanks so much.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/

    Couldn't get the attribute part dynamically in there yet. Maybe sth like this:
    SQL>  select * from xmltable('for $i in ora:view("emp")/ROW
                              return element {ora:view("dept")/ROW[DEPTNO=$i/DEPTNO]/DNAME}
                                        {for $j in $i/&#42; return attribute {$j/node-name(.)} {$j}}
    COLUMN_VALUE                                                                   
    <RESEARCH EMPNO="7369" ENAME="SMITH" JOB="CLERK" MGR="7902" HIREDATE="1980-12-17
    " SAL="800" DEPTNO="20"></RESEARCH>                                            
    <SALES EMPNO="7499" ENAME="ALLEN" JOB="SALESMAN" MGR="7698" HIREDATE="1981-02-20
    " SAL="1600" COMM="300" DEPTNO="30"></SALES>                                   
    <SALES EMPNO="7521" ENAME="WARD" JOB="SALESMAN" MGR="7698" HIREDATE="1981-02-22"
    SAL="1250" COMM="500" DEPTNO="30"></SALES>                                    
    <RESEARCH EMPNO="7566" ENAME="JONES" JOB="MANAGER" MGR="7839" HIREDATE="1981-04-
    02" SAL="2975" DEPTNO="20"></RESEARCH>                                         
    <SALES EMPNO="7654" ENAME="MARTIN" JOB="SALESMAN" MGR="7698" HIREDATE="1981-09-2
    8" SAL="1250" COMM="1400" DEPTNO="30"></SALES>                                 
    <SALES EMPNO="7698" ENAME="BLAKE" JOB="MANAGER" MGR="7839" HIREDATE="1981-05-01"
    SAL="2850" DEPTNO="30"></SALES>                                               
    <ACCOUNTING EMPNO="7782" ENAME="CLARK" JOB="MANAGER" MGR="7839" HIREDATE="1981-0
    6-09" SAL="2450" DEPTNO="10"></ACCOUNTING>                                     
    <RESEARCH EMPNO="7788" ENAME="SCOTT" JOB="ANALYST" MGR="7566" HIREDATE="1987-04-
    19" SAL="3000" DEPTNO="20"></RESEARCH>                                         
    <ACCOUNTING EMPNO="7839" ENAME="KING" JOB="PRESIDENT" HIREDATE="1981-11-17" SAL=
    "5000" DEPTNO="10"></ACCOUNTING>                                               
    <SALES EMPNO="7844" ENAME="TURNER" JOB="SALESMAN" MGR="7698" HIREDATE="1981-09-0
    8" SAL="1500" COMM="0" DEPTNO="30"></SALES>                                    
    <RESEARCH EMPNO="7876" ENAME="ADAMS" JOB="CLERK" MGR="7788" HIREDATE="1987-05-23
    " SAL="1100" DEPTNO="20"></RESEARCH>                                           
    <SALES EMPNO="7900" ENAME="JAMES" JOB="CLERK" MGR="7698" HIREDATE="1981-12-03" S
    AL="950" DEPTNO="30"></SALES>                                                  
    <RESEARCH EMPNO="7902" ENAME="FORD" JOB="ANALYST" MGR="7566" HIREDATE="1981-12-0
    3" SAL="3000" DEPTNO="20"></RESEARCH>                                          
    <ACCOUNTING EMPNO="7934" ENAME="MILLER" JOB="CLERK" MGR="7782" HIREDATE="1982-01
    -23" SAL="1300" DEPTNO="10"></ACCOUNTING>                                      
    14 rows selected.

  • Add attribute in ldap

    After viewing this page from Sun
    http://docs.sun.com/source/816-6128-10/confmbrs.htm#750819
    i tried adding a new field called iwtAuthMembership-age, in all the 3 files needed to be changed. The Membership.properties, iwtAuthMembership.xml, and register.html.
    I've added the new field in all the 3 files but still couldnt get it to work..
    Do i have to use ipsadmin to add attributes first in order to perform the task i've mentioned above? Please help me, it's really very urgent. thanks alot
    jimbo

    Hi,
    I'm also getting the same problem. Please update me if you got any solution for this problem.
    Thanks in advance
    bala

  • RE: how to add attributes in graphical modulator in segment builder .

    Hi Gurus,
    can you please help me how to add attributes in graphical modulator in segment builder in sap CRM 7.0 WEB-UI.
    thanks and regards
    satyanarayana
    Edited by: koradasatya on Oct 27, 2011 8:14 PM

    Hi Gurus,
    thanks for your reply my requirement from client is given below if you could answer this it will be a great help for me.
    WKSC needs to be able to make selections (in segment builder) with the possibilities to use stored data on organizations. The information we are missing in Segment builder (SB) (and Account search for industrycode) are Industrycode (we want to see values not codes) and responsible salesrep (values not codes).
    These variables together with regions and other marketing attributes is crucial for us. Without it we cannot use the functionality built.
    We also need it so that we can extract smaller parts of our customers and prospects and update them with information from the thirdparty or adding new persons to them.
    Everyone using the SB should be able to use the fields for selections. i.e. Marketers, marketing managers and power users.
    Example
    We would like to make selections that could look like this.
    Region: A and B
    Organization in Industrycode C
    Sales rep: D, E, and F
    Turnover: above 50000
    CP on selected orgs
    CP has title G or H
    CP has Email not blank
    thanks and regards
    satya

  • How can i extended attribute of user and add attribute to ldap

    how can i extended attribute of user and add attribute to ldap
    1.
    i use spe to modified "Default User Library":add Field like
    title:nation name:accounts[Lighthouse].nation
    2.
    modified "IDM Schema Configuration"
    add <IDMAttributeConfiguration name='nation' description='default attribute from UserExtendedAttributes/UserUIConfig' syntax='STRING'/>
    in <IDMAttributeConfigurations>
    and
    add <IDMObjectClassAttributeConfiguration name='nation' queryable='true' summary='true'/> in<IDMObjectClassConfiguration>
    there is extended attribute when i create new user
    3.
    i create new resource to ldap,and i add nation in "Account Attributes" tab
    but the new attribute not add to ldap
    i am beginner,how to extended attirbute add add to ldap attribute?

    So, if I want to fill in blanks on a form where I need to add more pages to fill history, what program do I need? In Adobe Reader, I can edit and fill in blanks, but I cannot duplicate more blank pages.

  • [svn:bz-trunk] 10595: Add ReadOnly test case for bug blz-427

    Revision: 10595
    Author:   [email protected]
    Date:     2009-09-25 11:44:20 -0700 (Fri, 25 Sep 2009)
    Log Message:
    Add ReadOnly test case for bug blz-427
    Ticket Links:
        http://bugs.adobe.com/jira/browse/blz-427
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.xml
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/src/blazeds/qa/remotingService/Book.java
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/src/blazeds/qa/remotingService/Echo.java
    Added Paths:
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/remotingService/dataTypes/ReadOn lyTest.mxml

  • Add attributes of dataTemplate, custom format, xml output

    I need to format dataTemplate tag, in xml-output.
    E.g.
    <myDataTemplate_tag_name SchemaVersion="1.0" xmlns="http://www.oracle.com/">
    Now, I have in xml
    <dataTemplate name="myDataTemplate_tag_name" defaultPackage="ccc_pack" version="1.0" description='SchemaVersion=\"1.0\" xmlns=\"http://www.oracle.com/\"'>
    but not work.
    Any suggestion? How can I add attributes?
    Thanks.
    kale.
    Edited by: kaleonardo on Oct 22, 2009 3:02 AM
    Edited by: kaleonardo on Oct 22, 2009 7:12 AM

    I discovered, I can make a xsl-xml template for manipulating tag name and attribute.
    Now, my problem is to keep all informations which are in main tag.
    Eg.
    my xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival>
    <InsCodeVersions>
    <CountryVer>2007</CountryVer>
    <EuCountryVer>2007</EuCountryVer>
    <CnVer>2008</CnVer>
    <ModeOfTransportVer>2005</ModeOfTransportVer>
    <DeliveryTermsVer>2005</DeliveryTermsVer>
    <NatureOfTransactionAVer>2005</NatureOfTransactionAVer>
    <NatureOfTransactionBVer>2005</NatureOfTransactionBVer>
    <CountyVer>1</CountyVer>
    <LocalityVer>06/2006</LocalityVer>
    <UnitVer>1</UnitVer>
    </InsCodeVersions>
    </InsNewArrival>
    after xsl
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="InsNewArrival/*">
    <InsNewArrival>
    <xsl:attribute name="SchemaVersion">1.0</xsl:attribute>
    </InsNewArrival>
    </xsl:template>
    </xsl:stylesheet>
    I have
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival SchemaVersion="1.0" />
    not
    <?xml version="1.0" encoding="UTF-8" ?>
    <InsNewArrival SchemaVersion="1.0" xmlns="http://www.intrastat.ro/xml/InsSchema">
    <InsCodeVersions>
    <CountryVer>2007</CountryVer>
    <EuCountryVer>2007</EuCountryVer>
    <CnVer>2008</CnVer>
    <ModeOfTransportVer>2005</ModeOfTransportVer>
    <DeliveryTermsVer>2005</DeliveryTermsVer>
    <NatureOfTransactionAVer>2005</NatureOfTransactionAVer>
    <NatureOfTransactionBVer>2005</NatureOfTransactionBVer>
    <CountyVer>1</CountyVer>
    <LocalityVer>06/2006</LocalityVer>
    <UnitVer>1</UnitVer>
    </InsCodeVersions>
    </InsNewArrival>
    Thanks.
    kale

Maybe you are looking for

  • Last Scene Selection Will Play on the Burned DVD

    I only have two scene selections. If you are in the iDVD project, you are able to click on either scene selection and they play fine.  After I burn onto a dvd, the 2nd scene selection will not play.  The movie is 55:45 min.  and I chose "Prof. Qual."

  • Need help in sending FAX

    Hi, Im sending an email/fax  from sales order/delivery/billing. Once I run it, it is getting updated in SOST transaction. For Email in SOST, the docuemnt title is correctly displaying. But for telefax, the document title is showing differntly.(like R

  • How can i give two tcode in same program

    Hi all, How can I give two tcode to the same program in which two conditions call in that two t codes how can I do so please help me for that. Ketan ABAP consultant

  • Viewing Jobs, etc.  "ORA-01882: timezone region %s not found".

    I am trying to view jobs, etc. in PL/SQL Developer. However, we receive the error "ORA-01882: timezone region %s not found". The DBA's do not receive this error when viewing through Oracle Enterprise Manager. However, they receive the same error in P

  • Importing AVI files

    Hello. I've just switched over from the dark side to Mac and I need some help using FCE. Here are my basic questions: 1) Best settings/method for importing AVI files from a hard disk? 2) Best export settings for high quality use in powerpoint and/or