RFC Data Erroneous

Hello everybody,
I have the next problem I'm using ABAP Proxy->XI->RFC, now the problem is that when I debug the RFC some fields looks like wronged mapped, but the outbound message in sxmb_moni looks just like it should, the data types are the same, so is the lenght any suggestions????
Thanks in advance,
Regards,
Julio Cesar

Hi,
copy the source of the inbound payload which u got in sxmb_moni and past with the one in (message -mapping ) source(src).......and then test if some error message occurs then there is some thing wrong........ if no error ........then ur mapping is correct ..........
hope this may help u........!
Regards,
Khan Azeez.

Similar Messages

  • Table is not filling with the RFC data

    Hi,
       I am new to WDJ. I have a created a wdj application by importing adaptive RFC model. deployment is sucessful but at runtime the table is not getting filled up with the RFC data. RFC is executing find from the backend. JCO is maintained correctly in the webdynpro, mapping and  binding is done.
    Could someone guide where could be the problem?
    I am giving the code below for doinit and service controller method.
    public void wdDoInit()
        //@@begin wdDoInit()
        //$$begin Service Controller(-222509821)
        wdContext.nodeZsalesheader_Data_Input().bind(new Zsalesheader_Data_Input());
    //     wdComponentAPI.getMessageManager().reportSuccess("Node value " + wdContext.currentContextElement().getAttributeAsText("auart"));
        //$$end
        //@@end
    public void executeZsalesheader_Data_Input( )
        //@@begin executeZsalesheader_Data_Input()
        //$$begin Service Controller(-1232218854)
        IWDMessageManager manager = wdComponentAPI.getMessageManager();
        try
         wdContext.nodeOutput().invalidate();
          wdContext.currentZsalesheader_Data_InputElement().modelObject().execute();
        catch(WDDynamicRFCExecuteException e)
          manager.reportException(e.getMessage(), false);
        //$$end
        //@@end
    Can anybody guide if am missing something?
    Regards
    Sireesha.

    Anup and all,
    Can anyone please identify whats the mistake in the below code?
    OnLeadSelect Event
        wdContext.nodeZsalesheader_Data_Input().getElementAt(wdContext.getLeadSelection()).getAttributeValue("Vbeln"));
    I am getting a runtime exception that "unknown attribute Vbeln".
    Here is my Context Node.
    ---Zsalesheader_Data_Input
    Output
    T_Salesheader
    Vbeln
    Auart
    Vbtyp
    Trvog
    As per the above Context structure is my code correct? If not how do i read the value vbeln from the above context?
    Can anyone pls advice?
    Regards
    Sireesha.

  • How can I access RFC data in transaction? (SAP to MII rfc calling)

    If I keep the incoming RFC calling by message rules with category, then using the message actions to handle, that is a solution.
    But if I want process the incoming RFC data in transaction directly, how can I get these data?

    You will need to define an XML typed Transaction input property for processing the message synchronously.  Then in the processing rule for this message you need to associate the proper transaction and map the parameter.
    So essentially the transaction and input parameter mapping in your message services processing rule replaces the category setup that you already have working.

  • How to pass the data from a input table to RFC data service?

    Hi,
    I am doing a prototype with VC, I'm wondering how VC pass the data from a table view to a backend data service? For example, I have one RFC in the backend system with a tabel type importing parameter, now I want to pass all the data from an input table view to the RFC, I guess it's possible but I don't know how to do it.
    I try to create some events between the input table and data service, but seems there is no a system event can export the whole table to the backend data service.
    Thanks for your answer.

    Thanks for your answer, I tried the solution 2, I create "Submit" button, and ser the mapping scope to  be "All data rows", it only works when I select at least one row, otherwise the data would not be passed.
    Another question is I have serveral imported table parameter, for each table I have one "submit" event, I want these tables to be submitted at the same time, but if I click the submit button in one table toolbar, I can only submit the table data which has a submit button clicked, for other tables, the data is not passed, how can I achieve it?
    Thanks.

  • Excel RFC Data Transfer

    Hi Guys,
    <br><br>
    First off, my apologies if this thread is in the wrong forum; it seemed to be the most relevant one to my question.
    <br><br>
    Background<br>
    I have written an ABAP program to gather some statistics and input them into a table, this all works well.  The problem came when I needed to display this data in a graph.  I found that SAP Business graphics was too limited in that it only had a 16 colour palette and a maximum of 32 unique records could be displayed.  BEx was discounted after this as it only operates within the BW systems and my data is not held there, which leaves me with Excel.
    <br><br>
    Problem<br>
    I need to make an RFC to the statistics table in the SAP system.  Now as far as I can tell my function call is successful (none of my error catches are triggered).  The issue is I donu2019t quite know how to actually extract the data from my tables, nor can I find a complete methods list online.
    <br><br>
    Question<br>
    Is my extraction method correct and if so how do I output the results to a spreadsheet?
    <br><br>
    Code (Some items renamed for anonymity)<br>
    Sub GetTable()
    <br><br>
    'Logon<br>
    Dim sapConn As Object 'Declare variant<br>
    Dim objRfcFunc As Object<br>
    Dim objQueryTab, objRowCount As Object<br>
    Dim objOptTab, objFldTab, objDatTab As Object
    <br><br>
    Set sapConn = CreateObject("SAP.Functions") 'Create ActiveX object<br>
    sapConn.LogLevel = 9<br>
    sapConn.LogFileName = "C:\sap_vb.txt"
    <br><br>
    If sapConn.Connection.Logon(0, False) <> True Then 'Try Logon<br>
       MsgBox "Cannot Logon to SAP"<br>
    End If<br>
    'Define function
    <br><br>
    Set objRfcFunc = sapConn.Add("RFC_READ_TABLE")<br>
    Set objQueryTab = objRfcFunc.Exports("QUERY_TABLE")<br>
    Set objOptTab = objRfcFunc.Tables("OPTIONS")<br>
    Set objFldTab = objRfcFunc.Tables("FIELDS")<br>
    Set objDatTab = objRfcFunc.Tables("DATA")
    <br><br>
    objQueryTab.Value = "TABLE_NAME"
    <br><br>
    'First we set the condition<br>
    'Refresh table<br>
    objOptTab.FreeTable<br>
    'Then set values<br>
    objOptTab.Rows.Add<br>
    objOptTab(objOptTab.ROWCOUNT, "TEXT") = "WEEKDATE = '" + Format((Date + 6 - Weekday(Date)), "yyyymmdd") + "'"
    <br><br>
    'Next we set fields to obtain<br>
    'Refresh table<br>
    objFldTab.FreeTable<br>
    'Then set values<br>
    objFldTab.Rows.Add<br>
    objFldTab(objFldTab.ROWCOUNT, "FIELDNAME") = "USERNAME"<br>
    objFldTab.Rows.Add<br>
    objFldTab(objFldTab.ROWCOUNT, "FIELDNAME") = "SOPTOTAL"<br>
    objFldTab.Rows.Add<br>
    objFldTab(objFldTab.ROWCOUNT, "FIELDNAME") = "SOTTOTAL"<br>
    objFldTab.Rows.Add<br>
    objFldTab(objFldTab.ROWCOUNT, "FIELDNAME") = "INCTOTAL"<br>
    objFldTab.Rows.Add<br>
    objFldTab(objFldTab.ROWCOUNT, "FIELDNAME") = "OLDTOTAL"
    <br><br>
    If objRfcFunc.Call = False Then<br>
       MsgBox objRfcFunc.Exception<br>
    End If
    <br><br>
    u2018Up to this point there are no issues below is some rather poor display code
    <br><br>
    'Dim intRow, intField As Integer<br>
    'intRow = objDatTab.Rows
    <br><br>
    Range("A1").Select<br>
    ActiveCell.Value = CStr(objDatTab("WEEKDATE"))<br>
    'For intRow = 1 To objDatTab.Rows<br>
    '   For intField = 1 To objFldTab.Rows<br>
    '      Cells(intRow, intField) = Mid(objDatRec("WA"), objFldRec("OFFSET") + 1, objFldRec("LENGTH"))<br>
    '   Next<br>
    'Next
    <br><br>
    End Sub
    <br><br>
    Edited by: UKIntern on May 20, 2009 11:03 AM (Formatting issues)

    Ill just answer my own question:
    Dim index As Integer
    index = 1
    Range("A2").Select
    Do While index <= objDatTab.ROWCOUNT
        'Populate Contents into Excel Sheet
        ActiveCell.Offset(index, 0).Value = objDatTab(index, "COLUMN NAME")
        index = index + 1
    Loop

  • Mail to RFC -- Data Structed in Inbound Queue  -- Help needed !

    Hi Friends ,
                           I am doing Mail to RFC Asyn Scenario . Mail mails are come into the mail box . XI is trying to read the mail and send to R3.
                            It was working fine suddenly , Many mails read succesfully and data send to RFC , But it is structed in   ( SMQ2 ) inbound Queue ( <b>Message Scheduled on Outbound side</b> )
                  For long time it is showing like this . No data is accepted  by RFC. I have checked the Adpater confi for rfc it is fine .  I have given Max connection as 50 also .
              Please help me to solve this issue !
    Regards.,
    V.Rangarajan

    Hi,
    Have the Queues being registered in the R/3..?
    If not....
    1.Go to SXMB_ADM(R/3)
    2. Go to Manage Queues and then
    3. Register All Queues.
    <a href="/people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically Failed Messages</a>
    Regards
    San
    <a href="Remember to set the thread to solved when you have received a solution to set the thread to solved when you have received a solution</a>
    Where There is a <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/weblogs?blog=/weblogs/topic/16">blog</a> there is a Way.

  • RFC data  into WebDynpro Table based on Page selected by user in Portal

    Hi All
    I am new to webdynpro. we are developing an application in which we are supposed sent two parameters to RFC to retrive data. Two parameters are Role (plant) and page names(Sub - plant).
    Finally there should only one RFC for whole application which takes parameters when user selects a role and page inside a role.
    How can I do this. Please help me.

    Hi,
    1. Develop an RFC at the backend SAP system, which takes in 2 input ( plant and sub-plant) and gives the list of results as a table.
    2. Create a model in the WD Java application to call the RFC.
    3. call the rfc, get the output and print the result in a table designed in the view.
    There is a sample application which can be found here
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20java/wd%20tutorials/creating%20a%20web%20dynpro%20application%20accessing%20abap%20functions.pdf
    This does a similar application which you are trying to do. This takes in 2 input parameters from the user 'Departure city' and 'Arrival city' and prints the list if flights. If you go thru this sample application, you can develop urs very easily.
    You can even get the source code of this project in the following link
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/28113de9-0601-0010-71a3-c87806865f26?rid=/library/uuid/49f2ea90-0201-0010-ce8e-de18b94aee2d#15 [original link is broken]
    Click 'download from SDN' in the link above.
    Hope this helps you
    Regards,
    Sharadha

  • Abap Proxy to Send RFC  data  -- xi - File    ,   how to do - pls help  ?

    Hi Friends ,
                           Our scenario is once in day an  RFC is to be triggered and create flat file .That RFC will return data .
       Using  below likns i have configured the RFC Sender adapter
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    First Activate the ABAP Proxy?
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    How to implement a Client Proxy?
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    My question is
    <b>     1.    Is it possible to use ABAP Client proxy   to achive this ?
          2.   Then do we need to write RFC Call in side this proxy call ?
          3.      If we go for proxy do we need RFC Sender Adpater ?</b>
            I am little confused can you please explain , as how it works ?
    <b>       Is there is any other way to trigger RFC to send data ?</b>
    Regards.,
    Shyam

    Hi sabrish ,
                          Tahnks for ur reply. I was waiting for ur response . i have doubt
    the foloowing code i got from ur blog .
    REPORT Z_TEST_RFC_XI_WEBSERVICE.data: lv_distance type char10.CALL FUNCTION 'Z_WEBSERVICE_TEST_SHABZ' <b>destination 'Z_WEBSERVICE' </b> EXPORTING FROMZIP        = '12222' TOZIP          = '22222' IMPORTING  DISTANCE       = lv_distance.write : 'Distance is : ' , lv_distance.
      <b>           1. i have to generate proxy from Out bound interface right ? inside that proxy class whare i have to in clude the code to call rfc ?
                  2. Can u please tell what is the Destination in that report.  What is z_webservice ?</b>
                  3 . Do we need to use RFC Sender adapter ? It is not related to proxy right ?
    Regards.,
    Shyam
    null

  • RFC Data to XI, using Proxy ?

    Hi,
    We have SAP R/3 with WebAs 620. I did go through blogs on SDN to use RFC adapter to push data using RFC( Function Module data ) to XI. But i do not see any messages in XI.
    I think our option now is to use proxies and i need help with that.
    Can i create ABAP proxy on WebAs 620?
    Can i create ABAP proxy on SAP R/3 and JAVA proxy on SAP XI and make the communication ?
    thanks
    Udai

    Hi,
    first of all, why are you going to Proxy ? Where is the error ? did you go thru error analysis for the RFC message not being populated into XI?
    <i>Can i create ABAP proxy on WebAs 620?</i>
    >>>yes with plugins for more on-
    http://help.sap.com/saphelp_nw2004s/helpdata/en/86/58cd3b11571962e10000000a11402f/content.htm
    this blog will help u on patch-/people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    <i>Can i create ABAP proxy on SAP R/3 and JAVA proxy on SAP XI and make the communication ?</i>
    >>>You are going to create ABAP proxy in the SAP application systems only i.e R/3.
    Why do u need java proxy ? btw, what is your scenario ?
    Rgds,
    Moorthy

  • RFC Data not sending to Destination ( com.sap.aii.af.rfc.afcommunication.Rf

    Hi Experts,
             i have created a TCP/IP connection in sm59 as ID4 with R/3 details. now i am calling a function module like this.
      call function 'Z_CBT_RFC_SALESPERSON'
           exporting
                p_sdate       = p_sdate
                p_edate       = p_edate
           tables
                isalesperson  = i_salesperson
           exceptions
                no_data_found = 1
                others        = 2.
      if sy-subrc <> 0.
        message e111(zi) with text-101.
      endif.
      if not i_salesperson[] is initial.
        call function 'Z_CBT_RFC_SALESPERSON' in background task destination
                                                 'ID4'
             exporting
                  p_sdate      = p_sdate
                  p_edate      = p_edate
             tables
                  isalesperson = i_salesperson.
        write: text-103.
      else.
        message e111(zi) with text-101.
        exit.
      endif.
      commit work .
              i am getting a problem that some times the data is exported to XI system but some times not.
            and in sm58 i am getting an error message for this execution as
    KOMMP2       Z_CBT_RFC_SALESPERSON         ID4           05/28/2007 02:30:10 <b>Commit fault: com.sap.aii.af.rfc.afcommunication.R</b> 95B7F6ADB04C465A8502002E brcpfd04 SE38 ZSIOPSP                                 105  0000
    Commit fault:
    com.sap.aii.af.rfc.afcommunication.RfcChannelMismatchExcept
             For all execution iam getting this error. Anyone call tell me how to resolve this issue.
              Please suggest me, do i need any modification in the program and in connection settings.please do the needful as soon as possible.points will be awarded for all answers.
    Thanks in advance.
    Thanks & Regards,
    Poorna

    Hi Sergio,
             Actually we are using the same connections for all the interfaces the we are developing in development system, and XI guys are using the same Program-ID in all their interfaces to configure.
             So when we are triggering the interface, some times the messages are going to XI, but sometimes no data is going.
             and let me know, if any more settings are required in sm59.
    Thanks & Regards,
    Poorna.

  • Inbound RFC Data / Duplicate Note Texts

    Hello,
    Question: Is there a way for me to view the contents which have already been passed to an RFC in CRM (5.0) from Portal?
    Background:  We are experiencing an issue with duplicate note texts when displaying opportunity notes in Portal.  Note texts are being populated by an RFC call which in turn calls BAPI_BUSPROCESSND_CHANGEMULTI.  We are not able to recreate the issue in any test enviorment.  We are only able to identify the issue after it has already occurred in PRD on almost a daily basis. 
    As this appears to be a random occurance, I am hoping to compare the data passed to the RFC for a successful & errored example to identify any discrepancies in the data passed to the RFC.
    One thing I have noticed is that the duplicate texts appear to be occuring when a date/time stamp is not included at then end of the TEXT field of STXH, but have not been able to determine why a date/time stamp is added in one instance and not another.
    Any input would be greatly appreciated.  Thanks!

    Hi Mats,
    I have the same problem. As I work-around, I added the following code to the transfer routine for 0TCTPRCSVAR in InfoSource 0TCTPRCSVAR_TEXT.
      DATA: l_str TYPE sobj_name.
      l_str = TRAN_STRUCTURE-objnm.
    * Begin Note 1134138 3/23/2008
    *  IF ( STRLEN( l_str )  > 30 ).
      IF ( STRLEN( l_str )  > 10 ).
    *  End  Note 1134138
        RESULT = TRAN_STRUCTURE-objnm+10(30).
      ELSE.
    * Multiple records with process variant type = LOADING and
    * blank process variant name caused duplicate record errors
    * during load. This code prevents the duplicate records by
    * forcing a delay and plugging a time stamp into the process
    * variant name.
        IF TRAN_STRUCTURE-TXTSH IS INITIAL.
          CALL FUNCTION 'RFC_PING_AND_WAIT'
            EXPORTING
              SECONDS      = 2.
          CONCATENATE 'DUP_RECORD_ERROR_' sy-timlo
            INTO RESULT.
        ENDIF.
      ENDIF.
    * returncode <> 0 means skip this record
      RETURNCODE = 0.
    * abort <> 0 means skip whole data package !!!
      ABORT = 0.
    It's not very elegant, but it seems to solve the duplicate record error. Periodically, I delete the 0TCTPRCSVAR master data that contains string "DUP_RECORD_ERROR.'
    Isn't SAP grand!!
    Hope this helps.
    Regards,
    D&C

  • HTTP - RFC data problme

    Hi Guys,
    I have configured HTTP - RFC and i tested with Http cleint tool and i got the sucess return code. I saw in RWB and sxmb_moni and everything is ok.
    I have seen the response xml to the third party system and there are some fields where the data is not populated.
    what could be the reason and do i need to see the rfc parameters on the sap side in that specific function module.
    help would be appreciated
    Thanks,
    srini

    Hi Sreenivas,
       If the RFC is not returning the values, then what you do is:
      Map the node of the target which is having 0 to Unbounded with one of the mandatory parameter (of the source, which will definitely occur). In this way, atleast you will get empty fields but the complete structure as you require in the output. Just, check this one and let me know.
    Thanks,
    Adithya K
    SAP Practise,
    [email protected]
    Note: Don't forget to reward points if it is useful.

  • JDBC to RFC data is not showing in RFC palyoad

    Hi,
    I am doing JDBC to RFC scenario. I configured the scenario while i executed the scenario JDBC communication chennal i can see the payload and its picked the data orom Oracle.
    when i check in SXMB_MONI message showing scucess and request for message mapping i can't see any data in payload.
    I am tried to use the Test coniguration and its showing success and its connected to RFC but while running the scenario the data is not in payload.
    RFC communication chennal also showing green and when i click the message in payload i could't see any data.
    Pls help me on this
    Thanks,
    Venkat

    Hi,
    I have checked the sxmb_adm the Logging=1 and server restarted even the same msg.
    I have checked the runtime workbench the msg showing success and when i click the details the payload is empty.
    I have tested the scenario through ID with mapping
    this is the payload from SXMB_MONI
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:mt_bc_tran_sender xmlns:ns="http://testxi.com/oracle/test">
    - <row>
      <SET_ID>6</SET_ID>
      </row>
      </ns:mt_bc_tran_sender>
    Request message mapping
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns1:_-BIC_-CQZOMD_ZL00004000 xmlns:ns1="urn:sap-com:document:sap:rfc:functions">
    - <DATA>
    -   </item>
      </DATA>
      </ns1:_-BIC_-CQZOMD_ZL00004000>
    I have tested in message mapping and Interface mapping its working fine
    Thanks,
    Venkat.

  • HOW to see RFC  data reached to r/3 system

    Hi,
      We have FILE to RFC scenario,now the data from file is reaching xi, i am able to c the data,now from xi to b/w we r calling rfc which dosent give any response(it just simply posts the data) so is there any transaction or some way (as in case of idoc's we have we02) where we can see that the data has reached the bw system.
    Thanks,
    Ven.

    Hi,
    What you can do is,
    1. Make sure the RFC is Remote Enabled.
    2. Make sure that you have the latest RFC imported in your XI system.
    3. User ID & Pwd is not locked.
    4. Check in Moni, if you get some kind of error abot your CC
    Regards,
    Sarvesh

  • CALL RFC DATA FROM TWO LINKED TABLES IN EXCEL VBA

    Hi,
    I am using Excel VBA to call information from tables in SAP.
    This is working correctly, however I now need to be able to call information from another table where the two tables are linked by a common data field.
    Example.
    The first table I have lists all items in stock and contains an article number. The second table contains all article numbers and their descriptions.
    I want to be able to call the first table but to have the article codes description on there aswell.
    Here is the code I am currently using.
    Sub GetTable()
    'Connect to SAP
    Dim sapConn As Object 'Declare variant
    Set sapConn = CreateObject("SAP.Functions") 'Create ActiveX object
    sapConn.Connection.System = "QA2"
    sapConn.Connection.client = "900"
    sapConn.Connection.user = "mbrough"
    sapConn.Connection.Password = "st34lh"
    sapConn.Connection.Language = "EN"
    If sapConn.Connection.Logon(1, False) <> True Then 'Try Logon
       MsgBox "Cannot Log on to SAP"
    End If
    'Define the table specifics
    Dim objRfcFunc As Object
    Set objRfcFunc = sapConn.Add("RFC_READ_TABLE")
    Dim objQueryTab, objRowCount As Object
    Set objQueryTab = objRfcFunc.Exports("QUERY_TABLE")
    objQueryTab.Value = "LQUA"
    Set objRowCount = objRfcFunc.Exports("ROWCOUNT")
    objRowCount.Value = "15000"
    Dim objOptTab, objFldTab, objDatTab As Object
    Set objOptTab = objRfcFunc.Tables("OPTIONS")
    Set objFldTab = objRfcFunc.Tables("FIELDS")
    Set objDatTab = objRfcFunc.Tables("DATA")
    'Set the condition and refresh the table
    objOptTab.FreeTable
    objOptTab.Rows.Add
    objOptTab(objOptTab.RowCount, "TEXT") = "LGTYP BETWEEN 'K01' AND 'K06'"
    'Set fields to obtain and refresh table
    objFldTab.FreeTable
    'Then set values to call
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "LGNUM"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "MATNR"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "WERKS"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "LGTYP"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "LGPLA"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "GESME"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "VERME"
    objFldTab.Rows.Add
    objFldTab(objFldTab.RowCount, "FIELDNAME") = "MEINS"
    If objRfcFunc.Call = False Then
       MsgBox objRfcFunc.Exception
    End If
    Dim objDatRec As Object
    Dim objFldRec As Object
    For Each objDatRec In objDatTab.Rows
       For Each objFldRec In objFldTab.Rows
          Cells(objDatRec.Index, objFldRec.Index) = _
                Mid(objDatRec("WA"), objFldRec("OFFSET") + 1, objFldRec("LENGTH"))
       Next
    Next
    End Sub
    The table which contains the article descriptions is called 'MAKT' and this table also contains the column 'MATNR' which is the article field.
    Many thanks,
    Mike

    Is there no way of connecting the tables within the code.
    IT won't give me access to SE11
    Thanks,
    Mike

Maybe you are looking for

  • 10.5.8 Finder no longer remembers open windows in FileVaulted home director

    I am having a strange problem since upgrading to 10.5.8 - in my FileVault home directory, the Finder no longer remembers which windows are open. Each time I log in, I get just a clean desktop no matter how many windows were open before. This does not

  • URGENT: Connecting BPC 10.0 with BI4.0, with Universe Design Tool

    Hi all, I have quite an urgent question that I need some guidance from all you SAP gurus on! Is it possible to connect BPC 10 to BI4 using Universe Design Tool? We are under the impression very few people have connected these pieces of software toget

  • IWeb Blog Entries - search, keywords, and categories?

    Hi all I've been looking around these forums and elsewhere for help on this, but not having much luck... I'm wanting to put a search box on to my iWeb site. I am not a MobileMe customer and therefore realise the default search field in iWeb will not

  • PowerBook Start Up & Wireless Issues

    I have been an avid Mac person for quite some time. I'm getting concerned because I used to have a ThinkPad for work and never had this many hardware issues. I have had this PowerBook 17" 1GHz for more than 2 years. When I try and start it the chime

  • HT201263 How to activate ipad3 bought from a previous owner

    My husband just bought an iPad 3 off craigslist.  The guy said it was restored to factory settings but it will not activate without the previous owners Apple ID and password.  Of course now he will not answer his call to get it.  Is there anyway arou