Quantcast
Channel: SCN : Discussion List - Data Services and Data Quality
Viewing all 4237 articles
Browse latest View live

Error processing IDoc request

$
0
0

Hi All

I am working on IDOC extraction job in BODS, during this i am facing issues

1.when ever an IDOC request is received, automatically the Real-Time job service is stopping.

RTServiceunabletostart.PNG

errorprocessingrequest.PNG

2.Even though the IDOC was processed to DS Real-Time Job, it is showing waiting for Request

unabletoprocess.PNG

 

3.There is a field, IDOC test file for the IDOC source file in the job, but i didn't mentioned any file path, do i need to mention the file.

testfile.PNG

The IDOC i am using in Job is MATMAS01 but the message standard type in SAP Application is just MATMAS.

 

Can anyone explain me these things..how to retrive the data from SAP Application to SAP BODS.

 

Thanks

Prasannakumar.


Duplicate records

$
0
0

Hi - I have a flat file and its has got close to 100 records and out of which 15 are duplicates . I have my keys in place , How do i display the duplicate records in a table ? i can use distinct option to have only originals in one table.

 

Any smart and easiest approach to get this done ?

 

Thanks,
AJ.

Check its path and permissions

$
0
0

hi,

 

Recently we have installed BODS4.1 and created the first job. It is running into an error.

 

10916 2470688544 FIL-080101 3/28/2013 12:08:06 PM Cannot open file <C:/SAP BODS/Customerinput.txt>. Check its path and permissions.

 

I have made sure the file permissions on local system is updated with full control. I run out of options, on looking for what?

Please advise the solution.

 

Thanks,

Suraj Pabbathi

Problems with Table Comparison Transforms in SAP BODS

$
0
0

Hi All

      I tried the table comparison transform in designer.However the final output is not as expected. I have chosen the same target(output table ) as the table for comparison(CurrentTable):-

 

tablecomparision.png

currenttable.png

The changes of the source table are not reflected in the target tableNeeded help on this

updating custom columns of target

$
0
0

Hi

 

 

There are two columns in target table where the value as of now is 'Not Assigned'.

 

 

 

Market_Region = 'Not Assigned',

Market_Name = 'Not Assigned'

 

 

 

Now to these columns i would like to apply below set of update statement using BODS. If it is of one statement like below, i would do it using single lookup but for the multiple statements, what could be the way. Please advise.

 

 

 

--Country

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE

WHERE

       Disty_Electronic_CDF_Markets.State IS NULL AND

       Disty_Electronic_CDF_Markets.Zip IS NULL

 

 

 

 

 

 

 

 

--State

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE and

             Disty_Electronic_CDF_Markets.State = POS_Processor.CDF_15

WHERE

       Disty_Electronic_CDF_Markets.Zip IS NULL

       AND POS_Processor.CDF_15 IS NOT null

 

 

 

 

 

 

--Zip 3 - no state

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE and

             Disty_Electronic_CDF_Markets.Zip = LEFT(POS_Processor.EC_Ship_To_Postal_Code,3)

WHERE

       LEN(Disty_Electronic_CDF_Markets.Zip) = 3

       AND Disty_Electronic_CDF_Markets.State IS null

 

 

 

 

 

 

--Zip 1

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE and

             Disty_Electronic_CDF_Markets.State = POS_Processor.CDF_15 AND

             Disty_Electronic_CDF_Markets.Zip = LEFT(POS_Processor.EC_Ship_To_Postal_Code,1)

WHERE

       LEN(Disty_Electronic_CDF_Markets.Zip) = 1

       AND Disty_Electronic_CDF_Markets.State IS NOT NULL

      

      

--Zip 3

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE and

             Disty_Electronic_CDF_Markets.State = POS_Processor.CDF_15 AND

             Disty_Electronic_CDF_Markets.Zip = LEFT(POS_Processor.EC_Ship_To_Postal_Code,3)

WHERE

       LEN(Disty_Electronic_CDF_Markets.Zip) = 3

       AND Disty_Electronic_CDF_Markets.State IS NOT null

 

 

 

 

 

 

-- Zip 5

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_Markets.Market_Name,

       Market_Region = Disty_Electronic_CDF_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_Markets.Country = POS_Processor.EC_SHIPTO_COUNTRY_CODE and

             Disty_Electronic_CDF_Markets.State = POS_Processor.CDF_15 AND

             Disty_Electronic_CDF_Markets.Zip = LEFT(POS_Processor.EC_Ship_To_Postal_Code,5)

WHERE

       LEN(Disty_Electronic_CDF_Markets.Zip) = 5

 

 

 

 

UPDATE    POS_Processor

SET

       Market_Name = Disty_Electronic_CDF_EMEA_Markets.EC_SHIP_TO_CTRY,

       Market_Region = Disty_Electronic_CDF_EMEA_Markets.Market_Region

FROM Trends__CDF.dbo.Disty_Electronic_CDF_EMEA_Markets INNER JOIN

       POS_Processor ON

             Disty_Electronic_CDF_EMEA_Markets.EC_SHIP_TO_CTRY = POS_Processor.EC_SHIPTO_COUNTRY_NAME

             AND Market_Name = 'Not Assigned' AND Market_Region = 'Not Assigned'

             AND POS_Processor.EC_REGION_DD1 = 'EMEA'

 

Thanks,

Abdulrasheed.

Adding Problem

$
0
0

Hi All,

 

I have created 2 variables

 

1. Test varchar(10);

2. File_change(100);

 

In script I have done like this

 

