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

Load sequence for 0EHH_DS12 DSO and 0EHH_C02 infocube.

$
0
0

Dear friends,

 

Could you please tell me what is the loading sequence for 0EHH_C02 Injuries info cube.?

Also for 0EHH_DS12 Incidents statistics DSO?

 

Thanks

Vjay


Enhancing LO datasource

$
0
0

Hi,

 

Is there any limit in the no of fields that can be added to append structure of LO data source.

 

I have got a requirement to enhance 2lis_11_vaitm with the fields from the tables - VBPA, KNA1, AUSP, PA0002, MKVE, VBKD and also from a custom table. In total there are 32 fields which needs to be enhanced in 2lis_11_vaitm.

 

Is it the right way to enhance 32 fields to the standard extractor? Could you please suggest the best way to bring these fields to BW in link with Sales documents.

 

-- KRPK

Base tables for datasource which is based on function module?

$
0
0

Hi all,

I came through the data source which is based on function module. I want to find a base table for that particular data source. There is a extractor field in RSA2 in which there is whole routine. I went through the whole routine but was not able to find the base tables from which different fields are extracted?    

So, please suggest how to find all base tables from which fields have been extracted or is there any other method to get the base tables for data source based on function module???

HR Data Extraction

$
0
0

Hi All,

 

 

What extractor do we use to extract the SAP HR data??

Which one do we use, is it LO Cockpit, or LIS, or Generic?? Kindly respond.

CRM std extractor failing with a java- VM container error

$
0
0

When running 0CRM_COMPLAINTS_I in rsa3 in CRM, we are getting the following error: "Error occurred when processing Java programs VM container". When checking the errror log in SM52 it says  'RFC Server (in-process) stopped, java.lang.OutOfMemoryError:[Ljava.util.HashMap$Entry;, terminate VM'. When i reduce the package size of data extraction to less than 60 records, rsa3 runs fine. We have checked for oss notes but could not find a solution. Can someone tell whats happening here and how to fix it?

Thanks.

Loading 0WAGETYPE

$
0
0

Hi

A wagetype for an employee can of several types like medical insurance , gross pay, pension payment etc.. Now i want to load 0wagetype infoobject for my payroll cube

How does 0wagetype gets loaded ?

Error installing Query 0FIP_MP01_Q0101 ; 0FIP_MP01_Q0102 and 0FIP_MP01_Q0103

$
0
0

Hello,

 

I'm having issues to activate 3 querys about Perishables Procedurement/Distribution list, 0FIP_MP01_Q0101, 0FIP_MP01_Q0102, and 0FIP_MP01_Q0103. Their infoproviders are installed, so i have no clue why it fails; the error message is Nº mensaje: R9132

 

 

infoproviders:

Infoproviders_activos.png

querys:

querys.png

Error messages:

Nº mensaje: R9132

i. Element 3ZWCZ7W5594ICAEIGVRYEY29R is missing in versión D

ii. Element 45P3NNHXH20L07FZRR6HE4UM7 is missing in versión D

 

querys.png

 

Thanks !

Discription extrators on FM

$
0
0

Hi experts!

