<?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: BAPI BAPI_ALM_NOTIF_DATA_ADD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606730#M1277657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lohitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM BAPI_ALM_NOTIF_SAVE solves my problem, thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question to FM BAPI_ALM_NOTIF_DATA_ADD. How do I have to fill the parameter structure NOTFULLTXT (BAPI2080_NOTFULLTXTI) ? What do I have to define for the elements of the structure OBJTYPE and OBJKEY ? Can You give me an example ? I'd like to save a long text for a position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 May 2009 08:03:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-18T08:03:17Z</dc:date>
    <item>
      <title>BAPI BAPI_ALM_NOTIF_DATA_ADD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606728#M1277655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Colleagues !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to enhance a notification with the above BAPI. The notification had 3 positions, I'd like to add new positions. I fill the table gt_item:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   gt_item-refobjectkey  = gw_qmnum.&lt;/P&gt;&lt;P&gt;   gt_item-item_key      = gw_key.     "Old position no + 1&lt;/P&gt;&lt;P&gt;   gt_item-item_sort_no  = gw_key.    "Old position no + 1&lt;/P&gt;&lt;P&gt;   gt_item-d_codegrp     = '13FE-ART'.  "New value&lt;/P&gt;&lt;P&gt;   gt_item-d_code        = ZQMMESSAGES_TBL-cdfart. "New value&lt;/P&gt;&lt;P&gt;   gt_item-dl_codegrp    = '13FE-ORT'.   "New value&lt;/P&gt;&lt;P&gt;   gt_item-dl_code       = ZQMMESSAGES_TBL-cdfort.    "New value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   append gt_item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I call the BAPI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'BAPI_ALM_NOTIF_DATA_ADD'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       NUMBER                   = gw_qmnum&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;       NOTITEM                  = gt_item&lt;/P&gt;&lt;P&gt;       RETURN                   = gt_ret&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;After this BAPI I call&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;The BAPI will be processed without error (GT_RET is empty). But I don't see the new position !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do You know, what's wrong ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 15:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606728#M1277655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-15T15:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI BAPI_ALM_NOTIF_DATA_ADD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606729#M1277656</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 cannot interpret your bug. As per I know, follow the below sequence.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'BAPI_ALM_NOTIF_DATA_ADD' &lt;/P&gt;&lt;P&gt;'BAPI_ALM_NOTIF_DATA_MODIFY' &lt;/P&gt;&lt;P&gt;'BAPI_ALM_NOTIF_SAVE'&lt;/P&gt;&lt;P&gt;'BAPI_TRANSACTION_COMMIT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 18:12:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606729#M1277656</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-16T18:12:59Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI BAPI_ALM_NOTIF_DATA_ADD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606730#M1277657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lohitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the FM BAPI_ALM_NOTIF_SAVE solves my problem, thank You.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question to FM BAPI_ALM_NOTIF_DATA_ADD. How do I have to fill the parameter structure NOTFULLTXT (BAPI2080_NOTFULLTXTI) ? What do I have to define for the elements of the structure OBJTYPE and OBJKEY ? Can You give me an example ? I'd like to save a long text for a position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2009 08:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-bapi-alm-notif-data-add/m-p/5606730#M1277657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T08:03:17Z</dc:date>
    </item>
  </channel>
</rss>

