Quantcast
Channel: SCN : All Content - Data Services and Data Quality
Viewing all 4013 articles
Browse latest View live

Salesforce.com connection problem with BODS 4.1

$
0
0

Hi,

 

We are trying to connect to Salesforce.com via the Saleforce adapter of Business Objects Data Services 4.1 (14.1.1.0). 

After configuring the adapter, we created a datastore, but we are unable to see the tables. 

We checked the proxy and are able to connect to the webservice via SOAPui on the server.

We also tried different end-points:

https://test.salesforce.com/services/Soap/u/21.0

https://test.salesforce.com/services/Soap/u/28.0

 

This is the error we get in the logs:

 

29/05/13 9:11:46 There was a communication error when talking to Salesforce.com: Connection timed out: connect

29/05/13 9:11:46 Error browsing root nodes. Xml generated so far: []. com.acta.adapter.salesforce.exceptions.CommunicationFailureException: There was a communication error when talking to Salesforce.com: Connection timed out: connect

at com.acta.adapter.salesforce.SForceMetadata.describeGlobal(SForceMetadata.java:47)

at com.acta.adapter.salesforce.metadata.SForceBrowsing.getRootNodes(SForceBrowsing.java:70)

at com.acta.adapter.sdk.AdapterRunnerImpl.processBrowseRoot(AdapterRunnerImpl.java:2304)

at com.acta.adapter.sdk.AdapterServiceDataListener.handleBrokerMessage(AdapterServiceDataListener.java:104)

at com.acta.brokerclient.BrokerClient.handleMessage(BrokerClient.java:448)

at com.acta.brokerclient.BrokerClient.access$100(BrokerClient.java:53)

at com.acta.brokerclient.BrokerClient$MessageHandler.run(BrokerClient.java:1600)

at com.acta.brokerclient.ThreadPool$PoolThread.run(ThreadPool.java:100)

 

Any help is appreciated.

 

Tom


Query for option to open multiple instance of BODS client application ans server

$
0
0

Hi,

 

We have a requirement of opening multiple instance of BODS client application of a BODS server. By this we mean to open multiple client instances of BODS application while we are logged into a remote or local server. We are unable to do so while working in a remote server.

 

Is this option feasable in BODS where some properties can me set in management console to allow to open multiple instances?

 

Please let us know your inputs.

Cleansing Package XI3.2

$
0
0

Hi all

 

I just installed BODS XI3.2 cleansing package, i tried to create a reporsitory with it on mysql but came up with an error "The cleansing package repository does not exist."

Function to Remove special characters from a word and convert non English letter to English letter based on the ASCII value

$
0
0

This function will help you to remove all special characters from a word expect space .The output will contains only the alphabets a-z A-Z and space. The other characters and number will be removed from the word. It also help you to convert non English word into corresponding English word based on the ASCII values. Please find below given example. ÀÁÂÄÃÅ are non English(Latin) characters will convert into corresponding English character A.

  1. e.g. ÀŠGÄR@# to ASGAR And àšgär()\/ to asgar

Please find below code.

 

#$LV_OUTPUT_WORD : Output Word after convertion.

#$LV_LNGH_WORD : To get the characters one by one.

#$GV_SNGL_LETTER : Each character of a word.

#$P_INPUT_WORD : Input Word passed using this parameter.

$LV_OUTPUT_WORD = NULL;

$LV_LNGH_WORD = 1;

WHILE ($LV_LNGH_WORD <= length($P_INPUT_WORD))

BEGIN

$GV_SNGL_LETTER=SUBSTR ($P_INPUT_WORD,$GV_LNGH_WORD,1);

IF((ASCII( $GV_SNGL_LETTER) >= 65 AND ASCII( $GV_SNGL_LETTER) <= 90 ) OR (ASCII( $GV_SNGL_LETTER) = 32 ) OR (ASCII( $GV_SNGL_LETTER) >= 97 AND ASCII( $GV_SNGL_LETTER) <= 122))

BEGIN

$GV_SNGL_LETTER = $GV_SNGL_LETTER;           

END

ELSE IF((ASCII( $GV_SNGL_LETTER) >= 210 AND ASCII( $GV_SNGL_LETTER) <= 214) OR ASCII($GV_SNGL_LETTER) = 216)

BEGIN

$GV_SNGL_LETTER = CHR(79);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) >= 242 AND ASCII( $GV_SNGL_LETTER) <= 246)

BEGIN

$GV_SNGL_LETTER =  CHR(111);              

