RPC E Server Fault SAP B1 8.8

Hi
I have written some code to import various documents, ie invoices, goods in from an ascii file
The customer occasionally gets the RPC E Server fault coming up
I looked in the forums and updated the message bar which seemed to help but for some reason they still seem to get it
Generally on larger import files
The code is fairly simple, I have enclosed a copy of an invoice import below to see if anyone can see any problems
Would a garbage collect help ?
Many thanks
Regards Andy
ps Not sure how to make code readable ?
                 While Not EOF(filenum)   
                    lc = lc + 1
                    'If lc Mod 5 = 0 Then
                    B1Connections.theAppl.SetStatusBarMessage("Importing line " & lc & " ....", BoMessageTime.bmt_Short, False)
                    'form.Items.Item("9").Specific.string = " " & lc
                    'End If
                    If EOF(filenum) Then GoTo end_imp
                    Input(filenum, custid)
                    If EOF(filenum) Then GoTo end_imp
                    Input(filenum, invnum)
                    If EOF(filenum) Then GoTo end_imp
                    Input(filenum, invdate)
                    Input(filenum, adamstockrot)
                    Input(filenum, qty)
                    Input(filenum, unitprice)
                    Input(filenum, salesval)
                    Input(filenum, vc)
                    Input(filenum, prodbandid)
                    Input(filenum, prodid)
                    Input(filenum, ordnum)
                    Input(filenum, credreason)
                    Input(filenum, invtype)
                    Input(filenum, rettostock)
                    Input(filenum, currcode)
                    Input(filenum, exrate)
                    Input(filenum, salescontrref)
                    Input(filenum, wh)
                    Input(filenum, salesanal)
                    Input(filenum, costval)
                    Input(filenum, salestype)
                    Input(filenum, invprodid)
                    Input(filenum, oauserprodid)
                    Input(filenum, qtyinvprod)
                    Input(filenum, rep)
                    custid = "C" & Trim(custid)
                    prodid = "P" & Trim(prodid)
                    ' check stock code exists
                    If credreason < 8 Then
                        recset.DoQuery("select * from oitm where itemcode = '" & prodid & "'")
                        If recset.RecordCount = 0 Then
                            'result = B1Connections.theAppl.MessageBox("Cannot find stock code " & prodid, 1, "Ok", "Cancel Import")
                            'If result = 2 Then Return
                            message("Line " & lc & " Error Cannot find stock code " & prodid)
                            GoTo nline
                        End If
                    End If
                    ' check customer exists
                    recset.DoQuery("select * from ocrd where cardcode = '" & custid & "'")
                    If recset.RecordCount = 0 Then
                        message("Line " & lc & " Cannot find bp " & custid)
                        GoTo nline
                    End If
                    ' see if new document
                    If invnum.Trim <> lastinv.Trim Then
                        ' save document
                        If lastinv.Trim = "" Then GoTo new_ord
                        lastbp = doc.CardCode
                        If doc.Add <> 0 Then
                            B1Connections.diCompany.GetLastError(errcode, errmsg)
                            'result = B1Connections.theAppl.MessageBox("Line " & lc & "-" & errmsg, 1, "Ok", "Cancel Import")
                            'If result = 2 Then Return
                            'Message("Error adding invoice/credit " & lastinvno & " " & errmsg & " file " & plpath)
                            message("Line " & lc & " Error adding pos inv/cr " & lastinv & " " & errmsg)
                            PrintLine(filenum2, docstring)
                        Else
                            'Message("Added invoice/credit " & lastinvno & " period " & period & " file " & plpath)
                            'B1Connections.theAppl.MessageBox("Added document")
                            ' find sap total
                            If Trim(lastdoctype) = "IN" Then recset.DoQuery("SELECT top 1 doctotal,doctotalfc  FROM OINV T0 where cardcode = '" & lastbp & "' order by docnum desc")
                            If Trim(lastdoctype) = "CR" Then recset.DoQuery("SELECT top 1 doctotal,doctotalfc  FROM ORIN T0 where cardcode = '" & lastbp & "' order by docnum desc")
                            If recset.Fields.Item(0).Value > 0 Then saptotal = recset.Fields.Item(0).Value
                            If recset.Fields.Item(1).Value > 0 Then saptotal = recset.Fields.Item(1).Value
                            message("Line " & lc & " Added pos inv/cr " & lastinv & " import total " & doctotal & " sap total " & saptotal)
                            'If Trim(invtype).ToUpper = "IN" Then add_pos_payment(lastinv, lc)
                        End If
