Quantcast
Channel: SCN: Message List - Business Content and Extractors
Viewing all 5631 articles
Browse latest View live

Re: Header-data for item-level

$
0
0

I got your most liked workaround. Please carry on with your development..


Re: Issue with the delta records for Z extractor based on Function Module

$
0
0

Hi,

 

I am not sure but might be the time zone is causing an issue.

I am not sure whetehr below logic could be useful or not but you can give a try on development system and perform all test cases.

 

LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'ZZTMSTMP'.

         tstamp = l_s_select-low.

         timezone = 'EST'.

 

         CONVERT TIME STAMP tstamp TIME ZONE sy-zonolo

          INTO DATE startdate TIME starttime.

 

CONVERT DATE  startdate

        TIME starttime INTO TIME STAMP L_TSTAMPS

        TIME ZONE  timezone.

CONVERT TIME STAMP L_TSTAMPS TIME ZONE  timezone

  INTO DATE L_DATE TIME L_TIME.

.....

endloop.

 

Srikanth.

 

Re: AIMD - Delta Process issue

$
0
0

Hi Chaitanya,

 

For AIMD - Cube also not recomended, DSO with summation only. but due that settings your getting wrong.

 

Just test at dev system by using summation or loading to cube. if you feel ok go further. if not then think coding wise if possible to aggregate.

 

Thanks

Re: AIMD - Delta Process issue

Re: AIMD - Delta Process issue

$
0
0

Ohh, I thought you have already mapped that 0recordmode. Otherwise, I has an idea to suggest you that..Anyway congrats..

Convert a few records to one in BW

$
0
0

Hi, Guys!

 

I try to explain my situation. I have a few developments with the use DMS-Documents and all data is transfered to BW including the table DRAP. In BW I have DSO-Provider with structure like the table DRAP. This means I have a few records for one dms-document in th DSO-Provider(A one record is record changing status of document). I was got the task I need to calculate the time between one status and another status. How can I convert a few records with the same DMS-Key(dokar, doknr, dokvr, doktl) to one record in another  DSO-Provider(key - dokar, doknr, dokvr, doktl) with new fields(for example, status_date_old, status_date_new). May be there are another way to convert a few records to one or another way to calculate a time between two records.

 

Thanks.

 

Vadim.

Re: process chain terminated with returncode 8

$
0
0

Hi Kevin,

 

 

If the error is found in chain one then chain two wont get executed in case of meta chain .

The chain one is delta infopackage, so need to check whether previous delta is success, after that process need to be monitored and meanwhile check the PSA , all the data are fine .

 

Regards

Prasanna William

Re: PSA data duplication Issue

$
0
0

Rahul,

 

Probably you have triggered your load twice or may be your historical data still remains.

 

The load is Full or Delta?

 

Regards,

Venkatesh


Re: SD / MM / FI / Datasource

$
0
0

Edi,

 

Kindly provide your base table for your requirement.

 

Regards,

Venkatesh

Re: SD / MM / FI / Datasource

Re: Seeking advise which datasource should I used for below requirement.

Re: PSA data duplication Issue

$
0
0

Hi Rahul

 

If this is BI7.0 we can handle duplicates in DTP by using ignore duplicate records check box and then we can load data further.

 

Regards

Srinivas

Re: Listcube transaction

$
0
0

Hi,

 

   Did you give the file path and file name in the text box ?

 

Sourav

Re: Extract the data from cluster tables

$
0
0

Hi,

Thank you very much for your replies ,any one for sample code for this requirement

Regards

RK

Re: Name in Delivery address tab of ME23N needs to be pulled to BW.

$
0
0

Hi,

 

The address details are generally stored in table "ADRC". if you want to get delivery address corresponding to PO line item then you can check table "EKPO" for particular PO (EBELN) and PO line item (EBELP) and then get the address number i.e. ADRNR from EKPO and then fetch the address details against ADRNR from ADRC table. Hope this helps you.

 

Srikanth


Re: Listcube transaction

$
0
0

yes select option to store on workstation and then give a path. Check if you can go for F4 help in Text-box.

 

Regards,

Ganesh

Re: Seeking advise which datasource should I used for below requirement.

$
0
0

Hi Edi,

 

 

Try to check below data sources and test below in your system with examples. Not sure but below could be useful.

 

2LIS_03_BX                                          - Aging inventory report

2LIS_11_VAKON or 2LIS_13_VDKON -Booking with Pricing Condition

2LIS_06_INV - Purchase Doc No / Billing Doc / Vendor Invoice

 

2LIS_02_SGR- PO Item Goods Receipt Detail

 

Srikanth.

 

 

Re: Extract the data from cluster tables

$
0
0

Hi,

 

As suggested by Suman and Vijay go ahead with the FM based generic extractor and use ABAP statements to read data from tables. Below is  a smaple example and based on your requiremnet you can change the info types etc and change accordingly as desired..

 

 

**"Select the records from PC14 cluster table..

select srtfd

          from pcl4 

into table it_pcl4           

           where relid = 'SA'

            and srtf2 = 0       

           and aedtm in date_range_2.

 

sort it_pcl4. "Sorting 'it_pc14' table...

loop at it_pcl4 .   

move it_pcl4-srtfd to sh_key.   

move-corresponding sh_key to pcl4_key.

 

