<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: f4 help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503188#M1422103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhavana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's say, that your code looks like this right now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; PARAMETERS: p_status TYPE rsmonext-status. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: gt_return TYPE STANDARD TABLE OF ddshretval.

FIELD-SYMBOLS: &amp;lt;gs_return&amp;gt; TYPE ddshretval.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (20) FOR FIELD p_status.
PARAMETERS: p_status TYPE rsmonext-status.
SELECTION-SCREEN COMMENT (50) stat_txt.
SELECTION-SCREEN END OF LINE.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_status."To get text after F4
  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname           = 'RSMONEXT'
      fieldname         = 'STATUS'
      dynprofield       = 'P_STATUS'
    TABLES
      return_tab        = gt_return
    EXCEPTIONS
      field_not_found   = 1
      no_help_for_field = 2
      inconsistent_help = 3
      no_values_found   = 4
      OTHERS            = 5.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    CLEAR stat_txt.
  ELSE.
    READ TABLE gt_return ASSIGNING &amp;lt;gs_return&amp;gt; INDEX 1.
    IF sy-subrc EQ 0.
      p_status = &amp;lt;gs_return&amp;gt;-fieldval.
      PERFORM get_domain_text USING 'RSSTATUS' p_status CHANGING stat_txt.
    ELSE.
      CLEAR stat_txt.
    ENDIF.
  ENDIF.
  PERFORM set_value_on_sel_screen USING 'STAT_TXT' stat_txt.

AT SELECTION-SCREEN OUTPUT. "To get text on enter after direct input of text (without F4)
  PERFORM get_domain_text USING 'RSSTATUS' p_status CHANGING stat_txt.
  PERFORM set_value_on_sel_screen USING 'STAT_TXT' stat_txt.

FORM get_domain_text USING    uv_domain TYPE dd01l-domname
                              uv_domain_value TYPE any
                     CHANGING cv_domain_text TYPE any.
  DATA: lt_dd07v TYPE STANDARD TABLE OF dd07v.
  FIELD-SYMBOLS: &amp;lt;ls_dd07v&amp;gt; TYPE dd07v.

  CLEAR cv_domain_text.

  CALL FUNCTION 'DD_DD07V_GET'
    EXPORTING
      domain_name    = uv_domain
      withtext       = 'X'
    TABLES
      dd07v_tab      = lt_dd07v
    EXCEPTIONS
      access_failure = 1
      OTHERS         = 2.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    CLEAR cv_domain_text.
  ENDIF.

  READ TABLE lt_dd07v ASSIGNING &amp;lt;ls_dd07v&amp;gt; WITH KEY domvalue_l = uv_domain_value.
  IF sy-subrc EQ 0.
    cv_domain_text = &amp;lt;ls_dd07v&amp;gt;-ddtext.
  ENDIF.

ENDFORM.                   
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jan 2010 07:40:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-19T07:40:24Z</dc:date>
    <item>
      <title>f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503180#M1422095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a small requirement on f4 help. i,e in a report i have a parameter called &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;status where it shows F4 help and shows data as : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;status :  1    approved&lt;/P&gt;&lt;P&gt;              2     rejected&lt;/P&gt;&lt;P&gt;              3     pending&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in the report iam getting the status feilds as &lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt; instead of this i want the text to be displayed pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:13:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503180#M1422095</guid>
      <dc:creator>former_member233090</dc:creator>
      <dc:date>2010-01-19T06:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503181#M1422096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;you can get the Text from DD07T table 
first go to DD07L table and get the data and get txt from above table
" This is useful only if these Values are maintained in Domain Level