END

ELSE IF (ASCII( $GV_SNGL_LETTER) >= 192 AND ASCII( $GV_SNGL_LETTER) <= 197)

BEGIN

$GV_SNGL_LETTER = CHR(65);  

END

ELSE IF (ASCII( $GV_SNGL_LETTER) >= 224 AND ASCII( $GV_SNGL_LETTER) <= 229)

BEGIN

$GV_SNGL_LETTER = CHR(97);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) >= 200 AND ASCII( $GV_SNGL_LETTER) <= 203)

BEGIN

$GV_SNGL_LETTER = CHR(69);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) >= 232 AND ASCII( $GV_SNGL_LETTER) <= 235)

BEGIN

$GV_SNGL_LETTER = CHR(101);               

END

ELSEIF(ASCII( $GV_SNGL_LETTER) >= 204 AND ASCII( $GV_SNGL_LETTER) <= 207)

BEGIN

$GV_SNGL_LETTER = CHR(73);  

END

ELSEIF(ASCII( $GV_SNGL_LETTER) >=  236 AND ASCII( $GV_SNGL_LETTER) <= 239)

BEGIN

$GV_SNGL_LETTER = CHR(105);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) >= 217 AND ASCII( $GV_SNGL_LETTER) <= 220)

BEGIN

$GV_SNGL_LETTER = CHR(85);

END

ELSE IF(ASCII( $GV_SNGL_LETTER) >= 249 AND ASCII( $GV_SNGL_LETTER) <= 252)

BEGIN

$GV_SNGL_LETTER = CHR(117);

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 241 OR ASCII( $GV_SNGL_LETTER) = 209 )

BEGIN

$GV_SNGL_LETTER = CHR(110);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 199)

BEGIN

$GV_SNGL_LETTER = CHR(67);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 231)

BEGIN

$GV_SNGL_LETTER = CHR(99);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 209)

BEGIN

$GV_SNGL_LETTER = CHR(78);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 241)

BEGIN

$GV_SNGL_LETTER = CHR(110);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 221 OR ASCII( $GV_SNGL_LETTER) = 159)

BEGIN

$GV_SNGL_LETTER = CHR(89);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 253 OR ASCII( $GV_SNGL_LETTER) = 255)

BEGIN

$GV_SNGL_LETTER = CHR(121);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 142)

BEGIN

$GV_SNGL_LETTER = CHR(90);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 158)

BEGIN

$GV_SNGL_LETTER = CHR(122);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 138)

BEGIN

$GV_SNGL_LETTER = CHR(83);  

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 154)

BEGIN

$GV_SNGL_LETTER = CHR(115);               

END

ELSE IF(ASCII( $GV_SNGL_LETTER) = 131)

BEGIN

$GV_SNGL_LETTER = CHR(102);               

END

ELSE

BEGIN

$GV_SNGL_LETTER = NULL;       

END

$GV_LNGH_WORD = $GV_LNGH_WORD+1;

$GV_OUTPUT_WORD = $GV_OUTPUT_WORD||$GV_SNGL_LETTER;

END

RETURN $GV_OUTPUT_WORD;

 

This is code that will remove all special characters and convert non English (Latin) word to corresponding English word based on the ASCII value.


Regards

Asgar

SAP BODS Server Manager is not started (BODI-310204)

$
0
0

Hello All,

 

I'm Using SAP BODS 3.2.

 

Permanent license is entered and validated.

 

All BODS applications start fine, except for BODS Server Manager.

 

It gives following error:

 

The base keycode for the Data Services platform was not found or has expired.

Obtain a valid keycode and use the License Manager to update your installation (BODI-310204).

 

 

I've searched othere topics, all of them face second error with management console - XML error... but I don't have one and can start Management Console fine.

 

Due to my job server suddenly started giving error: Job Server SRV00V55:3500 is not accessible. Connection refused: connect - I want to resync it with repository.

 

Can anyone advise how to fix issue with Server Manager?

Case transform target file not shown in the given root directory

$
0
0

Hi there,

 

Using Case transform in SAP BODS designer, tried creating cases for employee table.

 

Unable to find the target records for 3 cases in the target directory thought the job is been executed successfully.

Performance: in-memory cache is used instead of pageable

$
0
0

Hi,

 

I have a dataflow which contains a nested schema (XML extraction)

When I execute the job I see in the log that in-memory cache is used because there is a nested schema. The problem is that after few minutes the memory gets to 99% usage (23.2GB out of 24GP) and the process is very slow.

 

