Monday, February 8, 2016

Common Issues/Points to Remember


  • Infopackage Failures / Initialization Errors
    • Refer to this LINK

APD Related Errors

APD Lines missing in BW
This is due to SAP GUI update to 7.4. Refer SAP notes 2227956 ( did not work for me )


PSA Related Errors

PSA Deletion : Invalid DataStore object name /BIC/BXXX: Reason: No valid entry in table RSTS
Take the /BIC/ table name and open in SE11. Look for the datasource name in the description of the table and activate the datasource.

Bex Errors

When running analyzer, " Field symbol has not been assigned " 
The query does not throw any error but when analyzer is run, you get the field symbol error. There might be various reasons for this error , but in my case, the query I was working with had more than 50 fields as drill down and the query was not able to display it. Once the number of columns are reduced the error got away.
When running in RSRT, instead of using 'ABAP BICS' in the drop down for query display use LIST and run it. It will give you the message "  AMaximum number (50) of drilldown characteristics is exceeded" This is in my case.

Master Data Related Errors

Attributes of characteristic ZMASTER are locked by terminated change run 983212345
Lock NOT set for: Loading master data attributes
In Tcode : CHANGERUNMONI, you can see the status of the change run . 
Get the ID from there and run FM 'RSDDS_AGGR_MOD_CLOSE' to close/cancel the run.


Process Chain Related

Process Chain Triggering not triggering from event
When triggering process chain with event, the PC should be triggered manually first. this will schedule the chain for the run. Without that, even though the event is triggered, the process chain will run.

 Transport Errors

Start of the after-import method RS_TRFN_AFTER_IMPORT for object type(s) TRFN ( )
No mapping in RSLOGSYSMAP for source system <source system name>
Whenever there is a new source system mapping being added to the system, eg: a new source connection in UD Connect, entry needs to be maintained in table RSLOGSYSMAP. Once the entry is maintained, re-import the transport and it will go fine.

Error when creating transfer structure /BIC/CCQD0MATERIAL_ATTR in source system QECC100
Error when activating DataSource 0MATERIAL_ATTR QECC100
Error when creating transfer structure /BIC/CCQD0MATERIAL_ATTR in source system QECC100
Error when resetting DataSource 0MATERIAL_ATTR QECC100 to the active version
Install SAP Note 2524663 which actually needs implementation of Note 2214733
This note would create a new program ''RS_SCRSYSTEM_R3_CHECK' in the source system.
Run the program which in check mode 'NO_DB_UP = 'X'' and it will show you the inconsistent datasources.
Run the program with  'NO_DB_UP = ' ' and this would correct the datasources.
Re-import the transport and it should be fine.
This error might also occur when activating the datasource in BW system.

Transport fails in ChaRM with error "requests do not match the component version of the target system"
This is due to component mismatch in the system. (System - Staus - Product Version )
Refer SAP Note 1848094.
In the Options tab, click 'Ignore Invalid Component Version' option and import the transport.

DSO Related Errors

Values like Amounts, Quantities disappear after activation
If the fields are being populated in routines, then they must be make INITIAL in the transformation. Else. the values will not be updated in the DSO.


ECC Errors related to BW

V3 Jobs failure : Internal session terminated with a runtime error MESSAGE_TYPE_X
This can be because the LIS structure was changed, where there are entries present in LBWQ. The only way is to delete LBWQ entries and re-run the V3 job. Deleting LBWQ entries result in missing delta entries.
So whenever this is done, a FULL load needs to be done.


Struct. from appl. 03 due to open V3 proc. not changed -> Long text 
When adding new fields to the extractor, you might get the error.
This is because there are some unprocessed V3 entries or failed jobs which locked the structure. Check with ECC team for this or check SM13.
This mostly occurs in development ( as prod systems donot have failed jobs hanging around long). Once the locks are deleted, you can change the strucuture and the transport also goes fine between systems.

ABAP Programming Errors

The column name "MATNR" is ambiguous ABAP/4 Open SQL statement.
This occurs when using joins in a select statement.
This means that when using joins in select statement, same field is present in more than one table being used. If you are using a prefix for each table involved , you do not see this error. Else, use prefix '~' to mention which take the field needs to be read. 

SM30 Jobs running Long

Jobs are running very long.
There are many reasons for that . Some of the areas to check are listed below.
Check if there are any locks on table BALDAT.

No comments:

Post a Comment