<?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: skip screen without  user interaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626031#M1664375</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your valuble suggestion its working fine . again my problem is i want to go to display mode in SE38 PROGRAM&lt;/P&gt;&lt;P&gt;AND FUNCTION GROUP , ENHNCEMENTS , BADIS,SCRIPTS,SMARTFORMS,..........AND MESSAGE CLASS SE 91 AND SO ON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE GIVE YOUR VALUBLE SUGGESTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;VENKAT RAO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Feb 2012 11:48:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-02-27T11:48:36Z</dc:date>
    <item>
      <title>skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626023#M1664367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi abapers,&lt;/P&gt;&lt;P&gt;please can any one solve my issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub: actually i have developed a interactive report for get the information based on given package name .which gets the all the package information . but my problem is when iam click on the domain , dataelement,tabels,functiongroup,program,functionmodule..........whatever it may from the basic list . &lt;/P&gt;&lt;P&gt;for ex : now iam click on the table . i want to show respective table display mode. ( se 11 tcode is displayed but i want to display&lt;/P&gt;&lt;P&gt;specific table display mode'.)&lt;/P&gt;&lt;P&gt;          2. now iam click on the domain . i want to show respective domain information.&lt;/P&gt;&lt;P&gt;         .3 if i click on dataelement .i want to show respective dataelement information&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;i hope  you understand my requirement. please any one knows this issue send to mail id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 16:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626023#M1664367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-24T16:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626024#M1664368</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;Are you using ALV for first display?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use SET PARAMEter ID .....field (name of field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examaple&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE ucomm. &lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'. &lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'KTO' FIELD selfield-value. &lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'CAA3' AND SKIP FIRST SCREEN. &lt;/P&gt;&lt;P&gt;ENDCASE. &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinit Joshi on Feb 24, 2012 5:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 16:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626024#M1664368</guid>
      <dc:creator>former_member189779</dc:creator>
      <dc:date>2012-02-24T16:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626025#M1664369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkatrao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   This can be achieved by following the below mentioned code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE sy-ucomm.
WHEN &amp;amp;IC1&amp;amp;. 
SET PARAMETER ID &amp;lt;Parameter id of the field in screen which you want to skip&amp;gt; FIELD selfield-value.
CALL TRANSACTION &amp;lt;T-code&amp;gt; AND SKIP FIRST SCREEN.
* in the above 2 statements parameter id and T-code will vary based on objects you select... like se38 for program 
* se11 for table , data element , domain etc..
ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please revert for any questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Praveenkumar T.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Feb 2012 17:06:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626025#M1664369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-24T17:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626026#M1664370</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;Add this to yout REUSE_ALV_GRID_DISPLAY.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;i_callback_user_command  = 'USER_COMMAND'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, create a subroutine like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM user_command USING r_ucomm     LIKE sy-ucomm
                        rs_selfield TYPE slis_selfield.
  CASE r_ucomm.
    WHEN '&amp;amp;IC1'.
      IF     rs_selfield-fieldname EQ &amp;lt;program FIELD name&amp;gt;.
        SET PARAMETER ID 'RID' FIELD rs_selfield-value.
        CALL TRANSACTION 'SE38' AND SKIP FIRST SCREEN.
      ELSEIF rs_selfield-fieldname EQ &amp;lt;table FIELD name&amp;gt;.
        SET PARAMETER ID 'DTB' FIELD rs_selfield-value.
        CALL TRANSACTION 'SE11' AND SKIP FIRST SCREEN.
      ELSEIF rs_selfield-fieldname EQ &amp;lt;domain FIELD name&amp;gt;.
        SET PARAMETER ID 'DOM' FIELD rs_selfield-value.
        CALL TRANSACTION 'SE11' AND SKIP FIRST SCREEN.
      ELSEIF rs_selfield-fieldname EQ &amp;lt;date ELEMENT field name&amp;gt;.
        SET PARAMETER ID 'DTYP' FIELD rs_selfield-value.
        CALL TRANSACTION 'SE11' AND SKIP FIRST SCREEN.
      ELSEIF rs_selfield-fieldname EQ &amp;lt;function MODULE field name&amp;gt;.
        SET PARAMETER ID 'LIB' FIELD rs_selfield-value.
        CALL TRANSACTION 'SE37' AND SKIP FIRST SCREEN.
      ENDIF.
  ENDCASE.

