<?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: Regarding process on value request in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145084#M452348</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;execute this program and check for process on value request.&lt;/P&gt;&lt;P&gt;REPORT  ZKEERTHI_EX1.&lt;/P&gt;&lt;P&gt;tables:mara,makt,mseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_bukrs type t001-bukrs,&lt;/P&gt;&lt;P&gt;            p_butxt type t001-butxt,&lt;/P&gt;&lt;P&gt;            p_ort01 type t001-ort01,&lt;/P&gt;&lt;P&gt;            p_land1 type t001-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: dynfields type table of dynpread with header line.&lt;/P&gt;&lt;P&gt;data: return type table of ddshretval with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            tabname           = 'T001'&lt;/P&gt;&lt;P&gt;            fieldname         = 'BUKRS'&lt;/P&gt;&lt;P&gt;            dynpprog          = sy-cprog&lt;/P&gt;&lt;P&gt;            dynpnr            = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield       = 'P_BUKRS'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            return_tab        = return&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            field_not_found   = 1&lt;/P&gt;&lt;P&gt;            no_help_for_field = 2&lt;/P&gt;&lt;P&gt;            inconsistent_help = 3&lt;/P&gt;&lt;P&gt;            no_values_found   = 4&lt;/P&gt;&lt;P&gt;            others            = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh dynfields.&lt;/P&gt;&lt;P&gt;  read table return with key fieldname = 'P_BUKRS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add it back to the dynpro.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  dynfields-fieldname = return-retfield.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue =  return-fieldval.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the company code from db and add to dynpro&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: xt001 type t001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear xt001.&lt;/P&gt;&lt;P&gt;  select single * into xt001&lt;/P&gt;&lt;P&gt;         from t001&lt;/P&gt;&lt;P&gt;        where bukrs = return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_BUTXT'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-butxt.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_ORT01'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-ort01.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_LAND1'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-land1.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Update the dynpro values.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            dyname     = sy-cprog&lt;/P&gt;&lt;P&gt;            dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            dynpfields = dynfields&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            others     = 8.&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;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Mar 2007 04:42:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-30T04:42:32Z</dc:date>
    <item>
      <title>Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145083#M452347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am displaying two column help on pressing f4 but i don't know how to assign those to corresponding screen field in the table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 04:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145083#M452347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T04:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145084#M452348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;execute this program and check for process on value request.&lt;/P&gt;&lt;P&gt;REPORT  ZKEERTHI_EX1.&lt;/P&gt;&lt;P&gt;tables:mara,makt,mseg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_bukrs type t001-bukrs,&lt;/P&gt;&lt;P&gt;            p_butxt type t001-butxt,&lt;/P&gt;&lt;P&gt;            p_ort01 type t001-ort01,&lt;/P&gt;&lt;P&gt;            p_land1 type t001-land1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: dynfields type table of dynpread with header line.&lt;/P&gt;&lt;P&gt;data: return type table of ddshretval with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            tabname           = 'T001'&lt;/P&gt;&lt;P&gt;            fieldname         = 'BUKRS'&lt;/P&gt;&lt;P&gt;            dynpprog          = sy-cprog&lt;/P&gt;&lt;P&gt;            dynpnr            = sy-dynnr&lt;/P&gt;&lt;P&gt;            dynprofield       = 'P_BUKRS'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            return_tab        = return&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            field_not_found   = 1&lt;/P&gt;&lt;P&gt;            no_help_for_field = 2&lt;/P&gt;&lt;P&gt;            inconsistent_help = 3&lt;/P&gt;&lt;P&gt;            no_values_found   = 4&lt;/P&gt;&lt;P&gt;            others            = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh dynfields.&lt;/P&gt;&lt;P&gt;  read table return with key fieldname = 'P_BUKRS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Add it back to the dynpro.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  dynfields-fieldname = return-retfield.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue =  return-fieldval.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the company code from db and add to dynpro&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data: xt001 type t001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear xt001.&lt;/P&gt;&lt;P&gt;  select single * into xt001&lt;/P&gt;&lt;P&gt;         from t001&lt;/P&gt;&lt;P&gt;        where bukrs = return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_BUTXT'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-butxt.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_ORT01'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-ort01.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  dynfields-fieldname = 'P_LAND1'.&lt;/P&gt;&lt;P&gt;  dynfields-fieldvalue = xt001-land1.&lt;/P&gt;&lt;P&gt;  append dynfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Update the dynpro values.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            dyname     = sy-cprog&lt;/P&gt;&lt;P&gt;            dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            dynpfields = dynfields&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            others     = 8.&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;keerthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 04:42:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145084#M452348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T04:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145085#M452349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in screen flow logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE_REQUEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD &amp;lt;your fieldname&amp;gt; MODULE &amp;lt;M1 or any modulename&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in abap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module m1 input.&lt;/P&gt;&lt;P&gt;&amp;lt;hereyou have to call the fn module like popup_with_table or any other&amp;gt;&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        SHIBA DUTTA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 04:48:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145085#M452349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T04:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145086#M452350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;goto se51 and specify the program name...goto layout and click on the field inthe table control...u will have a field to assign search help where u specify this value and activate the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 04:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145086#M452350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T04:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145087#M452351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHAT U DO IS PASS THE COLUMNS WHAT U WANT TO DISPLAY IN THE HELP TO AN INTERNAL TABLE THEN PASS THIS INTERNAL TABLE TO THE FM F4if_init_table_value_request u will get f4 help with those two fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;navjot&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewatd all helpfull answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 04:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145087#M452351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T04:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145088#M452352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am able to display those two values but the thing is i can't use read based on the value selected  because of database design constranint.What i want is if i select one value then the other value corresponding to that should be updated in the corresponding column on the screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 05:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145088#M452352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T05:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding process on value request</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145089#M452353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for that you have to code that ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose you have two fields matnr and werks in your screen you want when matnr is selected in matnr field it will populate the werks field also..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that you have to code at pai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in abap&lt;/P&gt;&lt;P&gt;module m1 input.&lt;/P&gt;&lt;P&gt;select single werks from mard into werks where matnr = matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when you select the value for your matnr and press ENTER then werks field will automatically populated.&lt;/P&gt;&lt;P&gt;but you have to press ENTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Mar 2007 05:57:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-process-on-value-request/m-p/2145089#M452353</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-30T05:57:27Z</dc:date>
    </item>
  </channel>
</rss>

