<?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 for final confirmation serviceorder in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872554#M930843</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when I use the BAPI_ALM_CONF_CREATE&lt;/P&gt;&lt;P&gt;bapi I can enter the data already available like &lt;/P&gt;&lt;P&gt;confirmation no order . I also set the indicator for final confirmation but I get the error ARU806 not valid call ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solution coding in my case&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

        SELECT SINGLE * FROM afru INTO gs_afru
                        WHERE aufnr EQ h_raufnr
                        AND vornr EQ wa_sap_catsd-vornr.
* Indien terugmeldingsnummer aanwezig dan eindterurmelding met nummer doen                        
        IF sy-subrc = 0.

          gs_timetickets-conf_no = gs_afru-rueck.
          gs_timetickets-orderid = gs_afru-aufnr.
          gs_timetickets-operation = gs_afru-vornr.
          gs_timetickets-fin_conf = 'X'.

          APPEND gs_timetickets TO gt_timetickets.


          CALL FUNCTION 'BAPI_ALM_CONF_CREATE'
* EXPORTING
*   POST_WRONG_ENTRIES       = '0'
*   TESTRUN                  =
* IMPORTING
*   RETURN                   =
            TABLES
              timetickets              = gt_timetickets
              detail_return            = gt_return.
          .


          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
* EXPORTING
*   WAIT          =
* IMPORTING
*   RETURN        =
                    .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur de smidt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: A. de Smidt on Dec 5, 2008 1:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 May 2008 09:15:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-21T09:15:03Z</dc:date>
    <item>
      <title>bapi for final confirmation serviceorder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872551#M930840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm looking for a bapi which enables me to give a final confirmation to a serviceorder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the current scenario people are using cats for hourdeclaration on serviceorders. most of the time it is not known after hours are entered if the job is finished or not. when it's know after a few days the engineer has to declare 0,01 hours to make it possible to give final confirmation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I 'm searching for a bapi where I can set the final confirmation for the serviceorder &lt;/P&gt;&lt;P&gt;the other alternative is to use IW41 to set the final confirmation only that can't be fully programmed inside cats with bdc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if anybody has any alternatives they are also welcome &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur de smidt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 14:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872551#M930840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T14:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: bapi for final confirmation serviceorder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872552#M930841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check BAPI_SERVICENOTIFICAT_CREATE for Create service notification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 15:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872552#M930841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T15:44:11Z</dc:date>
    </item>
    <item>
      <title>Re: bapi for final confirmation serviceorder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872553#M930842</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;BAPI_ALM_CONF_CANCEL              Cancel confirmation for maintenance/service order&lt;/P&gt;&lt;P&gt;BAPI_ALM_CONF_CREATE              Create confirmation for maintenance/service order&lt;/P&gt;&lt;P&gt;BAPI_ALM_CONF_GETDETAIL           Detailed data for maintenance/service order confirmation&lt;/P&gt;&lt;P&gt;BAPI_ALM_CONF_GETLIST             List of maintenance/service order confirmations&lt;/P&gt;&lt;P&gt;BAPI_ALM_GET_PROP                 Propose Data for Time Confirmation&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, 10 May 2008 06:22:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872553#M930842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-10T06:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: bapi for final confirmation serviceorder</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872554#M930843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when I use the BAPI_ALM_CONF_CREATE&lt;/P&gt;&lt;P&gt;bapi I can enter the data already available like &lt;/P&gt;&lt;P&gt;confirmation no order . I also set the indicator for final confirmation but I get the error ARU806 not valid call ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;solution coding in my case&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

        SELECT SINGLE * FROM afru INTO gs_afru
                        WHERE aufnr EQ h_raufnr
                        AND vornr EQ wa_sap_catsd-vornr.
* Indien terugmeldingsnummer aanwezig dan eindterurmelding met nummer doen                        
        IF sy-subrc = 0.

          gs_timetickets-conf_no = gs_afru-rueck.
          gs_timetickets-orderid = gs_afru-aufnr.
          gs_timetickets-operation = gs_afru-vornr.
          gs_timetickets-fin_conf = 'X'.

          APPEND gs_timetickets TO gt_timetickets.


          CALL FUNCTION 'BAPI_ALM_CONF_CREATE'
* EXPORTING
*   POST_WRONG_ENTRIES       = '0'
*   TESTRUN                  =
* IMPORTING
*   RETURN                   =
            TABLES
              timetickets              = gt_timetickets
              detail_return            = gt_return.
          .


          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
* EXPORTING
*   WAIT          =
* IMPORTING
*   RETURN        =
                    .

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards&lt;/P&gt;&lt;P&gt;arthur de smidt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: A. de Smidt on Dec 5, 2008 1:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 May 2008 09:15:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-final-confirmation-serviceorder/m-p/3872554#M930843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-21T09:15:03Z</dc:date>
    </item>
  </channel>
</rss>