**"Checking for the InfoTYpes 00, 01 & 08.

    if  pcl4_key-pernr < 70000000 and 

     ( pcl4_key-infty = '0000' ) or       

     ( pcl4_key-infty = '0001' ) or 

      ( pcl4_key-infty = '0008') or 

      ( pcl4_key-infty = '0302' ) or

     ( pcl4_key-infty = '0007' ) or   

     ( pcl4_key-infty = '0077' ) or

     ( pcl4_key-infty = '0035' ) or 

     ( pcl4_key-infty = '0041' ) or  

     ( pcl4_key-infty = '0002' ).

 

***"Import header from database pcl4(sa) id sh_key.

       it_pernrs-pernr = pcl4_key-pernr. 

       append it_pernrs.    

      clear it_pernrs.

    endif.

endloop.

 

 

/Srikanth

Re: SD / MM / FI / Datasource

$
0
0

Hi Edi,

 

Below are the data sources and related source tables for SD/MM/FI areas.

 

MM
Data Sources Tables
Purchasing
2LIS_02_SCL EKKO, EKBE, T001, T001W, EKET, EKPA.
2LIS_02_HDR EKKO, EKBE, T001, EKPA.
2LIS_02_ITM EKKO, EKBE, T001, T001W, EKPO, TMCLVBW, T027C, ESSR, T147K, T147
2LIS_02_SCN EKET, EKES, EKPO.
2LIS_02_CGR EKBE, EKES, EKPO.
2LIS_02_SGR EKET, EKBE, KKPO

Inventory
2LIS_03_BX stock tables, MCHA, MARA, T001, T001W, CALCULATED FROM MBEW, EBEW, QBEW.
2LIS_03_BF MSEG, MBEW, MKPF.
2LIS_03_UM BKPF, MBEW, QBEW, EBEW, BSEG.
MM  
Purchasing   Datasources
ODS 
0PUR_O01  2LIS_02_ITM, 2LIS_02_SGR, 2LIS_02_CGR, 2LIS_02_SCN.
0PUR_O02  2LIS_02_HDR, 0PUR_O01
0PUR_DS03  2LIS_02_SCL and 2LIS_02_SGR.
CUBE 
0PUR_C10  2LIS_02_SCL and 2LIS_02_SGR.
0PUR_C07 
0PUR_C08 
0PUR_C09  0PUR_O02, 80PUR_O01, 2LIS_02_HDR
0SRV_C01  2LIS_02_S174
0PUR_C04  2LIS_02_S011, 2LIS_02_SCL, 2LIS_02_ITM, 2LIS_02_HDR
0PUR_C01  2LIS_02_S012, 2LIS_02_ITM, 2LIS_02_SCL
0PUR_C02  2LIS_02_S013
0PUR_C05  0MM_PUR_VE_01
0PUR_C06  0MM_PUR_VE_02
0PUR_C03  2LIS_02_S015
Inventory Management 

CUBE 

0IC_C03  2LIS_03_BX, 2LIS_03_BF, 2LIS_03_UM
0IC_C02  2LIS_03_S195, 2LIS_03_S197
0IC_C01  2LIS_03_S196, 2LIS_03_S198
SD
Data sources Tables
2LIS_11_VAKON VBUK, VBUP, VBAK, VBAP, VBKD, KOMV, T001.
2LIS_11_VAHDR VBAK, VBUK, T001
2LIS_11_VAITM VBAP, VBUP, VBAK, VBKD, VBAJP, T001, VBUK, PRPS.
2LIS_11_VASCL VBAP, VBUP, VBAK, VBEP, VBKD, T001, PRPS
2LIS_11_VASTH VBUK
2LIS_11_VASTI VBUP, VBUK
2LIS_11_V_ITM VBAP, VBAK, VBKD, VBUP, T001, PRPS, VBUK.
2LIS_11_V_SCL VBUP, VBEP, VBKD, VBAP, VBAK, T001, PRPS.
2LIS_11_V_SSL VBAP, VBEP, LIPS, WVBEP, VBUP
2LIS_13_VDKON VBUK, VBRP, KOMV, T001, VBRK.
FI
DATASOURCES Tables

Cost Center Accounting
0CO_OM_CCA_1 COSP, COSS
0CO_OM_CCA_2 COSP, COSS
0CO_OM_CCA_3 COSL, COKL.
0CO_OM_CCA_4 COSR
0CO_OM_CCA_5 COSB
0CO_OM_CCA_6 COOMCO
0CO_OM_CCA_7 BPJA, BPPE.
0CO_OM_CCA_8 COST, TKA07,COOMCO, CSLA, COST, COKL.
0CO_OM_CCA_9 COVP (COEP& COBK), COSP, COST, COEJ, COEP, T001.
0CO_OM_CCA_10 COOI, COSP_VTYPE.
Product Cost Controlling

0CO_PC_PCP_01 KEKO, TCKH3, TCKH8.
0CO_PC_PCP_02 KEKO, TCKH3.
0CO_PC_PCP_03 CKIS, T001K, TKA02, KEKO, MARA, MBEW.
0CO_PC_PCP_04 CKIS, T001K, TKA02, KEKO, MBEW, MARA
0CO_PC_01 AUFK, AFPO, COSS, COSP, COSB, COSL, COKEY, TKA09, TKV09
0CO_PC_02 AUFK, AFPO, COSS, COSP, COSB, COSL, COKEY, TKA09, TKV09

 

Srikanth.

Re: DSO request showing with deleting symbol.

$
0
0

Hi Hari,

 

Is the deletion job finished and is it a display issue?.

Do you have the request still present in table "RSREQICODS"?.

Looks like some support package missing. Check with your basis team once.

 

Srikanth.

Viewing all 5631 articles
Browse latest View live


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