of use Function Module *J_3G_GET_DOMAENE_TEXT*&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheerz&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:18:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503181#M1422096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T06:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503182#M1422097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank Q somuch for ur reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but iam very new to ABAP and iam not able to proceed with the suggestion u have given,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that table DD07L  how to get the data from there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bhavana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:22:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503182#M1422097</guid>
      <dc:creator>former_member233090</dc:creator>
      <dc:date>2010-01-19T06:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503183#M1422098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this use  FM VRM_SET_VALUES is used to fill the value table and is passed to the parameter created with TYPE LISTBOX in the selection screen event AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PROGRAM zlist&lt;/P&gt;&lt;P&gt;TYPE-POOLS : VRM.&lt;/P&gt;&lt;P&gt;DATA: param TYPE vrm_id, &lt;/P&gt;&lt;P&gt;       values     TYPE vrm_values, &lt;/P&gt;&lt;P&gt;       value LIKE LINE OF values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_name(10) AS LISTBOX VISIBLE LENGTH 10.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT. &lt;/P&gt;&lt;P&gt;  param = 'P_NAME'. &lt;/P&gt;&lt;P&gt;  value-key = '1'.&lt;/P&gt;&lt;P&gt;  value-text = 'Rejected'.&lt;/P&gt;&lt;P&gt;  APPEND value TO values.&lt;/P&gt;&lt;P&gt;  value-key = '2'. &lt;/P&gt;&lt;P&gt;  value-text = 'Pending'.&lt;/P&gt;&lt;P&gt;  APPEND value TO values. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES' &lt;/P&gt;&lt;P&gt;    EXPORTING id     = param &lt;/P&gt;&lt;P&gt;              values = values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Subha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503183#M1422098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T06:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503184#M1422099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the domain name for the field which you are getting those f4 values and&lt;/P&gt;&lt;P&gt;use it in &lt;STRONG&gt;DD07L&lt;/STRONG&gt; or &lt;STRONG&gt;DD07T&lt;/STRONG&gt; table and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get those fixed values or fixed  texts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:36:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503184#M1422099</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-01-19T06:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503185#M1422100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Bhavana ,&lt;/P&gt;&lt;P&gt;You can do it in this way,&lt;/P&gt;&lt;P&gt;While displaying you just have to the digit value to its text value for this Just add a extra text field to you internal table which you are passing to the list output and programatically i just pass the proper values into the newly added text field&lt;/P&gt;&lt;P&gt;eg. &lt;/P&gt;&lt;P&gt; if you have 1 in your report field just pass hard coded text as 'Accepted' to its corrosponding newly added text field &lt;/P&gt;&lt;P&gt;and while desplaying just show the newly added text field ...&lt;/P&gt;&lt;P&gt;Hope this solves your problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:44:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503185#M1422100</guid>
      <dc:creator>anup_deshmukh4</dc:creator>
      <dc:date>2010-01-19T06:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503186#M1422101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it a Z-field that you have created in the table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes then go to the table and double click on the data element of the field and then double click on the domain name, there you will be able to find a TAB called 'Value Range' see if the text is specified against the fixed values or not,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if not please maintain the text here and then  save and activate the domain and the database table and then test the F4 field in you report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhijit G Borkar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 06:50:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503186#M1422101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T06:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503187#M1422102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gautam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes i have gone through the tables and i have seen the text there . but now what is the query which i need to write so that tht text cab be displayed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bhavana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:06:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503187#M1422102</guid>
      <dc:creator>former_member233090</dc:creator>
      <dc:date>2010-01-19T07:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503188#M1422103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bhavana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let's say, that your code looks like this right now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; PARAMETERS: p_status TYPE rsmonext-status. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: gt_return TYPE STANDARD TABLE OF ddshretval.

FIELD-SYMBOLS: &amp;lt;gs_return&amp;gt; TYPE ddshretval.

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (20) FOR FIELD p_status.
PARAMETERS: p_status TYPE rsmonext-status.
SELECTION-SCREEN COMMENT (50) stat_txt.
SELECTION-SCREEN END OF LINE.


AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_status."To get text after F4
  CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
    EXPORTING
      tabname           = 'RSMONEXT'
      fieldname         = 'STATUS'
      dynprofield       = 'P_STATUS'
    TABLES
      return_tab        = gt_return
    EXCEPTIONS
      field_not_found   = 1
      no_help_for_field = 2
      inconsistent_help = 3
      no_values_found   = 4
      OTHERS            = 5.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    CLEAR stat_txt.
  ELSE.
    READ TABLE gt_return ASSIGNING &amp;lt;gs_return&amp;gt; INDEX 1.
    IF sy-subrc EQ 0.
      p_status = &amp;lt;gs_return&amp;gt;-fieldval.
      PERFORM get_domain_text USING 'RSSTATUS' p_status CHANGING stat_txt.
    ELSE.
      CLEAR stat_txt.
    ENDIF.
  ENDIF.
  PERFORM set_value_on_sel_screen USING 'STAT_TXT' stat_txt.

