<?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: User Exit - Structure Fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495165#M563433</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers mate for replying,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have entered the code and ran the debugger but all the fields in the structure&lt;/P&gt;&lt;P&gt;i_q0088 are all empty i.e. set to '00000000'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 11:46:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T11:46:19Z</dc:date>
    <item>
      <title>User Exit - Structure Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495163#M563431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How Do Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am adding some code to the user exit EXIT_SAPFP50M_002. This calls the&lt;/P&gt;&lt;P&gt;module ZXPADU02 which is activated for PAI when the HR screen PA30&lt;/P&gt;&lt;P&gt;has been amended. The problem I am having is that I need to refer to&lt;/P&gt;&lt;P&gt;one of the screen fields Q0088-QWKDA  which is based on the structure&lt;/P&gt;&lt;P&gt;Q0088. When I run debugger and put a breakpoint in ZXPADU02 I cannot&lt;/P&gt;&lt;P&gt;reference the field Q0088-QWKDA as it does not exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what I need to do in order to access this field??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 11:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495163#M563431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T11:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit - Structure Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495164#M563432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use the below code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i0088 type p0088,&lt;/P&gt;&lt;P&gt;        i_q0088 type q0088.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: message like pgb_messge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CASE innnn-infty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********************&lt;STRONG&gt;For Infotype 0088&lt;/STRONG&gt;**************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN '0088'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL METHOD cl_hr_pnnnn_type_cast=&amp;gt;prelp_to_pnnnn&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        prelp = innnn&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        pnnnn = i0088.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;After importing the i0088 use the below function module &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; call function 'HR_GB_P0088_QUALIFYING_WEEK'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      p_0088                         = i0088&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    VALIDATION_OK                  =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      message                        = message&lt;/P&gt;&lt;P&gt;    changing&lt;/P&gt;&lt;P&gt;      q_0088                         = i_q0088&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      message_created                = 1&lt;/P&gt;&lt;P&gt;      constant_value_not_found       = 2&lt;/P&gt;&lt;P&gt;      others                         = 3&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;Now you check in debugging mode for the field Q0088-QWKDA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Velangini Showry Maria Kumar Bandanadham&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Velangini Showry Maria Kumar Bandanadham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 11:34:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495164#M563432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T11:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: User Exit - Structure Fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495165#M563433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers mate for replying,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have entered the code and ran the debugger but all the fields in the structure&lt;/P&gt;&lt;P&gt;i_q0088 are all empty i.e. set to '00000000'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 11:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-structure-fields/m-p/2495165#M563433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T11:46:19Z</dc:date>
    </item>
  </channel>
</rss>

