<?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: Set Parameter problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225977#M137871</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 have to add parameter ids for these 4 fields in the screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'CAR' field sbook-CARRID.&lt;/P&gt;&lt;P&gt;set parameter id 'CON' field sbook-CONNID.&lt;/P&gt;&lt;P&gt;set parameter id 'DAY' field sbook-FLDATE.&lt;/P&gt;&lt;P&gt;set parameter id 'BOK' field sbook-BOOKID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Mar 2006 12:07:49 GMT</pubDate>
    <dc:creator>venkata_ramisetti</dc:creator>
    <dc:date>2006-03-08T12:07:49Z</dc:date>
    <item>
      <title>Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225974#M137868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my code is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM SBOOK UP TO 10 ROWS.&lt;/P&gt;&lt;P&gt;WRITE: / sbook-carrid, sbook-connid, sbook-fldate, sbook-bookid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  HIDE:  SBOOK-CARRID, SBOOK-CONNID,&lt;/P&gt;&lt;P&gt;         SBOOK-FLDATE, SBOOK-BOOKID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDSELECT.&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 LINE-SELECTION.&lt;/P&gt;&lt;P&gt;set parameter id 'CAR' field sbook-CARRID.&lt;/P&gt;&lt;P&gt;set parameter id 'CON' field sbook-CONNID.&lt;/P&gt;&lt;P&gt;set parameter id 'DAY' field sbook-FLDATE.&lt;/P&gt;&lt;P&gt;set parameter id 'BOK' field sbook-BOOKID.&lt;/P&gt;&lt;P&gt;call transaction 'ZSBOOK'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i click on any line, the values are not coming on screen( ie in zsbook  tcode ). what's the problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, points for sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225974#M137868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:00:00Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225975#M137869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;   Are you sure, you are using the same parameters as the screen fields in your ZBOOK transaction.&lt;/P&gt;&lt;P&gt;I.e go to your zbook transaction and see if the parameter IDs atre indeed the same ones you have used in your At line-selection code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:05:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225975#M137869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225976#M137870</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 think it is case sensitive.&lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'CAR' field SBOOK-CARRID.&lt;/P&gt;&lt;P&gt;set parameter id 'CON' field SBOOK-CONNID.&lt;/P&gt;&lt;P&gt;set parameter id 'DAY' field SBOOK-FLDATE.&lt;/P&gt;&lt;P&gt;set parameter id 'BOK' field SBOOK-BOOKID.&lt;/P&gt;&lt;P&gt;call transaction 'ZSBOOK'&lt;/P&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;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:07:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225976#M137870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225977#M137871</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 have to add parameter ids for these 4 fields in the screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'CAR' field sbook-CARRID.&lt;/P&gt;&lt;P&gt;set parameter id 'CON' field sbook-CONNID.&lt;/P&gt;&lt;P&gt;set parameter id 'DAY' field sbook-FLDATE.&lt;/P&gt;&lt;P&gt;set parameter id 'BOK' field sbook-BOOKID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225977#M137871</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-03-08T12:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225978#M137872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After u set parameter id...to get the values you need to use get parameter id...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:08:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225978#M137872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225979#M137873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HIDE&lt;/P&gt;&lt;P&gt;The HIDE statement is one of the fundamental statements for interactive reporting. You use the HIDE technique when creating a basic list. It defines the information that can be passed to subsequent detail lists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You use the HIDE technique while creating a list level to store line-specific information for later use. To do so, use the HIDE statement as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIDE &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement places the contents of the variable &amp;lt;f&amp;gt; for the current output line (system field SY-LINNO) into the HIDE area. The variable &amp;lt;f&amp;gt; must not necessarily appear on the current line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make your program more readable, always place the HIDE statement directly after the output statement for the variable &amp;lt;f&amp;gt; or after the last output statement for the current line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as the user selects a line for which you stored HIDE fields, the system fills the variables in the program with the values stored. A line can be selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by an interactive event. &lt;/P&gt;&lt;P&gt;For each interactive event, the HIDE fields of the line on which the cursor is positioned during the event are filled with the stored values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by the READ LINE statement.&lt;/P&gt;&lt;P&gt;You can think of the HIDE area as a table, in which the system stores the names and values of all HIDE fields for each list and line number. As soon as they are needed, the system reads the values from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example below presents some of the essential features of interactive reporting. The basic list contains summarized information. By means of the HIDE technique, each detail list contains more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can use&lt;/P&gt;&lt;P&gt;To read a line from a list after an interactive list event, use the READ LINE statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE &amp;lt;lin&amp;gt; [INDEX &amp;lt;idx&amp;gt;]&lt;/P&gt;&lt;P&gt;[FIELD VALUE &amp;lt;f1&amp;gt; [INTO &amp;lt;g 1&amp;gt;] ... &amp;lt;f n&amp;gt; [INTO &amp;lt;g n&amp;gt;]] &lt;/P&gt;&lt;P&gt;[OF CURRENT PAGE|OF PAGE &amp;lt;p&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID &amp;lt;pid&amp;gt; FIELD &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement saves the contents of field &amp;lt;f&amp;gt; under the ID &amp;lt;pid&amp;gt; in the SAP memory. The code &amp;lt;pid&amp;gt; can be up to 20 characters long. If there was already a value stored under &amp;lt;pid&amp;gt;, this statement overwrites it. If the ID &amp;lt;pid&amp;gt; does not exist, double-click &amp;lt;pid&amp;gt; in the ABAP Editor to create a new parameter object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Before call transaction print content on output.&lt;/P&gt;&lt;P&gt;Check it out.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225979#M137873</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-08T12:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225980#M137874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the screen field, if the parameter id is set to it or not. goto the field press F1, goto technical info and see if it shows the parameter id If no then -&amp;gt; You have to set the attribute of the screen fields to parameter ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you should maintain the parameter IDs in table TPARA, if it is a custom created Parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225980#M137874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225981#M137875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ur line selection / hide is working fine. &lt;/P&gt;&lt;P&gt;But&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. many a times, this set parameter id&lt;/P&gt;&lt;P&gt;   does not work when we call new transaction&lt;/P&gt;&lt;P&gt;   from our abap code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. for this purpose,&lt;/P&gt;&lt;P&gt;   use like this :&lt;/P&gt;&lt;P&gt;   call transaction using bdcdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; where in u fill this bdcdata&lt;/P&gt;&lt;P&gt; with the screen numbers,&lt;/P&gt;&lt;P&gt;   and corresponding field names, and their values,&lt;/P&gt;&lt;P&gt;   which u want.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:11:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225981#M137875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:11:38Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225982#M137876</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 checked ur report. I think u have given &amp;lt;b&amp;gt;wrong data element to ur transaction ZSBOOk.&amp;lt;/b&amp;gt;Check data element of sbook i.e.CARRID CONNID FLDATE BOOKID.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Use in ur Screen/parameters/select-options for ZSBOOK.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;It will definately useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:19:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225982#M137876</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-08T12:19:16Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225983#M137877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see any problem in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem may be with the transaction 'ZSBOOK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the screen of transaction 'ZSBOOK' whether you have defined the fields with the same parameter ids or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraj Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225983#M137877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225984#M137878</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 tried this out. This works...&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Instead of CALL TRANSACTION use SUBMIT REPORT VIA SELECTION-SCREEN.&amp;lt;/b&amp;gt;Specify your program name in SUBMIT...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;START-OF-SELECTION.
