<?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: FV50 modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fv50-modification/m-p/8272982#M1633112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear iostemax,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   As per your question  the solution is,   I will tell u the clear procedure  !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Firstly, tell me, do u know how to enhance in the Standard program,, if not&lt;/P&gt;&lt;P&gt;	Go to ABAP editor i.e., SE38&lt;/P&gt;&lt;P&gt;	Give your program name i.e, SAPMF05A  and click on the display button&lt;/P&gt;&lt;P&gt;	Opens the standard program, here you can the enhancements points which SAP has already provided.&lt;/P&gt;&lt;P&gt;	Now click on the spiral button  or enhance or (shift + F4)&lt;/P&gt;&lt;P&gt;	Then go to Edit -&amp;gt; Enhancement operations -&amp;gt; show implicit enhancements,  click on this&lt;/P&gt;&lt;P&gt;	Directly it shows the sections where enhancements can be done&lt;/P&gt;&lt;P&gt;	Now here in the Enhancement OIA_FI_SAPMF05A. you can find 3 includes as shown below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ENHANCEMENT 2  OIA_FI_SAPMF05A.    "active version
*Exchange Netting
         INCLUDE MF05ATOI.
         INCLUDE mf05aooi.
         INCLUDE mf05afoi.
ENDENHANCEMENT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Now the top include i.e., INCLUDE MF05ATOI, double click it,&lt;/P&gt;&lt;P&gt;	Here you can declare the things, as per your requirement this is the declaration part. As example shown below.&lt;/P&gt;&lt;P&gt;	Remember this is only an example, as per that you can change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: OIA10H,
        OIA10L.

DATA:   BEGIN OF G_XOIA10L OCCURS 50.  "SO3K014840 DN
          INCLUDE STRUCTURE OIA10L.    "SO3K014840 DN
DATA:   END   OF G_XOIA10L.            "SO3K014840 DN


DATA:   BEGIN OF G_LOCTAB OCCURS 50,   "SO3K014840 DN
          BUKRS   LIKE OIA10-BUKRS,    "SODK000791 BL
          KUNNR   LIKE OIA10-KUNNR,    "SODK000791 BL
          LIFNR   LIKE OIA10-LIFNR,    "SODK000791 BL
* next lines deleted                   "SODK000791 BL
*         KOART(1) TYPE C,             "SO3K014840 DN
*         KONTO   LIKE OIA10-KUNNR,    "SO3K014840 DN
*         BUKRS   LIKE OIA10-BUKRS,    "SO3K014840 DN
*         NETNUM  LIKE OIA10-KUNNR,    "SO3K014840 DN
*         NJAHR   LIKE OIA10-NJAHR,    "SO3K014840 DN
* end of deletion                      "SODK000791 BL
        END   OF G_LOCTAB.             "SO3K014840 DN
