Decription/Text of value field

Hi.
I have a field of Data Dictionary and i want the text that describe the value of this field.
But I don't know the text table and the name of field 'Description'.
For example,
-I have the field PA0001-PERSK
-the user insert the value '03'
-the program search for text table and extract the description ( in this case T501T is the table and PTEXT is the description of field PERSK)
<u>this search have to be parametric.</u>
In other word, the program unknows the text table and the field 'Description'.
In what way, can I realize it?
thank you.
Regards Angela

Please use the foll FM
CALL FUNCTION 'DDIF_FIELDINFO_GET'
  EXPORTING
    tabname             = 'PA0001'
   FIELDNAME            = 'PERSK'
TABLES
   DFIES_TAB            = itab
EXCEPTIONS
   NOT_FOUND            = 1
   INTERNAL_ERROR       = 2
   OTHERS               = 3
itab-fieldtext should have your field description

Similar Messages

  • Table for CO-PA-Value Field Texts

    Hi together,
    does anybody know the table where the texts for the CO-PA-Value-fields are stored?
    Kind regards
    Udo

    Hello,
    both tables do not match my expectations.
    Table V_TKEVG3 is for assignment of value field groups, table TKCTK is for key figures.
    Kind regards
    Udo

  • Field "Value field texts" is disabled to enter new values

    Hi there,
    I'm trying to enter new values on the field "Value field texts" from Depreciation Area, in Config Asset Value Display(Financial Accounting (New) > Asset Accounting > Information System > Configure Asset Value Display). The fields are disbled to enter new text values.
    I don't know what's happening. I've see the SAP Note 121433, but I don't intend to request the creation of a program to fill these fields. Does anyone know if there's another way to deal with this?
    Thanks in advance.

    Hi Srinivasa,
    Thanks for reply. I've checked the transaction ANSICHT following the steps said and the Master Data fields are with "No authorization" for all Depreciation areas.
    Do you know if there's another way of enable these fields? We cannot change the Authorization settings from one Depreciation Area to another.
    Thanks a lot.

  • Losing Text Typed Into Properties/Data/value Field

    If you type within the Properties/Data/value field of a Component Label then click on the "..." for that field, you'll lose the text you just typed. I don't know how pervasive this is throughout other fields.

    I'm suggesting that this should be fixed so that data isn't lost when clicking the "...". Take a look at the Properties/Appearance/style field. If you edit that field and then click on the "...", the data is at least copied into the new dialog. This editing behavior should be consistent throughout the Properties panel, if not the entire application.

  • How to disable numbers in a text type or field ?

    Hi,
    Any option of disabling numbers in a text type or field ? For E.G. in the PO header text can we prevent users from entering number or values ?
    Thanks.

    No, not without own programming

  • How can I have text from multiple fields on one layer, copy to one field on another layer?

    A little help please as it's been years since I've done any coding of any sort.
    So I have a 4 page document with various field types.  I have a document script that gets "TodaysDate" that works perfectly and a few other scripts as well.
    So what I'm trying to do is find a work around for the following:
    I have 3 fields - SURNAME, FIRSTNAME & dob.
    And I want what is typed into these fields to populate into 1 field.  And according to this tutorial (http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript) it's not exactly possible.  At least I think that's what it says.
    However I'm hoping that maybe I could have a Submit button at the end of that document that when clicked would copy the text from those 3 fields (that I would have on 1 layer) into 1 field on a 2nd layer.  Is that even possible??
    I'd also like to have the document Print, Save (using the text in the field on the 2nd layer as the file name), Email (using the text in the field on the 2nd layer as the subject line) and Export to a specific Excel spreadsheet. 
    I don't want much do I?
    I'm using Acrobat 9 Pro on a Windows PC but also have access to Acrobat 8 Professional.  And I'm going to want the form to run in Acrobat Reader X.
    So far I have for the 3 fields into 1 on another layer:
    function buttonClick(){
    if(buttonClick==false)
    event.value=this.getField("SURNAME"+"-"+"FIRSTNAME"+"-"+"dob").valueAsString;
    But I have no idea how to call the event.value from 1 layer to another or if any of that code above would even work at all.
    I have a script that I believe will work perfectly for the Save and Email function:
    Using the “doc.submitForm()” function
    // This is the form return e-mail. Its hardcoded
    // so that the form is always returned to the same address
    // Change address on your form
    var cToAddr = "[email protected]";
    // First, get the client CC e-mail address
    var cCCAddr = this.getField("ClientEmail").value;
    // Now get the beneficiary e-mail only if it is filled out
    var cBenAddr = this.getField("BennyEmail").value;
    if(cBenAddr != "") cCCAddr += ";" + cBenAddr;
    // Set the subject and body text for the e-mail message
    var cSubLine = "Form X-1 returned from client"; var cBody = "Thank you for submitting your form.\n" + "Save the mail attachment for your own records";
    //** Send the form data as an XML attachment on an e-mail
    // Build the e-mail URL
    var cEmailURL = "mailto:[email protected]?cc=" + cCCAddr + "&subject=" + cSubLine + "&body=" + cBody;
    this.submitForm({
                cURL: cEmailURL,
                cSubmitAs:"XML",
                cCharSet:"utf-8"
    I'll work out the Export to Excel thing later as I've seen many tutorials on that.  But can I do the 3 fields to 1 thing at all?
    Please Help!!!

    Sorry Gilad.  I hope I'm not getting on your nerves (too much) but as I said it's been a while since I did any formal code. And I'm trying to do this code for a work document but I'm doing it in amongst so many other things I do for my job that it's difficult to get the time to concentrate for longer than 5 mins.
    I didn't get a chance to try that code until just now.  I guess I asked again as I thought (from what I'd read) that it wouldn't be that simple.
    So I've added that code and I get no errors.  But it doesn't appear to be doing anything either.  I've added the code like this in the Custom calculation script of a separate field I've called FileName.  And on the Button i'm using I've added:  buttonClick()
    function buttonClick(){
    if(buttonClick==false)
              event.value=this.getField("SURNAME").valueAsString + "-" + this.getField("FIRSTNAME").valueAsString + "-" + this.getField("dob").valueAsString;
    So now I'm guessing that becasue i'm not getting an error or a result that I've screwed it up still.  Have I put the code in the correct area?  Have I assigned a the buttonClick() function correctly?

  • How can I detect a certain text within a field within CASE using IF

    Dear all,
    for a transformation / generation of values receiving from R/3 into BW I try to
    manupulate three fields. I have a problem detecting a string in a field.
    I am using a CASE with several WHEN clauses on one field. Depending on the
    value, an IF is integrated. There I look into another field evaluating, if it contains
    a certain string. E.g. IF STRING CP 'xyz' OR 'abc'.
    System gives error for the locigal expression. I also tried CS, but same error.
    How can I detect a certain text within a field and which is the right logical
    expression.
    Many thanks in advance!!!
    Claudia

    Hi,
    Folow the blow example...
    May be it helps....
    DATA: hex1 TYPE string,
          hex2 TYPE string.
    hex1 = 'FFFF'.
    hex2 = '123FF'.
    IF hex1 CP hex2.
    ENDIF.
    Cheers,
    SImha.

  • Changing value fields in COPA

    Hello,
    I want to change :
    - the text description for 2 value fields in COPA.
    - These value fields are assigned to the value field group Z002 (in the T code KEVFG), and I want to change this assignment
    by linking them to the value field group Z001.
    These 2 value fields are not any more used for 2 years. Can this change have a lot of impact in the production system?. Shall I need to generate again the operating concern after these changes?
    Thanks in advance
    Barondra BERGET

    Hi,
    If you want to change the description of a characteristic
    or value field you must change the descriptions of the related
    data element.
    Therefore you need to perform the following steps:
    1. In KEA5 / KEA6, type in the name of the characteristic/
       value field and click on the create / change button
    2. On the next screen, double click on the data element of your
       characteristic/value field
    3. On the 'Display Data Element' screen, click on the tab strip
       "Field label".  You can see the four field lables short, medium, long
       and heading.  You should change all four field labels and then
       regenerate the data element.  After having done this you may have to
       to regenerate the characteristic/value field and the operating
       concern.
       I hope this answers your query. If so please close this message by
    pressing the confirm button. Else do not hesitate to get back for more
    clarifications.
    Kind Regards,
    Abhisek Patnaik,

  • Add value field to operating concern

    Hello,
    I have created a new value field VV955 and want to add it to my operating concern in transaction KEA6.
    I go into change mode for all value fields for my operating concern and add a new line with my value field. When I hit the save button, it says "Field VV955 exists as Val. fld in field catalog -> choose another name".
    Also when I go into change mode in KEA0 where you can drag value fields from left to the right, the value field is blue which means I cannot assign it to my operating concern.
    Any suggestions?
    Thanks
    Anne

    Hi,
    While creating value field it will only consider long text. Inoperating concern Data structure in KEA0 you can assgin value field it will display in blue first, when you select to data structure you can see value field and save the value field.
    Regards,
    Sreekanth

  • Auto populate text fields with a trigger such as entering text into input fields in ADF

    Hello all,
    I am not able to auto populate text fields with a trigger such as entering text into input fields in ADF.
    I tried AdfFacesContext.getCurrentInstance().addPartialTarget(val); in the back end using setter method of input text field.
    its not working ..
    is there any way to achieve it
    Regards,
    Shakir

    Hi,
    Always mention your JDev version.
    The valueChangeListener would fire only when you set the autoSubmit property of the field to true. Can you elaborate your requirement? What do you mean by related data? Are you performing some sort of search?
    If you want to get the value you entered on the field, just set autoSubmit to true and get the new value from the valueChangeListener. If your requirement is something like as and when you type, do something, you need to check out this approach :https://blogs.oracle.com/groundside/entry/auto_reduce_search_sample
    -Arun

  • Inserting text into a field at the current cursor position

    Does anyone know how to insert text into a field at the current cursor position? I would like it to work similar to the Syntax Palette in Forms. I cannot figure out how to retrieve the current cursor position in order to manipulate the text.
    Any help would be great.
    Thanks.

    Hi,
    If the button and the textfield are on in the same subform then this code should work in the click event of the button
    (This is JavaScript code so make sure the code is set to JavaScript and Client on the drop downs in the script window)
    (assuming the name of the textfield is TextField1)
    TextField1.rawValue = "some value";
    If they are in different subforms then you have 2 options
    Please note in both these options it is easier if the subforms have names ( I am assuming this to keep samples simple)
    option 1 -
    use the parent object to move up the tree till you are at the same level as that of the subform that contains the textfield
    e.g. 
    (Click Event of the button)
    this.parent.subformname.TextField1.rawValue = "some value";
    option 2 -
    Use the resolve node to make your way down from the top level of the form
    xfa.resolveNode ("form1.subformname.TextField1").rawValue = "some value";
    Hope this helps
    Malcolm
    p.s. I am making assumptions as the image/file you attached did not appear for me.

  • Text in interactive fields before exporting - but wish it to be still editable...

    Hi, in InDesign CC I have a problem with text in interactive text fields. I would like to write text that is editable after exporting interactive pdf. Because I have many formulars with many many text fields, and my clients would like to edit the text but not write (or paste) everything again. Is it possible to insert text that remains editable after exporting to interactive pdf ? Hope you can help !!!
    and btw - is it possible to use other fonts than Times somehow ? Thank you )
    Maria, Denmark

    hi Maria,
    You'll need to make these changes in Adobe Acrobat after you've exported the InDesing form to PDF (Interactive).
    Presently you can't control which font is used for the form fields in InDesign or enter default text.
    In Acrobat:
    Click Tools.
    Click Form to display the Forms panel.
    Click Edit to enter Form Editing Mode.
    Right-click a text field and choose Properties.
    To change the default font for the text field:Click the Appearance tab in the Text Field Properties dialog box.
    To enter text in a field that appears by default:
    Click the Options tab in the Text Field Properties dialog box.
    In the Default Value box, type the default field text.
    Click Close Form Editing.
    If you have other questions that relate more to Acrobat than InDesign, please post them at the Acrobat Forum.
    Hope this helps.
    Cari
    twitter: carijansen
    facebook: carijansen.au

  • How to make the text of the field to mixed case of the transaction COMMPR01

    Hi,
    There is a text description field in the COMMPR01 for a product.
    Now when i entered any text into the field, it is changed to UPPER CASE.But i want that when i enter any text , it will save the text as it is that means in both upper case and lower case.
    Suppose i entered a text as  Dummy Text, then when i save this product this text should display as Dummy Text.It should not display as DUMMY TEXT.
    Please suggest me how to do this .
    Thanks and Regards,
    Sudhansu

    I just verified and the Description for Products (and possibly other objects too) are stored in table COMM_PRSHTEXT.
    The relevant Data element is COMT_PRSHTEXTX which has the domain PRSHTEXT40.
    If you look at this domain you have a parameter "lowercase" which is available as a flag option.
    <u><b>The explanation about this Flag is the following:</b></u>
    Lowercase letters allowed/not allowed
    If this flag is set, upper case and lower case are distinguished when you enter values with screen masks.
    Otherwise all the letters entered will be converted to upper case when you enter values with a screen mask.
    This mechansim is in effect for all the fields referring to this domain.
    <b>Solution would be</b> to verify if for this data-element the same Domain is used.
    If yes, you can flag this option in the domain.
    this should solve your problem.
    kind regards
    davy pelssers
    please reward if helpful.

  • 1000 CHARACTER TEXT IN ALV FIELD

    Hi Experts,
    I have a String type variable containing 1000 character text that I am passing in a field on ALV. But ALV field can display on 132 characters. So now my requirement is that when a user double clicks on that field... then a popup or a screen appears where the user can read the entire text of that field.
    I have tried some FMs (like POPUP_TO_CONFIRM, POPUP_TO_INFORM, POPUP_DISPLAY_TEXT etc...), but all have length restriction.
    Please suggest if there is any FM to get the entire 1000 character text on a popup....  OR if there is any other way to do this...
    Thanks in advance
    Regards,
    Ashish Goyal

    I am using this code provided by you, facing error : Field "OB_GUI_DIALOGBOX_CONTAINER" is unknown. It is neither in one of   the specified tables nor defined by a "DATA" statement. 
    Please take a look and suggest.
    Using REUSE ALV GRID to display ALV.
       TYPES: BEGIN OF tp_text_x .
    TYPES: tdname      TYPE thead-tdname ,
           tdobject    TYPE thead-tdobject ,
           tdid        TYPE thead-tdid ,
           tdspras     TYPE thead-tdspras ,
           tdtxtlines  TYPE thead-tdtxtlines .
    TYPES: tdline      TYPE tline-tdline ,
           it_tline    TYPE tline_tab .
    TYPES: END OF tp_text_x .
    CLASS cl_event_reciever DEFINITION DEFERRED.
    DATA v_event_reciever TYPE REF TO cl_event_reciever.
    CLASS cl_event_receiver DEFINITION .
      PRIVATE SECTION.
        METHODS: close
                 FOR EVENT close OF cl_gui_dialogbox_container
                 IMPORTING sender.
        METHODS: init_container .
        METHODS: display_textedit
                 IMPORTING value(st_text_x) TYPE tp_text_x .
    ENDCLASS .                    "cl_event_receiver DEFINITION
    CLASS cl_event_receiver IMPLEMENTATION.
      METHOD close .
        CALL METHOD sender->set_visible
          EXPORTING
            visible = abap_false.
      ENDMETHOD .                    "handle_close
      METHOD init_container .
    *    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
        IF ob_gui_dialogbox_container IS NOT INITIAL .
    *    IF EDITOR_CONTAINER IS NOT INITIAL .
          me->close( EXPORTING sender =  ob_gui_dialogbox_container ) .   " EDITOR_CONTAINER ).
        ENDIF .
        CREATE OBJECT ob_gui_dialogbox_container
          EXPORTING
            parent   = cl_gui_container=>screen0
            top      = 40
            left     = 200
            lifetime = cntl_lifetime_dynpro
            width    = 600
            height   = 100.
      ENDMETHOD.                    "init_container
      METHOD display_textedit .
        me->init_container( ) .
        DATA: ob_gui_textedit TYPE REF TO cl_gui_textedit .
    *    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
        CREATE OBJECT ob_gui_textedit
          EXPORTING
            parent = ob_gui_dialogbox_container.
        CALL METHOD ob_gui_textedit->set_readonly_mode
          EXPORTING
            readonly_mode = cl_gui_textedit=>true.
        DATA: it_tdline TYPE TABLE OF tdline .
        DATA: st_tdline LIKE LINE OF it_tdline .
        FIELD-SYMBOLS: <st_tline> LIKE LINE OF st_text_x-it_tline .
        LOOP AT st_text_x-it_tline ASSIGNING <st_tline> .
          APPEND <st_tline>-tdline TO it_tdline .
        ENDLOOP .
        CALL METHOD ob_gui_textedit->set_text_as_stream
          EXPORTING
            text = it_tdline.
      ENDMETHOD.                    "display_textedit
    ENDCLASS .                    "cl_event_receiver IMPLEMENTATION
    INITIALIZATION.
    CREATE OBJECT v_event_reciever.
    DATA: ob_gui_dialogbox_container TYPE REF TO cl_gui_dialogbox_container.
    CREATE OBJECT ob_gui_dialogbox_container.
    START-OF-SELECTION.
    v_event_reciever->display_textedit( EXPORTING st_text_x = <st_alv_data_1>-text_1 ) .

  • [RB 6i] Format text in the field using HTML-tags. Or another way...

    If some fields of tables in database contain html tags such as 'H<sub>2</sub>O' (here is html tag 'sub') or 'some<b>text</b>'(here is html tag 'b') how can I to make Report Builder 6i to understand these tags or at least don't show them?
    Or how in another way can I format a part of text inside the field?
    thanx before
    Max

    Hi Maxim,
    If the output is PDF, the only way is to filter the incoming values yourself. You will need to create a PL/SQL column and remove the HTML markup tags. This, of course, leaves you without attributes you wanted in text (ie: the no "Bold" characters). You can still do this in with the same report basing the output from the PL/SQl formula column on the "desformat" input parameter.
    Reports doesn't have any "markup" capability. ie: A field only has one font & one colour. You can have multiple fonts for boilerplate text but, again, only a single colour.
    Robin.

Maybe you are looking for

  • Sports Team Editor: How do I get the players to display in the sports theme?

    How do I get the players to display in the sports theme video? I entered the team and players using the sports team editor. Then clicked done and update. But when I play the video only the first players profile shows up. I have the rest of the video

  • Expansions in Financial Reporting Studio

    I am writing a report in Financial Reporting Studio 11.1.1.2 that is connected to Planning. I have chosen to retrieve "Children of COGS_Dir_Exp" and checked the "Allow Expansion" check box. When I run the report I can expand some of the children down

  • Why validateitem trigger ? why not use post  textitem trigger

    hi my self : I used when-validate-item for the amount field in the form to chek that it should be > 0; other: why using when-validate-item trigger only, i can use to place same code in Post-text-item or Post-field triggers ? myself : when-validate-it

  • Executing ALT + right Shift automatically

    Hi, when a user focus in a text field, he would press ALT + right Shift in order to type Arabic letters. Is there a way to make Flex to switch to arabic by executing ALT + right Shift automatically ? Best regards

  • 3750x Design help needed - VSS style - traffic both links

    Hello, I need a little help figuring out the best way to do this. I have two core 3750X switches (SWA and SWB). These two switches each have four switches hanging off of them. I need to add two more switches for a separate server/app farm. These two