TABLES: SBOOK.
SELECT * FROM SBOOK UP TO 10 ROWS.
WRITE: / sbook-carrid, sbook-connid, sbook-fldate, sbook-bookid.

HIDE: SBOOK-CARRID, SBOOK-CONNID,
SBOOK-FLDATE, SBOOK-BOOKID.

ENDSELECT.

AT LINE-SELECTION.
set parameter id 'CAR' field sbook-CARRID.
set parameter id 'CON' field sbook-CONNID.
set parameter id 'DAY' field sbook-FLDATE.
set parameter id 'BOK' field sbook-BOOKID.

&amp;lt;b&amp;gt;
SUBMIT ZREPORT VIA SELECTION-SCREEN.&amp;lt;/b&amp;gt;

In your report...
&amp;lt;b&amp;gt;REPORT ZREPORT.&amp;lt;/b&amp;gt;
PARAMETERS : carrid LIKE sbook-CARRID.

&amp;lt;b&amp;gt;INITIALIZATION.&amp;lt;/b&amp;gt;
&amp;lt;b&amp;gt;GET PARAMETER ID 'CAR' field carrid.&amp;lt;/b&amp;gt;
"And similarly for all fields&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225984#M137878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Set Parameter problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225985#M137879</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;Probably the input/output field sbook-CARRID, sbook-CONNID, sbook-FLDATE and sbook-BOOKID aren't arranged to get the value from those SET/GET parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the input/output attributes of those fields in your screen: see if GET PARAMETERS attribute is active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or change the abap code of your trx in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get parameter id 'CAR' field sbook-CARRID.&lt;/P&gt;&lt;P&gt;get parameter id 'CON' field sbook-CONNID.&lt;/P&gt;&lt;P&gt;get parameter id 'DAY' field sbook-FLDATE.&lt;/P&gt;&lt;P&gt;get parameter id 'BOK' field sbook-BOOKID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Mar 2006 12:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-problem/m-p/1225985#M137879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-08T12:29:55Z</dc:date>
    </item>
  </channel>
</rss>

