How to Display Item Property Description

Hi
  In Sales Quotation lines i want to display the name of the item property on selecting item . How this can be achieved.
Thanks

Hi Sanju
      In Sales Quotation rows i enter item no , after entering item no i want property name should be displayed.
     I have defined properties
           Paper Roll
          Cotton Roll
          Licosys Roll
        Now if item is Cotton Roll only its Cotton Roll will be selected . In sales quotation i wanted if item is cotton roll then property cotton roll should be displayed .  It is not mandatory if item property is cotton roll , item name will be also like that .
     I am sorry if i am not able to explain correctly
Thanks

Similar Messages

  • How to display link property : description

    hi all
    Im trying to display a link's description property in an iview.
    How do i go about doing this?
    Message was edited by: rinx

    Hi Patricio
    Can you explain this by uing code/an example..
    Where do I put in LayoutSet in the following code?
    From what Ive seen in documentation/weblog, I currently have the following code to retrieve a description property of a link:
    IPropertyName propertyname = new PropertyName(IWcmConst.SAP_WCM_NAMESPACE,IWcmConst.PROP_DESCRIPTION);
    IProperty property = resource.getProperty(propertyname);
    if(property != null){
    //description exists
    description = property.getValueAsString();
    }else{
    description = "";
    Namespace should point to the link, right?
    How would I do this?
    Say that I have links in folder path : /documents/quicklinks/financelinks
    In financelinks contains links to different locations in portal eg. link to "finance standard document"
    Link "finance standard document" has a description : "xx"
    I want to get this description.
    I very much need some urgent help.

  • How to display COMPANY CODE DESCRIPTION ON THE TOP LEFT OF PAGE

    How to display COMPANY CODE DESCRIPTION(Field BUTXT) ON THE TOP LEFT OF EVERY PAGE OF THE REPORT GENERATED.
       Actually I have collected BUTXT using
    'select butxt into table itab from t001 where bukrs = p_bukrs'
    where p_bukrs is the selection screen field.
    REQUIREMENT: Depending on what company code we give on the selection screen, corresponding company code description(butxt) should be displayed at the top left of every page. how would i display it in TOP-OF-PAGE EVENT.

    Hi
    It's very simple, but what is the need to use <b>into table itab</b> in your select query.
    Rather, define a variable
    data: v_butxt type t001-butxt.
    Select butxt into v_butxt from t001 where bukrs = pbukrs.
    TOP-OF-PAGE.
    write :/ v_butxt.
    Regards
    Surya.

  • How to display items from database using catagorylookupdroplet

    Hi everyone,
    i want to know how to display items from database using catagorylookup droplet. if anybody have any code snippet please share it.
    Thanks in advance,

    <dsp:droplet name=".................../CategoryLookup">
         <dsp:param name="id" param="itemId"/>
         <dsp:oparam name="output">
              <dsp:valueof param="element.displayName"/>
                   <%-- This is show the Child Category --%>
                   <dsp:droplet name="......................./ForEach">
                   <dsp:param name="array" param="element.childCategories"/>
                   <dsp:oparam name="outputStart">Child Categories</dsp:oparam>
                   <dsp:oparam name="output">
                        <dsp:a href="">//bydefault it will take its own file's name
                             <dsp:param name="itemId" param="element.repositoryId"/>                                                                                          <dsp:valueof param="element.displayName"/>
                        </dsp:a>
                   </dsp:oparam>                                             
                   </dsp:droplet>
                   <%-- This is show the Child Product --%>          
                   <dsp:droplet name=".............../ForEach">
                        <dsp:param name="array" param="element.childProducts"/>
                        <dsp:oparam name="outputStart">Child Products</dsp:oparam>
                                  <dsp:oparam name="output">
                                       <dsp:droplet name="................/ProductLookup">
                                            <dsp:param name="id" param="itemId"/>
                                            <dsp:param name="elementName" value="Prod"/>
                                            <dsp:oparam name="output">
                                                 <dsp:getvalueof id="img102" param="Prod.smallImage.url" idtype="java.lang.String">
                                                      <dsp:img height="250" width="250" src="<%=img102%>"/>
                                                 </dsp:getvalueof>
                                            </dsp:oparam>
                                       </dsp:droplet>
                                       <dsp:a href="productView.jsp">
                                            <dsp:param name="itemId" param="element.repositoryId"/>
                                            <dsp:valueof param="element.displayName"/>
                                       </dsp:a>
    Hope this helps.
    -RMishra

  • How to display only the description of a combobox.

    Hi All,
    I have a combobox on a grid.
    The value of it, is the adresses of BP.
    Example :
                                        string sQuery = "SELECT CRD1.Address FROM CRD1 WHERE CRD1.AdresType='S' AND CRD1.CardCode='" + oGrid.DataTable.Columns.Item("U_IFC_PP").Cells.Item(pVal.Row).Value.ToString() + "'";
                                        SAPbobsCOM.Recordset oRec;
                                        oRec = (SAPbobsCOM.Recordset)SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset);
                                        oRec.DoQuery(sQuery);
                                        SAPbouiCOM.ComboBoxColumn oCBB;
                                        oCBB = (SAPbouiCOM.ComboBoxColumn)oGrid.Columns.Item("U_IFC_ADR");
                                        while (!oRec.EoF)
                                            oCBB.ValidValues.Add(oRec.Fields.Item("Address").Value.ToString(), "");//, oRec.Fields.Item("Address").Value.ToString());
                                            oRec.MoveNext();
    When i click on the combobox, it's display the value and the description like this :
    value1 - Adr1
    value2 - Adr2
    i want to display only the description like the field "Ship To" in the folder "Logistics" in the Sales Order form.
    It is possible ?
    And what is the size limit of the parameter oCombobox.ValidValues.Add(ByVal Value As String, _
       ByVal Description As String _)
    Thanks for your response.
    Best Regards.
    Michael

    Hi Michael,
    actually you can't show only the description when you click into it.
    the lenght of the description is usually around 50.
    (but it depends also how long you made the value.)
    the best is to do it so:
    keep the value short with numbers
    and cut the description at 42 (to be on the safe side)
    lg David

  • How to get BP property description in query

    Hi,
    I need to retrieve the description of a BP property. I found the descriptions in the OCQG table, but can't figure out how to join this table with OCRD.
    I am trying to do something like this:
    SELECT T0.CardCode, T0.CardName, T0.QryGroup9, T1.GroupName FROM OCRD T0, OCQG T1
    Can I retrieve property descriptions some other way, or can anyone tell me how to join OCRD and OCQG (maybe there is some table in the middle)?
    Thanks,
    Johan

    Hi Mike,
    Sorry about the long long interval.
    I tried with the query you suggested, but slightly adapted (
    SELECT DISTINCT T0.QryGroup9, T1.GroupName FROM OCRD T0 LEFT OUTER JOIN OCQG T1 ON T0.GroupCode = T1.GroupCode
    ) but it only returns NULL for the descriptions.
    By now, I have also come across the need to find the description of item properties based on ItemCode. As far as I can tell the table with the descriptions is OITG. Again however again I can't seem to figure out how to join this table with OITM.
    In other words I need to do something like:
    SELECT OITM.ItemCode, OITM.ItemName, OITG.ItmsGrpNam FROM OITG SOMEHOW JOIN OITM ON SOMEHOW WHERE 'Y' IN (OITM.QryGroup1, OITM.QryGroup2, OITM.QryGroup3, OITM.QryGroup4, etc)
    Any help appreciated,
    Johan
    Edited by: Johan Hakkesteegt on Jun 3, 2008 9:26 AM

  • How to display system property in XML forms

    Hi
    We are using XML forms template for publishing news in KM. In the show form we got author field (a label in the form) which is mapped to system property createdby (PropertyReference = /Properties/default:createdby).But while displaying the form author is not getting populated. When I try to edit the form in XML forms builder in data model tab under properties node no property is visible. Nothing is shown up in properties even after reload option is selected from context menu of properties node.
    I cheked by manually editing PropertyReference to some other property (e.g. modifiedby) but nothing is showing up.
    Can you please suggest how the createdby system property can be shown in the xml form?
    Thanks & Regards
    Sudip

    Hi Sudeep,
    Please try to open the formbuilder in another machine and try to see the properties xml form design view.
    You can even directly can create a lable in show form and add the property name along with the nama space name.
    For default properties namspace is default.Create a lable UI element in show form and select the datasource property and add the property value in that.
    With we can show file related system generated properties in show form.
    Regards,
    Rudradev Devulapelli

  • How to display item procedure results in Search results?

    I have a custom item type based on Image that displays a thumbnail instead of the image itself. This is accomplished using a procedure call and displaying the results with the item and modifying the region attributes to omit the image, but when the items appear in search results, the procedure results are not displayed.
    How do I get an item's procedure results to display in search results?
    TIA

    Are you asking how to pivot the results of the query? Do a search for horizontal looping. If that's not what you are asking, please provide more details.

  • How to display item when mouse moves over Column value??

    Hi there
    It would be helpful if you could resolve the following :
    i) I need to display the column 'A' values of my report in a Text field when mouse moves over column B of my report.
    ii) I can able to display the same column value when mouse moves over or onclick happens. but my requirement is something like i have to display the other column value when mouse moves over.
    iii) Also i noticed that, i can able to display the item only on "Display only Item" and not on Text field.
    Any pointers to display my column value in Text field when onclick happens on my report column?
    iv) One more thing that i noticed, i can able to perform onclick or mouse over only on Editable column and not on
    non editable columns.
    Any pointers on how to achieve the same when mouse moves over Non editable column of report?
    Reference: I have created a dummy application (refer the following link), where i can able to display column value Salary on display only item using mouse move Event.
    My requirement: when i click column Ename , the text field should show salary.
    http://apex.oracle.com/pls/otn/f?p=56045:1
    User:guest
    Pswd: apex_demo
    Any pointers on this would be appreciated.
    Thanks
    Vijay

    Vijay,
    If you use Jquery then this should do the trick.
    $(document).ready(function() {
       $(".t20Report t20Standard tr").hover(function() {
         $("#P2_SALARY").attr("innerHTML",$(this).find("td:last input").attr("value"));
    {code}
    after looking at the source of your page it seems that your class for your report region is *class="t20Report t20Standard"* I am not 100% sure but you might have to correct that in the template. I am not sure how the selector will handle the space in the class name.
    Hope this helps,
    Tyson                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to display Transaction Type & description ?

    Guys,
    I am using CRM 5.0. When I am in CRMD_ORDER Transaction and try to create a new order, I get a pop-up list to choose my transaction types. However it only displays the description of the transaction type and does not give me the transaction ID.
    Is there a way to display both in tow separate columns? For eg TSA  Telesales

    A.R.P,
    see if this helps.
    Click on <b>Customizing of local layout on the standard SAP toolbar. (last icon with green red blue vertical stripes) </b>
    From the context menu that opens, select the first option - <b> options </b>
    Go to the Expert tab and select the check boxes for :
    <b> Show Keys in All Dropdown list </b>
    <b> Sort Items by key </b>
    Then choose the apply push button and then the ok button.
    Julius

  • How to display items with pk/fk relationship not equal to each other

    I want to show that the values of the same field are not equal to each other
    In forms, how can I write below:
    If :blockB.chk_bx = 'N' then
    :blockA.rec_id <> :blockB.rec_id;
    also tried :blockA.rec_id != :blockB.rec_id; but get error message. Assume I cannot use the inequality sign.
    The rec_id in blockname A and B have a pk/fk relationship.
    Please help.

    I'm sorry i didn't understand your requirement.
    I want to show that the values of the same field are not equal to each otherSo you have an item in block A and an item in block B and you want to indicate that the value for these two items are different? How do you want to indicate that? Do you want to mark the field with some color? Do you want to have a checkbox next to it?
    In forms, how can I write below
    If :blockB.chk_bx = 'N' then
    :blockA.rec_id !=:blockB.rec_id;I assumed the != in the statement for its missing in your post. What do you expect the statement to do? Your statement is a comparison outside an IF or CASE-statement, maybe you want to do some
    IF :blockA.rec_id !=:blockB.rec_id THEN
      dosomestuff;
    END IF;
    The rec_id in blockname A and B have a pk/fk relationshipSo, did you connect the two block with a relation in forms? If yes, the values in the two blocks should always match.
    Perhaps cou could give some details about your requirement.

  • How to display item with image

    I have a before-header processure to assign values to text items in a no-show region.
    select count(A.patient_id),
    (case when (SUM(HAD_FLAG)/count(A.Emp_id))*100 >= 84.2 and (SUM(HAD_FLAG)/count(A.Emp_id))*100 < 86.7 then (SUM(HAD_FLAG)/count(A.Emp_id))*100 ||'% <img src="#WORKSPACE_IMAGES#yellowdot.JPG">'
    else (SUM(HAD_FLAG)/count(A.Emp_id))*100 ||'% <font color=red> NO </font> <img src="#WORKSPACE_IMAGES#reddot.JPG">' end )
    INTO
    :P20_PAPPT, :P20_PAP
    from my_table where dept_id = 123456 ;
    then trying to display the items in a header area of a report region
    <table border =1 bordercolor=orange>
    <tr> <td> Total Count </td><td> &P20_PAPPT. </td> </tr>
    <tr> <td> % Met Goal </td><td> &P20_PAP. </td> </tr>
    </TABLE>
    I can not get image to show, but only the text:
    Total Count      3953
    % Met Goal      77.6% <img src="wwv_flow_file_mgr.get_file?p_security_group_id=1278016382952487&p_fname=reddot.JPG">
    I am using apex 4.0.
    Thanks.
    Timothy

    display only + escaped NO works perfectly. Thank you very much.
    Standard Report Column option solved my htmldb_item.select_list_from_lov problem.
    timothy

  • HOW TO DISPLAY ITEMS OF FIELD 'ARBPL'(WORK CENTRE)IN HORIZONTAL IN ALV..

    HI FRIENDS .
    PLEASE GIVE THE SOLUTION OF THIS PROBLEM.
    I AM DOING THE REPORT OF CAPACITY PLANNING USING ALV LIST.IN THIS REPORT FC REQUIRES THAT ITEMS(SUCH AS 1050T,300T) OF FIELD 'ARBPL'IN HORIZONTAL MANNER.
    BUT THIER THE PROBLEM IS THESE ITEMS ARE VARIABLE FOR DIFFERENT PLANT FIELD IN REPORT.
    SUPPOSE PLANT =  F-II
    WORK CENTRE  = 1050T,300T.
            PLANT = G228
    WORK CENTRE = PRESS 250T,PRESS 300T.
    PLEASE GIVE THE SOLUTION IMEDIATE I HAVE WASTED SO MUCH TIME ON THAT PROBLEM.
    THANKS IN ADVANCE.
    VIKRAM

    Hi,
      Please Use field symbols and this method
    Declaration:
      FIELD-SYMBOLS: <dyn_table> TYPE STANDARD TABLE,
                     <dyn_wa> TYPE ANY ,
                     <dyn_field>,
                     <fs> TYPE ANY.
      DATA: dy_table TYPE REF TO data,
            dy_line  TYPE REF TO data,
            xfc TYPE lvc_s_fcat,
            ifc TYPE lvc_t_fcat.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = ifc
        IMPORTING
          ep_table        = dy_table.
        ASSIGN dy_table->* TO <dyn_table>.
        CREATE DATA dy_line LIKE LINE OF <dyn_table>.
        ASSIGN dy_line->* TO <dyn_wa>.
        Note:Pls Reward this answer if USEFUL.
    Regards,
    Kumaresh

  • Datatable; display items horizontally

    Hi Everyone,
    I'm new to jsf and to web development.
    I need to know how to display items of an arraylist in a h:datatable to look like this:
    | item1 | item2 | item3 |
    | item4 | item5 | item6 |
    ----------------------------

    If it is just an ordinary List or Array of items, then use h:panelGrid instead. Bind it to the backing bean an let it dynamically populate.

  • How do we set "Link That Displays Item In Full Browser Window" property?

    How can we set "Link That Displays Item In Full Browser Window" property? I could not find it. Thanks...

    I assume you're using Portal 3.0 (it always helps to mention which portal version you're using).
    I suggest you search this forum for "new window". You'll find several threads discussing how to implement this feature in Portal 3.0.
    Regards,
    Jerry
    PortalPM

Maybe you are looking for