cancel
Showing results for 
Search instead for 
Did you mean: 

/SAPAPO/MC62 - Dump After applying support pack 11

Former Member
0 Kudos

/SAPAPO/MC62 - Dump After applying support pack 11

We have just applied the support pack 11 and we are tesign the system, everything looks fine except the CVC creation is dumping.

Plesae help -

if anyone have face the same problem - please advise

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Can you give us details on what the dump says?

Run the program to activate the BW objects : sapapo/ts_d_objects_copy

See if this helps.

Former Member
0 Kudos

Information on where terminated

Termination occurred in the ABAP program "SAPLRSMDATASTATE" - in

"RSM_INFOCUBE_WRITE_CHECK".

The main program was "/SAPAPO/TS_PLOB_MAINTAIN ".

In the source code you have the termination point in line 24

of the (Include) program "LRSMDATASTATEU11".

function rsm_infocube_write_check.

*"----

-


""Lokale Schnittstelle:

*" IMPORTING

*" VALUE(I_INFOCUBE) TYPE RSD_INFOCUBE

*" VALUE(I_RNSID) TYPE RSD_SID

*" EXCEPTIONS

*" WRITE_NOT_ALLOWED

*" INFOCUBE_NOT_FOUND

*"----

-


data: l_s_datastate type rrsm_s_datastate.

  • data state

select single * from rsmdatastate bypassing buffer

into l_s_datastate

where infocube = i_infocube.

if sy-subrc ne 0.

message x051(rsar) with 'infocube_not_found' i_infocube.

raise infocube_not_found.

endif.

  • nur weitere Tests, falls Request kleiner als qualok

if i_rnsid <= l_s_datastate-qualok.

message x051(rsar) with 'sid_too_low' i_rnsid

l_s_datastate-qualok.

else.

if i_rnsid <= l_s_datastate-compr

or i_rnsid <= l_s_datastate-rollup_rsvd_dual

or i_rnsid <= l_s_datastate-dmall.

message x051(rsar) with i_rnsid

l_s_datastate-compr

l_s_datastate-rollup_rsvd_dual

l_s_datastate-dmall.

raise write_not_allowed.

elseif l_s_datastate-rollup_rsvd_dual = 0.

  • es sind noch keine Aggregate vorhanden

  • check, ob ein Aggregat gefüllt wird

  • was ist mit einem Data-mart-Lauf ??? E.M.

Former Member
0 Kudos

Hi Charlie,

Looks like the installation or something deactivated the POS infocube that's internally generated by SAP for storing CVCs. You should be seeing the POS active is MSDP_ADMIN. Go to the same POS and right click and activate the already active POS. We had this problem and when we activated the POS, the system activated the cube in RSA1 automatically. DONOT try to activate the POS infocube that was generated by system. It is a system generated object. Only system should handle it. or else it leads to inconsistencies.

If that still doesnot solve your problems, try these consistency checks:

/SAPAPO/TS_LCM_CONS_CHECK

/SAPAPO/TS_PSTRU_CONS_CHECK

Please let me know what happened either way.