Quantcast
Channel: SCN : Unanswered Discussions - SAP Business One Integration Technology
Viewing all 373 articles
Browse latest View live

Sap b1 9.1 Pl8 Addon for Pharmaceuticals Mfg. pkg Quality Control and quality assurance

$
0
0

We are a pharmaceuticals company. We are looking for a solution for manufacturing, packing, quality control and quality assurance activities. Also looking for Track and Trace EPedigree solution on SAP B1.

 

Vipul


Where to Place the format control Document for File 2 B1 Scenerio

$
0
0

Hi Experts,

 

I am quiet new to B1if Development. I am trying to Build Txt file to B1 Sales Order Scenario. Everything I have set up But only i dont know where to Place the format Control document for the txt file. Can anyone help me?

 

Thanks.

dsv file Inbound format control Document

$
0
0

Experts,

 

I am very new to B1if Development . Does anyone can help me how to define format control document for dsv file Inbound and how to map it xform. Your help will be highly appreciated.

 

Thanks

dsv to Sales Order Creation with E-Mail and B1Message

$
0
0

Experts,


I am very new to B1if Development . I want to create dsv to SO with log, B1Message, E-Mail. Can anyone explain how to conclude all the scenerio and make it works.


Thanks.

b1if http request forbidden client authentication anonymous

$
0
0

Hi All,

 

I am trying the standard example 'Consuming B1if Webservices by Dotnet'. The problem is that in debugging I receive 'b1if http request forbidden client authentication anonymous'.

 

The source is the following:

 

Imports WindowsApplication1.B1ifWSTest  

 

PublicClassForm1

 

    PrivateSub btnGetDocList_Click(sender As System.Object, e As System.EventArgs) Handles btnGetDocList.Click

        Dim request As B1ifWSTest.GetDocListType = New B1ifWSTest.GetDocListType

request.TableName = "ORDR"

        Dim response As B1ifWSTest.GetDocsListResponseType = New B1ifWSTest.GetDocsListResponseType

 

        Try

Dim Service Asipostep_vP0010000144in_WCSX_comsapb1ivplatformruntime_INB_WS_CALL_SYNC_XPT_INB_WS_CALL_SYNC_XPTipo_procClient = _

Newipostep_vP0010000144in_WCSX_comsapb1ivplatformruntime_INB_WS_CALL_SYNC_XPT_INB_WS_CALL_SYNC_XPTipo_procClient

 

response = Service.ZGetDocList(request)



Needless tosay that Authentication is set to: No Authentication


Thanks,

Vangelis

B1if error running stored procedure

$
0
0

Hi

 

I'm trying to execute a stored procedure from b1if atom "call sql" but this give me an error:

<Msg xmlns="urn:com.sap.b1i.vplatform:entity">    <Body>        <Payload Role="X" id="atom5">            <Row xmlns="">                <BD>0010000110</BD>                <Script>execute [flexline].[falr_InsertHoras] '9837948-7', '101', '49:00', 'HORA NORMAL'</Script>            </Row>        </Payload>        <Payload Role="C" id="atom6" system="0010000110" mode="single" method="Automatic detection by key word(Automatic detection by key word)" plr="4" dbtype="SQL" blockExecution="false" compatibilityMode="true" delimiter=";" sql="execute [flexline].[falr_InsertHoras] '9837948-7', '101', '49:00', 'HORA NORMAL'" disable-output-escaping="false">            <SqlExceptions xmlns="urn:com.sap.b1i.adapter:jdbcadapter">                <SqlException>                    <ErrorCode>0</ErrorCode>                    <Message>com.microsoft.sqlserver.jdbc.SQLServerException: Unable to identify the table exec [flexline].[falr_InsertHoras] '9837948-7', '101', '49:00', 'HORA NORMAL' for the metadata.</Message>                    <SqlState/>                </SqlException>            </SqlExceptions>        </Payload>    </Body></Msg>

 

 

I used this atom before and have no problem with this"

Edit Credit card field mapping

$
0
0

