Quantcast
Channel: SCN : All Content - SAP Business Warehouse
Viewing all 5981 articles
Browse latest View live

Introducing an Add-on for Sending DTP Monitor Log to E-mail

$
0
0

Monitoring data loads can be considered as a recurring daily activity for any BW Support Organization. In some cases it is also required to have a deep-dive into the DTP Monitor Log, e.g. for observing any “data related issues”. Often this task is assigned to a Functional Application Manager or Business User who might not have access to the BW back-end. It would be convenient to automate the process by sending DTP Monitor Log entries by e-mail to one or several receipients.

In this blog I would like to introduce a comprehensive ABAP Add-on which I developed for facilitating this process. Please refer to my document Implementing an Add-on for Sending DTP Monitor Log to E-mail for detailed implementation instructions.

DTP Monitor Log Entries

The screenshot below shows an example of a DTP Monitor Log.

 

Figure_1_DTP_Monitor_Log.jpg

Figure 1: DTP Monitor Log

 

As you can see the Expert Routine sent some warning messages to the DTP Monitor Log. The message log can be displayed by double-clicking on the log icon.

 

Figure_2_DTP_Monitor_Log_Messages.jpg

Figure 2: DTP Monitor Log messages

 

For each message you can show more information by clicking on the question mark icon. Next to an optional long text, you can find here the Message Class (i.e. the first part of Message No. - in this example ZILL) and Message Number (i.e. the last three digits of the Message No. - in this example 004).

 

Figure_3_Example_Detailed_Message.jpg

Figure 3: Example of a detailed message

E-mail Add-on

The E-mail Add-on is an ABAP program which is intended to be included in a Process Chain. The program must run after the DTP for which you want the Monitor Log to be sent via e-mail. The next screenshot shows the selection screen of the program.

 

Figure_4_Selection_Screen.jpg

Figure 4: Selection screen

 

The program retrieves the latest DTP request according to the selections made on the selection screen. Subsequently, the monitor messages are filtered based on the Message Class (please see figure 3 for an example) and Message Type (e.g. Error, Warning, etc.) which can be optionally specified on the selection screen. If you don’t specify any Message Class and/or Message Type, all messages will be collected. It is mandatory to enter at least one E-mail Address and an E-mail Subject.

 

Furthermore, a word about the Abort flag. It is meant to influence how the program must behave in case of an e-mail send failure. I suggest to activate the Abort flag if sending the e-mail is crucial for the Business Users. The program terminates in such a case, the Process Chain becomes red and requires manual intervention.

 

Note: be aware that as a prerequisite the SAPconnect configuration must be OK. This configuration is not described here. Please refer to t/code SICF and SCOT.

 

As the last step the program displays a log of what has been executed.

 

Figure_5_Program_Log.jpg

Figure 5: Log at the end of the program

 

The program log will be stored as a spool request. This log can be viewed retrospectively by the BW Support Organization if required.

 

Last but not least, you can check out the outbound e-mail messages using SAPconnect Administration (t/code SCOT).

 

Figure_6_SAPconnect_Administration.jpg

Figure 6: SAPconnect administration

Conclusion

In this blog I introduced the E-mail Add-on. It is an ABAP program meant to automate the process of sending DTP Monitor Log entries by e-mail to one or several receipients. Please refer to my document Implementing an Add-on for Sending DTP Monitor Log to E-mail for more information re. implementing this E-mail Add-on.


Implementing an Add-on for Sending DTP Monitor Log to E-mail

$
0
0

Monitoring data loads can be considered as a recurring daily activity for any BW Support Organization. In some cases it is also required to have a deep-dive into the DTP Monitor Log, e.g. for observing any “data related issues”. Often this task is assigned to a Functional Application Manager or Business User who might not have access to the BW back-end. It would be convenient to automate the process by sending DTP Monitor Log entries by e-mail to one or several receipients.

Please refer to my blog Introducing an Add-on for Sending DTP Monitor Log to E-mail for an introduction of a comprehensive ABAP Add-on which I developed for facilitating this process. In this document I would like to share detailed implementation instructions.

Step 1: Create Message Class

SAP Menu: Tools > ABAP Workbench > Development > Programming Environment > Messages

T/code: SE91

 

Create Message Class YDTPMAIL as shown in the screenshots.

 

Figure_1_Message_Class_1.jpg

Figure 1: Message Class (1)

 