new_ord:
                        ' create new doc
                        If invtype = "IN" Then
                            doc = B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oInvoices)
                        Else
                            doc = B1Connections.diCompany.GetBusinessObject(BoObjectTypes.oCreditNotes)
                        End If
                        ' need to check if service invoice
                        'If credreason >= 8 Then
                        'doc.DocType = BoDocumentTypes.dDocument_Service
                        'Else
                        doc.DocType = BoDocumentTypes.dDocument_Items
                        'End If
                        doc.CardCode = custid
                        doc.NumAtCard = invnum
                        doc.DocDate = CDate(invdate)
                        If exrate > 1 Then doc.DocRate = exrate
                        lastinv = invnum
                        doc.UserFields.Fields.Item("U_ORDER_NUMBER").Value = ordnum
                        doc.UserFields.Fields.Item("U_CF_ADAM_CNCY_CODE").Value = currcode
                        doc.UserFields.Fields.Item("U_INVOICE_TYPE").Value = invtype
                        doc.UserFields.Fields.Item("U_CREDIT_REASON").Value = CStr(credreason)
                        addlines = False
                        doctotal = 0
                        lastdoctype = invtype
                        docstring = ""
                    End If
                    ' add lines to document
                    If addlines Then
                        doc.Lines.Add()
                    End If
                    addlines = True
                    'If credreason < 8 Then
                    doc.Lines.ItemCode = prodid
                    doc.Lines.WarehouseCode = wh
                    doc.Lines.WarehouseCode = "01"
                    'End If
                    ' service invoice mod
                    If credreason >= 8 Then
                        doc.Lines.ItemCode = "PCR"
                        If vc = "0" Then doc.Lines.VatGroup = "O2"
                        If vc = "1" Then doc.Lines.VatGroup = "O1"
                        If vc = "2" Then doc.Lines.VatGroup = "O3"
                    End If
                    doc.Lines.Quantity = qty
                    ' map vat code
                    'doc.Lines.VatGroup = vc
                    'If qty > 0 And salesval > 0 Then
                    'doc.Lines.UnitPrice = CDec(salesval / qty)
                    'End If
                    doc.Lines.LineTotal = salesval
                    doctotal = doctotal + salesval
                    ' set user defined fields for line
                    doc.Lines.UserFields.Fields.Item("U_VAT_CODE").Value = vc
                    doc.Lines.UserFields.Fields.Item("U_PRODUCT_BRAND_ID").Value = prodbandid
                    doc.Lines.UserFields.Fields.Item("U_RETURN_TO_STOCK").Value = CStr(rettostock)
                    doc.Lines.UserFields.Fields.Item("U_SALES_CONTRACT_REF").Value = salescontrref
                    doc.Lines.UserFields.Fields.Item("U_COST_VALUE").Value = CStr(costval)
                    doc.Lines.UserFields.Fields.Item("U_SALES_ANALYSIS_ID").Value = salesanal
                    doc.Lines.UserFields.Fields.Item("U_SALES_TYPE").Value = salestype
                    doc.Lines.UserFields.Fields.Item("U_INVOICE_PROD_ID").Value = invprodid
                    doc.Lines.UserFields.Fields.Item("U_SALEPSYS_PROD_ID").Value = oauserprodid
                    doc.Lines.UserFields.Fields.Item("U_QTY_INVOICE_PROD").Value = CStr(qtyinvprod)
                    doc.Lines.UserFields.Fields.Item("U_REP_NUMBER").Value = CStr(rep)
                    ' map gl code
                    ' look for mapping table for group code
                    recset.DoQuery("select U_X_Code from [@CF_GL_2_REP] where U_POS = 'POS' and U_REP = '" & rep & "'")
                    If recset.RecordCount = 1 Then
                        gcode = recset.Fields.Item(0).Value
                        recset.DoQuery("select RevenuesAc,salecostac,ARCMAct,ItmsGrpNam from oitb where ItmsGrpNam = '" & gcode & "'")
                        If recset.RecordCount = 1 Then
                            If Trim(invtype) = "IN" Then
                                doc.Lines.AccountCode = recset.Fields.Item(0).Value
                            Else
                                doc.Lines.AccountCode = recset.Fields.Item(2).Value
                            End If
                            If credreason < 8 Then doc.Lines.COGSAccountCode = recset.Fields.Item(1).Value
                        End If
                    End If
