<?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: Syntax Error, don't know how to solve in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870824#M49798</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Kshitij Devre  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The syntax error still exists. Some more ideas where the error can be? I've got no idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 May 2005 15:32:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-09T15:32:28Z</dc:date>
    <item>
      <title>Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870821#M49795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've got an syntax error in the following report. The compiler says: "SPACE" could not be interprated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It focus this code section:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 

rp-provide-from-last p0001 space keyda keyda.
rp-provide-from-last p0002 space keyda keyda.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you can see the complete report:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  Z_SAP_HR_LDAP                                               *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;                                                                     *
*&amp;amp;                                                                     *
*&amp;amp;---------------------------------------------------------------------*

REPORT  Z_SAP_HR_LDAP USING DATABASE PNP.

DATA: PLVAR            LIKE OBJEC-PLVAR,
      OBJID            LIKE HROBJECT-OBJID,
      KEYDA            LIKE PLOG-BEGDA,
      P_OBJECTS        LIKE HROBJECT OCCURS 0,
      P_OBJECTS_WA     LIKE HROBJECT,
      S_OBJECTS        LIKE HROBJECT OCCURS 0,
      S_OBJECTS_WA     LIKE HROBJECT,
      I1001_ITAB       LIKE P1001 OCCURS 0 WITH HEADER LINE,
      I1001_ITAB2      LIKE P1001 OCCURS 0 WITH HEADER LINE,
*      LDAPDESTINATION LIKE LDA_TYPES-LDAPDESTINATION,
*      LDAPSERVER LIKE LDA_TYPES-LDAPSERVER,
      ldapinitialrun like lda_types-flag,
      LOGSYS LIKE TBDLS-LOGSYS,
      ERRORS LIKE BAPIRET2 OCCURS 0,
      ERRORS_WA LIKE BAPIRET2.

* structure for short ldap-attributes
* fieldnames must be equal to basis strucutre LDA-ATTR_S (for RFC_CALL)
TYPES:  BEGIN OF TS_LDAP_ATTR_S,
         PERNR LIKE LDA_TYPES-PERNR,
         ATTR_TAB LIKE LDA_TYPES-ATTR_TABNAME,
         ATTR_FIELD LIKE LDA_TYPES-ATTR_FIELDNAME,
         VALUE LIKE LDA_TYPES-VALUE_S,
        END OF TS_LDAP_ATTR_S.

data: attributes type ts_ldap_attr_s occurs 0,
      attributes_wa type ts_ldap_attr_s.

infotypes: 0001, 0002.
tables: pernr, rfcdes.

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
PARAMETERS: P_TEST default 'X' AS CHECKBOX.
SELECTION-SCREEN END OF BLOCK B1.

Parameters: LDAPSRV Default 'SAPHRLDAP' LIKE LDA_TYPES-LDAPSERVER,
            LDAPDEST Default 'LDAPDEST' LIKE rfcdes-rfcdest.

* ---------------------------------------------------------------------
at selection-screen.

clear: p_objects[], s_objects[], attributes[].

CALL FUNCTION 'RH_GET_PLVAR'
 IMPORTING
  PLVAR = PLVAR
 EXCEPTIONS
  no_plvar = 1
  OTHERS = 2.
if sy-subrc &amp;lt;&amp;gt; 0.
 MESSAGE E015(HRLDAP).
endif.
KEYDA = sy-datum.

* --------------------------------------------------------------------
get pernr.

rp-provide-from-last p0001 space keyda keyda.
rp-provide-from-last p0002 space keyda keyda.
ATTRIBUTES_WA-PERNR = p0001-pernr.

* lastname
 attributes_wa-attr_tab = 'EMPLOYEE'.
 attributes_wa-attr_field = 'LASTNAME'.
 attributes_wa-value = p0002-nachn.
 append attributes_wa to attributes.

* firstname
 attributes_wa-attr_tab = 'EMPLOYEE'.
 attributes_wa-attr_field = 'FIRSTNAME'.
 attributes_wa-value = p0002-vorna.
 append attributes_wa to attributes.

* sAMAccountName
 attributes_wa-attr_tab = 'EMPLOYEE'.
 attributes_wa-attr_field = 'SAMACCOUNTNAME'.

* --------------------------------
* Using the employee number a unique name is created
* for the sAMAccountName
* --------------------------------

 concatenate &amp;#145;E&amp;#146; p0001-pernr into attributes_wa-value.
 append attributes_wa to attributes.

* other attributes have to added here.
* for each additional attribute an appropriate field
* has to defined in the structure EMPLOYEE
* for example you can choose the following:
*
* attributes_wa-attr_tab = 'EMPLOYEE'.
* attributes_wa-attr_field = 'TELEPHONE'.
*
* if you want to transfer the telephone number
* of an employee from SAP HR to Active Directory
* In the web Application Server an appropriate mapping
* has to be defined using transaction LDAP for each new
* attribute (here called TELEPHONE).
* ---------------------------------------------------------------------

end-of-selection.

* get own logical system
CALL FUNCTION 'OWN_LOGICAL_SYSTEM_GET'
 IMPORTING
  OWN_LOGICAL_SYSTEM = LOGSYS
 EXCEPTIONS
  OWN_LOGICAL_SYSTEM_NOT_DEFINED = 1
  OTHERS = 2.

IF SY-SUBRC NE 0.
* TODO: Komprimierung sy-mandt: 3 -&amp;gt; 2 Stellen !!!
  CONCATENATE SY-SYSID SY-MANDT INTO LOGSYS.
