<?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_HELPVALUES_GET in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990407#M74032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for ur answer Ramki.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 01 Jul 2005 13:21:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-07-01T13:21:56Z</dc:date>
    <item>
      <title>BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990401#M74026</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'm developing a webdypro application that implements the functionalities of the transaction CAT2, for display, delete, change and insert working times i'm using the following bapis: &lt;/P&gt;&lt;P&gt;BAPI_CATIMESHEETMGR_INSERT&lt;/P&gt;&lt;P&gt;BAPI_CATIMESHEETMGR_DELETE&lt;/P&gt;&lt;P&gt;BAPI_CATIMESHEETMGR_CHANGE&lt;/P&gt;&lt;P&gt;BAPI_CATIMESHEETRECORD_GETLIST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And i want to use the BAPI_HELPVALUES_GET to gives all the matchcodes/valuehelps that the user have in the CAT2 transaction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is: how should i use this bapi? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which values should i set for the following input parameters:&lt;/P&gt;&lt;P&gt;OBJTYPE        &lt;/P&gt;&lt;P&gt;OBJNAME        &lt;/P&gt;&lt;P&gt;METHOD         &lt;/P&gt;&lt;P&gt;PARAMETER      &lt;/P&gt;&lt;P&gt;FIELD          &lt;/P&gt;&lt;P&gt;EXPLICIT_SHLP  &lt;/P&gt;&lt;P&gt;MAX_OF_ROWS    &lt;/P&gt;&lt;P&gt;DESCRIPTIONONLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope somebody can helps me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 15:52:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990401#M74026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T15:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990402#M74027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found a call to this BAPI.  Looks like it is strongly dependent on the BOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

        CALL FUNCTION 'BAPI_HELPVALUES_GET'
             DESTINATION RFC_DEST
             EXPORTING
*                 OBJTYPE                    = ' '
                  OBJNAME                    = 'EmployeeAbsence'
                  METHOD                     = 'CREATE'
                  PARAMETER                  = 'Absencetype'
                  FIELD                      = 'AWART'
*                 max_of_rows                = 0
*                 descriptiononly            = ' '
             IMPORTING
                  RETURN                     = I_RETURN
             TABLES
                  SELECTION_FOR_HELPVALUES   = I_SEL_FOR_HELPVALUES
                  HELPVALUES                 = I_HELPVALUES
                  VALUES_FOR_FIELD           = I_VAL_FOR_FIELD
                  DESCRIPTION_FOR_HELPVALUES = I_DSC_FOR_HELPVALUES.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does this help you any?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 16:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990402#M74027</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-06-30T16:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990403#M74028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Rich. It helps me to see how can it be called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i want to know, what values i have to use for the matchcodes in the CAT2 transaction. I mean what is the OBJECT that is used in the transaction CAT2, what METHOD, and the others values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 16:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990403#M74028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T16:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990404#M74029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can find this info in the BAPI Explorer (Txn BAPI). Locate the BO CATimeSheetManager (in the Alphabetical tab), highlight it. The Detail tab has the information needed. You can do this for each method and attibutes in the method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ramki Maley.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ramki Maley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 17:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990404#M74029</guid>
      <dc:creator>ramki_maley</dc:creator>
      <dc:date>2005-06-30T17:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990405#M74030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx Ramki.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think u dont understand me. I wanna know how to use the BAPI_HELPVALUES_GET for get the help values that appear in the CAT2 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best rgds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 18:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990405#M74030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T18:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990406#M74031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was trying to tell you how to look up the Object type, method, field etc in order to use the BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately we do not use CATS at my installation and I do not know what fields are on the screen nor what search helps are used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_HELPVALUES_GET is used in several standard SAP programs and you can do a Where Used for the function module and try to understand how it is used.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ramki Maley.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 18:29:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990406#M74031</guid>
      <dc:creator>ramki_maley</dc:creator>
      <dc:date>2005-06-30T18:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI_HELPVALUES_GET</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990407#M74032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thx for ur answer Ramki.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best rgds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gregory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Jul 2005 13:21:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-helpvalues-get/m-p/990407#M74032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-01T13:21:56Z</dc:date>
    </item>
  </channel>
</rss>

