Skip to Content
0
Former Member
Nov 22, 2007 at 08:46 AM

ABAP API

29 Views

Hi All,

I am using ABAP API to connect to the repository.

I created a repository say REPO, and using the below code , it is working fine.

  lv_log_object_name = 'SEARCH'.

  ls_language-language = 'eng'.
  ls_language-country  = 'US'.
  ls_language-region   = 'USA'.

CREATE OBJECT lr_api
        EXPORTING
          iv_log_object_name = lv_log_object_name.

lr_api->mo_accessor->connect( ls_language ).

while the same code use for standard repository, it is giving dump on the line

lr_api->mo_accessor->connect( ls_language ).

Please help me.

Regards,

Nikhil