Is there a way to improve the performance?

 

Thanks,

Amir

Multiple instance for BODS client application

$
0
0

Hi,

 

We have a query for requirement of opening multiple instance of BODS client application and server working in remote server or local. We need if this option is feasible in BODS modifying any properties in BODS Management Console.

 

Please let us know your inputs.


RISTRA20 Job generating the huge amount of logs

$
0
0

Dear Experts,

 

Recently we have done kernel upgrade 7.20, after kernel upgrade Production system generate high volume of redo log files When run Ristra20 job in background . Could you please provide the solution.

 

DB - ORACLE10g

OS - HP-UX

 

Regards,

 

N S Rathore

Match transform Edit options are not working

$
0
0

Hi ,

 

I am using Data Services 4.1 SP2 .  I tried use match transform but when I am clicking on edit options  I am not getting edition option window. I tried with re-installed in repair mode and created repository but still I am not getting edit options .

 

Thanks & Regards,

 

Ramana.

Program /FLDQ/AD_REPT_LOAD_COUNTRIES doesnt exist and Region_short.txt not found

$
0
0

Hi Folks,

 

               I am in Process of carrying out DQM Installation ,I am facing 2 issues.

               Here are few details about the installation.

               DQM installation for sap 4.1 SP1 (the upgrade was recently done from 4.0 to 4.1 SP1).

               Address Engine which is enabled Address Engine USA.

               The issues are as follows:

               1.The program  /FLDQ/AD_REPT_LOAD_COUNTRIES which Loads supported country doesn't exist in SAP .

                    so i am unable to carry out further task that is Run Run Quarterly Adjustments report.

                2. When I am trying to execute the real time job  Job_Realtime_DQ_SAP_Get_Region_Data  in data services

                      I am getting an Error Region_short.txt file not found.

                  

                If anyone has any suggestions along these lines it would be most helpful.

 

                Thanks and Regards,

                 Lakshmi.

    

Hi , i have a query for Business Object Data Services (BODS)

$
0
0

Hi Guys,

Can anybody send  me the link ,or can drop on my mail, the architecture diagram for BODS 4.1 .

What i am precisely looking for is inclusion of Data Quality Module in the diagram, and where does it resides in the diagram.

Also , a brief description for each module would be appreciated.

 

My mail id <removed by Moderator>   

 

Thanks,

Mayank

 

Message was edited by: Moderator

Data Services return codes

$
0
0

Hi.

 

I'm having a problem with AL_RWJobLauncher in Data Services 4.0.

Sometimes the return code is -1 ... According to the documentation it means error but the job finishes without an error/warning.

 

Regards,

Haraldur Gunnarsson

How to extract info from Oracle using DataServices 4

$
0
0

Our environment

     Suse linux 11

     Data Services 4 SP 3

 

 

Oracle  11.2.0.3

 

 

our env

 

 

LINK_DIR <instal>/dataservices

 

 

LD_LIBRARY_PATH ${LINK_DIR}/bin:${LINK_DIR}/DataDirect/odbc/lib:<instal>/sap_bobj/enterprise_xi40/linux_x64/odbc/lib

 

 

ODBCINI <instal>/dataservices/DataDirect/odbc/odbc.ini

 

 

   

questions:

 

 

whats the correct driver?

how to install driver?

how to create the connection?

how to test it?

 

 

regards

What are the prerequisites for installation of BODS 4.0 SP1?

$
0
0

Hi All,

 

 

Can any one help me out in installing BODS 4.0 SP1, when i'm trying to install it i'm facing errors regarding CMC(Central Management Console) and DCM(data servives management console).

 

When i try to create and access a repository i,m getting an error stating "NOT A VALID REPOSITORY"

IN CMC I'm unable to find the DATA SERVICES icon.

 

 

Thanks & Regards,

Sabarish.


Job and Datastore Information

$
0
0

Hi Guys,

 

Please can you advise if I can join ALVW_JOBINFO and ALVW_DATASTOREINFO views in BODS Live database. I want to fetch the information of what jobs are based on what all datastore.

 

Thanks in anticipation of your help.

 

Cheers,

Shaz

While executing AP Rapid Martz Accounts_Payable_Load_DIMS_10 - Error 70401

$
0
0

Hi Guya,

 

We have setup BODS Rapid solution for AP with reference to the video link provided taking Data source as ERP 6.0 IDES system..

 

Rapid mart installation videos link:

 