nline:
                End While
end_imp:
Edited by: Andrew Brooker on Nov 8, 2010 9:12 AM
Tried to make code readable,  doesn't seem to help ?

Hello Guys,
So basically let's do a skype conf in this topic, if you have time.......
locate me: janos.nagy.itelligence.
Garbage is managed automatically.... You do not need to release any com objects (memory), because if you are have any transactions  / data changes / cache movements you loose the data...
Please note: the most important is: compiler is able to manage the memory when you have a clear definition....
The problem is always the loop. How to manage the (DI API and other) objects memory inside the loop to not get run to the sky, and hold in a manageable situation. It is not easy, but if you hold some major steps and rules, you are able to manage...
example:
bad
dim foo as object
do
  set foo = new object
loop
why?
Who will release the memory for object? declared outside  from a loop -> initilized inside the loop.... compiler will never free the object, so you will initilaize the previous object always-> eats memory....
correct
'version a
do
  declare foo as object
  set foo = new object
loop
'version b
function update_foo (list of params) as booelan
begin
declare foo as object
set foo = new object
... do operation here
gc,.collect()
end
'now you call update_foo
do
call  update_foo function and pass the params
loop
Some sample cases....
1. Creation of UDF-s / UDT-s  in a cycle:
task:  Never do it in one method or subrutine
- reason cannot release the Garbage in a transaction
- solution create a subrutine and inside code, where  you are able to manage the memory by the compiler automatically
2. update any Objects in a loop:
- never declare document as global for the metjod/subrutin
- reason unable to manage Garbage inside (which object to be released?)
- solution: declare the whole document inside the loop
so Andy,
in your code i see, that the document declared outside the loop, and initialized inside the loop. -> compiler will never release the com object  in a loop
Correct would be: apply sap note i have provided in the message and  and also change the declaration of document somewhere in your code
' create new doc
'-> insert the doc declaration here
so Sebastian,
I did not see your code, but if you separate the UDF creation into a method/subrutine.
if you using method b, the issue never happens....
I have tested a lot, each cases.... these solutions was always giving the correct way......
Regards
János

