BPS: No description in F4 help

Hello,
I created a planning area and a web interface. In a variable 'Curency' I selected User-Specific Value. After that I select for a user a currency and use F4-help. In this help I could see all currencies values and there descriptions. I use this variable in the component 'Selector Variable' in the web interface. If I execute web interface and select F4-help for the currency-variable only values of currencies will display and not the descriptions. How could I display the corresponding descriptions of currencies? In infoobject 'Currency' the field 'short description' is filled.
Many thanks for your help.
Friedrich

<FONT FACE = "Tahoma", Font Color = "Blue">
Hi
<Br>
If you double click on the Variable Selector in Web Interface Definition (T-code: BPS_WB) then you should be able to see its attributes. Please check what is shown in the attribute of Formatting. Do you have Text and Key selected here?
<Br><Br>Hope it helps.
<Br>
<Br>
Cheers
Abhijit
<Br>* It's a good habit to reward someone with points in SDN if you think his/her
response was helpful to you
</FONT>

Similar Messages

  • Description for value help field for custom infotype field

    Hi,
       I`ve got to include a field in custom infotype. This field has got a value help attached to it. The values to be displayed in the value help are stored in the domain of the field(in the dictionary).
    The requirement is that once I select a value from the F4 help, the description for that value should be fetched and be dispalyed on the screen.
      I`m using the FM "<b>AM_READ_TEXT_ON_DOMAIN_VALUE</b>" to read the description from the domain ,but unable to make it display it on the screen.
      Can anyone suggest me as what should I do for displaying the description in the custom infotype screen.
    Regards,
    Farhana

    Hi anji,
       While using the "GET_DOMAIN_VALUES", I do get all the values from the domain. But I want only description to be displayed when I select a Value for that field.Kindly help out..
    Eg:
    1-Individual
    2-Family
    Then the description should be displayed as Family when I select the value 2 from the value help.
    Regards,
    Farhana.

  • Populate description in seacrh help

    Hi All,
    I have a requirement wherein i have 2 parameter fields on the selection screen, Matnr and Maktx.
    Both these fields have search help attached to it.
    I have to select a value through a search help for Matnr field, which i have completed.
    Now in the secrh help of Maktx i should get the Matnr value selected and its corresponding Desciption only. The search help of Maktx should not show any other values and descriptions at all except for the Value selected in Matnr.
    The Database table and the search help used is of Z type.
    How do i go about doing this? I am posting how much of the code i have written.
    ******Data Declaration
    DATA: return TYPE TABLE OF ddshretval WITH HEADER LINE.
    ******Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK block0 WITH FRAME TITLE text-000.
    PARAMETERS: v_matnr TYPE matnr.
    PARAMETERS: v_maktx TYPE maktx.
    SELECTION-SCREEN END OF BLOCK block0.
    ******At Selection-screen on value-request.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR v_matnr.
      CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
       EXPORTING
         tabname                   = 'ZMAT_DESC'
         fieldname                 = 'MATNR'
         searchhelp                 = 'ZDESC1'
         dynpprog                   = sy-repid
         dynpnr                     = sy-dynnr
         dynprofield                = 'V_MATNR'
        callback_program           = sy-repid
       TABLES
         return_tab                 = return
      EXCEPTIONS
         field_not_found           = 1
         no_help_for_field         = 2
         inconsistent_help         = 3
        no_values_found           = 4
         OTHERS                    = 5.
    Regards,
    Darpana.

    hi
    try this
    Code:
    PARAMETERS: p_ccgrp LIKE rkpln-ksgru. "Cost Center Group
    *Input help for Cost Center Group
    AT SELECTION-SCREEN ON VALUE-REQUEST   FOR p_ccgrp.
    TYPES: BEGIN OF ty_ccenter_group,
    setname TYPE setnamenew,
    descript TYPE settext,
    END OF ty_ccenter_group.
    DATA: it_ccenter_group TYPE TABLE OF ty_ccenter_group.
    CLEAR it_ccenter_group.
    SELECT a~setname
    b~descript
    INTO TABLE it_ccenter_group
    FROM setheader AS a INNER JOIN
    setheadert AS b ON
    asubclass EQ bsubclass AND
    asetname EQ bsetname
    WHERE a~setclass EQ '0101' AND
    b~langu EQ sy-langu.
    CALL FUNCTION 
    'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    ret field        =  'SETNAME'
    dynpprog     =  v_repid
    dynpnr         =    SY-DYNR
    dynprofield = 'P_CCGRP'
    value_org    = 'S'
    TABLES
    value_tab   = it_ccenter_group.
    F4IF_FIELD_VALUE_REQUEST:
    This FM is used to display value help or input from ABAP dictionary. We have to pass the name of the structure or table (TABNAME) along with the field name (FIELDNAME). The selection can be returned to the specified screen field if three
    parameters DYNPNR, DYNPPROG, DYNPROFIELD are also specified or to a table if RETRN_TAB is specified.
    CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
    TABNAME = table/structure
    FIELDNAME = 'field name'
    DYNPPROG = SY-CPROG
    DYNPNR = SY-DYNR
    DYNPROFIELD = 'screen field'
    IMPORTING
    RETURN_TAB = table of type DYNPREAD
    Getting F4 help based on other  field  .
    Suppose  if there  are  2 fields on selection screen  user name and Purchasing Document  and  the case is getting values of  Purchasing Document Number  based on  user name
    Code:
    TYPES:   BEGIN OF ty_match_nast,
                    objky TYPE na_objkey,
                    END OF ty_match_nast.
    Data: it_match_nast   TYPE STANDARD TABLE OF ty_match_nast.
    Data: it_dypr_val   TYPE STANDARD TABLE OF dynpread.
    DATA: wa_dypr_val  TYPE dynpread.
    DATA: it_return TYPE STANDARD TABLE OF ddshretval.
    Case when only username value is entered.
           SELECT objky
            FROM   nast
            INTO  TABLE it_match_nast
             WHERE kappl  = c_ef
             AND   kschl = c_neu
             AND   usnam = wa_dypr_val-fieldvalue.
          ENDIF.
    *Read User name  on  selection screen field value
      CLEAR wa_dypr_val.
      REFRESH it_dypr_val.
      wa_dypr_val-fieldname = 'P_UNAME'.      "User name
      APPEND wa_dypr_val TO it_dypr_val.
    *FM to get the value
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname             = sy-repid
          dynumb             = sy-dynnr
          translate_to_upper = 'X'
        TABLES
          dynpfields         = it_dypr_val_h.
    *Pass the values to f4 table
       CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
          EXPORTING
            retfield     = u2018OBJKY'
            dynpprog    = sy-repid
            dynpnr      = sy-dynnr
            dynprofield = 'P_EBELN'
            value_org   = 'P'
         TABLES
            value_tab   = it_match_nast
            return_tab  = it_return.

  • Description on search help field get truncated by it input enable field

    Hi expert,
    I'm facing one problem, description of the fields on the search help dialog screen gets truncated by it own input fields. I want that full description of the fields should appear on the screen. what i need to do for that.

    my friend  ...  you are    refferning the field  in your program from the  field of   Ztable which  you have created  ....
    please  check the field  lable  and change it as  40  lenght in the  field label  give the   full  descrition  activate it  ...
    so that your problem will be solved ..
    see  for example  .
    i write  a  program in that  i use  parameter   declaration as
    tables :  pa0001 .
    parameters : d_pernr like pa0001-pernr.
    then in the MENU path   GOTO-TEXT ELEMENT   -> select the check  box from the dictionary ...
    it was  refferencing the field of  Long text  only  ....
    only thing  is we have  maintian the long text as 40 length and  descrition as what you want .
    reward  points if it is usefulll ,....
    Girish

  • Premiere pro cs6 changes frame rate and changes audio pitch! Video in description! PLEASE HELP

    Im having awful issues with premiere and I cant figure it out! Please help! i have a video of my issues here! http://youtu.be/MaDj8fo6meE

    More information needed for someone to help... please click below and provide the requested information
    -Information FAQ http://forums.adobe.com/message/4200840
    What are you editing, and did you do this to be sure your sequence and video match?
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/message/3776153
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341
    Also, The tutorial list in message #3 http://forums.adobe.com/message/2276578 may help

  • PO printout-missing material description-V Urgent help required

    Hi,
    I am facing a unique issue here.Some times when I create a PO it does not show the material description in the print preview and also in the printout.
    It happens sometimes only.
    When I try to create a another PO fro the same material it works perfectly okay.
    What could be the reason for this ?
    It's very urgent as it's affecting business.
    regards,
    manOO

    Hi Steve,
    The thing is that for my user some times the material description deos not appear irrspective of whether she saves the PO or see the preview first.
    It is not happening all the time.
    Also, when she creates new PO with same material again, it shows material description.
    I do not understand this.
    Since morning I have found one more issue.I could not see LOGO on the top of PO in preview or actual printout for all the POs. Be it already saved old O or created today.
    This is becoming a big issue now.
    Is this something to do with authorisations or what could be it ?
    PLease let me know if any alternative solution available or any specific thing missed ou.
    It's V URGENT
    Regards,
    manOO

  • Short description in F4 help

    Hello experts  ,
    I am trying to access the short text of Status in E070 , as i can see some short text when i F4 on the feild .
    I want to know i which table this short text is stored  .
    Example  :
    - Goto E070 table
    -  F8
    - In the status feild we may get the value D, A ,L etc with corresponding short text like 'Modifiable' etc 
    I would like to know in which table this text is stored .
    Note : Tried with DD03T , DD04T , DD07T  .
    Thanks ,
    Nusrat

    Those texts are built-in in the domain TRSTATUS
    To get them try FM DOMAIN_VALUE_GET
    Regards

  • Xml photogallery description problem plz help

    hai to all
    i am working on xml photogallery in flash mx 2004
    here everything is working fine the thumbs, main images ok
    now what i want is when i click on the thumbs the desc for
    pics should be displayed in desc box which is on top layer.
    heregallery is gallery.xml which is in /gallery/gallery.xml
    here is the code:-
    pic_mc._visible = false;
    my_xml = new XML();
    my_xml.ignoreWhite = true;
    my_xml.load("gallery/gallery.xml.xml");
    my_xml.onLoad = function() {
    rootElement = my_xml.firstChild;
    children = rootElement.firstChild.childNodes;
    //adding the main image node
    mainImageNode = rootElement.childNodes[1].childNodes;
    trace("mainImageNode="+mainImageNode);
    descNode = rootElement.childNodes[2].childNodes;
    trace(desc);
    hspace = my_xml.firstChild.attributes.hspace;
    //trace("hspace="+hspace);
    vspace = my_xml.firstChild.attributes.vspace;
    //trace("vspace="+vspace);
    nofimagesperrow =
    my_xml.firstChild.firstChild.attributes.nofimagesperrow;
    //trace(nofimagesperrow);
    nofimagespercol =
    my_xml.firstChild.firstChild.attributes.nofimagespercol;
    //trace(nofimagespercol);
    startx = my_xml.firstChild.firstChild.attributes.starty;
    //trace("startx"=+startx);
    starty = my_xml.firstChild.firstChild.attributes.starty;
    //trace("starty"=+starty);
    m = nofimagesperrow*nofimagespercol;
    //trace(m);
    duplicateMovie();
    function duplicateMovie() {
    l = children.length;
    for (var i = 0; i<l; i++) {
    pic_mc.duplicateMovieClip("pic_"+i, i*100);
    if (i<nofimagesperrow && i<nofimagespercol) {
    setProperty("pic_"+i, _x, i*hspace+10);
    setProperty("pic_"+i, _y, starty);
    if (i>=nofimagesperrow && i>=nofimagespercol) {
    setProperty("pic_"+i, _x, i*hspace-400+10);
    setProperty("pic_"+i, _y, vspace-starty);
    if (i>=nofimagesperrow*2 &&
    i>=nofimagespercol*2) {
    setProperty("pic_"+i, _x, i*hspace-800+10);
    setProperty("pic_"+i, _y, vspace*2-starty*3);
    this["pic_"+i].external_mc.loadMovie(children
    .attributes.thumb);
    this["pic_"+i].external_mc._alpha = 0;
    trace("mainImageNode"+i+mainImageNode);
    this["pic_"+i].image = mainImageNode
    .attributes.main;
    var text1:Array = new Array();
    text1 = descNode
    .attributes.desc;
    trace(text1);
    this.onEnterFrame = function() {
    for (var i = 0; i<children.length; i++) {
    if (this["pic_"+i].external_mc._alpha<100) {
    this["pic_"+i].external_mc._alpha += 5;
    if (this["pic_"+i].external_mc._alpha>100) {
    this["pic_"+i].external_mc._alpha = 100;
    delete this.onEnterFrame;
    this["pic_"+i].onPress = function() {
    //getting the custom proprty, which is imageID
    var imageToLoad:String = this.image;
    trace(imageToLoad);
    _root.holder_mc.loadMovie(imageToLoad);
    _root.holder_mc._xscale = 65;
    _root.holder_mc._yscale = 65;
    _root.holder_mc._x = 440;
    _root.holder_mc._y = 38;
    _root.desc_txt.text = text
    ;---here i am getting error. any corrections plzzzzz .. it is
    displaying undefined in the textbox which is dynamic one its var
    and instance is desc_text
    trace("="+desc_txt);
    here is xml file :-
    <?xml version="1.0" encoding="UTF-8" ?>
    - <photo >
    - <thumb nofimagesperrow="4" nofimagespercol="4"
    startx="10" starty="10">
    <pic thumb="humb/pic1.jpg" main="main/pic1.jpg"
    desc="this is 1 pic" />
    <pic thumb="thumb/pic2.jpg" main="main/pic2.jpg"
    desc="this is 2 pic" />
    <pic thumb="thumb/pic3.jpg" main="main/pic3.jpg"
    desc="this is 3 pic" />
    <pic thumb="thumb/pic4.jpg" main="main/pic4.jpg"
    desc="this is 4 pic" />
    <pic thumb="thumb/pic5.jpg" main=main/pic5.jpg"
    desc="this is 5 pic" />
    </thumb>
    </photo>

    i could not see anywhere "text",
    i think you are using "text1".
    just try this...
    _root.desc_txt.text = text1

  • Meta / Keywords / Description - Can someone help?

    Can someone tell me how best to use these attributes in dreamweaver to get my site top of the search rankings?
    What is the difference between meta tags & keywords? And how best do I seperate them? With spaces? Commas? Full stops?
    What are the limits on keywords? 10? 20? More?
    Thanks in advance

    ...to get my site top of the search rankings?
    START WITH THESE:
    Google's SEO Starter Guide (PDF)
    http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf.
    SEOMoz.org - Beginner's Guide to SEO (1-page  html)
    http://www.seomoz.org/article/beginners-1-page
    Submit Site Maps to 4 Major Search Engines
    http://alt-web.blogspot.com/2008/11/submit-sitemaps-to-4-major-search.html
    Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    www.twitter.com/altweb
    www.alt-web.blogspot.com/

  • F4 help for field along with description

    Hi,
    I have given fixed values and thier description for a domian. I am getting F4 help because of them. But in F4 help i am getting description of the fixed value instead of fixed value.
    One more thing is, I want to display both value and description in F4 help, when I select any entry from  the pop up table i sholud get only value but I am getting description here again. This i have done using a value table.
    How can I get F4 help with both value and description and after selection only value should get selected.
    Thank you,
    Regards,
    Kusuma K.

    HI,
    Try using this FM - F4IF_INT_TABLE_VALUE_REQUEST.
    You can use the below code for reference.
    REPORT  Z_F4_VAL_DESCRIPTION.
    DATA: is_Planning_plant TYPE t399i OCCURS 0.
    DATA: is_return TYPE ddshretval OCCURS 0,
         w_return LIKE LINE OF is_return.
    PARAMETER : p_mpla TYPE iloa-swerk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_mpla.
    IF is_Planning_plant[] IS INITIAL.
    SELECT * FROM t399i INTO TABLE is_Planning_plant.
    ENDIF.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'IWERK'
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    dynprofield = 'P_MPLA'
    value_org = 'S'
    TABLES
    value_tab = is_Planning_plant
    return_tab = is_return.
    IF sy-subrc EQ 0.
    READ TABLE is_return INTO w_return INDEX 1.
    IF sy-subrc EQ 0.
    p_mpla = w_return-fieldval.
    ENDIF.
    ENDIF.
    Regards,
    Snehal

  • How to pass fields in task description so that it will come in  sap inbox

    Hi all.
    (<b>very urgent)</b>
    I am doing one workflow on vendor payment workflow.
    I want to pass some fields in the task description so that that they  will come in the user decision description.
    Pls help me solving this.
    Please replyif more clarification is needed.
    Good points will be rewrded for solution.

    Hi Tapu,
    You did not find your BO means in the workflow container you has not mentioned ur BO. What is the Element name for your Object that will come here.
    In your workflow template container should have Expression of ur Object(BUS2081). So, Create the Element for Expression in Wf Container.
    Example in User Decision:
    Title:  Make Sure your Decision of Sales Order
    Agents:
    Expression: &SALESORDER& ( F4)
    Decision Option:
    Approved:: Send Notification                            Approved
    Rejected:: Send to Initiator with Reason           Rejected
    Thanks and Regards,
    Prabhakar Dharmala

  • Asset Description missing from Asset dropdown in AS03

    Hi
    I'm using fm BAPI_FIXEDASSET_CREATE1 to create assets and everything works fine except that those I've created don't have an Asset Description in the dropdown for AS03 - ie table ANLA field MCOA1 is blank.  I can't find any way of filling this field in the import or tables parameters of the function module.
    Does anyone have any suggestion as to how I can fill this field?
    Thanks
    Brigitte

    MCOA1 is automatically built from TXT50 with a TRANSLATE TO UPPER CASE, so fill GENERALDATA-DESCRIPT.  (If your system is not up-to-date, look at [Note 1180614 - Creating from posting: Missing asset description in F4 help|https://service.sap.com/sap/support/notes/1180614] (june 2008), in this case you may call        ZCORMCOA from old OSS [Note 83864 - Assets without description when using F4 help|https://service.sap.com/sap/support/notes/83864] to correct assets created before note correction)
    Regards,
    Raymond

  • Payment Term description on Sales Order Printout

    Hello,
    My customer would like to have the payment term description on the sales order printout.  When selecting ORDR.GroupNum on the output in the PLD it only pulls in the the payment term code.  Does anyone have a solution that they have used to provide the description of the payment term on the printout? 
    I am thinking a that a formatted search is needed to pull in the information from OCTG.PymntGroup in a user defined field on the sales order that can be added to the sales order printout.  Does anyone have a query that they have used in the past to populate this user defined field on the sales order with the payment term description?  Any help you can provide on this would be much appreciated.
    Thanks,
    Jordan

    Instead of pulling ORDR.GroupNum in the PLD, pull the OCTG.PymntGroup in the PLD.
    This will solve the problem

  • URGENT! Currently abroad, need help with iMessage on 4S in Airplane Mode.

    Hey guys,
    As stated in the description, I need help turning on my iMessage on my iPhone 4S that's in Airplane Mode. Before I left California for vacation abroad, I accidently turned it off, now having problems turning it back on. It reads, "Waiting for activation..." under the iMessage switch. I tried turning my phone off then back on, but the message was still there. Any tips on what I should do? Since I'm in another country, I don't want to take it off Airplane Mode till I'm back home in California.
    Thanks for your help in advance!

    James Ward4 wrote:
    should it?
    Yes.
    I've never had to deal with that, and have turned iMssage off on the iPhone a number of times.
    But you'll always had the ability to send an SMS, correct? Big difference.
    I seen this before with users who turn off iMessage, as the OP did, put their phone in Airplane Mode, go to a foreign country, & then can't re-activate it.

  • BPS Object inventory display

    I need to map objects in BW and BPS for upgrade preparation and documentation.  BW is easy in that there is the metadata repository, is there any equivalent way of looking up BPS objects?
    I suspect that there isn't, is there any other way, tables I can look up to give me BPS object descriptions (technical and non-technical)?
    Thanks in advance.

    You will see BPS metadata in tables.
    Try all tables with string UPC*
    Ravi Thothadri

Maybe you are looking for

  • TCP/IP Printer ports - HELP PLEASE

    I have a large inkjet printer that I print my graphic design to... for years it has been set up and printing just fine through an Actiontec M1424-WR-rev.D router. No setting were ever changed in the router, it just worked great right out of the box (

  • IDOC to PDF and XML via EMail: using InputAttachment interface in mapping

    Hello Together, I am working on the following scenario: IDOC --> Transformation Nr. 1 IDOC-XML; Transformation Nr.2 XML- PDF --> Email with 2 Attachments XML and PDF. Till now Iu2019ve managed "IDOC to Email" with XML-Attachment. Therefore I used Mai

  • Cannot connect iPad Air to VGA Monitor

    Hi, I received n Ipad Air for Christmas so gave away my old gen 1 Ipad, now I am beginning to wish I hadnt as there are so many problems! One I am trying to resolve right now is very iportan as I have aconference to attend and need to connect the ipa

  • How do you sort books in Itunes 11 by genre?

    I need some help. Is there s way you can sort your books in ITunes 11 by Genre? I really miss that feature...

  • 115,000 Addressbook contacts.  How do I delete Addressbook data file?

    Because of (I think) a synchronization problem, I now have over 115,000 contacts in addressbook. the unwanted entries are blank, and appear as 'no name.' Because the file is so cumbersome now, I haven't been able to delete the 'no names.' I recently