<?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: seeking help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379910#M185662</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you selva. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, i've succeeded in displaying all the child records in my report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me guidelines on how to retrieve the total quantities needed from the child records in order to make certain amount of products for the parent record?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Jun 2006 07:54:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-29T07:54:36Z</dc:date>
    <item>
      <title>seeking help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379907#M185659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently i'm working on FM 'CS_BOM_EXPL_MAT_V2' to retrieve BOM information. &lt;/P&gt;&lt;P&gt;May i know how to remove the parent record after retrieving the child for my report? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried using assembly indicator to solve the problem but so far i couldnt get the exact table for the assembly indicator field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 03:51:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379907#M185659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T03:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: seeking help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379908#M185660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: begin of stpox occurs 1000.        &lt;/P&gt;&lt;P&gt;include structure stpox.&lt;/P&gt;&lt;P&gt;data: end of stpox.parameters: &lt;/P&gt;&lt;P&gt;p_matnr type marc-matnr,            &lt;/P&gt;&lt;P&gt;p_werks type marc-werks.  call function 'CS_BOM_EXPL_MAT_V2'       &lt;/P&gt;&lt;P&gt;exporting            &lt;/P&gt;&lt;P&gt;capid                 = 'PP01'            mehrs                 = 'X'            datuv                 = sy-datum            mtnrv                 = P_matnr            werks                 = p_werks            emeng                 = '1'       &lt;/P&gt;&lt;P&gt;tables            &lt;/P&gt;&lt;P&gt;stb                   = stpox       exceptions            &lt;/P&gt;&lt;P&gt;alt_not_found         = 1            call_invalid          = 2            material_not_found    = 3            missing_authorization = 4            no_bom_found          = 5            no_plant_data         = 6            no_suitable_bom_found = 7            others                = 8.&lt;/P&gt;&lt;P&gt;loop at stpox.&lt;/P&gt;&lt;P&gt;write:/ stpox.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 03:56:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379908#M185660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T03:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: seeking help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379909#M185661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Choong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See this sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;For BOM Material Number Conversion&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      INPUT        = V_MATNR  "Material BOM&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      OUTPUT       = V_MATNR  "Material BOM&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      LENGTH_ERROR = 1&lt;/P&gt;&lt;P&gt;      OTHERS       = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: STPOX_TAB_TMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH: STPOX_TAB_TMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          AUFSW                 = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           CAPID                 = CAPID&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             CAPID                 = 'PP01'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            MDMPS                 = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             MEHRS                 = 'X'&lt;/P&gt;&lt;P&gt;             DATUV                 = SY-DATUM&lt;/P&gt;&lt;P&gt;             MTNRV                 = V_MATNR&lt;/P&gt;&lt;P&gt;             WERKS                 = C_WERKS  "Plant&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           STLAL                 = STLAL&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           STLAN                 = STLAN&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          TOPMAT                = TOPMAT&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DSTST                 = DSTST&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;             STB                   = STPOX_TAB_TMP&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;             ALT_NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;             CALL_INVALID          = 2&lt;/P&gt;&lt;P&gt;             MATERIAL_NOT_FOUND    = 3&lt;/P&gt;&lt;P&gt;             MISSING_AUTHORIZATION = 4&lt;/P&gt;&lt;P&gt;             NO_BOM_FOUND          = 5&lt;/P&gt;&lt;P&gt;             NO_PLANT_DATA         = 6&lt;/P&gt;&lt;P&gt;             NO_SUITABLE_BOM_FOUND = 7&lt;/P&gt;&lt;P&gt;             OTHERS                = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;    LOOP AT STPOX_TAB_TMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     Here u can get all the records&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 04:31:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379909#M185661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T04:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: seeking help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379910#M185662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you selva. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, i've succeeded in displaying all the child records in my report. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you give me guidelines on how to retrieve the total quantities needed from the child records in order to make certain amount of products for the parent record?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 07:54:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379910#M185662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T07:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: seeking help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379911#M185663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          AUFSW                 = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           CAPID                 = CAPID&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             CAPID                 = 'PP01'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            MDMPS                 = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;             MEHRS                 = 'X'&lt;/P&gt;&lt;P&gt;             DATUV                 = SY-DATUM&lt;/P&gt;&lt;P&gt;             MTNRV                 = V_MATNR&lt;/P&gt;&lt;P&gt;*Begin of TSTK932303&lt;/P&gt;&lt;P&gt;             WERKS                  =  I_AFKO-WERKS&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            WERKS                 = C_WERKS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*End of TSTK932303&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           STLAL                 = STLAL&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           STLAN                 = STLAN&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          TOPMAT                = TOPMAT&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DSTST                 = DSTST&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;             STB                   = STPOX_TAB_TMP&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;             ALT_NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;             CALL_INVALID          = 2&lt;/P&gt;&lt;P&gt;             MATERIAL_NOT_FOUND    = 3&lt;/P&gt;&lt;P&gt;             MISSING_AUTHORIZATION = 4&lt;/P&gt;&lt;P&gt;             NO_BOM_FOUND          = 5&lt;/P&gt;&lt;P&gt;             NO_PLANT_DATA         = 6&lt;/P&gt;&lt;P&gt;             NO_SUITABLE_BOM_FOUND = 7&lt;/P&gt;&lt;P&gt;             OTHERS                = 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT STPOX_TAB_TMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;V_BOM quantity = V_BON quantity + STPOX_TAB_TMP-&lt;/P&gt;&lt;P&gt;                    &amp;lt;u&amp;gt;MNGKO&amp;lt;/u&amp;gt;. "BOM Quantity&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or V_Comp_quantity = V_Comp_quantity + STPOX_TAB_TMP-&lt;/P&gt;&lt;P&gt;                     &amp;lt;u&amp;gt;MENGE&amp;lt;/u&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if FMENG(Fixed Quantity)&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jun 2006 08:44:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seeking-help/m-p/1379911#M185663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-29T08:44:10Z</dc:date>
    </item>
  </channel>
</rss>

