Screen field description in ECC6

Hi Friends,
  Iam using ECC6 now.. In 4.7 or any Version in screen field its not manditory to give the description..Automatically it will give blank Text.. Like that i want give in ECC6.. Iam not able to do that ...if iam giving space also..it is taking first charcter as some thing..otherwise its not generating..
please suggest me .. evry thging fine iam not getting properly..i attched this to one transaction..its giving dump..please suggest me..
regards,
sampath

Can you explain the problem bit more in details , whether field is in Dialog \Screen or in Selection Screen of the report.
Please explain the problem in detail.
Regards,
Senthil N S

Similar Messages

  • Field description in selection screen

    Hello,
    Please help me by answering a silly question: what settings have to be done so that in the selection screen for a report the field description to appear instead of the technical field name?
    Regards,
    Ileana

    If it is for a report (a custom developed one i.e. starting with Y* or Z*), the ABAP developer needs to do the setting.
    (S)he needs to make the changes in SE38. Once in the ABAP Editor, Go To --> Text Elements --> Selection Texts and maintain the texts (and Activate).
    If it is for SE16 (Table Display), then the reply by SAP Enjoy is correct.
    If it is for a LIS (or any Information System) report, then the reply by PSantosh is correct.
    Hope this helps,
    Lakshman

  • Populating the field description on the screen

    Hi Group,
    In the program after executing on the screen I have 3 screen fields. After entering the two fields when user hit the enter it needs to retrieve third field value from the table and have to display on the screen,and again I will click execute button the program needs to run.
    But after entering the two fields and hitting the enter program executing and the third field value getting populated after the execution.
    I am using the following code:
    here in this P_scen and p_fid filed I am entering on the screen and after hitting the Enter I need to populate
    p_des before doing the execution.
    AT SELECTION-SCREEN on block selblock.
    *Fetch the the database table
      PERFORM retrieve_table  tables    it_des
                              using     p_scen
                                        p_fid
      if sy-subrc <> 0.
        MESSAGE 'Not found'.
      endif.
    * Pass the description of the scenario.
      p_des = it-desc.

    Check the FM DYNP_VALUES_UPDATE:
        ws_dyname   = 'ZSRO_MASTER_DATA'.
        ws_dynumb   = '1000'.
        ws_dynpfld-fieldname  ='PPDESC'.
        ws_dynpfld-fieldvalue =  ty_aa-name_textc.
        APPEND ws_dynpfld TO i_dnpfld.
        CALL FUNCTION 'DYNP_VALUES_UPDATE'
          EXPORTING
            dyname               = ws_dyname
            dynumb               = ws_dynumb
          TABLES
            dynpfields           = i_dnpfld
          EXCEPTIONS
            invalid_abapworkarea = 1
            invalid_dynprofield  = 2
            invalid_dynproname   = 3
            invalid_dynpronummer = 4
            invalid_request      = 5
            no_fielddescription  = 6
            undefind_error       = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.

  • Input Screen fields are not showing the description

    Hi
    I have copied a program, generated using SQVI, to a Zprogram, say Ztest,  and when I execute this Ztest the description of the fields on selection screen are coming as SP$00001, SP$00002 and so on.
    however if I execute the query made using SQVI the field description are the field descriptions.
    Can anybody help me resolve this, to show the field description in ZTest also.
    Thanks in advance!
    -Rahul

    Hi khanna_rahul,
    since quite a long time (10+ years) I do not use SE38 any longer - partly to avoid such errors as you are confronting now. In SE80 object tree, right mouse click on report, copy, in the popup mark everything, give new name(s) and that was it.
    For you it will be easier to just copy and paste between two sessions of report texts. Don't worry, system will ask for transport.
    Regards,
    Clemens
    N.B.: who does have much time and is willing to use it for useless tasks, will stick to SE38 until SAP removes it.

  • Field Description change in Standard screen

    Hi All,
    Can any one tell me how to change Field Description in standard screen.? No user exits available and without access key.
    Ex :- if field description is DATE. i want to change it to 'Test Date'.
    i dont want to change it Data element level.
    Please do not give CMOD solution
    Thanks
    Sameer

    Hi
    If you don't want to use CMOD (changing the description for all system) nor use access key, changing the standard, you can create your own report, with the same screen, changing the name and after do a SUBMIT with your selection screen on the standard selection screen (standard report). Of course, it will be a customer development. It's an idea.
    I hope this helps you
    Regards
    Eduardo

  • Unable to capture screen fields in eCATT

    Problem description 1 : Unable to capture screen fields in eCATT
    Recording using SAP GUI Method.
    Problem description 2 :Unable to capture Tab controls while recording
    in eCATT using SAP GUI Method.
    Thaks for any suggestion you could provide me and once again for your courtesy attention.
    Regards,
    Eric Monteiro

    Hi Phani,
    Please try below code:
    *data declaration for reading values given by user in the selection screen field.
      DATA: BEGIN OF i_tab OCCURS 0.
              INCLUDE STRUCTURE rsselread.
      DATA: END OF i_tab.
      MOVE: 'LOGSYS' TO i_tab-name,
            'P' TO i_tab-kind. u201CP For parameter
      APPEND i_tab.
      MOVE: 'GP_SIMVE' TO i_tab-name,
            'P' TO i_tab-kind. u201CCheck if field is Parameter
      APPEND i_tab.
    *move program name and screen number into local variable.
      l_prog = sy-repid. u201C(Try by directly passing program name also)
      l_dynnr = sy-dynnr. u201C(Try by directly passing Screen number also)
    *calling function module to get the value given by user.
      CALL FUNCTION 'RS_SELECTIONSCREEN_READ'
        EXPORTING
          program     = l_prog
          dynnr       = l_dynnr
        TABLES
          fieldvalues = i_tab.
    Hope this should slove your issue.
    Thanks & Regards,
    Gaurav.

  • Field Descriptions without TOP OF PAGE

    Hi Experts,
    I have one Z report  and this was written somebody long back.
    This report was normal standard report i.e just writing the table values to screen using WRITE statement.
    Eventhogh there is no TOP OF PAGE event in the report, field names were displaying in the screen output with highlighted color.
    As soon as WITE statement calling, program is displaying fieldnames automatically? how it possible?
    Now, I modified my program by adding another field values to the screen output.
    The field which I added it's not showing field name.
    How can I display my field description to that output. (without adding TOP OF PAGE)
    As I told you report doesn't have TOP OF PAGE event. Please help me.
    Thanks
    Raghu

    Raghu,
    I'm guessing that your report is organized in a tabular form and by field description you mean column headings. There are two ways to display column headings 1) by explicitely writing the WRITE statements to output to the column headings, 2) by maintaining the standard list & column headings. (in ABAP editor follow menu path GOTO>Text Elements>List Headings.
    You can disable the display of standard headings by using addition in NO STANDARD PAGE HEADING as below.
    REPORT  YTEST NO STANDARD PAGE HEADING
                  LINE-SIZE 120
                  LINE-COUNT 65
                  MESSAGE ZMSG.
    Regards,
    Gajendra

  • Maintain Authorization Field in SAP ECC6.0

    Hello all,
    Our SAP system has upgraded from SAP 4.7 to ECC6.0 recently. After upgrade, I find that the function Maintain
    Authorization Field - SU20 cannot be launched.
    When I run the T-code SU20, the maintain authorization fields screen does not appear and a message "Start of Application: Maintain Authorization Fields" flash one time in the message bar  (bottom left corner at the SAP screen).
    Can I ask how to maintain Authorization Field in SAP ECC6.0?
    Thanks
    Sunny

    Hello,
    Does anyone know how to maintain Authorization Field in SAP ECC6.0?
    Many thanks
    Sunny

  • Values in Screen Field

    Hi,
    There is a screen (3140 function group CRM_TSRV_UI) which has got field one with 'CRMT_3140_TSRV_UI-OBJECTIVE' which  is assigned to data element CRMT_OBJECTIVE. This data element 'CRMT_OBJECTIVE' has the length of 3 character and so does the domain 'CRM_OBJECTIVE' which is assigned to it.
    In the domain there is a value table 'CRMC_ACT_OBJ' assigned to it which again has got the primary field 'objective' with length 3.
    The table structure 'CRMC_ACT_OBJ' contains only two fields mandt and objective, but when you see the table contents it shows 3 fields, with one additional field 'description' coming from the another table which is maintained as a text table CRMC_ACT_OBJ_T
    When I call this field on the screen 3140 (as a list box) it shows me the Description instead of Key, even when the length of the field is 3 characters.
    what can be the explanation on how it is picking up the description and also not giving any error when the field length is 3 characters.
    I have to restrict the value in this list and for that I tried using POV event (process on value-request) but when I try to input the description or any value with length more then 3 characters I got a error message.
    Suggestions..!
    Thanks in adv.
    /Manik

    Hi Manik,
    This is standard SAP functionality. It is picking up the description from the text table i.e. CRMC_ACT_OBJ_T for the objective code in the table CRMC_ACT_OBJ.
    SAP has internally linked both the tables to do so. Whenever you are refering to this field anywhere in your program just use code instead of the description and you won't get any error. SAP takes care of matching the code with the corresponiding description. You can check out this mapping in the SPRO transaction.
    <b>Reward points if it helps.</b>
    Message was edited by: Amit Mishra

  • Screen field f4 help with a table of 5*5 as a popup

    hi all,
    I have screen-field (location id) when the user press f4 a table with 5 rows and 5 columns should popup. When I select any of the cell in the table that value to be taken as input for the screen-field.
    how to solve this requirement?

    Hi uday
    In the following code project id, Object id and object name will display in the F4 screen but only object id will be placed in the screen field.
    Constants:
      c_objectid         TYPE dfies-fieldname
                        VALUE 'OID',       " Object ID for F4 help
      c_fieldoid        TYPE  help_info-dynprofld
                        VALUE 'P_OID',
                                           " To hold fieldname of object ID
      c_char_s(1)        TYPE c
                        VALUE 'S'.         " Approved status - Saved
    * Field-string for it_values............................................
    DATA:
      BEGIN OF fs_value,
        pid   TYPE zcl_prjid,              " Project ID
        oid   TYPE zcl_objid,              " Object ID
        oname TYPE zcl_objname,            " Object description
      END OF fs_value.
    Data:
      it_values    LIKE STANDARD TABLE OF fs_value,
                                           " Table for object ID F4 help
    PARAMETERS:
    p_oid TYPE zcl_objects-oid.
    at selection-screen on value-request for P_OID.
    PERFORM f4help_objectid.
    * FORM F4HELP_OBJECTID                                                 *
    * This subroutine is used for F4help in object ID i.e. to get          *
    * corresponding object ID based on the project ID entered.             *
    * There are no interface parameters to be passed to this subroutine.   *
    FORM f4help_objectid.
      GET CURSOR LINE w_lineno.
      fs_sc_val-fieldname = 'FS_TIMESHEET-PID'.
      fs_sc_val-stepl     =  w_lineno.
      APPEND fs_sc_val TO it_sc_val.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname               = sy-repid
          dynumb               = sy-dynnr
        TABLES
          dynpfields           = it_sc_val
        EXCEPTIONS
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          invalid_parameter    = 7
          undefind_error       = 8
          double_conversion    = 9
          stepl_not_found      = 10
          OTHERS               = 11.
      IF sy-subrc EQ 0.
        READ TABLE it_sc_val INTO fs_field
              WITH KEY fieldname = c_fieldname.
      ENDIF.                               " IF sy-subrc EQ 0
      SELECT  projectid                    " Project ID
              objectid                     " Object ID
              objectname                   " Object Name
        FROM  zcl_objects
        INTO  TABLE it_values
       WHERE  projectid EQ fs_field-fieldvalue.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = c_objectid   "* Here c_objectid = 'OID' and here OID is the field name in field string*
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = c_fieldoid
          value_org   = c_char_s
        TABLES
          value_tab   = it_values.
      CLEAR fs_timesheet-pid.
      REFRESH it_values.
      REFRESH it_sc_val.
    ENDFORM.                               " F4HELP_OBJECTID
    Regards,
    Mahi.
    Edited by: Maheswari Chegu on Nov 5, 2008 7:57 AM

  • I am hiving some table field descriptions I need in which table these table

    I am having table field descriptions : Order Value,Discount Value,Actual Margin,Actual Margin %.
    I need in which tables these fields are available.

    Hi Bunny:
    1. goto se15
    2. expand abap dictionary
    3. expand fields
    4. double click on table fields
    5. Just paste the description , which you are having in the SHORT DESCRIPTION input area, at the beside screen..like "Order value"
    6. press F8.
    you should get:
    Table Name       Short Description
    Table field                    Short Description
    TREC_FORC_COMPL  Temporary data for the receiving forecast
    TVALUE                         Order value in document currency
    EMBK             Legal Control: License Master - Header Data
    GAUFW                          Value consumed by orders
    Thanks,
    Naveen.I

  • Need to enhace tcode FD32 to add new screen fields on the initial screen

    Hi All,
    I am supposed to add two new screen fields on the initial screen of TCODE FD32,
    I am unable to find any screen exit for that. Is there any screen exit present for that or is there any way to do this.
    Kindly help me, solutions will be greatly rewarded.
    Thanks in advance,
    Nagaraju.

    check below
    Transaction Code - FD32                     Change Customer Credit Management                                                                               
    Exit Name           Description                                                                               
    RFDRRANZ            User exits: Accounts Receivable Information System                                                                               
    No of Exits:          1                                                                               
    Rewards if useful...............
    Minal

  • Finding field KNA1_OIDRC in ECC6 / ERP2005 on the Customer Master details

    Hi to all SAP Gurus
    Could someone kindly advice how to find screen field "Diff.Ref.Co"/ Mag Area(KNA1_OIDRC) in the ECC6 environment. in the previous release of SAP 4.6C it was situated on General data in the Control Data tab. I have found SAP Note 973001 but this has not solved our problem. i have also checked in configuration to make sure the screen is a required entry.
    Thanks
    Phenyo

    Hi,
    Verify if
    1. In SAPLOI0_MF02D and screen number 7123, the attributes of the field Diff. ref. code (KNA1-OIDRC). is 084.
    2. Table TMODP has ONLY this entry
    E     T077D-FAUSA     084     Differential Reference Code
    3. Check customizing in OB20 and also in SPRO -> Logistics-General -> Business Partner -> Customers-> Control   -> Define Account Groups and Field Selection for Customers
    Best Regards,
    Hema

  • Translate a changed field description in Web Dynpro

    Dear all,
    i have changed a the field description "Accounting Number" into "Personnel Number" in a Web Dynpro.
    (via SE80 -> Package GRAC_ACCESS_REQUEST -> Web Dynpro Application GRAC_OIF_REQUEST_SUBMISSION -> Tab "User details")
    If I test to dipslay the Web Dynpr in German or Englisch, I have the same description in Englisch.
    Does someone now, how to translate the field description.
    Thanks!
    Melanie

    Here the screen.
    Transaction SOTR_EDIT -> Short text
    change
    and change translation

  • Clear Screen Field

    Dear Friends
    I have a Screen and 6 drop down boxes are there with different table references.
    I have use PROCESS ON VALUE-REQUEST block for the getting there serch help values with use FM 'F4IF_INT_TABLE_VALUE_REQUEST'
    my question is when i select One drop down belows are must be clear. that means
    if I select Drop down 2 ==== Drop down 3,4,5,6 must be clear
    if I select Drop down 5 ==== Drop down 5,6 must be clear
    i use in PAI event like CLEAR <Field Name> but its not working
    Can you anyone give me a solution to clear this issue
    Thanks and Regards

    Have a search through the ABAP UI forum for function module 'DYNP_VALUES_UPDATE' examples - you can use this in the way you want to update the value of other screen fields during a POV event i.e. in the F4 for another field.
    If you scroll down through:
    Re: getting the description
    you'll see an example I posted of using this to set text for an associated field, but clear (set to space) should work equally well.
    Jonathan