I`m looking description of retail extrators like :

 

0ARTICLE_ATTR

0RT_MAT_PLANT_ATTR

0ART_SALES_ATTR

0MAT_UNIT_ATTR

etc

 

what field from what table or logic of formation ( debug abap in rsa3 very difficult - cant understand their logic espeacialy inner vars)

is there any doc or something about it ?

Found on SDN  just tables with fields of extraction and general description.


Delta queue clean up

$
0
0

Hi Folks,

 

In what scenario's or when we need to do Delta queue clean ups?

 

 

Regards,

H

DS Enhancement of 0PROFIT_CTR_ATTR with 5 Level Profit Center Hierarchy Information

$
0
0

I have requirement to move the levels of the profit centre hierarchy (0PROFIT_CTR_0106_HIER) onto the attributes of the profit centre,

0PROFIT_CTR_ATTR.

 

Please guide me , the way to achieve the logi using BADI

Icons / Symbols within SBIW DataSource tree

$
0
0

Dear all,

 

I was wondering what the symbols beneath each DataSource mean (see attached Screenshot). Within SAP Documentations I didn't find any information.

 

Thanks a lot for your help.

 

Frank

PLease change the code

$
0
0

Below code is fetching data from Bkpf to 0fi_gl_14 using Badi for Datasource enhancment.

i want to add TCODE BV0RG from BSEG .  please change the code.

 

 

 


TYPES: BEGIN OF IT_FIGL,
     V_BUKRS TYPE BUKRS,
     V_BELNR TYPE BELNR_D,
     V_GJAHR TYPE GJAHR,
     V_ANBWA TYPE ANBWA,
     V_BZDAT TYPE BZDAT,
     V_PERNR TYPE P_PERNR,
     V_LOKKT TYPE LOKKT,
  
    END OF IT_FIGL.


    DATA: ZBW_FIGL TYPE STANDARD TABLE OF  IT_FIGL,
          L_T_DATA TYPE STANDARD TABLE OF  FAGLPOSBW,
          WA_DATA TYPE IT_FIGL.

      L_T_DATA[] = C_T_DATA[] .

      IF NOT L_T_DATA IS INITIAL.

        SELECT BUKRS BELNR GJAHR ANBWA BZDAT PERNR LOKKT ZZALTACTXT FROM BSEG INTO TABLE ZBW_FIGL
          FOR ALL ENTRIES IN L_T_DATA WHERE BUKRS = L_T_DATA-BUKRS
                                        AND BELNR = L_T_DATA-BELNR
                                        AND GJAHR = L_T_DATA-GJAHR.


          LOOP AT L_T_DATA ASSIGNING <L_S_DATA>.

            READ TABLE ZBW_FIGL INTO WA_DATA
            WITH KEY V_BELNR = <L_S_DATA>-BELNR
                    V_BUKRS = <L_S_DATA>-BUKRS
                    V_GJAHR = <L_S_DATA>-GJAHR.

            IF SY-SUBRC = 0.

              <L_S_DATA>-BUKRS = WA_DATA-V_BUKRS.
              <L_S_DATA>-BELNR = WA_DATA-V_BELNR.
              <L_S_DATA>-GJAHR = WA_DATA-V_GJAHR.
              <L_S_DATA>-ZZANBWA = WA_DATA-V_ANBWA.
               <L_S_DATA>-ZZBZDAT = WA_DATA-V_BZDAT.
               <L_S_DATA>-ZZPERNR = WA_DATA-V_PERNR.
               <L_S_DATA>-ZZLOKKT = WA_DATA-V_LOKKT.
               <L_S_DATA>-ZZALTACTXT = WA_DATA-V_ALTACTXT.

 


              ENDIF.
              ENDLOOP.
              ENDIF.

              C_T_DATA[] = L_T_DATA[].

STOP Program Terminated error during transport - RDDEXECL

$
0
0

hello,

 

I am transporting from DEV to TEST and my transport code terminated with below message in ST22.

 

My transport contains objects activated from Business content and Zcustom infoobjects. The objects are already in Test system but not activated.

 

Does anyone know how I can resolve the issue.

 

 

"UNCAUGHT_EXCEPTION" "CX_RSR_X_MESSAGE"

"SAPLRRMS" or "LRRMSU13"

"RRMS_X_MESSAGE"

 

 

Transport failure.PNG

Below is my BW version in DEV and Test.

 

SAP_BW7000021SAPKW70021

SAP NetWeaver BI 7.0

 

Thanks

Bhat

0ORGUNIT Hierarchy Info Package settings

$
0
0

Can  anyone suggest me the steps for the settings on the Infopackage level

while loading the 0ORGUNIT_HR01_HIER (Hierarchies)

 

Info Package setting.JPG

Please suggest.

0WAGETYPE Loading?

$
0
0

Hi

I have a payroll cube where i check my data for particular pernr,docnum , wagetype etc..

 

 

Run ID      DocNum    Employee    seqno         company code       0GL_ACC          WT

200X0        YYYYY         XXXX         146                XXXX               000XX000XX   /559

       

 

 

the payment date and transfer date for particular employee can be seen but there were some reverse postings and they were corrected and now i want to /560 waqgetype but i couldn't

 

 

Is there an procedure to be followed to extract from ECC to BW for 0WAGETYPE?


POS DM: How to add custom fields to the 0RT_PA_TRAN_CONTROL extractor?

$
0
0

Hi all,

I have a problem with enhancement of 0RT_PA_TRAN_CONTROL. I'd like to use several custom fields at transaction header level.

I use the TRANSACTIONEXT parameter of /POSDW/BAPI_POSTR_CREATE. My custom fields are correctly putted into posdm, I can see them in the /posdw/mon0 monitor. But I could not find, which table are they stored in? I have found only /POSDW/TLOGS but there are only transaction headers. Where are transatcion lines, taxes, discounts, extensions and so on?

And how to include them to further  PIPE operations like moving data to 0RT_PA_TRAN_CONTROL delta queue? I have read note 811393, it only says that I should use BADI /POSDW/OUT_BW, but how to use it? What are the source tables and the target structure?

Any advice and examples are welcome. Thanks.

Empty delta queue for 0BPARTNER_ATTR after Upgrade

$
0
0

Hello Guys,

 

Have you guys faced any issues loading 0BPARTNER_ATTR, 0BPARTNER_TEXT, 0BP_DEF_ADDRESS_ATTR to BI in Delta mode after source system upgrade?

We are having issues with Delta extraction. In Delta mode, the extraction is not picking up all the data that has been modified recently. In RSA7 queues have stable zero. We tried to set breakpoint in function modules which update queue but it does not triggered the debugger after business purtner saving.


Any ideas are welcome.

 

Thank you.

Having two BW installations pulling deltas from the same ECC system?

$
0
0

Hi all,

we need to upgrade an old BW installation from 3.x to 7.0 BI, what we want to do is to install the new BW 7.0 into new machines so our intention is to proceed as follows:

1) BW system copy of DEV (BWD), QAS (BWQ) and PRD (BWP).

2) upgrading the new systems to 7.0

3) setting up all the connections to the same ECC systems as the "old" 3.x BW.

 

This way we can let users use the old system while we test everything in the new installations, my question however is if it's possible to pull a delta load from the same ECC system to 2 different BW (ex: R3->BWP and R3 to BWP new).

Is the sap extractor able to tell the difference from the two systems? If it's possible such setup, can you point me to some guide or document explaining how to do that in detail?

 

Thanks a lot

Stefano

"Unidentifiable error in program" when loading Infopackage with Hierarchy

$
0
0

Hi guys,

 

We have created in the CMOD, in an Include, a program that populates a infoobjetct's hierarchy. When I launch the load through the InfoPackage in DEV , all is fine, but in PROD system it gives me the error "Unidentifiable error in program LRSAPU04 line  1"

Include in DEV and PROD are the same, the extractors are the same, the Transfer Rules are the same, the infoobject is the same....

 

the program LRSAPU04  is a standard code, so how come it's ok in DEV and it fails in PROD??!! 

Any suggestions guys??

If not, is it possible to debug the load triggered by an Infopackage if there is no custom code in this infopackage?

 

Thanks!

PO# field in AR Aging Report(s)

$
0
0

Hi Experts,

 

We have a requirement to bring PO# in AR Aging Report(s). We have used "reference" field from FBL5N as of now but it's a free field, and it brings invoice number, Customer PO number etc.

 

Requirement is to bring PO numbers only in AR Aging reports. so Is there any other field which we can use in AR Reports to fulfill this requirement? and How?

 

Please suggest!!!!

 

Thanks,

Bhavin Vyas

Viewing all 2297 articles
Browse latest View live


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