AT SELECTION-SCREEN OUTPUT. "To get text on enter after direct input of text (without F4)
  PERFORM get_domain_text USING 'RSSTATUS' p_status CHANGING stat_txt.
  PERFORM set_value_on_sel_screen USING 'STAT_TXT' stat_txt.

FORM get_domain_text USING    uv_domain TYPE dd01l-domname
                              uv_domain_value TYPE any
                     CHANGING cv_domain_text TYPE any.
  DATA: lt_dd07v TYPE STANDARD TABLE OF dd07v.
  FIELD-SYMBOLS: &amp;lt;ls_dd07v&amp;gt; TYPE dd07v.

  CLEAR cv_domain_text.

  CALL FUNCTION 'DD_DD07V_GET'
    EXPORTING
      domain_name    = uv_domain
      withtext       = 'X'
    TABLES
      dd07v_tab      = lt_dd07v
    EXCEPTIONS
      access_failure = 1
      OTHERS         = 2.
  IF sy-subrc &amp;lt;&amp;gt; 0.
    CLEAR cv_domain_text.
  ENDIF.

  READ TABLE lt_dd07v ASSIGNING &amp;lt;ls_dd07v&amp;gt; WITH KEY domvalue_l = uv_domain_value.
  IF sy-subrc EQ 0.
    cv_domain_text = &amp;lt;ls_dd07v&amp;gt;-ddtext.
  ENDIF.

ENDFORM.                   
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503188#M1422103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T07:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503189#M1422104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;FORM set_value_on_sel_screen USING value(uv_fieldname) TYPE any
                                   value(uv_value) TYPE any.
  DATA: lt_dynpread TYPE STANDARD TABLE OF dynpread,
        lv_repid TYPE sy-repid,
        lv_dynnr TYPE sy-dynnr.

  FIELD-SYMBOLS: &amp;lt;ls_dynpread&amp;gt; TYPE dynpread.

  lv_repid = sy-repid.
  lv_dynnr = sy-dynnr.

  APPEND INITIAL LINE TO lt_dynpread ASSIGNING &amp;lt;ls_dynpread&amp;gt;.
  &amp;lt;ls_dynpread&amp;gt;-fieldname = uv_fieldname.

  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname                               = lv_repid
      dynumb                               = lv_dynnr
      translate_to_upper                   = 'X'
      request                              = 'X'
    TABLES
      dynpfields                           = lt_dynpread
      .

  LOOP AT lt_dynpread ASSIGNING &amp;lt;ls_dynpread&amp;gt; WHERE fieldname EQ uv_fieldname.
    &amp;lt;ls_dynpread&amp;gt;-fieldvalue = uv_value.
  ENDLOOP.

  CALL FUNCTION 'DYNP_VALUES_UPDATE'
    EXPORTING
      dyname                     = lv_repid
      dynumb                     = lv_dynnr
    TABLES
      dynpfields                 = lt_dynpread

ENDFORM.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example, I suppose, that You are using a field with domain values assigned. If your field is assigned to a text table, it would look of course different.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adrian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:41:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503189#M1422104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-19T07:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503190#M1422105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you already have those values in your internal table, so use those&lt;/P&gt;&lt;P&gt;values in DD07T table and get that texts and use in your output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
          select single Ddtext into C_txt from dd07t
                                   where Domname = 'VRKSTAT'
                                       and DDLanguage = sy-LANGU
                                       and AS4LOCAL = 'A'
                                       and DOMVALUE_L = itab-status.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 07:52:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503190#M1422105</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-01-19T07:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503191#M1422106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank q gautham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i got the data in c_txt but in my ztable the status is of numc and legth 2 so how can i proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually iam wrking with simple ALV report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in that alv report output &lt;/P&gt;&lt;P&gt;i get all the fields which are in ztable in that status coloumns are getting displayed as &lt;/P&gt;&lt;P&gt;1&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so there i want to send this text... so pls help me out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bhavana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 08:57:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503191#M1422106</guid>
      <dc:creator>former_member233090</dc:creator>
      <dc:date>2010-01-19T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: f4 help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503192#M1422107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add one more field in your final table like that text field in alv report and &lt;/P&gt;&lt;P&gt;use  the data from dd07t to that field and display it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jan 2010 09:04:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/6503192#M1422107</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2010-01-19T09:04:58Z</dc:date>
    </item>
  </channel>
</rss>