$Test = '00000049';

 

print( $Test );

 

print values is: 00000049, After I want to add 1 to this value, for that i have created script like below

 

$File_Change = $Test + 1;

 

print( $File_Change );


but i am getting print value: 50


even i tried with Concationation(||) operator


$ $File_Change = $Test || '+ ' ||1;


This time I am getting print value 00000049+1

 

But I want to get "00000050" Can anyone please guide me how to do this.

 

Thanks

Murali

Can we apply CDC on BW target If Source is Non-SAP system?

$
0
0

Hi,

 

How to apply CDC on non-SAP to BW system data loading? and how to compare the table data if we are use target as BW system?

Clearing Buffer memory of BOBJ Server

$
0
0

Hi Experts,

  

      How to clear the Buffer Memory of the BOBJ Server?

      And also my Data Services are very slow.


vendor master load program

$
0
0

Hello ,

 

can anybody guide what load method/program to use to migrate Vendor Master (Address ,Partner ,Purchase org Ext) general data like idoc or lsmw ?

we are migrating sap ecc data to sap hana and using BODS as migration tool .

 

 

thanks in advance

 

regards,

roma

BODS /LSMW integration

$
0
0

I have some LSMW programs which calls for data input from BODS.... is there a way in BODS, running a job and calling an LSMW routine directly within BODS Designer, so I don't have to move data extracts from BODS into LSMW manually?

Thanks....

Data Services clustering

$
0
0

Hi All,

 

I'm planning for Data Services installations on two physical servers. Already one of the server installation completed successfully on linux box. Now I'm starting the second server installation.

 

Here are my questions:

 

  • How the clustering or grouping of these two servers will happen in DS?

  • What are the hgih level steps?

  • Best practices to configure job server and access servers in case of two physical servers installation.

 

Any help is much appreciated.

BODS on Unix with Sybase repository

$
0
0

Hallo Experts, BODS is installed on unix with sybase  database as repository Could any one suggest the steps to consider(not installation) when working on Sybase repository with bods installed on Unix Thanks

DQM RFC Server startup issue

$
0
0

Hi Experts,

 

We are in the process of installing DQM for SAP RFC Server SP07 for the first time in the Linux environment. We have installed Data services, DQM, DS components prior to this .

 

As mentioned in the installation document the batch files to start RFC server should be start_<SAPID>_FLRFCSRV_trans and start_<SAPID>_FLRFCBTC_batch. But instead we are finding start_<SAPID>_trans and start_<SAPID>_batch in the installation directory. Once we execute these batch file RFC server is failing with message 'RFC server shutdown as per user request'.

Also we didn't get a prompt to enter program id's FLRFCBTC and FLRFCSRV during installation in linux environment.

User authorizations has been granted to SAP user for the installation.

 

 

Our Configuration

 

DataServices 4.2 Setup in Linux environment

DQM SP07 installed (DS Component SP07, RFC Server SP07 and BADI component SP07).

Database is Oracle.

Real Time jobs configured as services.

Web services setup.

Access server details and WSDL url entered during installation

All other SAP side configurations done.

Created TCP/IP connections for FLRFCBTC and FLRFCSRV.

 

Please help us to understand what might be causing RFC server to shutdown.

Data Services weird join

$
0
0

Data services weird join after upgrading

 

Hi,

Our system is upgraded from 4.0 to 4.2 SP06, I have a data flow with 3 source (SQL ) tables and Query and target table. All joins are inner joins but job is failing “'row_number' is not a recognized function name” and in where condition is taking as left outer join. Its showing same left join when I see optimized SQL. Did anyone face this issue before ? please help

 

Thanks

unzip file as well as decrypt the password

$
0
0

Hi All,

 

As per my requirement, I need to decrypt the password zip file and load into data into template table and Once loaded completed into a temp table, we should zip files and encrypt the password to that zip file. Can you please provide the script for zipping and unzip password protect?

 

 

for decrypt password zip file I have done below command script in the command line prompt

 

C:\Murali\Incoming>unzip -PWelcome123 Test.zip

it successfully unzips the files and loaded into a folder

 

using same script ( C:\Murali\Incoming>unzip -PWelcome123 Test.zip ), I have created a bat file with the name of Test.bat

 

and I called this bat file in BODS script using exec function, but I am getting below error.

 

42327412JOB7/2/2016 1:03:22 PMOptimizing job <FlatFiles>.
42327412JOB7/2/2016 1:03:22 PMJob <FlatFiles> is started.
42327412PRINTFN7/2/2016 1:03:22 PM1:   C:\Program Files (x86)\Business Objects\BusinessObjects Data Services\bin>C:\Murali\Incoming -PWelcome123 Test.zip
42327412PRINTFN7/2/2016 1:03:22 PM1>unzip   'C:\Murali\Incoming' is not recognized as an internal or external command,  operable program or batch file.
42327412JOB7/2/2016 1:03:22 PMJob <FlatFiles> is completed successfully.

 

Please help me for past 3 weeks I have been trying on this requirement, but no luck as of now

 

Thanks and Regards,

Murali


pros and cons of sap data services management console

$
0
0

Hi All,

 

I would like to know "pros and cons of sap data services management console".

 

Thanks

Murali.

Identify bad data in the files before job run

$
0
0

Hi ,

 

We are in the process of job automation, my job is getting failed because extra delimeter or length of a column exceeds.

 

We should send a notification identify bad data before job process.

 

Any suggestions.

 

Thanks,

NAveen

Viewing all 4237 articles
Browse latest View live


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