Figure_2_Message_Class_2.jpg

Figure 2: Message Class (2)

 

Refer to the attached file YCX_DTPLOG_TO_EMAIL_and_YDTPMAIL_v1.txt (Part 1) for an overview of all messages with their short text.

Step 2: Create Exception Class

SAP Menu: Tools > ABAP Workbench > Development > Class Builder

T/code: SE24

 

Create class YCX_DTPLOG_TO_EMAIL as shown in the screenshots. Make sure that you flag checkbox With Message Class.

 

Figure_3_Exception_Class_1.jpg

Figure 3: Exception Class (1)

 

Furthermore, specify on the Properties tab Message Class YDTPMAIL.

 

Figure_4_Exception_Class_2.jpg

Figure 4: Exception Class (2)

 

From here you can quite easily build up the class using copy & paste:

 

  • Refer to the attached file YCX_DTPLOG_TO_EMAIL_and_YDTPMAIL_v1.txt (Part 2) for the source code to be inserted in the public section of the class (via menu: Goto > Sections > Public Section);
  • Refer to the attached file YCX_DTPLOG_TO_EMAIL_and_YDTPMAIL_v1.txt (Part 3) for the source code to be inserted in method CREATE_MSG
  • Refer to the attached file YCX_DTPLOG_TO_EMAIL_and_YDTPMAIL_v1.txt (Part 4) for all descriptions used in the class.

Step 3: Create Class

SAP Menu: Tools > ABAP Workbench > Development > Class Builder

T/code: SE24

 

Create class YCL_DTPLOG_TO_EMAIL as shown in the screenshot.

 

Figure_5_Class.jpg

Figure 5: Class

 

From here you can quite easily build up the class using copy & paste:

 

  • Refer to the attached file YCL_DTPLOG_TO_EMAIL_v1.txt (Part 1) for the source code to be inserted using the Source Code-based maintenance mode;
  • Refer to the attached file YCL_DTPLOG_TO_EMAIL_v1.txt (Part 2) for all descriptions used in the class.

Step 4: Create Program

SAP Menu: Tools > ABAP Workbench > Development > ABAP Editor

T/code: SE38

 

Create Program YBW_DTPLOG_TO_EMAIL as shown in the screenshots.

 

Figure_6_Program.jpg

Figure 6: Program

 

Refer to the attached file YBW_DTPLOG_TO_EMAIL_v1.txt. From here you can quite easily build up the program using copy & paste:

 

  • Source code can be found in Part 1 of the attached file;
  • Description of Title, Text Symbols and Selection Texts can be found in Part 2 of the attached file.

Selective deletion based on fiscal week in a dso thru process chain

$
0
0

hi

 

My requirement is to do selective deletion of data from dso based on a range of fiscal week for example current week - 53 till current week -1.

So, I tried using delete_facts program but I am unable to see the D option for the DSO. For cube , it is working fine.

 

Kindly help.

 

Thanks

Issue within the start routine.

$
0
0

Hello Gurus,


I have an issue with the routine level values Below is values in DSO level where 0transtype is ***, PLN and 230. When I have

transtype 230 ( can be any number) I need to delete the *** and PLN. When I do not have 230 I need to delete PLN and

display only ***. The below code works fine for single records but when I load them in bulk it does not work. If *** (2007)

and 230 (2007) for transtype are in the same year both are displayed. In this case only 230 needs to be displayed. I am unable to

figure out the issue within the below code. I request you to let me know your suggestions on this.


DSO

scn sap example for clear.png

Cube

sdn asset clear.png

 