Maybe you are looking for

  • Can i install a Seagate momentus XT hybrid hard drive in my 2011 27' iMac?

    As title. Heard a lot about the temp sensor that might cause this an issue? If its a problem, would it work if i installed it as a 2nd drive? Thanks

  • Creating variable names using a counter

    Hi all I have a snippet of code that I am trying to work in Flash 6, it is attached to this post. Inside the for loop I am trying to define the class variable instance names dynamically using the 'i' counter encapsulated within the eval function. Is

  • Texts send as iMessage to Samsung user

    Hey Guys, I have a huge problem with texting people who switched phones from iPhone to ie Samsung or Sony and no longer have iMessage option. My iPhone still recognizes these contacts as iPhone(iMessage). Everytime I want to text them I have to switc

  • Class not found: org.springframework.beans.factory.BeanCreationException

    I am deploying an .ear file to an Oracle Application Server 10.1.2.0.2. In one container, it deploys correctly. In another conatiner on the same server and configured identically (or at least I believe), I try to deploy the same .ear file but I get t

  • Problem converting any AP to LAP - Cert not yet valid

    All, I have a problem trying to convert APs to LAP. I have the following scenario: - 2 WLC 5508. - For the WLC the image is 7.0.220.0 - 10 APs registered. 7 Cisco 1310 and 3 Cisco 1242. - Time on the WLC indicates is July 4th 2013 - 19:20:00 I have 5