<?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: doutes in reports bdc scripts in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423994#M203264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ans 2Q)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARD.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_MARD OCCURS 0,&lt;/P&gt;&lt;P&gt;WERKS LIKE MARD-WERKS,&lt;/P&gt;&lt;P&gt;END OF IT_MARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;parameters : P_WERKS LIKE MARD-WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT WERKS FROM MARD UP TO 10 ROWS INTO table IT_MARD.&lt;/P&gt;&lt;P&gt;&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 = 'WERKS'&lt;/P&gt;&lt;P&gt;DYNPPROG = SY-REPID&lt;/P&gt;&lt;P&gt;DYNPNR = '1000'&lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'P_WERKS'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_MARD&lt;/P&gt;&lt;P&gt;RETURN_TAB = T_RETURN&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;PARAMETER_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_VALUES_FOUND = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jul 2006 11:10:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-19T11:10:58Z</dc:date>
    <item>
      <title>doutes in reports bdc scripts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423992#M203262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. I want to display multiple slection screens is it possible how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I want to display my own data in parameters r in selct-option by using f4 with out refering to data disnary with using at seletion screen on value request what  is coding we must write give a exmaple coding?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In interactive reports i want to select the list all records means not only the one record by using hide key r cursor .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. In bdc if the table control rezluation is change to small  what is the procedure and what changes must do in coding?&lt;/P&gt;&lt;P&gt;4. In bdc session method is there any process specifing sychrones and asychrones in coding r any option in sm 35?&lt;/P&gt;&lt;P&gt;like in call transtion method if any process chaning synch to asynch?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. In bdc session method with out going to sm35 is it possible to execute how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. In script if we want to enter a new font in sap what is the process is there any t.code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. In lsmw it is possible to validation the data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 07:17:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423992#M203262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T07:17:55Z</dc:date>
    </item>
    <item>
      <title>Re: doutes in reports bdc scripts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423993#M203263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sunil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) u can have multiple selection screens for a report.&lt;/P&gt;&lt;P&gt;   however only one is displayed.&lt;/P&gt;&lt;P&gt;   u can declare the selection screens&lt;/P&gt;&lt;P&gt;   by using begin-of-screen 100 and end-of-screen.&lt;/P&gt;&lt;P&gt;  u can display the relevant sub-screen by using call selection-screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) u can use the FM F4_INiT_TABLE_DISPLAY  in the AT SELECTION SCREEN ON VALUE REQUEST event. pass an internal table to the FM which contains the desired values to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)use a check box. have a 1 char field in the internal table and display it using &amp;lt;b&amp;gt;write &amp;lt;fieldname&amp;gt; as checkbox&amp;lt;/b&amp;gt;. u can select all the rows where the user has checked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4)set the CTU_params so that all the machines will have acceptable rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5)yes. set the session to execute immediately&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 11:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423993#M203263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T11:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: doutes in reports bdc scripts</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423994#M203264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Sunil&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ans 2Q)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARD.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF IT_MARD OCCURS 0,&lt;/P&gt;&lt;P&gt;WERKS LIKE MARD-WERKS,&lt;/P&gt;&lt;P&gt;END OF IT_MARD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : T_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;parameters : P_WERKS LIKE MARD-WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_WERKS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT WERKS FROM MARD UP TO 10 ROWS INTO table IT_MARD.&lt;/P&gt;&lt;P&gt;&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 = 'WERKS'&lt;/P&gt;&lt;P&gt;DYNPPROG = SY-REPID&lt;/P&gt;&lt;P&gt;DYNPNR = '1000'&lt;/P&gt;&lt;P&gt;DYNPROFIELD = 'P_WERKS'&lt;/P&gt;&lt;P&gt;VALUE_ORG = 'S'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;VALUE_TAB = IT_MARD&lt;/P&gt;&lt;P&gt;RETURN_TAB = T_RETURN&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;PARAMETER_ERROR = 1&lt;/P&gt;&lt;P&gt;NO_VALUES_FOUND = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jul 2006 11:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doutes-in-reports-bdc-scripts/m-p/1423994#M203264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-19T11:10:58Z</dc:date>
    </item>
  </channel>
</rss>