data : ls_tab type  _ty_s_SC_1,

            ls_srs type  _ty_s_SC_1,

            lt_tab TYPE STANDARD TABLE OF  _ty_s_SC_1.

 

     refresh lt_tab .

 

     sort SOURCE_PACKAGE by COMP_CODE ASSET_MAIN ASSET transtype.

 

 

     append LINES OF SOURCE_PACKAGE to lt_tab.

 

     LOOP AT  lt_tab into ls_tab.

       LOOP at SOURCE_PACKAGE into ls_srs

               where        COMP_CODE    = ls_tab-COMP_CODE  and

                            ASSET_MAIN   = ls_tab-ASSET_MAIN and

                            ASSET        = ls_tab-ASSET     and

                            TRANSTYPE   ca '0123456789'.

     exit.

       endloop.

       IF sy-subrc = 0.

         delete SOURCE_PACKAGE

                 where   COMP_CODE    = ls_tab-COMP_CODE  and

                         ASSET_MAIN   = ls_tab-ASSET_MAIN and

                         ASSET        = ls_tab-ASSET     and

                         ( transtype = '***'   or    transtype = 'PLN' )

                         .

       else.

         delete SOURCE_PACKAGE

             where   COMP_CODE    = ls_tab-COMP_CODE  and

                     ASSET_MAIN   = ls_tab-ASSET_MAIN and

                     ASSET        = ls_tab-ASSET     and

                     transtype = 'PLN'  .

       ENDIF.

 

       DELETE lt_tab WHERE COMP_CODE    = ls_tab-COMP_CODE  and

                     ASSET_MAIN   = ls_tab-ASSET_MAIN and

                     ASSET        = ls_tab-ASSET.

 

     ENDLOOP.

ORA-00060: deadlock detected while waiting for resource

$
0
0

HI,

 

I have getting short dump(ST22) when i run my DTP.

 

In the short dump it says , ORA-00060 error. i have applied the sap note 84348, but still am facing the issue. i am attaching a part of the dump

 

I have checked that DTP is running in

Processing mode :- parallel extration and processing

Extraction mode :- Full

Parallel Extration is checked.

And number of parallel batch jobs is 3.

SAPNW 7.3

Database :- oracle 11g

And we are using partition table

 

After the batch job completion(some failed due to dump and oters finished. ) the request is showing in yellow but when i access the request id to check which datapackage fails it turns red. is it due to the locks ??

 

Tried to run the DTP in process chain but same issue.

 

Need your help.

 

 

below is part of dump which i found relevant, can post more if anybody require more data to analyse the issue.

 

Error analysis

    An exception occurred that is explained in detail below.

    The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught

     in

    procedure "WRITE_ICFACT" "(FORM)", nor was it propagated by a RAISING clause.

    Since the caller of the procedure could not have anticipated that the

    exception would occur, the current program is terminated.

    The reason for the exception is:

    Database error text: "ORA-00060: deadlock detected while waiting for resource"

 

 

Database Interface Information