ENDFORM                    "user_command&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;iostreamax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2012 02:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626026#M1664370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-25T02:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626027#M1664371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi iostreamax,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you for giving your reply still my problem not solved. actually i using below statements it goes to only SE11 transction.&lt;/P&gt;&lt;P&gt;but my problem is it does not go to display particular table. for ex :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     SET PARAMETER ID 'DTB' FIELD rs_selfield-value.      "her rs_selfied-value = 'KNA1'&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE11' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope you understand my requirement. i want to go to display kna1 table which displays field names of particular transaction&lt;/P&gt;&lt;P&gt;&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;venkat rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626027#M1664371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-27T08:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626028#M1664372</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 giving field name as well&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g  IF rs_selfield-fieldname EQ 'VBELN'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then move your value to rs_selfield-value &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vinit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinit Joshi on Feb 27, 2012 9:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626028#M1664372</guid>
      <dc:creator>former_member189779</dc:creator>
      <dc:date>2012-02-27T08:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626029#M1664373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yoy could try&lt;/P&gt;&lt;P&gt;- add  PARAMETER ID 'DDR'  FIELD 'RSRD1-TBMA'. for tables, adapt for other radiobuttons.&lt;/P&gt;&lt;P&gt;- use FM 'RS_DD_TABL_EDIT' (*) (replace TABL with FIEL, STRU, etc. for other object types)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(*) Also pass 'S' for EDIT_MODE to display (default value is edit)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 08:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626029#M1664373</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-02-27T08:35:34Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626030#M1664374</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;I understand your requirement but I also wonder why it does not continue to display. &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Maybe because it is not trigger by usual fcode (e.g. execute(f8), enter, etc.) unlike other transaction (e.g. VA01, VA02).&lt;/P&gt;&lt;P&gt;It's just a guess. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Anyways please try this, hope it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_table LIKE rsedd0-ddobjname. " input TABLE NAME

START-OF-SELECTION.

  IF p_table IS NOT INITIAL.
    CALL FUNCTION 'RS_DD_FIEL_SHOW'
      EXPORTING
        objname = p_table.

    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.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 09:13:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626030#M1664374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-27T09:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626031#M1664375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your valuble suggestion its working fine . again my problem is i want to go to display mode in SE38 PROGRAM&lt;/P&gt;&lt;P&gt;AND FUNCTION GROUP , ENHNCEMENTS , BADIS,SCRIPTS,SMARTFORMS,..........AND MESSAGE CLASS SE 91 AND SO ON.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE GIVE YOUR VALUBLE SUGGESTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;VENKAT RAO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 11:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626031#M1664375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-27T11:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626032#M1664376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want a more generic function, try the FM &lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;TR_OBJECT_JUMP_TO_TOOL&lt;/SPAN&gt;  (the one used when displaying transport requests) you could either &lt;/P&gt;&lt;P&gt;- convert the object to TADIR Repository objects and use action 'SHOW'&lt;/P&gt;&lt;P&gt;- look at the FM source and copy part to your report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: You could also try class &lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;CL_WB_NAVIGATOR&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2012 15:33:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626032#M1664376</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-02-27T15:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626033#M1664377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like tell thanks to you for giving your valuble solution. all generic funtion are working but cmod and smartstyles ,smartform is not working  could you please give your valuble answer. i hope your answer expecting soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;venkat rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 10:45:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626033#M1664377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-28T10:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: skip screen without  user interaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626034#M1664378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry but the main program of those transaction are not (afaik) used by any FM or class (perform a where-used on those) so you may require to build some small batch-input to execute a [CALL TRANSACTION USING bdc_tab|http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION.htm] [OPTIONS FROM |http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm#&amp;amp;ABAP_ADDITION_3@3@] (NOBIEND)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2012 10:56:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/skip-screen-without-user-interaction/m-p/8626034#M1664378</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-02-28T10:56:50Z</dc:date>
    </item>
  </channel>
</rss>

