<?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: Regarding dynamic report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871964#M930678</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi satya...thanks for ur reply..&lt;/P&gt;&lt;P&gt;i dont want the value of SY-LISEL,I want the value of CCC, how to get ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 14 May 2008 05:18:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-14T05:18:33Z</dc:date>
    <item>
      <title>Regarding dynamic report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871960#M930674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have a requirement like...&lt;/P&gt;&lt;P&gt;i want to display a report as material, qty for the given document for ex. sales document..then user have to enter amount for the corresponding material...i have to capture that dynamically entered value...then i have to proceed further,is there option to do...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;sugumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 04:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871960#M930674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T04:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding dynamic report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871961#M930675</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;Try to use the below code or even you can do the same using ALV Reports with the required Events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ccc(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;write: 'bbb',  ccc input on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;write sy-lisel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: satyanarayana tanguturu on May 14, 2008 6:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 04:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871961#M930675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T04:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding dynamic report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871962#M930676</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;Following report is the sample report for Dynamic Alv Report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  YMS_ALVDYNAMIC                                 .
TYPE-POOLS : vrm. "Value Request Manager

PARAMETERS: p_test AS LISTBOX VISIBLE LENGTH 20 OBLIGATORY.

INITIALIZATION.

PERFORM f4_value_request.

START-OF-SELECTION.

WRITE P_TEST.

*&amp;amp;--------------------------------------------------------------------*
*&amp;amp; Form f4_value_request
*&amp;amp;--------------------------------------------------------------------*
* text
*---------------------------------------------------------------------*
FORM f4_value_request.

DATA: l_name TYPE vrm_id,
li_list TYPE vrm_values,
l_value LIKE LINE OF li_list.

l_value-key = '1'.
l_value-text = 'Value 1'.
APPEND l_value TO li_list.
CLEAR l_value.

l_value-key = '2'.
l_value-text = 'Value 2'.
APPEND l_value TO li_list.
CLEAR l_value.

l_value-key = '3'.
l_value-text = 'Value 3'.
APPEND l_value TO li_list.
CLEAR l_value.

l_value-key = '4'.
l_value-text = 'Value 4'.
APPEND l_value TO li_list.
CLEAR l_value.

l_name = 'P_TEST'.

CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = l_name
values = li_list
EXCEPTIONS
id_illegal_name = 1
OTHERS = 2.
IF sy-subrc &amp;lt;&amp;gt; 0.
MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.

ENDFORM. " f4_value_request&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sankar M&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 04:56:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871962#M930676</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2008-05-14T04:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding dynamic report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871963#M930677</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;You need to give the field qty in edit mode&lt;/P&gt;&lt;P&gt;to do this you need build the field catalog for this field in edit = 'x'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now by doing this user can enter the value qty on the screen.&lt;/P&gt;&lt;P&gt;to capture back the value you need to use the below method &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use the one in bold in the user command subroutine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module to display the ALV report&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = W_REPID&lt;/P&gt;&lt;P&gt;I_CALLBACK_PF_STATUS_SET = 'PF_STATUS'&lt;/P&gt;&lt;P&gt;I_CALLBACK_USER_COMMAND = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING P_UCOMM TYPE SY-UCOMM&lt;/P&gt;&lt;P&gt;P_SELFLD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;DATA : L_REP_MODE. "report mode&lt;/P&gt;&lt;P&gt;CASE P_UCOMM.&lt;/P&gt;&lt;P&gt;Data ref1 type ref to cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IMPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;E_GRID = ref1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;call method ref1-&amp;gt;check_changed_data&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;loop at itab where check eq 'X'.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Siva chalasani.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 05:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871963#M930677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T05:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding dynamic report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871964#M930678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi satya...thanks for ur reply..&lt;/P&gt;&lt;P&gt;i dont want the value of SY-LISEL,I want the value of CCC, how to get ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 05:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dynamic-report/m-p/3871964#M930678</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T05:18:33Z</dc:date>
    </item>
  </channel>
</rss>

