<?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: Function module to populate Marketting attributes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889866#M1326235</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;I have updated Marketing Attribute of a BP in CRM by following FM,&lt;/P&gt;&lt;P&gt;DATA: lt_attr TYPE TABLE OF crmt_mktprof_comw,&lt;/P&gt;&lt;P&gt;            gt_attributes TYPE crmt_mktbp_char_tp,&lt;/P&gt;&lt;P&gt;            t_check      TYPE crmt_mktprof_val_r_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CRM_MKTBP_READ_CHAR_ALL_PFTPL'  " FM to get Marketing Attribute of an Business Partner.&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      iv_bp_guid           = gs_final-partner_guid&lt;/P&gt;&lt;P&gt;      iv_unassigned_values = c_x&lt;/P&gt;&lt;P&gt;      iv_langu             = sy-langu&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      et_return            = gt_return1&lt;/P&gt;&lt;P&gt;      et_allocvalues       = gt_attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gt_attributes[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE gt_attributes INTO gs_attributes WITH KEY classname = c_mktatr_330.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      gt_check[] = gs_attributes-allocvalues.   " Passing Marketing Attribute of a Business partner&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT gt_check INTO gs_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ls_attr-atname = gs_check-charact.&lt;/P&gt;&lt;P&gt;      ls_attr-atwrt  = gs_check-value.&lt;/P&gt;&lt;P&gt;      ls_attr-changed_at = gs_check-changed_at.&lt;/P&gt;&lt;P&gt;      ls_attr-changed_by = gs_check-changed_by.&lt;/P&gt;&lt;P&gt;      APPEND ls_attr TO lt_attr.&lt;/P&gt;&lt;P&gt;      CLEAR ls_attr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF lt_attr[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'               " FM for Updating and Inserting Market attributes values&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          iv_profile_template_id = l_atset&lt;/P&gt;&lt;P&gt;          iv_bp_guid             = l_part_guid&lt;/P&gt;&lt;P&gt;          iv_fcode               = 'C'&lt;/P&gt;&lt;P&gt;          iv_msa                 = 'X'&lt;/P&gt;&lt;P&gt;          iv_commit              = 'X'&lt;/P&gt;&lt;P&gt;          iv_partner             = l_partner&lt;/P&gt;&lt;P&gt;          iv_convert_values      = 'X'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          it_imp_seltab          = lt_attr&lt;/P&gt;&lt;P&gt;          et_return              = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      READ TABLE lt_return INTO wa_return WITH KEY type = 'E'.&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'   &lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            wait = 'X'.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 17, 2009 11:04 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 17, 2009 11:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jul 2009 08:59:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-17T08:59:51Z</dc:date>
    <item>
      <title>Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889864#M1326233</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;I have a requirement where I need to populate the marketting attributes.&lt;/P&gt;&lt;P&gt;I am using the function module CRM_MKTBP_CREATE_LIST_BPS_OB.This is the code that I am using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_alloclist-partner_guid = v_raw_bp_guid.               &lt;/P&gt;&lt;P&gt;    x_alloclist-profile_template_id = p_attset.             &lt;/P&gt;&lt;P&gt;    x_alloclist-allocvalues = i_allocvalues.                &lt;/P&gt;&lt;P&gt;    APPEND x_alloclist TO i_alloclist.                     &lt;/P&gt;&lt;P&gt;    CALL FUNCTION ' CRM_MKTBP_CREATE_LIST_BPS_OB'          &lt;/P&gt;&lt;P&gt;        EXPORTING                                            &lt;/P&gt;&lt;P&gt;         ix_alloclist         = i_alloclist                &lt;/P&gt;&lt;P&gt;       TABLES                                               &lt;/P&gt;&lt;P&gt;         et_return            = i_return                    &lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        communication_failure = 1 MESSAGE rfc_err&lt;/P&gt;&lt;P&gt;        system_failure        = 2 MESSAGE rfc_err.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;***Exception raised.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;RFC  connection is down.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;      v_prob_cls = c_imp.&lt;/P&gt;&lt;P&gt;      v_subobj   = c_rfc.&lt;/P&gt;&lt;P&gt;      MESSAGE e015(ysg) WITH rfc_err INTO g_dummy.&lt;/P&gt;&lt;P&gt;      PERFORM write_log.&lt;/P&gt;&lt;P&gt;      MESSAGE e019(ysg) WITH v_rfcdest.&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;I am passing the attribute set in the parameter p_attset. I was expecting only the attributes which belong to this attribute set would get updated. But I found that it is updating the other MAs in i_alloclist which belong to some other attribute set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this a standard behaviour of the function module? Or  am I missing some parameters?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please provide some solution to this?&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;Samrat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 08:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889864#M1326233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T08:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889865#M1326234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Samrat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used FM CRM_MKTBP_ASSIGN_ATTRIBUT_TAB to assign marketing attributes to a BP and it worked for me.&lt;/P&gt;&lt;P&gt;The advantage of using this FM is that you can pass the attribute set to be updated as the inout parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Saumya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 08:56:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889865#M1326234</guid>
      <dc:creator>saumya_govil</dc:creator>
      <dc:date>2009-07-17T08:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889866#M1326235</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;I have updated Marketing Attribute of a BP in CRM by following FM,&lt;/P&gt;&lt;P&gt;DATA: lt_attr TYPE TABLE OF crmt_mktprof_comw,&lt;/P&gt;&lt;P&gt;            gt_attributes TYPE crmt_mktbp_char_tp,&lt;/P&gt;&lt;P&gt;            t_check      TYPE crmt_mktprof_val_r_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CRM_MKTBP_READ_CHAR_ALL_PFTPL'  " FM to get Marketing Attribute of an Business Partner.&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      iv_bp_guid           = gs_final-partner_guid&lt;/P&gt;&lt;P&gt;      iv_unassigned_values = c_x&lt;/P&gt;&lt;P&gt;      iv_langu             = sy-langu&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      et_return            = gt_return1&lt;/P&gt;&lt;P&gt;      et_allocvalues       = gt_attributes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gt_attributes[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE gt_attributes INTO gs_attributes WITH KEY classname = c_mktatr_330.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      gt_check[] = gs_attributes-allocvalues.   " Passing Marketing Attribute of a Business partner&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;LOOP AT gt_check INTO gs_check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ls_attr-atname = gs_check-charact.&lt;/P&gt;&lt;P&gt;      ls_attr-atwrt  = gs_check-value.&lt;/P&gt;&lt;P&gt;      ls_attr-changed_at = gs_check-changed_at.&lt;/P&gt;&lt;P&gt;      ls_attr-changed_by = gs_check-changed_by.&lt;/P&gt;&lt;P&gt;      APPEND ls_attr TO lt_attr.&lt;/P&gt;&lt;P&gt;      CLEAR ls_attr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF lt_attr[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'               " FM for Updating and Inserting Market attributes values&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          iv_profile_template_id = l_atset&lt;/P&gt;&lt;P&gt;          iv_bp_guid             = l_part_guid&lt;/P&gt;&lt;P&gt;          iv_fcode               = 'C'&lt;/P&gt;&lt;P&gt;          iv_msa                 = 'X'&lt;/P&gt;&lt;P&gt;          iv_commit              = 'X'&lt;/P&gt;&lt;P&gt;          iv_partner             = l_partner&lt;/P&gt;&lt;P&gt;          iv_convert_values      = 'X'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          it_imp_seltab          = lt_attr&lt;/P&gt;&lt;P&gt;          et_return              = lt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      READ TABLE lt_return INTO wa_return WITH KEY type = 'E'.&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'   &lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            wait = 'X'.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 17, 2009 11:04 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 17, 2009 11:07 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 08:59:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889866#M1326235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T08:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889867#M1326236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Samrat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CRM_MKTBP_CHANGE_BP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 09:03:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889867#M1326236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T09:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889868#M1326237</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;In your code I do not see Fm,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you using it?&lt;/P&gt;&lt;P&gt;If not Please use it after the FM  CRM_MKTBP_CREATE_LIST_BPS_OB' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 17, 2009 11:17 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 09:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889868#M1326237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T09:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889869#M1326238</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 have used 'BAPI_TRANSACTION_COMMIT' though i have not mentioned it in the message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am aware of the function module 'CRM_MKTBP_CHANGE_BP'   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically . I want to know why the function module '' CRM_MKTBP_CREATE_LIST_BPS_OB' &lt;/P&gt;&lt;P&gt;' is behaving in this way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me to get the solution?&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;Samrat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 09:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889869#M1326238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T09:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889870#M1326239</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;Pass only that MAs in the FM which is to be modified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you read MA's Of a BP you get varous MAs of BP.&lt;/P&gt;&lt;P&gt;But U have to select particular MA from list of  MAs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ShreeMohan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 09:33:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889870#M1326239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T09:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Function module to populate Marketting attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889871#M1326240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ShreeMohan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function module has got a parameter CRM_MKTBP_CREATE_LIST_BPS_OB for passing the name of the attribute set.  I am not understanding why then all the Marketting attributes are getting populated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing something while passing the parameters to the function module?&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;Samrat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 11:27:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-to-populate-marketting-attributes/m-p/5889871#M1326240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T11:27:30Z</dc:date>
    </item>
  </channel>
</rss>

