Server proxy code help!!!!

Hi!
I'm a rookie in XI and I create a server proxy in a abap.
I need insert or modify the table zfintbcm017 in sap but I dont know if the code is correct because the system dont accept the insert and modify statement.
In the EXECUTE_ASYNCHRONOUS method I put this code.
method ZCM_II_INTERFACE_BAL_INFO~EXECUTE_ASYNCHRONOUS.
*TABLES
     zfintbcm017.             "GL Account Balance
DATA: in TYPE zcm_interface_balance_r3_dt .
DATA: BEGIN OF struc,
gldate TYPE zfintbcm017-gldate,
glccode TYPE zfintbcm017-glccode,
glaccount TYPE zfintbcm017-glaccount,
glprfcenter TYPE zfintbcm017-glprfcenter,
subbalance  TYPE zfintbcm017-subbalance,
subindicator  TYPE zfintbcm017-subindicator,
      END   OF struc.
DATA: wa LIKE  struc.
SELECT SINGLE gldate glccode glaccount glprfcenter
    FROM zfintbcm017 into corresponding fields of struc
    WHERE  gldate = in-date
      AND   glccode = in-company_code
      AND   glaccount = in-gl_account
      AND   glprfcenter = in-profit_center.
IF sy-subrc <> 0.
  struc-subbalance = in-subsidiary_balance.
struc-subindicator = in-subsidiary_indicator.
  INSERT zfintbcm017.
ELSE.
  struc-subbalance = in-subsidiary_balance.
  struc-subindicator = in-subsidiary_indicator.
  MODIFY zfintbcm017.
ENDIF.
COMMIT WORK.
endmethod.
Thanks!

you should use <b>INSERT zfintbcm017 FROM struc.</b> and <b>MODIFY zfintbcm017 FROM struc.</b>
If you want to use <b>INSERT zfintbcm017</b> you should fill the <b>zfintbcm017</b> work area.
regards
Shravan