Dear Experts,

 

Please advice how to edit/add new credit card type and its GL account value Cash register field mapping. Refer attached document.

 

Thank you.

SAP Customer Checkout Synchronization

$
0
0

Dear Experts,

 

The data is not synchronized and getting error message even after setting as per all guides from SAP help.

 

If anybody knows complete set-up steps, please share with us. There is no proper document for SCC to install and work.

 

Thank you in advance.

 

Best Regards,

Nagarajan K


Problems with a Java Class Call

$
0
0

Hi everyone!

 

I'm trying to call a Java Class since B1if but I have some problems with that. When I run my scenario step I get the next error BPE027 Could not get an instance for 'Callable'-class Further details: className:... I don't know what I'm doing wrong, I'm putting the .jar in the B1iXcellerator\WEB-INF\lib path, after do this I restarted the services. My class is this: 

 

package com.sap.utilidades.clases;

 

 

import com.sap.b1i.bizprocessor.*;

import java.io.File;

import java.sql.*;

import java.util.*;

 

 

public class SYS_CL_BuscaCarpetas implements Callable{

    public SYS_CL_BuscaCarpetas(){

    }

 

 

    @Override

    public boolean isThreadSafe() { return false; }

    @Override

  public boolean usesJDBC() { return false; }

    @Override

  public void mustDestroy() { }

 

 

    @Override

  public boolean call(Properties inProps, BizProcMessage inMsg, Properties outProps, BizProcMessage outMsg, Connection iConn, String jobID) throws Exception

  {

  String sRuta = inProps.getProperty("sRuta");

       String sFileName = inProps.getProperty("sNombre") + ".xml";

       

        if (sRuta.length() != 0 || sFileName.length() != 0) {

            String sRutaOK = FindDocument(sFileName, sRuta);

            byte data[] = (sRutaOK).getBytes("UTF-8");

            outMsg.setXMLMSGPayload(data);

        } else

            throw new Exception("No se Encontró Cadena de Entrada (Ruta)");

 

 

  return true;

  }

       

         public String FindDocument(String FileName, String Ruta){

       File f = new File(Ruta);

        if (f.exists()) {

            File[] ficheros = f.listFiles();

            for (File fichero : ficheros) {

                if (fichero.isDirectory()) {

                    String Separador = System.getProperty("file.separator");

                    // listarDirectorio(ficheros[x], Separador, FileName);

                    if (!"".equals(listarDirectorio(fichero, Separador, FileName))) {

                        return listarDirectorio(fichero, Separador, FileName);

                    }

                } else if (fichero.getName().equals(FileName)) {

                    return f.getPath();

                }

            }

        }

        else{

        return "No se encontró el directorio";

        }

       

        return "No se encontró el directorio";

    }

   

    public String listarDirectorio(File Directorio, String Separador, String FileName){

          File[] NFicheros = Directorio.listFiles();

        for (File NFichero : NFicheros) {

            if (NFichero.isDirectory()) {

                Separador = System.getProperty("file.separator");

                if (!"".equals(listarDirectorio(NFichero, Separador, FileName))) {

                     return NFichero.getPath();

                }

            } else if (NFichero.getName().equals(FileName)) {

                return NFichero.getPath();

            }

        }

        return "";

    }

   

}

 

I don´t know what is the problem, Could any help me with this???


I hope someone can help me...


thanks in advanced

updateWithSubDeletion Payload and Outbound

$
0
0

Hello Experts,

 

I'm currently try to delete Addresses from Business Partners and update them at the same step.

 

I've create a Atom "updateWithSubDeletion" and created a Payload with the updated BP Tags.

 

 

First Question: Do I need all available Segments or Fields? Or is it possible to use only a few fields which I want to update?

 

Second Question: Which kind of Outbound should I use?

 

 

Does someone has an example for me?

 

 

Currently I get: DI Error: (-5002) [OCRD.ListNum] , &apos,Linked value does not exist&apos,

 

 

Thanks and best regards

Sabine

Problems with http call

$
0
0

