<?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: Drill down for infotypes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594762#M865563</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 can use the following code for providing F4help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_PASSL,&lt;/P&gt;&lt;P&gt;PASSL type PA0290-PASSL,&lt;/P&gt;&lt;P&gt;end of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_passl type table of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR PASSL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select PASSL from PA0290 into table i_PASSL  where .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_repid = sy-repid.&lt;/P&gt;&lt;P&gt;w_dynnr = sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'PASSL'&lt;/P&gt;&lt;P&gt;dynpprog = w_repid&lt;/P&gt;&lt;P&gt;dynpnr = w_dynnr&lt;/P&gt;&lt;P&gt;dynprofield = 'PASSL'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = i_PASSL.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2008 14:30:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-31T14:30:09Z</dc:date>
    <item>
      <title>Drill down for infotypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594759#M865560</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 made a select-option for the field PA0290-PASSL, &lt;/P&gt;&lt;P&gt;but, but i noticed that i couldn't drill down to the table contents of the pa0290-passl. I thought maybe it has something to do with the table being an infotype. Because the select-option works fine for transparent tables like MARA. Are there any way for me to make a drill down for an infotype table such as the one i mentioned above? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Frank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 07:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594759#M865560</guid>
      <dc:creator>FranklinAsis</dc:creator>
      <dc:date>2008-03-25T07:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down for infotypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594760#M865561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dude,&lt;/P&gt;&lt;P&gt;   i think u got confuse .&lt;/P&gt;&lt;P&gt;pa0290  table doesn't exist .&lt;/P&gt;&lt;P&gt;till now only pa000 to pa0215 exist . &lt;/P&gt;&lt;P&gt;no fieled  like passl is exist .&lt;/P&gt;&lt;P&gt;rest you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sandeep patel on Mar 27, 2008 11:24 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 10:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594760#M865561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T10:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down for infotypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594761#M865562</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;Inorder to get the drilldown list of values , the field must have any F4 help processing mechanism. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incase of MATNR: it has search help MAT1.&lt;/P&gt;&lt;P&gt;but incase of PASSL, it does not have any search help or matchcode object or  foreign key .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inorder to get F4 help we must have any of the following :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Search Help&lt;/P&gt;&lt;P&gt;2) Matchcode Object&lt;/P&gt;&lt;P&gt;3) Foreign Key&lt;/P&gt;&lt;P&gt;4) Help view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This PA0290-PASSL doesnt have any of the above , so you cannot get the values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope the problem is solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 16:22:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594761#M865562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T16:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down for infotypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594762#M865563</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 can use the following code for providing F4help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_PASSL,&lt;/P&gt;&lt;P&gt;PASSL type PA0290-PASSL,&lt;/P&gt;&lt;P&gt;end of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_passl type table of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR PASSL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select PASSL from PA0290 into table i_PASSL  where .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_repid = sy-repid.&lt;/P&gt;&lt;P&gt;w_dynnr = sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'PASSL'&lt;/P&gt;&lt;P&gt;dynpprog = w_repid&lt;/P&gt;&lt;P&gt;dynpnr = w_dynnr&lt;/P&gt;&lt;P&gt;dynprofield = 'PASSL'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = i_PASSL.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 14:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594762#M865563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T14:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Drill down for infotypes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594763#M865564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;try this following code.&lt;/P&gt;&lt;P&gt;types: begin of ty_PASSL,&lt;/P&gt;&lt;P&gt;PASSL type PA0290-PASSL,&lt;/P&gt;&lt;P&gt;end of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_passl type table of ty_passl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR PASSL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select PASSL from PA0290 into table i_PASSL where .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;w_repid = sy-repid.&lt;/P&gt;&lt;P&gt;w_dynnr = sy-dynnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'PASSL'&lt;/P&gt;&lt;P&gt;dynpprog = w_repid&lt;/P&gt;&lt;P&gt;dynpnr = w_dynnr&lt;/P&gt;&lt;P&gt;dynprofield = 'PASSL'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = i_PASSL.&lt;/P&gt;&lt;P&gt;IF sy-subrc 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2008 19:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/drill-down-for-infotypes/m-p/3594763#M865564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-31T19:34:50Z</dc:date>
    </item>
  </channel>
</rss>