Similar Messages

  • ABAP proxy code help needed

    Hi,
    In the ABAP inbound (server) proxy, I have written code like this.
    DATA: lt_material TYPE TABLE OF zxdt_material,
            ls_material TYPE zxdt_material,
            ls_input type zxmt_cam.
    ls_input = input.
    lt_material = ls_input-mt_cam-material.
    Here, material is a table type which should have 10 records of material. But it has only one records always eventhough I am passing 10 records in the input xml.
    What could be the reason?
    Any help is really appreciated since I am trying this for a long time now.
    Thanks
    Ricky

    Example code...
    here header has simple structure type (non repeating) so we directly assigning fields
    INPUT-ACCOUNTLIST-ACCOUNTDETAILINFO has proxy table structure(repeating structure) ,.... so we have used internal table for that..
    FUNCTION Z_00FI_ACCOUNTS_RECON_DAT.
    ""Local Interface:
    *"  IMPORTING
    *"     REFERENCE(INPUT) TYPE  ZDT_ACCOUNT_RECON_INFO_TARGET4
    TABLES:ZT00FI_ACCDATA,                       "Accounts Data
           ZT00FI_ACCHEAD.
    DATA:
         LT_ACCOUNTLIST TYPE TABLE OF  ZDT_ACCOUNT_RECON_INFO_TARGET3,
         LT_ACCDATATAB TYPE TABLE OF ZT00FI_ACCDATA,
         LT_ACCHEADERTAB TYPE TABLE OF ZT00FI_ACCHEAD,
         LS_ACCOUNTLIST TYPE  ZDT_ACCOUNT_RECON_INFO_TARGET3,
         LS_ACCDATATAB TYPE ZT00FI_ACCDATA,
         LS_ACCHEADERTAB TYPE ZT00FI_ACCHEAD,
         LS_HEADER TYPE ZDT_ACCOUNT_RECON_INFO_TARGET.
        SELECT SINGLE * FROM ZT00FI_ACCHEAD
        WHERE BATCHID = INPUT-HEADER-BATCHID AND
              SUBBATCHID = INPUT-HEADER-SUBBATCHID.
    *IF SY-SUBRC NE 0.
    MOVE:
      INPUT-HEADER-SOURCEREF TO LS_ACCHEADERTAB-SOURCEREF,
      INPUT-HEADER-BATCHID TO LS_ACCHEADERTAB-BATCHID,
      INPUT-HEADER-SUBBATCHID TO LS_ACCHEADERTAB-SUBBATCHID,
      INPUT-EXTRACTIONINFO-DATAVERSION TO LS_ACCHEADERTAB-DATAVERSION,
      INPUT-EXTRACTIONINFO-SOURCESYSTEM TO LS_ACCHEADERTAB-SOURCESYSTEM,
      INPUT-EXTRACTIONINFO-COUNTRYCODE TO LS_ACCHEADERTAB-COUNTRYCODE,
      INPUT-EXTRACTIONINFO-NUMBEROFACCOUNTS TO LS_ACCHEADERTAB-NUMBEROFACCOUNTS,
      INPUT-EXTRACTIONINFO-STARTTIMESTAMP TO LS_ACCHEADERTAB-STARTIMESTAMP,
      INPUT-EXTRACTIONINFO-ENDTIMESTAMP TO LS_ACCHEADERTAB-ENDTIMESTAMP,
      INPUT-EXTRACTIONINFO-DELTAINDICATOR TO LS_ACCHEADERTAB-DELTAINDICATOR,
      INPUT-EXTRACTIONINFO-LASTBATCHINDICAT TO LS_ACCHEADERTAB-LASTBATCHINDICAT.
    MOVE 'N' TO LS_ACCHEADERTAB-PROCESSINDICATOR.
    APPEND LS_ACCHEADERTAB TO LT_ACCHEADERTAB.
    INSERT ZT00FI_ACCHEAD FROM TABLE LT_ACCHEADERTAB.
    MOVE INPUT-ACCOUNTLIST-ACCOUNTDETAILINFO TO LT_ACCOUNTLIST.
    LOOP AT LT_ACCOUNTLIST INTO LS_ACCOUNTLIST.
      MOVE:
      INPUT-HEADER-BATCHID TO LS_ACCDATATAB-BATCH_ID,
      INPUT-HEADER-SUBBATCHID TO LS_ACCDATATAB-SUBBATCH_ID.
      MOVE-CORRESPONDING LS_ACCOUNTLIST TO LS_ACCDATATAB.
      APPEND LS_ACCDATATAB TO LT_ACCDATATAB.
      CLEAR:LS_ACCOUNTLIST,
            LS_ACCDATATAB.
    ENDLOOP.
    INSERT ZT00FI_ACCDATA FROM TABLE LT_ACCDATATAB.
    COMMIT WORK.
    *ENDIF.
    ENDFUNCTION.

  • How to debug XI--- R/3 (abap server proxy) code,  SYSFAIL in SMQ2

    Hi
    i have a XI (BPM) to R/3 (ABAP server proxy) scenario,
    when the data goes from XI to R/3, it is getting stuck at R/3 inbound queue (SMQ2), with status : SYSFAIL and error text: "No roll storage space of length
    3391496 available for internal storage",
    we tried activating the queue/ reexecute the LUW, but it still shows the same error status after running for some time,
    how can i debug the ABAP server proxy,
    pls tell me how can i debug the ABAP proxy code in the R/3
    very critical issue

    Have a look at SAP Note 17965 - No storage space available
    Regards,
    Prateek

  • Internal Update Server Error Code help

    Error code in FlashInstall.log 
    [warning] 1407 12044 vs [warning] 1403 12030
    I am trying to figure out why my internal update server wont connect past the certificate handshake. I can get it to work with a self signed certificate from the machine name but am trying to build a solution for my whole organization using our Root CA with a custom name for the particuler site.
    Any information would be helpful or suggestion for an alternative to using the internal update server since it is near impossible to troubleshoot when i have no idea what these warning codes mean.
    Thanks,
    Xenon

    Now i am getting these in my log but no update is being applied.
    2013-10-10+17-32-25.523 [info] 1628 adobeupdate.domain.net
    2013-10-10+17-32-25.527 [info] 1629 adobeupdate.domain.net
    2013-10-10+17-32-25.530 [info] 1614
    2013-10-10+17-32-25.534 [info] 1615
    2013-10-10+17-32-25.537 [info] 1618
    2013-10-10+17-32-25.542 [info] 1608
    2013-10-10+17-32-25.546 [info] 1612
    2013-10-10+17-32-25.550 [info] 1620
    2013-10-10+17-33-8.143 [info] 1628 adobeupdate.domain.net
    2013-10-10+17-33-8.147 [info] 1629 adobeupdate.domain.net
    2013-10-10+17-33-8.151 [info] 1614
    2013-10-10+17-33-8.154 [info] 1615
    2013-10-10+17-33-8.157 [info] 1618
    2013-10-10+17-33-8.162 [info] 1608
    2013-10-10+17-33-8.166 [info] 1612
    2013-10-10+17-33-8.171 [info] 1620
    2013-10-10+17-33-9.762 [info] 1628 adobeupdate.domain.net
    2013-10-10+17-33-9.767 [info] 1629 adobeupdate.domain.net
    2013-10-10+17-33-9.771 [info] 1614
    2013-10-10+17-33-9.774 [info] 1615
    2013-10-10+17-33-9.778 [info] 1618
    2013-10-10+17-33-9.782 [info] 1608
    2013-10-10+17-33-9.786 [info] 1612
    2013-10-10+17-33-9.790 [info] 1620
    2013-10-10+17-33-11.84 [info] 1628 adobeupdate.domain.net
    2013-10-10+17-33-11.88 [info] 1629 adobeupdate.domain.net
    2013-10-10+17-33-11.91 [info] 1614
    2013-10-10+17-33-11.94 [info] 1615
    2013-10-10+17-33-11.98 [info] 1618
    2013-10-10+17-33-11.102 [info] 1608
    2013-10-10+17-33-11.106 [info] 1612
    2013-10-10+17-33-11.123 [info] 1620

  • Exception using fault message in java server proxy.

    Hi All,
    I am trying to use Fault message inside my server proxy code in Asynchronous java server proxy. I am referring the below mentioned link :
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d06315a6-e66e-2910-039c-ba8bbbd23702?quicklink=index&overridelayout=true
    I successfully deployed my SDA file but while running the scenario(http-XI-ftp in PI7.11) i am getting the folowing exception under MDT:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: Error processing inbound message. Exception: Cannot locate proxy bean ServerProxyFTTest3.
    I am using the following library refernces under application-j2ee-engine.xml file:  com.sap.aii.af.sdk.lib, com.sap.aii.proxy.svc, com.sap.xi.util.misc,com.sap.guid,com.sap.exception all of type "weak".
    I have checked almost all the forums related to fault messages in asynchronous java server proxy but couldn't find much help.
    Request you all to help me.
    Thanks
    Amit

    Hi Rajesh,
    I am deploying my SDA file on Non Central Adapter Engine.
    I have also registered my interface using:
    http://ISVSAPPISB:51000/ProxyServer/register?ns=http://infosys.com/poc&interface=SI_Proxy_IA&bean=localejbs/ServerProxyFTTest3&method=sIProxyIA
    But still i ma getting the same exception.
    Hi Gabriel,
    I implemented my scenario using the same. But in addittion to the librarry referneces mentioned over there i have added one more refrence in it "com.sap.exception"  of type "weak". My structure is like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <application-j2ee-engine xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="application-j2ee-engine.xsd">
    <reference reference-type="weak">
      <reference-target provider-name="sap.com" target-type="library">com.sap.aii.af.sdk.lib</reference-target>
      </reference>
    <reference reference-type="weak">
      <reference-target provider-name="sap.com" target-type="service"> com.sap.aii.proxy.svc</reference-target>
      </reference>
    <reference reference-type="weak">
      <reference-target provider-name="sap.com" target-type="library">com.sap.xi.util.misc</reference-target>
      </reference>
    <reference reference-type="weak">
      <reference-target provider-name="sap.com" target-type="library">com.sap.guid</reference-target>
      </reference>
        <reference reference-type="weak">
      <reference-target provider-name="sap.com" target-type="library">com.sap.exception</reference-target>
      </reference>
        </application-j2ee-engine>
    Please help.
    Thanks
    Amit

  • Not able to debug server proxy

    Hi All,
    Iam doing File-Proxy scenario.
    I set a break point in server proxy code.
    But the breakpoint is not getting triggered.
    Please help me in this regard.
    Thanks.

    HI
    If u need to debug the server proxy then just go through the below thread.
    Debugging Inbound Proxy:
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    Thnx
    Chirag

  • Coding of Server proxy

    Hi all,
    where Can I see the Server Proxy code in XI if already implemented or not.  Where we can develop the server proxies and client proxies in XI. Please give the good suggisions.
    thanks in advance.
    Regards,
    Anjaneya

    <i>where Can I see the Server Proxy code in XI if already implemented or not</i>
    U can see it only in receiver R3 system
    <i>Where we can develop the server proxies and client proxies in XI. Please give the good suggisions.</i>
    Client proxy created at sender R/3. Seerver proxy at receiver R/3 .
    These are not developed on XI
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    Regards,
    Prateek

  • Error code 403  in Java Server Proxy

    Hi All,
    I developed Java Server Proxy.
    1. I get the Generated files from IR.
    2. Implement those files in J2EE Application.
    3. Configure all .xml configuration files.
    4. Deploy the .ear file.
    5. Register the Bean in JPR registry.
    finally i put the file in source side then the file picked successfully.
    I checked in Message Monitor i got success message but I Checked in SXMB_MONI then i got the following error .
    ERROR:
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">HTTP_RESP_STATUS_CODE_NOT_OK</SAP:Code>
      <SAP:P1>403</SAP:P1>
      <SAP:P2>Forbidden</SAP:P2>
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Error Report</title> <style> td {font-family : Arial, Tahoma, Helvetica, sans-serif; font-size : 14px;} A:link A:visited A:active </style> </head> <body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0" rightmargin="0"> <table width="100%" cellspacing="0" cellpadding="0" border="0" align="left" height="75"> <tr bgcolor="#FFFFFF"> <td align="left" colspan="2" height="48"><font face="Arial, Verdana, Helvetica" size="4" color="#666666"><b>  403 &nbsp Forbidden</b></font></td> </tr> <tr bgcolor="#3F73A3"> <td height="23" width="84"><img width=1 height=1 border=0 alt=""></td> <td height="23"><img width=1 height=1 border=0 alt=""></td> <td align="right" height="23"><font face="Arial, Verdana, Helvetica" size="2" color="#FFFFFF"><b>SAP J2EE Engine/7.00 </b></font></td> </tr> <tr bgcolor="#9DCDFD"> <td height="4" colspan="3"><img width=1 height=1 border=0 alt=""></td> </tr> </table> <br><br><br><br><br><br> <table width="100%" cellspacing="0" cellpadding="0" border="0" align="left" height="75"> <tr bgcolor="#FFFFFF"> <td align="left" colspan="2" height="48"><font face="Arial, Verdana, Helvetica" size="3" color="#000000"><b>  You are not authorized to view the requested resource.</b></font></td> </tr> <tr bgcolor="#FFFFFF"> <td align="left" valign="top" height="48"><font face="Arial, Verdana, Helvetica" size="2" color="#000000"><b>  Details:</b></font></td> <td align="left" valign="top" height="48"><font face="Arial, Verdana, Helvetica" size="3" color="#000000"><pre>  No details available</pre></font></td> </tr> </body> </html></SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>HTTP response contains status code 403 with the description Forbidden Error while sending by HTTP (error code: 403, error text: Forbidden)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please give me the sloution.
    Thanks,
    Bharathiraja R

    Hi
    Look into this blog where you have solutions for all Errors.
    /people/krishna.moorthyp/blog/2006/07/23/http-errors-in-xi
    Error: HTTP 403 Forbidden
    Description: The server understood the request, but is refusing to fulfill it
    Possible Tips:
    Path sap/xi/engine not active
    • HTTP 403 during cache refresh of the adapter framework - Refer SAP Note -751856
    • Because of Inactive Services in ICF –Go to SICF transaction and activate the services. Refer SAP Note -517484
    • Error in RWB/Message Monitoring- because of J2EE roles – Refer SAP Note -796726
    • Error in SOAP Adapter - "403 Forbidden" from the adapter's servlet. –Because of the URL is incorrect or the adapter is not correctly deployed.
    Reward points if usefull..........

  • Need some quick help with server proxy on PI 7.1 system

    Hi,
    I am implementing a server proxy on the PI 7.1 system to do some logging to a table. So, when I go the the proxy in sproxy and generate it, in the interface section on the properties tabs I only see a drop down that says point to point enabled. There is no implementing class to click into and thus not method to populate with the custom code. Some direction would be appreciated, I have been working 7.0 for a while, so the missing implementing class is new to me! I know the method name has changed from the execute_asycronous etc... Am I going to the wrong place now to find the implementing method?
    Thanks,
    Chris

    Whoops! Brain cramp. accidentally set the interface to outbound and not inbound in the ESR lol. Sorry.

  • When signing in i get the following error  message --- activation server error -- code:E_Auth_not_ready - can someone help?

    when signing in i get the following error  message --- activation server error -- code:E_Auth_not_ready - can someone help?

    Please follow the instructions in the link below:
    https://helpx.adobe.com/digital-editions/kb/error-e_act_not_ready.html
    I hope this will help.
    -Chirag

  • ABAP server proxy help required

    Hello,
    I want to make two simple ABAP server proxy scenarios
    1. File to ABAP server proxy (async scenario)
    2. File to ABAP server proxy (sync scenario)
    Pls send me the blogs/docs for the above scenarios.
    Regards

    Henry,
    Please go through the below links.
    <b>File to R/3 via ABAP Proxy with good example</b>
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    <b>Synchronous Proxies:</b>
    <b>Outbound Synchronous Proxy</b>
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/abap%2bproxy%2boutbound%2bprogram%2b-%2bpurchase%2border%2bsend
    <b>Inbound Synchronous Proxy</b>
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/abap%2bproxy%2binbound%2bprogram%2b-%2bsales%2border%2bcreation
    Also go through this, if you have problems in your proxy connection.
    <b>How to Activate Proxy.</b>
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    Regards,
    Sarvesh

  • Server Code Help Needed!

    hi all,
    I'm very new to java programming, but have taken on the task of writing an FTP server (incomplete code below). My problem is that which ever FTP Client I use, the server blocks when reading an incoming stream. I've tried different combinations of coding to read the incoming stream, but get a block each time. Can someone pleeeeeeeeeeeease tell me where I'm going wrong?
    import java.io.*;
    import java.net.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MyFTPServer extends JFrame
    private JTextField enterField;
    private JTextArea displayArea;
    private ObjectOutputStream output;
    private ObjectInputStream input;
    private ServerSocket server;
    private Socket connection;
    private int counter = 1;
    private static String r;
    private static String dir;
    private static String host;
    private static String str;
    private static int ip;
    protected BufferedReader in;
    public MyFTPServer() {
    super("Server");
    Container container = getContentPane();
    enterField = new JTextField();
    enterField.setEnabled(false);
    enterField.addActionListener(
    new ActionListener() {
    public void actionPerformed(ActionEvent event) {
    sendData(event.getActionCommand());
    container.add(enterField, BorderLayout.NORTH);
    displayArea = new JTextArea();
    container.add(new JScrollPane(displayArea), BorderLayout.CENTER);
    setSize(300, 150);
    setVisible(true);
    public void runServer() {
    try {
    server = new ServerSocket(21);
    String a1, a2, di, str1, user = "", host, dir;
    int lng, lng1, lng2, i, ip1, ip2, ip = 1, h1;
    dir = r;
    while (true) {
    waitForConnection();
    getStreams();
    backupFile();
    closeConnection();
    storeFile();
    ++counter;
    } catch (EOFException eofException) {
    System.out.println("Client Terminated Connection");
    } catch (IOException ioException) {
    ioException.printStackTrace();
    private void waitForConnection() throws IOException {
    try {
    displayArea.setText("Waiting for Connection\n");
    connection = server.accept();
    displayArea.append("Connection " + counter + " received from: " +
    connection.getInetAddress().getHostName());
    } catch (IOException ioException) {}}
    private void getStreams() throws IOException {
    try {
    System.out.println("test");
    input = new ObjectInputStream(connection.getInputStream());
    } catch (IOException ioException) {
    displayArea.append("\n error in streams");
    //doesnt seem to reach this bit
    private void backupFile() throws IOException {
    try {
    System.out.println ("test backup");
    str = ( String ) input.readObject();
    System.out.println (str);
    } catch (ClassNotFoundException classNotFoundException) {
    displayArea.append("\n Unknown object type received");
    }

    This server will only handle one client at a time.
    It breaks all the rules about single-threaded access to Swing components.
    And if the protocol is FTP you have no business using ObjectInputStream.
    I'd have a good look at the Swing and Networking tutorials and the FTP RFC before you go any further.

  • In a server proxy how can I use a INCLUDE STRUCTURE?

    Hi people!!, how can I put an internal table with an INCLUDE statement in a server proxy in abap. If I put the next code the system present me this error: Within classes and interfaces, you can only use "TYPE" to refer to ABAP     , Dictionary types, not "LIKE" or "STRUCTURE".
    The problem is that I need the STRUCTURE to make a APPEND.
    Thanks for the help.
    DATA: BEGIN OF bdc_tab .
            INCLUDE STRUCTURE bdcdata.
    DATA: END OF bdc_tab.

    Hi Carlos,
    Yes. It mainly accepts TYPE statements.
    You can use this as:
    DATA: BDC_LINE type bdcdata.
    DATA: BDC_TAB type table of bdcdata.
    When you want to use,
    Fill the BDC_LINE.
    Then:
    Append BDC_LINE to BDC_TAB.
    Or:
    Loop at BDC_TAB into BDC_LINE.
    Cheers,
    Bhanu

  • ABAP client-to-server proxy through XI in same system

    Hello,
    I have one XI system (NW70 SPS16) and 2 clients: 400 which is configured as Integration server and 500 which is application system.
    In repository there are 2 messages interfaces, and in SPROXY of clnt 500 two classes are generated.
    Is it possible to call server proxy from client one in XI system through XI Integration Engine? I tried it, but failed on receiver side (server proxy class). Here the message:
      <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="OUTBINDING">CO_TXT_CHANNEL_PASSWORD_ERROR</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unable to read user password from communication channel of type Error when accessing the secure store (access ID = DD8C8D14F0C07AF1B67B003048343629) Error while reading from the secure store: ERROR_UNKNOWN: Cannot find entry in secure store (SECSTORE,023)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Any sapnotes which described this error aren't helped, because they are outdated or mismatch my version.
    So is it possible to use abap server proxy on XI side?

    Your scenario is possible. As the error says, check the password on the receiver XI adapter.
    VJ

  • Pass a value of a file to a variable in a server proxy.

    I need to pass a value of a file to a variable in a server proxy and the system tell me that:
    Field "INPUT-ENTRADA-ITEM-ZCO_BUDGT_MI_IN_ZBAPI_KP06_EN-VERSION" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. "DATA" statement.
    Thanks for the help.
    This is my code:
    DATA: bdc_line TYPE bdcdata.
    DATA: bdc_tab  TYPE TABLE OF bdcdata.
    DATA: opt TYPE ctu_params.
    CLEAR bdc_line.
      bdc_line-program = 'SAPLKPP0'.
      bdc_line-dynpro  = '1000'.
      bdc_line-dynbegin = 'X'.
      APPEND bdc_line TO bdc_tab.
      CLEAR bdc_line.
      bdc_line-fnam = 'KPP0B-VALUE(01)'.
      bdc_line-fval = input-entrada-item-zco_budgt_mi_in_zbapi_kp06_en-PER1.
      APPEND  bdc_line TO bdc_tab.
      CLEAR bdc_line.
      bdc_line-fnam = 'KPP0B-VALUE(02)'.
      bdc_line-fval = input-entrada-item- zco_budgt_mi_in_zbapi_kp06_en-PER2.
      APPEND bdc_line TO bdc_tab.
    CALL TRANSACTION 'KP06' USING bdc_tab
                              MODE 'A'
                              UPDATE 'S'.

    Hi,
    The 'input' normally is a field with nested structures.
    That may be the case here.
    You can you the following code instead:
    data: LS_LINE like line of INPUT-ENTRADA-ITEM-ZCO_BUDGT_MI_IN_ZBAPI_KP06_EN.
    or if you have a different nesting, try:
    data: LS_LINE like table of INPUT-ENTRADA-ITEM,
          LS_ITEM like line of <LS_LINE>.
    or other suitable declaration
    Then, in the code:
    loop at INPUT-ENTRADA-ITEM-ZCO_BUDGT_MI_IN_ZBAPI_KP06_EN into LS_LINE.
    ENDLOOP.
    or,
    loop at INPUT-ENTRADA-ITEM into LS_LINE.
    loop at LS_LINE into LS_ITEM.
    endloop.
    endloop.
    if you still have questions, let me know the structure of the 'input', with the table types involved.
    Cheers,
    Bhanu

Maybe you are looking for

  • SSL/TLS POP/SMTP setting 6270 ?

    Hi All, I recently purchased Nokia 6270 and I do have GPRS connection working well for WAP sites and for Internet access on my laptop. I have been trying to configure my GMAIL account on the email client provided with 6270. Gmail pop/smtp access requ

  • Adobe Acrobat Startproblem

    Hallo zusammen Ich habe ein Problem mit Adobe Acrobat Standard 7. Ich habe das Programm auf einem Windows 7 Rechner installiert. Ok, ist gegangen, hat auch super funktioniert etwa ein halbes Jahr. Dann habe ich aus Versehen den USERS Ordner auf dem D

  • Caps lock stuck on PSE 12 I already reset preferences and reset tool

    I've tried resetting the type tool and reseting my preferences on relaunch and Its still stuck in CAPs lock ... cannot add text to my layouts in lowercase lowercase works on other applications thanks for any advice

  • Dyanmic display of the Image Link URL

    I have a typical report requirement for which I have googled but didnot get the proper solution. The report contains two columns , OrderId (Datatype Integer) and CustomerName . OrderId CustomerName 123     xyz 234     abc 345     pqr 456     klm The

  • Elements Organizer hangs on importing iPhoto library

    Hi all! I am trying to import my complete iPhoto library into the Elements Organizer. I chose file→import from iPhoto and it does start some copying process. Then it starts another copying process but stalls after about 10% is done. What also surpris