<?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: call transaction problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886606#M1595394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Again Pablo your response has been very useful for me.&lt;/P&gt;&lt;P&gt;So i guess i will have to develop the functionality to create a new applicant in R3 or check if the bapi_applicant_create fullfills all my requirements.&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 May 2011 13:56:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-04T13:56:25Z</dc:date>
    <item>
      <title>call transaction problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886604#M1595392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI guys,&lt;/P&gt;&lt;P&gt;I have done a FM that makes a call transaction to pb30.&lt;/P&gt;&lt;P&gt;The call transaction is in mode A and i want to get the errors that are going on.&lt;/P&gt;&lt;P&gt;This way it works all the message types 'E' and 's' are populated in messtab, but when i change the mode to N only one message is filled in messtab.&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 11:03:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886604#M1595392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-04T11:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886605#M1595393</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;have you read this OSS Note?:&lt;/P&gt;&lt;P&gt;Note 198379 - Batch Input(BDC) for Transactions of Personnel Development&lt;/P&gt;&lt;P&gt;&lt;A href="https://service.sap.com/sap/support/notes/198379" target="test_blank"&gt;https://service.sap.com/sap/support/notes/198379&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this one?&lt;/P&gt;&lt;P&gt;Note 353939 - FAQ: Appraisals - Common questions and information&lt;/P&gt;&lt;P&gt;&lt;A href="https://service.sap.com/sap/support/notes/353939" target="test_blank"&gt;https://service.sap.com/sap/support/notes/353939&lt;/A&gt;&lt;/P&gt;&lt;P&gt;here it says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      16. Can I use Batch Input to create appraisals?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NO, have a look at OSS-note 0198379.&lt;/P&gt;&lt;P&gt;Alternative you can write a report containing the following function modules: Development class: PPAP&lt;/P&gt;&lt;P&gt;Function group:    RHPS, RHPA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;'RHPS_APP_SCHEME_READ' to read existing appraisal model&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      use table APPSCHEME to create the new appraisal and the relevant fields RATING and NOT_RATED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;'RHPA_APPRAISAL_CREATE_CHECK' check whether the appraisal can be created or not&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      set parameter APP_ACTIVE = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;'RHPA_APPRAISAL_CREATE' Create appraisal&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Release 4.6C: 'RH_NOTE_TEXT_APPEND' and 'RH_NOTE_COMMIT' Use this function modules to create notes for appraisal elements. The usage can also be seen in function module RHPA_DYNNR_1300_NOTES_SAVE.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use these three function modules to create your appraisals. If you want to Finish the appraisal directly after creating it you can add the function module 'RHPA_APPRAISAL_HISTORICIZE'.&lt;/P&gt;&lt;P&gt;Be aware that the appraisal model has to be created before starting the new report. Otherwise you will get an error calling the first function module RHPS_APP_SCHEME_READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 13:44:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886605#M1595393</guid>
      <dc:creator>former_member182371</dc:creator>
      <dc:date>2011-05-04T13:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: call transaction problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886606#M1595394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Again Pablo your response has been very useful for me.&lt;/P&gt;&lt;P&gt;So i guess i will have to develop the functionality to create a new applicant in R3 or check if the bapi_applicant_create fullfills all my requirements.&lt;/P&gt;&lt;P&gt;Thank you very much.&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2011 13:56:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-problem/m-p/7886606#M1595394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-04T13:56:25Z</dc:date>
    </item>
  </channel>
</rss>