C 1 Client NLS setting (by OCINlsGetInfo(con=1)): 'AMERICAN_AMERICA.UTF16' [dboci.c#2854]
C 1 Client NLS setting (by OCINlsGetInfo(con=1)): 'AMERICAN_AMERICA.UTF16' [dboci.c#2854]
C 1 Logon as OPS$-user to get SAPSR3's password [dbsloci.c#12550]
C 1 Connecting as /@BD4 on connection 1 (nls 0) ... (dbsl 720 291112, UNICODE[2]) [dbsloci.c#15268
C 1 Starting user session: OCISessionBegin(con=1, usr='/', svc=0616AE48, srv=07F3E258, usr=0689C48
C 1    OCIStmtExecute() failed with -1=OCI_ERROR [dboci.c#4454]
C 1    SQL error 942: [dboci.c#4455]
C 1 Could not read session ID from V$MYSTAT. rc=-1. [dbsloci.c#16115]
C 1 Now '/@BD4' is connected: con=1, nls=0, session=-1, time='2013-10-24 14:12:00' [dbsloci.c#1529
C 1    OCIStmtExecute() failed with -1=OCI_ERROR [dboci.c#4454]
C 1    SQL error 1031: [dboci.c#4455]
C E ORA-1031 when updating table SAPUSER [dbsloci.c#15929]
C 1 Got SAPSR3's password from OPS$-user [dbsloci.c#12557]
C 1 Disconnecting from connection 1 ... [dbsloci.c#15355]
C 1 Closing user session (con=1, svc=0616AE48, usr=0689C488) [dboci.c#3371]
C 1 Disconnected (con=1) from ORACLE. [dbsloci.c#15372]
C 1 Connecting as SAPSR3/<pwd>@BD4 on connection 1 (nls 0) ... (dbsl 720 291112, UNICODE[2]) [dbsl
C 1 Starting user session: OCISessionBegin(con=1, usr='SAPSR3', svc=0616AE48, srv=07F3E258, usr=06
C 1 Now 'SAPSR3/<pwd>@BD4' is connected: con=1, nls=0, session=658, time='2013-10-24 14:12:00' [db
C 1 DB instance BD4 is running on SIDCDEV01 with ORACLE version 11.2.0.3.0 since SEP 08, 2013, 01:
C 1 con=1, V$NLS_PARAMETERS: NLS_LANG=AMERICAN_AMERICA.UTF8, NLS_NCHAR=UTF8 [dbsloci.c#15730]
C 1 Nls CharacterSet                      NationalCharSet                   EnvHp            ErrHp
C 1   0 UTF16                             AL16UTF16                         07F34010         07F3B
B 1 Connection 1 opened (DBSL handle 1) [dbcon.c#4312]
C 1    OCIStmtExecute() failed with -1=OCI_ERROR [dboci.c#4454]
C 1    SQL error 60: [dboci.c#4455]
C E Error 60 in stmt_execute() from oci_execute_stmt(), orpc=942 [dbsloci.c#17261]
C E ORA-00060 occurred at SQL stmt (parse error offset=0) [dbsloci.c#17262]
C 1 Dump statement cache: [dbsloci.c#17262]
C 1 sc_p=0000000007F04D20,no=32,idc_p=0000000007F23820,con=0,act=1,slen=116,smax=1024,#vars=15,stm
C 1 INSERT INTO "/BI0/F0JVA_C01" VALUES(:A0 ,:A1 ,:A2 ,:A3 ,:A4 ,:A5 ,:A6 ,:A7 ,:A8 ,:A9 ,:A10 ,:A
C 1 12 ,:A13 ,:A14 ); [dbsc.c#2318]
C 1 Dump statement cache: [dbsloci.c#12251]
C 1 sc_p=0000000007F04D20,no=32,idc_p=0000000007F23820,con=0,act=1,slen=116,smax=1024,#vars=15,stm
C 1 Dumping stmt. cache (DBSL private attributes): [dbsloci.c#16677]
C 1 sc=07F04D20, scp=07F0F310, ups_sc=0000NULL, stp=64F481E8, r_c=0 [dbsloci.c#16679]
C 1 prep=0, lit=0, nsql=0, lobret_cnt=0, fae_cnt=0, xop=78, dbcount=942 [dbsloci.c#16684]
C 1 IN : col_cnt=15, row_max=942, row_xcnt=942, row_pcnt=0, row_i=0, row_total=942,  [dbsloci.c#16
C 1      row_upto=4294967295, row_size=108, vda_max=32, bound=1, itp=07EE7560, vda_arr=64FB8A40 [d
C 1      lob_cnt=0, lob_max=0, lob_pw_cnt=0,  lob_arr=0000NULL, rows_ret=0 [dbsloci.c#16708]

OUT: col_cnt=58, row_max=92, row_xcnt=0, row_pcnt=0, row_i=0, row_total=0,  [dbsloci.c#16694]

     row_upto=0, row_size=1292, vda_max=128, bound=0, itp=0000NULL, vda_arr=653B30A0 [dbsloci.

     lob_cnt=0, lob_max=0, lob_pw_cnt=0,  lob_arr=0000NULL, rows_ret=0 [dbsloci.c#16708]

INSERT INTO "/BI0/F0JVA_C01" VALUES(:A0 ,:A1 ,:A2 ,:A3 ,:A4 ,:A5 ,:A6 ,:A7 ,:A8 ,:A9 ,:A10 ,:A

12 ,:A13 ,:A14 ); [dbsc.c#2318]

***LOG BYO=> deadlock aborts transaction [dbsh#1190]

SQL code: 60, SQL text: ORA-00060: deadlock detected while waiting for resource [dbsh.c#1198]

***LOG BY4=> sql error 60     performing INS on table /BI0/F0JVA_C01                 [dbtran#7

***LOG BY0=> ORA-00060: deadlock detected while waiting for resource [dbtran#7634]

dbtran ERROR LOG (hdl_dbsl_error): DbSl 'INS' [dbtran.c#7698]

RSLT: {dbsl=99, tran=1} [dbtran.c#7698]

FHDR: {tab='/BI0/F0JVA_C01', fcode=130, mode=1, bpb=0, dbcnt=0, crsr=0, [dbtran.c#7698]

        hold=0, keep=1, xfer=1, pkg=0, upto=0, init:b=0, [dbtran.c#7698]

        init:p=0000000000000000, init:#=0, wa:p=0000000000000000, wa:#=92} [dbtran.c#7698]

dbtran ERROR LOG (hdl_dbsl_error): DbSl 'INS' [dbtran.c#7729]

STMT: {stmt:#=0, bndfld:#=0, prop=0x1, distinct=0, [dbtran.c#7729]

        fld:#=15, alias:p=0000000000000000, fupd:#=0, tab:#=0, where:#=0, [dbtran.c#7729]

        groupby:#=0, having:#=0, order:#=0, primary=0, hint:#=0} [dbtran.c#7729]

CRSR: {tab='', id=0, hold=0, prop=0x10004, max.in@0=0, fae:blk=0, [dbtran.c#7729]

        con:id=0, con:vndr=5, val=2, [dbtran.c#7729]

        key:#=9, xfer=1, xin:#=942, row:#=0, upto=0, wa:p=0X000007DF0876E53C} [dbtran.c#7729]

no source unit assigned error

$
0
0

hi respected

 

 

during the transformation on cube i getting the error message in attachment (no source unit assign)

 

i go through lots of opinion in sdn (like routine changes etc )for same error but not still error

 

amount currency in pound while creating query i take 0 currency as amount as well and on changing the field status to external still same issue

 

please suggest and guide

 

 

thanks

anshul sharma

Last invoice date in bex

$
0
0

Hi

I would like to have last invoice date in bex in which it  should not show date in report level i had done exception aggregation last value and ref char calday in report level it is showing total value when i am not taking cal day in rows but i wont only last day result without keeping cal day in rows can any one suggest me any idea on this.

How to send message to SAP, if any deadlock issue occurred?

$
0
0

How to send message to SAP, if any deadlock issue occurred? As an SAP Basis Consultant what should we need to do?


SAP BW HR DATASOURCES

$
0
0

Hi All,

 

 

can you please tell me where i can find the data source or tables for the info like the count of opening strength for a month , new joinees in the month, resigned employees for a month .

 

any help will be appreciated ,

 

thanks and regards

how to create partitioning over the cube by regions logically ?

$
0
0

how to create partitioning over the cube by regions logically ?

BEx Query Report

$
0
0

Hello,

 

Can anybody help please:

 

Why is my BEx Report showing ERROR after each figure in each cell please

 

VendorTotal Debit PostingsTotal Credit PostingSales for the Period
10010.000.000.00
10021,982,424.24 ERROR1,982,424.24 ERROR-1,982,424.24 ERROR
10032,859,066.04 ERROR2,920,527.95 ERROR-2,920,527.92 ERROR
10042,871,455.69 ERROR2,955,917.60 ERROR-2,955,917.57 ERROR
100544,720,155.13 ERROR45,973,774.17 ERROR-45,971,037.11 ERROR
100644,932,000.45 ERROR46,303,552.80 ERROR-46,294,935.88 ERROR
100744,953,790.75 ERROR46,325,343.10 ERROR-46,316,726.18 ERROR
100844,955,367.25 ERROR46,326,919.59 ERROR-46,318,011.24 ERROR
Overall Result44,955,367.25 ERROR46,326,919.59 ERROR-46,318,011.24 ERROR

Enhancing Cube with New value field and it should be back posted

$
0
0

Dear Guru's,

 

I have requirement needs to be done which is we have got cube( which hold information about bar's)

 

1 hold's twelve years worth of data (253,296,530 million records)

2 basically it has got customer ship to number, number of taps according in each outlet(customer ship to) according brand of beer.

3 i have to create a new value field which is nothing but value field populated by posting a value of £X depending on brand of beer ( example if it is carling new value field should be multiplied by £3 for number of tap's available) and this should be back posted to twelve years worth of data .

4 we have about ten different beer brand so can this be done by creating one value field or ten different value fields?

5 is this achievable using Remodelling concept ?

6 is it better if it done at reporting level?

 

your help on this will be much appreciated......

 

Kind Regards,

Shanmugam.

SPO Dynamic Partition using by BAdi

$
0
0

Hi Experts ,

 

i want to create badi for my IC SPO which has 3 partitions.

when i run t-code RSLPO_MASS_ACT, it should fulfill the partitions as below:

 

at first run ; partition1 should have 2013, partition2 : 2014 and Partition3:2015 data.

at second run; partition1 should have 2016  ,

at third run ,Partition2 should have 2017 data.

 

i guess on the GET_T_PART_CRIT method correnponding code has to be written.

 

can anyone help me on that code ?

 

thanks in advance.

Erdem.    

Statistic Tables update using RSANAORA

$
0
0

Hi Gurus,

 

I have triggered Stats update for all the tables using RSANAORA program for all MASTER DATA TABLES, E FACT TABLES, F FTABLES AND ALL DIMENSIONS as back ground job. all the jobs have finished apart from E Tables it has been running for past 48 hours will there be any impact on reporting ?

 

Regards,

Shanmugam

WDBS.DLL error in bex using RRMX tcode

$
0
0

Hi Guys,

 

when i am using RRMX tcode in SAP bw i am getting the below error.

 

run time error "53".

file not found- wdba.dll


Releoad Data for 2LIS_11_VAITM

$
0
0

Good Morning,

 

we had some troubles with the data source 2LIS_11_VAITM. Now it is fixed. But we discoverd that records for at least two weeks in december are missing.

We run the datasource on a daily delta. It is possible to reload the whole december with a full update to get the missing records?

Can you please guide me?

 

Thank you very much!

Characteristic value authorization without missing the records: Bex

$
0
0

Hi All,

 

Need to mask the characteristic values with "Confidential" for a column field to a set of users without missing the row in Bex report during runtime

 

Confidential users                          

CNO       CTRY Name       Email

101        US                     abc@mail.com

102        UK                     def@mail.com

103        US                     ghi@mail.com

 

 

Non- Confidential users

CNO       CTRY Name       Email                 

101        US                      Confidential

102        UK                      Confidential

103        US                      Confidential

 

These confidential users are maintained in a field (ZCONFUSR)  based on which the email ID need to masked but the records/row should be seen for non-confidential reports.

 

The regular Authorization Based on Characteristic Value  will actually hide the complete records but in my case I want to mask only the characteristic values in a column with confidential.

 

How to achieve the above scenario ?

Ver: SAP BW 7.3

 

Thanks,

Mahesh

BW Data base Sizing.

$
0
0

HI Experts,

 

 

My client is asking for database size in BW table for few reports, their idea is to calculate how much is the DB size for cubes for each report on monthly basis to find the DB growth for few critical reports. please suggest me how to calculate the DB size of CUBE for month. is there any formulas to calculate DB size for month based on Record count?.

 

Regards,

Jagadeeshwar.

SAP NetWeaver 7.0 EnhP1 BW ABAP Support Packages

$
0
0

Summary Notes - SAPBWNews Notes

With SAP NetWeaver 7.01 SPS 5 Xcelsius Enterprise 2008 (SP2) can be integrated into the BW transport system (TLOGO) and also access directly querydata. More information can be found in:

 

- SAP Network Blog: New Xcelsius 2008 - NetWeaver 7.0 integration soon available

- Documentation http://help.sap.com/content/bobj/bobj/index.htm

- Tutorials: SAP BusinessObjects BI Solutions Exploring SAP NetWeaver Business Warehouse Data

 

SAP NetWeaver 7.01
BW ABAP SP Number
SAPBWNewsComments
011172712released
021227874released
031227875released
041227876released
051324445released
061369212released
071369294released
081471463released
091369296released
101419539released
111601974released
121665768released
131732064released
141794836released
151868060released
161936601released
172013377released
182123573
192273996

 

Support Package Stacks:

Please see the SAP NetWeaver 7.01 Support Package Stacks page (SMP login required). This page is the central point of information for planning the implementation of Support Package Stacks (SP Stacks) for SAP NetWeaver 7.01.

 

For Regular Updates Please Subscribe to the Notes Above as Follows:

You need to display the note on the service marketplace page. Use the direct links above or use SAP Notes Search and enter the note number directly. To subscribe to this special note activate the "subscribe" button (left hand above the title line of the note page). Also make sure that your E-Mail notification is activated (for activation see note 487366)

int load anf delta load after Full load

$
0
0

HI everyone,

 

on 15.01.2016 i  loaded data from Datasource 0FI_AR_4 in source system to Infocube 0FIAR_C03 in BW with Full-update Info Package.

today i need to load new data into the Cube. so i am creating 2 Infopakages; init infopackage with out data transfer and delta infopackge.

My question is that: do i need to make full load onces again before initial load without data transfer and delta load?

Because if i make the initial load and then delta load, the system will load only the new data from today


Thanks

Viewing all 5981 articles
Browse latest View live


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