Similar Messages

  • RPC Server fault

    RPC Server fault .
    how to solve this problem.

    Hi Renga,
    in .NET you can have this error when you have somewhere an error in your code or your doing something wrong with XML.
    lg David

  • Copy file from FTP server to sap application server

    Hi,
    I am able to copy a particular file from FTP server to sap application server using FTP_CONNECT, FTP_COMMAND and FTP_DISCONNECT. But here my problem is, it copies into default application server path(DIR_HIOME). I want to copy into specified folder in the application server. How can I specify the required destination path.
    Can you please suggest how to achieve this.
    Thanks,
    Shiva Kankanala

    try something like this:
    data: user(30) type c value 'ftpuser', "ftp username
                  pwd(30) type c value 'ftppass', "ftp password
                  host(64) type c value '255.255.255.255', "ftp server IP
                  cmd1(80) type c value 'lcd /dump', "location on app server where you want to copy the file
                  cmd2(80) type c value 'get', "specifies you are going to get the file from ftp server
                  dest like rfcdes-rfcdest value 'SAPFTPA',
                  file(15) type c value 'file.txt'. "specifies file that you want to get from ftp server
    data: hdl type i,
            key type i value 26101957,
            slen type i.
    slen = strlen( pwd ).
    call function 'HTTP_SCRAMBLE'
        EXPORTING
          source      = pwd
          sourcelen   = slen
          key         = key
        IMPORTING
          destination = pwd.
    call function 'FTP_CONNECT'
        EXPORTING
          user            = user
          password        = pwd
          host            = host
          rfc_destination = dest
        IMPORTING
          handle          = hdl.
    call function 'FTP_COMMAND'
        EXPORTING
          handle        = hdl
          command       = cmd1
        TABLES
          data          = result
        EXCEPTIONS
          command_error = 1
          tcpip_error   = 2.
      loop at result.
        write at / result-line.
      endloop.
    CONCATENATE cmd2 file INTO cmd2 SEPARATED BY SPACE.
    call function 'FTP_COMMAND'
          EXPORTING
            handle        = hdl
            command       = cmd2
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        loop at result.
          write at / result-line.
        endloop.
        refresh result.

  • Fetching of multiple files from Application Server into SAP Program

    Hi All,
    I have a issue related <b>Fetching of multiple files from Application Server into SAP Program</b>.
    Actual issue is as below.
    In the <b>selection screen</b> of <b>my program</b> i will give <b>Application Server Path</b> as :
    <b>/PW/DATA/SAP/D1S/PP/DOWN/eppi0720*</b>
    Then the based on above input it should pick up all the files that are matching <b>eppi0720*</b> criteria.
    Suppose if i am having <b>5</b> files with above scenario, i have to fetch all those <b>5</b> files at a time and place in my SAP Program.
    All those 5 file's data should come into SAP at a time.
    Can anybody tell me how can we solve above issue.
    If any body has come across same issue please provide me with solution.
    Thanks in advance.
    Thanks & Regards,
    Rayeez.

    If you want to get around the authorization check, you can do something like this.
    report zrich_0001 .
    parameters: p_path type epsf-epsdirnam
                      default '/usr/sap/TST/SYS/global'.
    parameters: p_file type epsf-epsfilnam default 'CO*'.
    start-of-selection.
    perform get_file_list.
    *       FORM get_file_list                                            *
    form get_file_list.
      types: name_of_dir(1024)        type c,
             name_of_file(260)        type c,
             name_of_path(1285)       type c.
      data: begin of file_list occurs 100,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file_list.
      data: begin of file,
              dirname     type name_of_dir,  " name of directory. (possibly
                                             " truncated.)
              name        type name_of_file, " name of entry. (possibly
                                             " truncated.)
              type(10)    type c,            " type of entry.
              len(8)      type p,            " length in bytes.
              owner(8)    type c,            " owner of the entry.
            mtime(6)    type p, " last modification date, seconds since 1970
              mode(9)     type c, " like "rwx-r-x--x": protection mode.
              useable(1)  type c,
              subrc(4)    type c,
              errno(3)    type c,
              errmsg(40)  type c,
              mod_date    type d,
              mod_time(8) type c,            " hh:mm:ss
              seen(1)     type c,
              changed(1)  type c,
            end of file.
      call 'C_DIR_READ_FINISH'             " just to be sure
           id 'ERRNO'  field file_list-errno
           id 'ERRMSG' field file_list-errmsg.
      call 'C_DIR_READ_START' id 'DIR'    field p_path
                              id 'FILE'   field p_file
                              id 'ERRNO'  field file-errno
                              id 'ERRMSG' field file-errmsg.
      if sy-subrc <> 0.
        sy-subrc = 4.
        exit.
      endif.
    * Read the file list and add to internal table.
      do.
        clear file.
        call 'C_DIR_READ_NEXT'
          id 'TYPE'   field file-type
          id 'NAME'   field file-name
          id 'LEN'    field file-len
          id 'OWNER'  field file-owner
          id 'MTIME'  field file-mtime
          id 'MODE'   field file-mode
          id 'ERRNO'  field file-errno
          id 'ERRMSG' field file-errmsg.
        if sy-subrc =  1.
          exit.
        endif.
        append file to file_list.
      enddo.
    * Write out the file list
      loop at file_list.
        write:/ file_list-name.
      endloop.
    endform.
    Regards,
    Rich Heilman

  • Reading of File from legacy system into SAP Application Server using SAP XI

    Hi All,
      I have a file in <b>Legacy System with Exchange rates information data</b> i have to read that file using SAP XI process and put that file in SAP Application Server in SAP Specific Format and latter i have to use program RFTBFF00 to upload the file in the Application Server into SAP Tables.
      Can anybody tell me how can i do this with some example of same scenario.
      It would be better if anybody provides code example as i am new to SAP XI.
    Thanks in advance.
    Warm Regards,
    Rayeez.

    Hi Shaik,
    You need the access to the file system of ur legacy application and then you can follow this link for the required ifnormation
    File & Header
    Regards
    Vishnu

  • Query on integrating windows file server into SAP KM using WEBDAV

    hi
    I have sucessfully integrated windows file server into SAP KM using WEBDAV. I have query in it regarding the possible validation against the portal Database user. Can we configure such that the user comparison happens for LDAP as well as database user. Have anyone configured such a scenario?
    Regards,
    Ganesh N

    Hi Ganesh,
    this should work in principle.
    However you would need a user in Active Directory for each user in the portal database that should connect to the file server if you are using the SSO22KerbMap Module as I assume.
    In my whitepaper I have mentioned this for the internal user index_service that does only exist in the portal database.
    Best regards,
    André

  • Picking a IDOC Flat File stored in SAP R/3 Application Server by SAP PI

    Hi,
    Can SAP PI pickup a IDOC Flat File stored in SAP R/3 Application Server Directory and send it back as an Inbound IDOC.
    Scenario:
    We have a data in the EXCEL Sheet, which will be used to a fill an IDOC and the IDOC will be just save in the SAP R/3 Application Server Directory, but can not be triggered due to its peculiar behavior. Afterwards, SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server and send it back to the SAP R/3 as an Inbound IDOC.
    For Ref: IDOC does not have a Outbound Process Code, thus can not be triggered and send to SAP PI. It is always used as a Inbound IDOC in SAP R/3 system.
    Regards,
    Saurabh

    SAP PI should pole the SAP R/3 and pick up that IDOC Flat File from the R/3 Application Server
    If SAP PI = 7.11 --> /people/william.li/blog/2009/04/01/how-to-use-user-module-for-conversion-of-idoc-messages-between-flat-and-xml-formats
    send it back to the SAP R/3 as an Inbound IDOC
    why to send  some information again into R3 which it already has? cant some internal code in R3 read the info from excel and then update the IDOC directly?

  • Problems concerning "How to integrate MS Exchange Server into SAP EP"

    Hi,
    I want to realize the scenario in "How to integrate Microsoft Exchange Server into SAP Enterprise Portal" from the Microsoft-Website.
    We´re using SAP NetWeaver 04, SAP NetWeaver Portal 6.0.14.0.0 and KMC 6.0.14.2.0 and Microsoft Exchange Server 2000 SP3.
    I have created (as described in the document) the HTTP-System and a WebDAV RM. But the repository doesn´t appeaer in the KM-Content-iView.
    I checked the Component Monitor and got this error-message for "servers" (it was marked with a red square)
    last-error-3   2006-05-16T13:12:11Z: PROPFIND /public: 401 Access Denied
    last-error-4   2006-05-16T13:15:04Z: PROPFIND /public: 401 Access Denied
    last-error-6   2006-05-16T13:26:35Z: PROPFIND /public: 401 Access Denied
    errors   8
    last-error-2   2006-05-16T13:12:10Z: PROPFIND /public: 401 Access Denied
    requests   8
    last-error-7   2006-05-16T13:26:35Z: PROPFIND /public: 401 Access Denied
    bytes-per-second   0
    successes   0
    response-average   194
    last-error-1   2006-05-16T13:11:55Z: PROPFIND /public: 401 Access Denied
    last-error-0   2006-05-16T13:11:54Z: PROPFIND /public: 401 Access Denied
    last-error-5   2006-05-16T13:15:05Z: PROPFIND /public: 401 Access Denied
    failures   0
    Any idea, what´s wrong? And how to solve the problem.
    Thanks for help,
    Sven
    Message was edited by: Sven Keller

    Hi James,
    How can I check the KM ACLs/Security Zones?
    I had a look on "System Administration - System Configuration - Knowledge Management - Content Management - Repository Managers - Security Manager - WebDAV ACL Security Manager".
    There was just "WDAclSecurityManager" and the Permission Rendering Class was "com.sapportals.wcm.control.acl.ResourcePermissionControl".
    Or where do I have to look for the ACL?

  • How to connect Client to server in SAP B1 8.8

    Hi All,
    how i can connect client with  other server in sap B1 8.8
    Plaese tell me the way
    Thanks

    You  may check these threads:
    Re: XL Reporter and SQLEXPRESS: unable to connect to XL Reporter
    Re: 8.8 Annoying licence-server switching
    Thanks,
    Gordon

  • Change server in SAP B1 8.8

    Hi Experts,
    I have installed 2 server at my client place, 1st one is Live server and 2nd one is test server.
    I am using client on my laptop and if i want to change the server, could not able to find change server button on change company form, earlier it was available in SAP B1  2007.
    Is there any other option to change the server in SAP B1 8.8
    Thanks in advance,
    Regards
    Kamlesh Vagal

    >
    senthilnathan murugesan wrote:
    > Hi ,
    >
    > You Just Dis Connect Your Test Server from  LAN.
    >
    > And Open Your SAP Business one  8.8 Client.
    >
    > This Time It Will asks for License server Name.
    >
    > Here You can give your Live Server Name!
    >
    > Hope This one  Would Helps You.
    >
    >
    > Regards,
    >
    > M.Senthilnathan
    It worked thank you
    Edited by: Marc Roussel on Aug 4, 2010 2:51 PM

  • Fetch the data from the tables in the SQL 2005 server to sap R/3.

    Hi Experts,
    We need to fetch the data from the tables in the SQL 2005 server to sap R/3.
    Please explain which will be the best approach to fetch the same and how to do it. Sample program can greatly help.
    << Please do not offer points >>
    Regards,
    Shobana K
    Edited by: Rob Burbank on Sep 21, 2010 2:36 PM

    Hi,
    Try NATIVE SQL statements in your abap code otherwise you can try to establish jdbc connection from ABAP program.
    search in SDN for samples!
    Suresh

  • PDF file transfer from File server into SAP

    Hi,
    I need to get the PDF file which exists in the File server into SAP using XI in any format so that I can convert into required form in SAP but the file exists in PDF format in File server or any method other than XI .Is it possible to do it through XI if so please explain me the procedure.
    Answers will be appreciated with points.
    Thanks,
    Ramesh.

    Hi Ramesh,
        In addition to above reply, also go through these blogs whcuh also talk about ADF Conversion:
    <a href="/people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield:///people/william.li/blog/2006/03/17/how-to-get-started-using-conversion-agent-from-itemfield
    <a href="/people/sap.user72/blog/2005/07/27/xi-generate-pdf-file-out-of-file-adapter:///people/sap.user72/blog/2005/07/27/xi-generate-pdf-file-out-of-file-adapter
    Regards,
    Subhasha Ranjan

  • Publishing XI exposed webservices in the UDDI Server of SAP WAS JAVA 640

    Hi Friends,
        I have a question regarding publishing a WSDL created via XI (Integration Directory) to a UDDI Server of SAP WAS JAVA 640. Can I publish the WSDL generated from XI in the UDDI Server provided as a part of SAP WAS 640 ?  I know that the WSDL will be specific  for a client( sender) but I feel that its better than emailing the WSDL to the client after generating it in the integration directory. Any relevant documents, links explaining how to do that will be appreciated.
        The above question was asked by Siva Maranani before. His question was as below .
    "I know that whenever a webservice is developed using NDS it can be deployed in WebAs and the same can be registered in UDDI ( webAs acting as UDDI registry).
    Now my requirement is to register a WSDL file (which describes) for an external webservice. Can WebAs be used as a UDDI registry..?
    I like to know if this is possible or not..? if yes.. how..?"
    Waiting for the reply...
    Thanks & Regards,
    Mathew

    Hi Naveen,
               Thanks for the quick response. I tried the steps mentioned in the link.
    1. Successfully created a new local UDDI registry in SAP WAS..
    2. Assigned users etc.
      The place I am getting stuck is..
    "Make sure that the Web Service Definition has already been created and configured".
    I have a WSDL document created via Define webservice in the XI integration directory.(We are successfully able to call the webservice using this WSDL via .net & xmlspy)
    Where should I upload this WSDL ? so that the users will able to download/reference it w/out myself emailing to them.We dont/won't have NDS installed in our landscape.
    I understand that whenever a webservice is developed using NDS it can be deployed in WebAs and the same can be registered in UDDI ( webAs acting as UDDI registry).
    The requirement is to register a WSDL file generated via XI w/out using NDS.
    Did you able to  publish a WSDL file generated via XI in the local UDDI w/out using NDS ?
    waiting for your reply
    Thanks a lot,
    Mathew

  • Lumira Server on SAP HANA Cloud Platform?

    Hi,
    Can we run Lumira Server on SAP HANA Cloud Platform (not SAP HANA)?
    Reason:
    Unless there is a way to publish Lumira Story via Lumira Cloud to BI LaunchPad, otherwise I am only interested in the Lumira Desktop version at the moment. As we want to continue to pursue to have one central portal for all BI contents using BI LaunchPad.
    Question:
    In summary, is it possible to apply SAP Lumira Server on SAP HANA Cloud Platform?
    See screenshots below for the ideal scenarios.

    Hi Ken,
    Great question.
    Yes, absolutely you can.
    As an example: I work with some customers who have small Hana estates "on-premise" (say, for Fraud on Hana, or BW HANA sidecar); as such they may not have the available infrastructure to decouple a sandbox Hana to evaluate new Hana Analytics innovations (like Lumira Server)
    In such situations I recommend this page http://hcp.sap.com/platform.html  to evaluate our Hana Cloud platform options.
    If you scroll half-way down, you'll see a nice graphic under the heading "Choose the Service That's Best for You". (the 3 stacked pillars)
    Depending on your own licensing particulars, you may already have a runtime license for Lumira Server (through your BI bundle), and you may already have HDB (database) licenses available in your enterprise, so potentially you need only the 'infrastructure service' (leftmost chart).
    Then, I've seen this integrated into productive on-premise systems, typically (but optionally) via a "leased line" (between customer & provider (SAP)) , and a VPN tunnel in between to make the secure bridge.
    It's a really neat way to get on the Hana journey: quick to deploy, flexible, and well priced.
    Regards,
    H

  • Using SAP Content Server for SAP E-Recruitment

    Hi SAP Experts,
    We are presently implementing SAP E-Recruitment using BSP services, We are successfully runnig with Whole E-recruitng cycle when we use SAP system DB as storgae for External Candidtes' Documents.
    But, Our Client wants to have SAP Content Server to store all documents uploaded by External/Internal Candidates becuase client is worrying that if SAP system DB holds such huge data base of Resumes, it may slow down the performance of SAP System.
    So, We need inputs from you suggesting whether is it feasible to use SAP Content server for SAP E-Recruitment Implementation. SAP no where suggests to Content server. So, we are in deliema to go for content server or not. If it is feasible to use Content server, pls provide me proper links or documents for reference.
    Please give your valuable inputs,
    Thanks & Regards,
    Sudheer Kumar P

    Hi Sudheer,
    We are considering the same option.  We are concerned about performance after all these documents are uploaded too.  Did you install a content server?  How did it go and was it difficult to set up with e-rec?
    Thanks
    Shane

Maybe you are looking for

  • Trying to move iPod library to an external hard drive

    Okay I am totally confused and hope that some of you can help me. I have a 60GB iPod and a few months ago I tried to move my library to an external portable hard drive (so it wouldn't take up so much room on my computer hard drive) using the instruct

  • How do I connect my Mac Desktop to my work windows

    how do i connect my Mac desktop computer to my work windows computer

  • SQL developer 3.1 in schema browser doesn't show package body

    Hi, When i search a package with schema browser, i can't see the package body of other owner, the menu "edit body" is disabled. My user as select any dictionary et select_catalog_role When i connect with a DBA's user, i can see all. I'am on windows w

  • Report Distribution - Email Server Question

    Hi guys. I need to know if anyone is using the "Offline Distribution Wizard" for emailing reports? We run BPC v5.1, and have an issue with sending these emails. Basically, we have an email server, to which all of our clients connect.  However, this c

  • Mirror folder hierarchy

    Hi, I want my CWS to mirror the source repository structure. I used the DB CWS example to start my development. When I created a crawler, I never see the option to "Mirror folder hierarchy" or "Import security...". Is there something that I should ch