Problem: Accessing BAPI using SAP System Connector and setting SELOPT_TAB

Hi,
I am trying to use the SAP System Connector (based on JCA) to connect to a BAPI and do a search for a customer with EP SP15. (Using BAPI_CUSTOMER_FIND).
I established the connection and can set simple input parameters, however I didn't find a way for setting the SELOPT_TAB in the IInteraction instance.
This is what the table should contain:
Table SELOPT_TAB
Field Content
COMP_CODE SPACE
TABNAME KNA1
FIELDNAME NAME1
FIELDVALUE Ma*
Here the import parameter:
IMPORT-Parameter
MAX_CNT 100
PL_HOLD X
And here the code for the IInteraction without the SELOPT_TAB that I want to include.
// Get the Interaction interface for executing the command
IInteraction ix = connection.createInteractionEx();
IInteractionSpec ixspec = ix.getInteractionSpec();
String functionName = "BAPI_CUSTOMER_FIND";
ixspec.setPropertyValue("Name", functionName);
String function_out = "RESULT_TAB";
RecordFactory rf = ix.getRecordFactory();
MappedRecord input = rf.createMappedRecord("input");
// put function input parameters
input.put("MAX_CNT", "100");
input.put("PL_HOLD", "X");
MappedRecord output = (MappedRecord) ix.execute(ixspec, input);
Does anybody know how to set the SELOPT_TABLE as input parameter?
Any help would be appreciated.
Regards, Andy

Maybe your application isn´t run in x84
#Go to properties of your project ->Build -> changed platform target of "Any CPU" to "x86"
#Copy these libraries from our 32-bit environment :
*SAP.Connector.dll
*SAP.Conector.Rfc.dll
*librfc32.dll
*msvcp71.dll
*msvcr71.dll
In 64 bits environment:
1. librfc32.dll to C:WINDOWSsystem
2. msvcp71.dll to C:WINDOWSsystem32
3. msvcp71.dll and  msvcr71.dll to C:WINDOWSSysWOW64
4. SAP.Connector.dll and SAP.Conector.Rfc.dll to C:WINDOWSassembly (DRAG)

