<?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: PARARMETER Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472980#M556168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The search help is attached to the table and the values for the first parameter come from there. The values for second parametr will be filled based on what value you choose for first parameter. Try choosing LH or AA for carrid and connid value help will be populated. You can then choose a value for connid. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nithya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Jun 2007 09:50:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-22T09:50:11Z</dc:date>
    <item>
      <title>PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472979#M556167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am new to ABAP. I went on the course BC400 in December but have only just started working with ABAP and I am trying remember what I learnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thoughht I would go back to the course notes and try a few things out. The dev system already has the spflight tables installed so I tried out a program that teaches the use of the PARAMETERS statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following statements &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DATA wa_flight TYPE SFLIGHT.&lt;/P&gt;&lt;P&gt;    DATA wa_connid TYPE SFLIGHT-connid.&lt;/P&gt;&lt;P&gt;    DATA wa_carrid TYPE SFLIGHT-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Parameter pa_car LIKE wa_flight-connid.&lt;/P&gt;&lt;P&gt;    Parameter pc LIKE wa_flight-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run the program the first parameter has a picklist associated with it that has 4  fields  (ID, No., Depart city and arrival city)&lt;/P&gt;&lt;P&gt;The second parameter has no values for the picklist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone tell me where the picklist for the first parameter is defined, ie where does it come from. Is it a by-product of the PARAMETERS statement ? Also why is there no values for the second parameter even though they are coming from the same table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance from a newcomer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Asif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472979#M556167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472980#M556168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The search help is attached to the table and the values for the first parameter come from there. The values for second parametr will be filled based on what value you choose for first parameter. Try choosing LH or AA for carrid and connid value help will be populated. You can then choose a value for connid. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nithya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:50:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472980#M556168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472981#M556169</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;THis picklist is called Value help, that comes from various sources as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) From a search help ( Which is based on a database table) So values come from a table in this case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Domain fixed values you can give some fixed values do the domain of the data element of the Table field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) The values can come from Check table if you have a foriegn key assignment for that table field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbad1135c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbad1135c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Seshatalpasai Madala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472981#M556169</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-22T09:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472982#M556170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Asif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the f1 help and goto the technical attributes. Check out what is the data element . In the domain of that element there would be some fix values present,&lt;/P&gt;&lt;P&gt;or there will be a value table defined in the domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those values are coming from the value table 'SPFLI' which is defined in domain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward points if this ans. is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472982#M556170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472983#M556171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Asif,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THE search help is allocated with fields n whenever u define parameters using the like statement it will get attached with that parameter .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is a option for this at the time of table creation..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other parameter ur using may not have search help assigned to it thats why..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help u ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 09:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472983#M556171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T09:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472984#M556172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx for your replies. I think the reason for the picklist is that the check table foor connid has values in it while there are no records in the carrid check table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saurab, I cant find technical attributes, do you mean Technical Settings ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Asif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 10:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472984#M556172</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-22T10:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: PARARMETER Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472985#M556173</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;Yes you can see the techical settings from the F1 help that you get for the field, form there you can know from which table field this screen field has been created, what is the data element, what search help is there etc, basically your trigger point should be F1 help and then technical settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jun 2007 12:09:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pararmeter-statement/m-p/2472985#M556173</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-06-22T12:09:21Z</dc:date>
    </item>
  </channel>
</rss>