ENDIF.

loop at attributes into attributes_wa.
 write: / ATTRIBUTES_WA-PERNR , attributes_wa-attr_tab.
 write: attributes_wa-attr_field ,attributes_wa-value.
endloop.

IF P_TEST = 'X'.
 EXIT.
ENDIF.

* ---------------------------------------------------------------------
* send attributes to ldap client
* send attributes
CALL FUNCTION 'SPLDAP_RECEIVE_ATTRIBUTES'
 DESTINATION LDAPDEST
EXPORTING
     LOGSYS = LOGSYS
     SERVERID = LDAPSRV
     ATTRIBUTES_S = attributes[]
     INITIAL_RUN = LDAPINITIALRUN
*      ATTRIBUTES_L = TOTAL_ATTRS_L[]
*      ATTRIBUTES_X = TOTAL_ATTRS_X[].
IMPORTING
 RETURN = ERRORS[].

IF NOT ERRORS[] IS INITIAL.
  READ TABLE ERRORS INDEX 1 INTO ERRORS_WA.
  MESSAGE ID ERRORS_WA-ID TYPE ERRORS_WA-TYPE
   NUMBER ERRORS_WA-NUMBER
   WITH ERRORS_WA-MESSAGE_V1 ERRORS_WA-MESSAGE_V2
        ERRORS_WA-MESSAGE_V3 ERRORS_WA-MESSAGE_V4.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 14:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870821#M49795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T14:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870822#M49796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christopher,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What version are you on ? it looks interesting.. I have been using the same statement ie &lt;/P&gt;&lt;P&gt;'rp-provide-from-last p0001 space pn-begda pn-endda.' from 3.1h to 47 ext2 and never had any syntax errors . the problem is probably elsewhere. I would comment those two statements &amp;amp; try to compile.. and go from there..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 14:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870822#M49796</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-05-09T14:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870823#M49797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move the "tables" statement up -- before the "infotypes" statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kshitij&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 14:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870823#M49797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T14:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870824#M49798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Kshitij Devre  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The syntax error still exists. Some more ideas where the error can be? I've got no idea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 15:32:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870824#M49798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T15:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870825#M49799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Christoph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why don't replace the space with  ' ' and see if it compiles?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rp-provide-from-last p0001 ' ' keyda keyda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 16:00:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870825#M49799</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-05-09T16:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870826#M49800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've copied/pasted your code in my system.  It is working fine.  We are on 46c.  I'm not familiar with logical databases,  could you use the literal ' ' instead?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

rp-provide-from-last p0001 ' ' keyda keyda.
rp-provide-from-last p0002 ' ' keyda keyda.

&lt;/CODE&gt;&lt;/PRE&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>Mon, 09 May 2005 16:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870826#M49800</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-05-09T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870827#M49801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did the same thing(in 46c) but I got a different syntax error "'E'" is not defined as a data...."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is coming at the concatenate statement in your code. So how come we are all getting different results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What logical database does the program refer to? Check in table TRMAC to see what code lines you have in there for this macro. See if it makes sense.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am baffled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 16:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870827#M49801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T16:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870828#M49802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  Christoph,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please verify the attributes and see if your Program is tied to the Logical Database PNPCE? If so, change it to PNP &amp;amp; you should be fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 16:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870828#M49802</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-05-09T16:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870829#M49803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help. I solved the problem with changing the logical database to PNP. Now the following error occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"programm ... is not registered"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On an erlier test the following error occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"SLDAP_RECEIVE-ATTRIBUTES is not available"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What did i wrong? The second error came only once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 19:39:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870829#M49803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T19:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870830#M49804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the second error was obviously a typo. ie '-' instead of '_' in 'SLDAP_RECEIVE_ATTRIBUTES'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you cut &amp;amp; paste your complete code &amp;amp; the error   you are currently getting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh Datti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 20:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870830#M49804</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-05-09T20:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870831#M49805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i test this report, he can access the HR employee data an read my selection but if i run it really the following error occurs:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laufzeitfehler         CALL_FUNCTION_OPEN_ERROR    &lt;/P&gt;&lt;P&gt;       aufgetreten am  10.05.2005 um   22:22:26                                                                                &lt;/P&gt;&lt;P&gt;"program LDAP_SAP_ADS_DC_1 not registered" / &amp;amp;CT.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;He stands at the following line:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &amp;gt;   CALL FUNCTION 'SPLDAP_RECEIVE_ATTRIBUTES'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it's a problem with that function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found this function in my R/3 System.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 20:25:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870831#M49805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-09T20:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870832#M49806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try testing the function module 'SPLDAP_RECEIVE_ATTRIBUTES' in SE37 and seei you can get a successful LDAP connection to the server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 May 2005 20:45:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870832#M49806</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2005-05-09T20:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870833#M49807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i can connect to the LDAP Server.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 06:38:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870833#M49807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T06:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870834#M49808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Report is running. The errors are history. But now the function SPLDAP_RECEIVE ATTRIBUTES is not available. I've got this function in my system. Why can't he communicate with this function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2005 08:50:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870834#M49808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-10T08:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax Error, don't know how to solve</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870835#M49809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I am experiencing the same problem, did you found out how to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;many thanks, &lt;/P&gt;&lt;P&gt;Nathalie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2006 09:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-don-t-know-how-to-solve/m-p/870835#M49809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-12T09:15:14Z</dc:date>
    </item>
  </channel>
</rss>