Similar Messages

  • Access BAPIs Using the SAP Java Resource Adapter

    Hi experts,
    Can someone tell me how to Access BAPIs Using the SAP Java Resource Adapter?

    hi Shweta,
    Please refer the step by step procedure:
    1. Start the deploy tool of the SAP J2EE Application Server with the DeployTool.bat in the directory //<SAP J2EE Engine Installation Directory/.../j2ee/deploying.
    2. Choose Project &#8594; New Project and enter a name for the new project.
    3. Click on the Deployer tab.
    4. From the menu path, choose Deploy &#8594; EAR &#8594; Load Module and select the sapjra.rar file.
    5. For the newly created node sapjra.rar, choose Server Settings &#8594; Identity Subjects and select Caller Impersonation as authentication type, so that the J2EE user data is used to log on to the ABAP system.
    6. Make sure that the J2EE Application Server is running. Connect to the J2EE Application Server with Deploy &#8594; Connect.
    7. Deploy the sapjra.rar using the menu Deploy &#8594; Deployment &#8594; Deploy Module.
    8. Enter SAPJRADemo as application name and start the application.
    9. Close the deploy tool.
    10. Start the Visual Administrator again.
    11. Select the Cluster tab and switch to <Server Node> &#8594; Services &#8594; Connector Container.
    12. Click on the Runtime tab and choose sap.com/SAPJRADemo &#8594; eis/SAPJRADemoFactory.
    13. Choose Managed Connection Factory &#8594; Properties. On this page, you need to specify the logon data for the ABAP system. There is already some dummy data visible in the property list if no real system data has been specified so far.
    14. To change the value of a property, select the property in the list, change the value underneath it, and add the changes using the Add button. At the end, do not forget to save all changes by pressing the button Save Changes. The user configured for the SAP JRA must be the user authorized to read metadata of function modules.

  • 'BAPI_DOCUMENT_CREATE2': store attachment using 'SAP-SYSTEM'

    while i am checkin a document (attachment) using storage category KPRO ,the document is getting stored but when i use SAP-SYSTEM the Document is not getting stored. How can I get it stored using 'SAP-SYSTEM'
    Following is the code;
    DATA:
    lv_docnum TYPE bapi_doc_aux-docnumber,
    lw_docdata TYPE bapi_doc_draw2,
    lw_return TYPE bapiret2,
    lw_dsp TYPE bapi_doc_drat,
    lw_objlink TYPE bapi_doc_drad,
    lw_docfile TYPE bapi_doc_files2,
    lt_dsp TYPE STANDARD TABLE OF bapi_doc_drat,
    lt_objlink TYPE STANDARD TABLE OF bapi_doc_drad,
    lt_docfile TYPE STANDARD TABLE OF bapi_doc_files2.
    START-OF-SELECTION.
    *CALL 'SAPCORE' ID 'ID' FIELD 'VERSION'
    ID 'TABLE' FIELD kernel_version-sys*.
    *READ TABLE kernel_version INDEX 11.
    *w_hostname = kernel_version-data.
      CLEAR lw_docdata.
      lw_docdata-documenttype = 'ZAP'.
      lw_docdata-documentversion = 'A0'.
      lw_docdata-documentpart = '000'.
      lw_docdata-laboratory = '001'.
      CLEAR lw_dsp.
      lw_dsp-description = 'Test created by xyz'.
      lw_dsp-language = 'E'.
      APPEND lw_dsp TO lt_dsp.
      lw_docfile-docfile = 'C:\test.pdf'.
       lw_docfile-docpath = 'C:\test.pdf'.
    LW_DOCFILE-ORIGINALTYPE = '1'.
      lw_docfile-storagecategory = 'SAP-SYSTEM'.
    lw_docfile-storagecategory = 'DMS_C1_ST'.
      lw_docfile-wsapplication = 'PDF'.
      lw_docfile-language = 'E'.
      lw_docfile-checkedin = ' '.
    lw_docfile-checkedin = 'X'.
      lw_docfile-active_version = 'X'.
      APPEND lw_docfile TO lt_docfile.
      CLEAR lw_objlink.
      lw_objlink-objecttype = 'VBAP'.
      lw_objlink-objectkey = '0040011233000010'.
      lw_objlink-documentdirection = 'X'.
      APPEND lw_objlink TO lt_objlink.
      CALL FUNCTION 'BAPI_DOCUMENT_CREATE2'
        EXPORTING
          documentdata         = lw_docdata
    pf_ftp_dest = 'SAPFTPA'
    pf_http_dest = 'SAPHTTPA'
        IMPORTING
          documentnumber       = lv_docnum
          return               = lw_return
        TABLES
          documentdescriptions = lt_dsp
          objectlinks          = lt_objlink
          documentfiles        = lt_docfile.
      IF lw_return-type CA 'EA'.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        MESSAGE ID lw_return-id
        TYPE lw_return-type
        NUMBER lw_return-number.
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            wait = 'X'.
        CLEAR lw_return.
        CALL FUNCTION 'BAPI_DOCUMENT_CHECKIN2'
          EXPORTING
            documenttype    = 'ZAP'
            documentnumber  = lv_docnum
            documentpart    = '000'
            documentversion = 'A0'
          IMPORTING
            return          = lw_return
          TABLES
            documentfiles   = lt_docfile.
        IF lw_return-type CA 'EA'.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          MESSAGE ID lw_return-id
          TYPE lw_return-type
          NUMBER lw_return-number.
        ELSE.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
        WRITE: / 'document number = ', lv_docnum.
        ENDIF.
      ENDIF.

    Hi,
    based on the posted coding I think that the reason for this behavior is that the used document type has set the flag 'Use KPRO' in transaction DC10. Because the storage category 'SAP-SYSTEM' is not a KPRO storage category like DMS_C1_ST. So if this flag is set in the customer then only originals checked in to a KPRO storage category are displayed. Without this flag the originals in "older" storage categories are displayed (e.g. SAP-SYSTEM, archive,...).
    Regarding the limitation of 2 originals per document info record, I can inform you that this is a standard restriction of you do not
    check in your originals to a KPRO. With the KPRO storage there is no such limitation.
    Generally I'm asking myself why you are using the BAPI_DOCUMENT_CREATE2 and then also the CHECKIN BAPI. Because you can enter the original data also at the CREATE2 BAPI. If you want to checkin files to the KPRO then the filedata has to be
    handed over in table DOCUMENTFILES. If you want to check in originals to SAP-SYSTEM then the data has to be entered in table DOCUMENTDATA. For further information please see SAP note 766277 which has a complete BAPI documentation added in its attachment area.
    Best regards,
    Christoph

  • Dms : Error using SAP-SYSTEM Storage Category

    hi guys ,
    i have  some issue related to  checkin document . 
    while  i am checkin a document using storage category KPRO ,the document is getting stored but when i use SAP-SYSTEM the Document is not getting stored
    I have used the BAPI CVAPI_DOC_CHECKIN
    CALL FUNCTION 'CVAPI_DOC_CHECKIN'
           EXPORTING
                pf_dokar           = lv_doc_type
                pf_doknr           = lv_doc_num
                pf_dokvr           = lv_doc_ver
                pf_doktl           = lv_doc_part
                pf_content_provide = 'TBL'
           IMPORTING
                psx_message        = ls_message
           TABLES
                pt_files_x         = lt_files
                pt_content         = lt_drao.
    for checkin the document
    Please let me know ASAP
    Regards
    Parin

    Dear Parin,
    based on your description I'm quite sure that in the customizing of your used document type (transaction DC10) the flag
    'Use KPRO' is set. If this flag is maintained then the originals could only be stored in the content server storage category which is not SAP-SYSTEM.
    SAP-SYSTEM is a non-KPRO storage alternative and I would recommend you to use the KPRO storage concept in DMS.
    Best regards,
    Christoph

  • Synchronize system time and set system time zone in SAP

    Hi,
    How to Synchronize system time and set system time zone in any SAP system?

    Nabarun -
    Setting of the system time may be different depending on your enviroment and systems.  (Windows, AIX, etc)
    Windows enviroment you can use a time server or net time command, I believe its simialr with UNIX but I do not know that command.
    Setting the time zone in SAP is done through the IMG in client 000.  You can get there with transaction SPRO.
    Once in the IMG, navigate to:
    SAP Netweaver
    General settings
    Time Zones
    Maintain Time Zones (here you can define the time zone settings/rules)
    Then go to:
    SAP Netweaver
    General settings
    Time Zones
    Maintain System Settings
    There you can change the time zones for the system.
    Hope this helps.
    Regards,
    Zecher

  • Fetching the sales order data using both system status and user status

    Hi,
    Could any one tell me how to fetch sales orders using both system status and user status.
    My requirement is to fetch sales order data in a report where the user enters the system status and user status in the selection screen fields.
    For example i need sales orders where the system status is I1002 i.e. OPEN and user status is E0002 (status profile CMSCON0) that is In Process
    Early replies are appreciated.
    Thanks
    Tanveer

    Hi,
    The system status and user status are stored in CRM_JCDS & CRM_JEST tables you can get the all the order GUID on particular status further pass the order GUID in table CRMD_ORDERADM_H to get transaction ID.
    Regards,
    Dipesh.

  • Extracting Time without using the System Date and Time

    Hi, can I know how to process a task at this particular time eg. 6PM everyday without using the System Date and Time..
    Do I need to use a Timer to get this done or is there any other solution to do this? Can give me a few hints? Thanks in advance =D

    You could use a timer...assuming you had some good reference point when you started so you would know that from your starting point it's now 6pm.
    I thought I saw you asked this question once already...and you were given a similar answer....I think by Sylviae?

  • Benefits/ Limitations when we use  SAP HANA Extended and Standard products.

    Hi All,
    We are going to purchase SAP HANA media. Please let me know what are the benefits/ limitations when we use  SAP HANA Extended and Standard products.
    Thanks in Advance,
    Vishall

    Hello,
    please check Master Guide (page 9 - chapter 1.6 Software Components)
    https://service.sap.com/~sapidb/011000358700000604552011
    There you can find edition comparison and detailed description.
    To extract the short summary:
    Platform edition = SAP HANA Database + Studio + Client + Host Agent + Information Composer
    Enterprise edition = (Platform edition) + LT Replication Add-on (SLT) + LT Replication Server (SLT) + SAP BO Data Services
    Enterprise extended edition = (Enterprise edition) + Sybase Adaptive Server Enterprise + Sybase Replication Server + Sybase Replication Server Agent + SAP HANA load controller
    It depends on what licenses you already have and how do you intends to use HANA.
    Platform edition = ETL via BO Data Services (you already have license for BO Data Services)
    Enterprise edition = SLT and/or BO Data Services (including licenses)
    Enterprise extended edition = all replication technologies
    Tomas

  • Customizing FD01 and FB70 using SAP PS Class and Characteristics

    Hello SAP Experts
    I have the following issue:
    My client has a requirement where we need to customize the Customer Master  (FD01) screen and the Invoice Posting Screen (FB70). A few additional fields have to be added by creating a separate tab. I was intending to take Abaper's help and do this using user exits but I have been suggested by the cleint to use SAP PS Class and Characteristics feature to do this. Can someone please throw some light on this feature and how can i create custom fields on FD01 and FB70 screens. Is there a way we could customize these screens using PS characteristics. Your opinions would be much appreciated.
    Please kindly chip in your ideas
    Regards,
    Nik

    Joao Paulo,
    Thank you for the response. I have tried to obtain some info from OSS but no luck. Tried all means but there is limited information available.
    Nik

  • How to determine the system color and set them for my app?

    Hi,
    I'd like to set the colors of my application to the system's colors. Especially the backgrounds of my JPanels, JButtons and so on should look like in the operating system. If you change the systems color scheme, my application looks really wierd with it's grey canvas an components and the border and menu of the window is displayed in the system's colors.
    any idea??
    koem

    The UIManager only seems to have control over
    awt-controls. All swing controls are not listed, when
    you try this:
            UIDefaults defaults =
    UIManager.getLookAndFeelDefaults();
    for(Iterator i = defaults.keySet().iterator();
    ator(); i.hasNext();)
    String name = (String)i.next();
    System.out.println(name);
    }It would be nice to have it set globally somewhere in
    the program.
    koemActually, the truth is quite the opposite, the UIManager only has control over swing components.
    There are many ways you can set these globally. You can sublcass your own look and feel, use the system look and feel, call UIDefaults.put() etc.
    Graeme

  • I bought a used iPad, restored it and set it up as "new iPad" it worked perfectly, this morning when I turned on, it asked to be activated, I entered my iTon account and password several time correctly, i got massages hat "your iPad could not be activated

    I bought a used iPad, restored it and set it up as "new iPad" it worked perfectly, this morning when I turned on, it asked to be activated, I entered my iTon account and password several time correctly, i got massages hat "your iPad could not be activated because activation server is unavailable. Try to connect your iPad to iToo o activate"  connected to iToon, it does not recognize my iPad and keeps giving the name of the of my wife's iPad and I cannot do anything even restore the Pad again because it asked to turn of the find "my iPad" off  that I cannot do because I cannot get pass activation. can you help me?

    Hi Kambizkaren,
    Thanks for visiting Apple Support Communities.
    If your iPad can't be activated, the steps in this article can help:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    Best,
    Jeremy

  • Third Party Access to update SAP system vi SAP Portal..

    Hi Expert,
    We need to  implement  SAP Vulnerability in EP , Could you please advise me what are things need to be taken place in EP 7.01 SP 13  to stop portal access from  any anonymous user who is not in part of business user...
    Thanks in advance for supporting lot and guide a right path to implement this in porta....
    Best reagrds,
    Sudhir

    Hi Michael,
    there are different ways of accessing the SAP backend system from an iView developed with the PDK for .NET. You can use
    - the SAP Connector for Microsoft .NET (design time supported only in VS 2003, runtime works in VS 2005)
    - Web Services if your SAP system is running on Web AS 6.40
    - Web Services via XI/PI or BizTalk Server
    - 3rd party adapters
    - Enterprise Services
    If you browse through the forum and sdn.sap.com of www.microsoft.com/sap you will find a lot of information and pros/cons for the different methods of how to connect to the SAP system.
    - Juergen

  • Runtime error while using SAP Enterprise Connector in a J2EE Web Servlet

    Hello,
    I'm facing problems while trying to do a RFC call out of a Servlet.
    I'm using Development Components (DCs) and my project setup is as follows:
    Firstly I've created a DC of type J2EE/Web Module. This DC implements an absolutly simple servlet which has to do the RFC-Call.
    The relevant code is:
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
       JCO.Client jcoclient = JCO.createClient("010", "DV*****", "***", "DE", "ovd***", "01");
       jcoclient.connect();
       Bapi_Flight_Getlist_Input input = new Bapi_Flight_Getlist_Input();
       input.setAirline("LH");
       SAPProxies_PortType myproxy = new SAPProxies_PortType();
       myproxy.messageSpecifier.setJcoClient(jcoclient);
       try {
          Bapi_Flight_Getlist_Output output = myproxy.bapi_Flight_Getlist(input);
          BapisfldatType_List list = output.get_as_listFlight_List();
          int listsize = list.size();
          for (int i = 0; i < listsize; i++) {
             BapisfldatType elem = list.getBapisfldatType(i);
             response.getWriter().print("Date: " + elem.getArrdate() + '\t' + "Arrive: " + elem.getArrtime());
       } catch (Exception e) {
          response.getWriter().print(e.toString());
       jcoclient.disconnect();
    The proxy for the RFC Module "BAPI_FLIGHT_GETLIST" - in this case the classes around "SAPProxies_PortType" were generated by NWDS ("SAP Enterprise Connector" Wizard).
    I had to manually add following DCs as "Used DCs" to get my DC built:
    com.sap.aii.proxy.framework (default)
    com.sap.aii.util.misc (default)
    com.sap.mw.jco (default)
    So far, so good...
    As a J2EE/Web module DC can't be deployed I've created a second DC of type J2EE/Enterprise Application and referenced the first DC. This DC is also built fine and can be deployed.
    But... When I call my servlet I get following Error Message on the web browser:
    The request cannot be processed.
      Details:      
      com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    Exception id: [000C295D60FB006F0000003600000EA8000461A05860B4BA]
    I also had a look in the trace files:
    Vollstu00E4ndiger Nachrichtentext
    application [LocalDevelopmentservletxxx.com] Processing HTTP request to servlet [TestServlet] finished with error. The error is: com.sap.engine.services.servlets_jsp.server.exceptions.ServletNotFoundException: Cannot load the requested servlet [LocalDevelopmentservletxxx.com/servlet/TestServlet].
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:330)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:354)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.NoClassDefFoundError: com/sap/aii/proxy/framework/core/AbstractType
    Loader Info -
    ClassLoader name: [xxx.com/testear]
    Parent loader name: [Frame ClassLoader]
    References:
       common:service:http;service:servlet_jsp
       service:ejb
       common:service:iiop;service:naming;service:p4;service:ts
       service:jmsconnector
       library:jsse
       library:servlet
       common:library:IAIKSecurity;library:activation;library:mail;library:tcsecssl
       library:ejb20
       library:j2eeca
       library:jms
       library:opensql
       common:library:com.sap.security.api.sda;library:com.sap.security.core.sda;library:security.class;library:webservices_lib;service:adminadapter;service:basicadmin;service:com.sap.security.core.ume.service;service:configuration;service:connector;service:dbpool;service:deploy;service:jmx;service:jmx_notification;service:keystore;service:security;service:userstore
       interface:resourcecontext_api
       interface:webservices
       interface:cross
       interface:ejbserialization
    Resources:
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\work
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\servlet_jsp\LocalDevelopmentservletxxx.com\root\WEB-INF\classes
       C:\usr\sap\J2E\JC00\j2ee\cluster\server0\apps\ibm.com\testear\src.zip
    Loading model: {parent,references,local}
    The error occurred while trying to load "com.xxx.test.sap.connector.Bapi_Flight_Getlist_Output".
    at com.sap.engine.frame.core.load.ReferencedLoader.loadClass(ReferencedLoader.java:401)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
    at java.lang.Class.getConstructor0(Class.java:1930)
    at java.lang.Class.newInstance0(Class.java:278)
    at java.lang.Class.newInstance(Class.java:261)
    at com.sap.engine.services.servlets_jsp.server.runtime.context.WebComponents.getServlet(WebComponents.java:319)
    ... 14 more
    I think it has something to do with the used DCs... but I don't know why the classes are not found after deployment. I also tried
    to package the relevant jar-files from the used DCs into the EAR-File - but the I faced problems with the JCo
    Thank you for any help.
    Osman

    Hi,
    One thing that can be helpful is to add the references of the JAR files that you are adding as Used DC in the EAR.
    This can be done by adding Library type References in the application-j2ee-engine.xml Deployment descriptor in the EAR project.
    Following link will be helpful: http://help.sap.com/saphelp_nw70/helpdata/EN/83/82814282cfc153e10000000a1550b0/content.htm
    Regards,
    Alka.

  • SAP Enterprise Connector and service....

    Hi everyone,
    After creating, via the plugin "SAP Enterprise Connector", a proxy pointing on a BAPI, how can I create a service for this (and a web service).
    I know that you can create a web service directly using ABAP transaction se37. But our SAP version is quite old and we haven't this option.
    Thanks for the help.
    Message was edited by: David Fryda

    HI Jerin,
    Can be please little bit elaborate ur scenario.Because Enterprise Connector is deprecated in NWCE 7.1 onwards...

  • How to override security for table access when using SAP Query?

    We have a number of infosets which use table join between PA0001 and CATSDB table. To execute a query based on such a query you would need access to table auth group PA through S_TABU_DIS. This was earlier not a problem as SAP query was earlier used by support staff and not end users. We do not want to give S_TABU_DIS with to end users as this amounts to givin them access to all PA tables.
    The generated code for the query checks for the condition
    "%rtmode-no_authchk = space"
    before going for the authorization check.
    Thus, ideally the authorization check for an InfoSet can be skipped if we can pass X for this variable from the InfoSet definition. Is there a way to do this?
    Would appreciste any inputs to help suppress the authorization check at this point. Thanks.....

    >
    Julius Bussche wrote:
    > Perhaps you could replace it with a class of your own (transaction SE24)?
    >
    > I have not tried to do this; it was just a thought.
    >
    > Kind regards,
    > Julius
    unfortunately this does not work. SAP saw fit to 'hard-code' the implementation of the interface in RSAQEXCE:
    (only parts of that abap displayed here).
    170 data: iref type ref to if_query_tab_access_authority.
    1107 *       FORM AUTHORITY_BEGIN
    1112 form authority_begin using p_auth_classname type AQS_CLSNA.
    1119   perform authority_init using p_auth_classname.
    1120   call method iref->access_authority_begin.
    well for my part (searching a solution for a query on LTAK, wanting L_LGNUM as an object) i'm out of ideas. i shall have to modify SAP-standard and disable the class and do my own coding in the info-set. no other possibility - i cannot allow S_TABU_DIS for group LA and even if i did, what help would it be - i would have to allow that to all companies in that client having WM - and that would be literally all - i need LGNUM here!

Maybe you are looking for

  • Menu toolbar

    I'm working with Forms 9ids. The application that we developed has a customized menu. It has most of the standard functions (ex. paste, cut, etc.). My problem is that the paste icon (button) is never enabled. I use the copy button to copy a text item

  • JMS adapter Message

    Hi , I am getting below message in my JMS adapter. "Sender Channel. Details: (No detail information set.)" Status of adaper is green. What is the meaning of above statement?

  • Has anyone else noticed that Genius is racist?

    I know this sounds really contrived, but every time I pick a song by a black artist and try to create a Genius mix, it creates a group of only black artists.  I mean EVERY TIME.  It doesn't matter if the artist is classified in the genre of Rock, R&B

  • XI certification requirements

    Hi All,       I'm learning XI from some material i have . i'm doing my masters . I have no real time experience . Can i take the certification test or is it a must that some company sponcers me.               How much is the fee for certification.If

  • IDoc ALE converting problem with BD79

    Hi, i need some help with the ALE IDoc converting BD79 i need the following mapped. IDoc = ORDERS Condition: IF Sender E1EDKA1/PARVW = YP then Receiverfield ABLAD = NAME1 from Senderfield E1EDKA1/PARVW = YP where ABLAD in PARVW=WE. ideas ? Gordon