DATA  BKPF_OINETNUM_ON_SCREEN(1).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;	Save, Activate and back (F3).&lt;/P&gt;&lt;P&gt;	Now in the output include, i.e., INCLUDE mf05aooi, &lt;/P&gt;&lt;P&gt;	Double click on that.&lt;/P&gt;&lt;P&gt;	Here you can modify the screens. &lt;/P&gt;&lt;P&gt;	Then save activate and back(F3)&lt;/P&gt;&lt;P&gt;	Now in the form include, i.e., INCLUDE mf05afoi.&lt;/P&gt;&lt;P&gt;	Double click on that.&lt;/P&gt;&lt;P&gt;	Here you can code your logic as per the user requirement.&lt;/P&gt;&lt;P&gt;	Save, Activate and Back(F3)&lt;/P&gt;&lt;P&gt;	Then in the main screen also save and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will probably help to you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Zulfikhar Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Oct 2011 09:50:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-03T09:50:06Z</dc:date>
    <item>
      <title>FV50 modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fv50-modification/m-p/8272981#M1633111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is that to add customized field in the enjoy screen of FV50. Also, if the user double click the zfield, it will prompt a pop-up screen or direct it to a new screen where in the user will input data as well as saved it in ztable containing the breakdown info of the inputted G/L account per line item. So, the inputted data in the enjoy screen would be the summary of the data in the desire pop-up screen. This will prevent the multiple entry of same GL account that differs only in some fields (e.g. Amount, Cost Center, Profit Center, etc.). Now my question is that on what include/s in SAPMF05A do I find the way to capture the the data from the enjoy screen per line item to the deisire pop-up screen? Any idea regarding this will be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iostemax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2011 08:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fv50-modification/m-p/8272981#M1633111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-03T08:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: FV50 modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fv50-modification/m-p/8272982#M1633112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear iostemax,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   As per your question  the solution is,   I will tell u the clear procedure  !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Firstly, tell me, do u know how to enhance in the Standard program,, if not&lt;/P&gt;&lt;P&gt;	Go to ABAP editor i.e., SE38&lt;/P&gt;&lt;P&gt;	Give your program name i.e, SAPMF05A  and click on the display button&lt;/P&gt;&lt;P&gt;	Opens the standard program, here you can the enhancements points which SAP has already provided.&lt;/P&gt;&lt;P&gt;	Now click on the spiral button  or enhance or (shift + F4)&lt;/P&gt;&lt;P&gt;	Then go to Edit -&amp;gt; Enhancement operations -&amp;gt; show implicit enhancements,  click on this&lt;/P&gt;&lt;P&gt;	Directly it shows the sections where enhancements can be done&lt;/P&gt;&lt;P&gt;	Now here in the Enhancement OIA_FI_SAPMF05A. you can find 3 includes as shown below.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ENHANCEMENT 2  OIA_FI_SAPMF05A.    "active version
*Exchange Netting
         INCLUDE MF05ATOI.
         INCLUDE mf05aooi.
         INCLUDE mf05afoi.
ENDENHANCEMENT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	Now the top include i.e., INCLUDE MF05ATOI, double click it,&lt;/P&gt;&lt;P&gt;	Here you can declare the things, as per your requirement this is the declaration part. As example shown below.&lt;/P&gt;&lt;P&gt;	Remember this is only an example, as per that you can change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: OIA10H,
        OIA10L.

DATA:   BEGIN OF G_XOIA10L OCCURS 50.  "SO3K014840 DN
          INCLUDE STRUCTURE OIA10L.    "SO3K014840 DN
DATA:   END   OF G_XOIA10L.            "SO3K014840 DN


DATA:   BEGIN OF G_LOCTAB OCCURS 50,   "SO3K014840 DN
          BUKRS   LIKE OIA10-BUKRS,    "SODK000791 BL
          KUNNR   LIKE OIA10-KUNNR,    "SODK000791 BL
          LIFNR   LIKE OIA10-LIFNR,    "SODK000791 BL
* next lines deleted                   "SODK000791 BL
*         KOART(1) TYPE C,             "SO3K014840 DN
*         KONTO   LIKE OIA10-KUNNR,    "SO3K014840 DN
*         BUKRS   LIKE OIA10-BUKRS,    "SO3K014840 DN
*         NETNUM  LIKE OIA10-KUNNR,    "SO3K014840 DN
*         NJAHR   LIKE OIA10-NJAHR,    "SO3K014840 DN
* end of deletion                      "SODK000791 BL
        END   OF G_LOCTAB.             "SO3K014840 DN
DATA  BKPF_OINETNUM_ON_SCREEN(1).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;	Save, Activate and back (F3).&lt;/P&gt;&lt;P&gt;	Now in the output include, i.e., INCLUDE mf05aooi, &lt;/P&gt;&lt;P&gt;	Double click on that.&lt;/P&gt;&lt;P&gt;	Here you can modify the screens. &lt;/P&gt;&lt;P&gt;	Then save activate and back(F3)&lt;/P&gt;&lt;P&gt;	Now in the form include, i.e., INCLUDE mf05afoi.&lt;/P&gt;&lt;P&gt;	Double click on that.&lt;/P&gt;&lt;P&gt;	Here you can code your logic as per the user requirement.&lt;/P&gt;&lt;P&gt;	Save, Activate and Back(F3)&lt;/P&gt;&lt;P&gt;	Then in the main screen also save and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will probably help to you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Zulfikhar Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Oct 2011 09:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fv50-modification/m-p/8272982#M1633112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-03T09:50:06Z</dc:date>
    </item>
  </channel>
</rss>