Hi experts!

 

 

I'm doing a scenario step to create a XML files with a http call. My step works well but I'm trying to send parallel http calls for do faster my proccess and here is the trouble. When 2 http calls come in at the same time I get this exception

 

com.sap.b1i.xcellerator.XcelleratorException: XCE001 Nested exception:

com.sap.b1i.xcl_file.FileAdapterException: FIE001 basePath or pattern is 'null'

java.io.IOException: El sistema no puede encontrar la ruta especificada

 

My scenario step is this

Sin título.png

 

I really need to send parallel calls but I don't know how control this. Could anyone help me?

Does anyone know if it exists a way to solve this?

 

I hope somebody can help me.

 

Kind regards,


Samuel

SAP Business one dasboard

$
0
0

Hi experts,

 

i have installed SAP business one integration framework successfully.

 

Connections are successful  as well. But if i tick the SAP Crsytal Dashboard Web portal and click on update i get the error below;

 

b1 dasboard.JPG

 

but on the web browser i get this too;

 

b1 dashboard web.JPG

 

Any help on how to solve the error?

Regards

Justice

B1 Object atom - Journal Entry

$
0
0

Hello

 

I am trying to create a journal entry using the B1 object processing atom.

 

My payload looks like this:

2015-08-21 12_10_33-Clipboard.jpg

The configuration of the atom looks like this:

2015-08-21 12_15_36-Remote Desktop Manager Free [BSK-DEV06].jpg

 

When I run the scenario i get this error message:

2015-08-21 12_25_36-Remote Desktop Manager Free [BSK-DEV06].jpg

Could anybody tell me what I am doing wrong?

 

Thank you!

 

 

Best regards

Bengt Skrettingland

Intercompany 2.0, UDF's & CRM

$
0
0

I'd welcome a discussion with any consultants who have had to capture UDF data or data from 3rd Party CRM solutions and replicate it across multiple databases using Intercompany 2.0.

 

What are the known pitfalls or challenges when capturing & replicating UDF or UDT data?

 

Thanks in advance
David

Keep Source files for CSV to B1 Scenerio

$
0
0

Experts,

 

I want to keep a copy of source file in separate folder after it processed. Please advise.

 

Thanks


integration between SAP B1 master data with third party CRM

$
0
0

Hi,

I have installed b1if and want to try integration between SAP B1 master data and third party CRM master data.

 

I want to try Item Master data or business partner master data between sap b1 and third party crm. I know the field names and table names in third party software.

 

Where can I find guide for this integration?

 

Thanks.

how create several documents in one minute?

$
0
0

Good Morning,

 

I have an scenary he sends information to SAP B1 from an intermediate database and create a document every minute.

 

How i can create many documents during one minute?

 

thanks for your colaboration.

B1if setup for SAP B1 9.1 HANA version

$
0
0

Hello Experts,

 

I am unable to do B1if setup in SAP B1 9.1 HANA verion. If any body share with me the complete setup manual, it will be really helpful for me.

 

Thanks,

Tapojyoti

Intercompany Error: The port specified with the given IPO-Step URI does not exist

$
0
0

Hi,

I'mtrying to configurea test environment.
Icreated twonewcompanies, withadd-on, andsettingthe intercompanylicense.
During thelandscape, when I try todeploy, Istep 'Initializing Solution Stege 1 – Validating DB Connection' tothenextmessage:

com.sap.b1i.xcellerator.XcelleratorException: XCE067

The port specified with the given IPO-Step URI does not exist: /Test.PMisc/com.cxs.b1i.ipo/ipo/DP.PMisc.ipo/PMisc#Xs(B1DI)


Someonecan help me?
Thanks

N

B1if B1 to DB scenario

$
0
0

Hi,

 

I want to create a scenario to insert/update master data say item master or business partner master from SAP B1 to external DB.

 

The external DB of third party CRM uses XML RPC.

 

So can I use XML RPC for B1 to DB scenario? Where can I find documentation?

 

Thanks.

Viewing all 373 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>