<?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 set cursor in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959873#M698277</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on block b1.&lt;/P&gt;&lt;P&gt;  if p_mgzero = 'X' and not p_disgr is initial.&lt;/P&gt;&lt;P&gt;    set cursor field 'P_DISGR'.&lt;/P&gt;&lt;P&gt;    message e000 with text-er8 text-er9.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2007 22:34:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-17T22:34:09Z</dc:date>
    <item>
      <title>Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959870#M698274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to put the cursor on selection screen, what i want i have two radio button and two selection screen on my report when i click on my update radio button then my update selection screen generate......... at that time i have to set the cursor on selection scrren at firts text box...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried "set cursor field fieldname".................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so give me suggetion for that.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zenithi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:45:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959870#M698274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T17:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959871#M698275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See this sample code and do accordingly&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,&lt;/P&gt;&lt;P&gt;pa_lifnr TYPE lfa1-lifnr MODIF ID abc,&lt;/P&gt;&lt;P&gt;pa_vkorg TYPE vbak-vkorg MODIF ID abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,&lt;/P&gt;&lt;P&gt;s_date FOR gs_lfa1-erdat MODIF ID def,&lt;/P&gt;&lt;P&gt;s_augru FOR gs_vbak-augru MODIF ID def,&lt;/P&gt;&lt;P&gt;s_vbeln FOR gs_vbak-vbeln MODIF ID def.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF pa_rep EQ gc_x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF screen-group1 = gc_abc.&lt;/P&gt;&lt;P&gt;screen-input = gc_zero_num.&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = gc_def.&lt;/P&gt;&lt;P&gt;screen-active = gc_one_num.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF pa_upd EQ gc_x.&lt;/P&gt;&lt;P&gt;*For Reprocessing&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = gc_def.&lt;/P&gt;&lt;P&gt;screen-input = gc_zero_num.&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = gc_abc.&lt;/P&gt;&lt;P&gt;screen-active = gc_one_num.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;CLEAR pa_upd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;***********************************************************&lt;/P&gt;&lt;P&gt;REPORT zrich_001.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PARAMETERS: p_rad1 RADIOBUTTON GROUP grp1 DEFAULT 'X'&lt;/P&gt;&lt;P&gt;                        user-command chk,&lt;/P&gt;&lt;P&gt;            p_rad2 RADIOBUTTON GROUP grp1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_datum1 FOR sy-datum MODIF ID d1,&lt;/P&gt;&lt;P&gt;                s_datum2 FOR sy-datum MODIF ID d2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF p_rad1 = 'X'&lt;/P&gt;&lt;P&gt;      AND screen-group1 = 'D2'.&lt;/P&gt;&lt;P&gt;      screen-active = '0'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF p_rad2 = 'X'&lt;/P&gt;&lt;P&gt;     AND screen-group1 = 'D1'.&lt;/P&gt;&lt;P&gt;      screen-active = '0'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:54:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959871#M698275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T17:54:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959872#M698276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anij,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried ur code.... but its not workinggggg in my code........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zenithi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 18:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959872#M698276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T18:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959873#M698277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on block b1.&lt;/P&gt;&lt;P&gt;  if p_mgzero = 'X' and not p_disgr is initial.&lt;/P&gt;&lt;P&gt;    set cursor field 'P_DISGR'.&lt;/P&gt;&lt;P&gt;    message e000 with text-er8 text-er9.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 22:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959873#M698277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T22:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959874#M698278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Krishna,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this one but its not working in my report, i see in debug mode also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give me more suggetion &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zenithi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 23:06:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959874#M698278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T23:06:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding set cursor</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959875#M698279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post your code please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 16:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-set-cursor/m-p/2959875#M698279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T16:00:57Z</dc:date>
    </item>
  </channel>
</rss>