http://scn.sap.com/community/data-services/blog/2012/07/09/getting-started-with-sap-rapid-marts

 

 

We could manage to successfully finish all the steps as per video , except last step.

 

As a last step step when we are executing job Accounts_payable_load_sap as mentioned below , following is the error occurred...

 

 


1780 12680    DBS-070401 02-04-2013 16:45:40        |Data flow DF_Language_SAP|Loader FirstorDelta_FirstLoad_LANGUAGE

 

1780 12680    DBS-070401 02-04-2013 16:45:40        ODBC data source <VS03BOD> error message for operation <SQLExecute>: <[Microsoft][SQL Server Native Client 10.0][SQL

 

1780 12680    DBS-070401 02-04-2013 16:45:40        Server]Violation of PRIMARY KEY constraint 'PK__LANGUAGE__C96329A617E4190E'. Cannot insert duplicate key in object

 

1780 12680    DBS-070401 02-04-2013 16:45:40        'dbo.LANGUAGE'. The duplicate key value is (0040, a, 1).>.

 

1780 12680    RUN-051005 02-04-2013 16:45:40        |Data flow DF_Language_SAP|Loader FirstorDelta_FirstLoad_LANGUAGE

 

1780 12680    RUN-051005 02-04-2013 16:45:40        Execution of <Regular Load Operations> for target <LANGUAGE> failed. Possible causes: (1) Error in the SQL syntax; (2) Database

 

1780 12680    RUN-051005 02-04-2013 16:45:40        connection is broken; (3) Database related errors such as transaction log is full, etc.; (4) The user defined in the datastore

 

1780 12680    RUN-051005 02-04-2013 16:45:40        has insufficient privileges to execute the SQL. If the error is for preload or postload operation, or if it is for regular load

 

1780 12680    RUN-051005 02-04-2013 16:45:40        operation and load triggers are defined, check the SQL. Otherwise, for (3) and (4), contact your local DBA.

 

4048 10916    DBS-070401 02-04-2013 16:46:00        |Data flow DF_Language_SAP|Loader FirstorDelta_FirstLoad_LANGUAGE

 

4048 10916    DBS-070401 02-04-2013 16:46:00        ODBC data source <VS03BOD> error message for operation <SQLExecute>: <[Microsoft][SQL Server Native Client 10.0][SQL

 

4048 10916    DBS-070401 02-04-2013 16:46:00        Server]Violation of PRIMARY KEY constraint 'PK__LANGUAGE__C96329A617E4190E'. Cannot insert duplicate key in object

 

4048 10916    DBS-070401 02-04-2013 16:46:00        'dbo.LANGUAGE'. The duplicate key value is (0040, a, 1).>.|<Regular Load Operations>|<LANGUAGE>

 

 

Can some one please advice how do i fix it and I have attached steps document for reference.

 

Thanks & Regards,

Rahul

problem connection from installation to the repository

$
0
0

Hi ,

 

i am trying to install Data Services and i have problem with the repository as part of the installation.

first in install the IPS 4 on Windows 64 bit , i choose to create new database as part of the repository

and it's create 2 database in Sql Server (BOE140 & BOE140_Audit)

and the installation complete successfully and i can open the url of cms.

then i try to install the data sevices 4.1 , first i create new database for data services (bo_ds_repo)

and when i choose "Use Exsisting data base server " for repository

i choose Sql server and fill the following:

 

registration name of CMS - BOE140 (the ips database)

database server name - MIKEBO-SRV-HZ\BOE140

port - 1433

database name - the new database that i create for data services ( bo_ds_repo)

user name - sa

password - password of user sa

 

and when i click on Next button i receive the following error:

 

unable to check connection to repository

can not open database "bo_ds_repo" requested by the login. the login failed.

 

there is no problelm to connect to the database in Sql Server

what i am doing wrong?

 

regards,

Ilan Haik

How to extract data from swift files(M940,M950) to SQL Server database through Business Objects Dataservices 4.0?

$
0
0

Hi All,

 

I'm new to BODS , We are having a requirement to load the data from swift format files to SQL server database tables,

 

Is this possible to load the swift files directly using BODS.

 

Can any one suggest a better approach for my requirement.

 

 

 

Thanks In Advance,

Samatha.

Case transform target file not shown in the given root directory

$
0
0

Hi there,

 

Using Case transform in SAP BODS designer, tried creating cases for employee table.

 

Unable to find the target records for 3 cases in the target directory thought the job is been executed successfully.

Viewing all 4013 articles
Browse latest View live


Latest Images

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