cancel
Showing results for 
Search instead for 
Did you mean: 

Field KZABSVER not in table FKKVKP

Former Member
0 Kudos

Hi all,

I am not sure if this is ABAP problem, but I hope I am in right section:

We have installed ERP 6.0 EHP4 IDES (on MaxDB 7.7.06.010) and in table FKKVKP is missing field KZABSVER (so I am unable, for example, to run ES31/ES32, ...). Does anybody have idea how to fix it? I did not find any note about this and google also did not help...

Thanks

Peter

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Ok, after many attempts, this worked pretty good:

DATA: ls_switch TYPE sfw_switch_state.

ls_switch-switch_id = 'ISUT_MODIF'.
ls_switch-version = 'A'.
ls_switch-state = 'T'.

MODIFY sfw_switch_state FROM ls_switch.

Table SFW_SWITCH_STATE contains states of switches and although this switch (ISUT_MODIF) could not be enabled (standard SAP object), this activates it.

Former Member
0 Kudos

Hi

Are you able to tell me how you got this problem and activated SI_FKKVKPS ?

Any thoughts appreciated.

Thanks

Former Member
0 Kudos

My solution is above your post:


DATA: ls_switch TYPE sfw_switch_state.
 
ls_switch-switch_id = 'ISUT_MODIF'.
ls_switch-version = 'A'.
ls_switch-state = 'T'.
 
MODIFY sfw_switch_state FROM ls_switch.

Although it is probably not "kosher" solution, it worked...

Former Member
0 Kudos

Hi Peter

I did see the earlier post, but in our system this setting is already active , so was curious to why it worked in your case .

Anything thoughts on where else to look ?

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Peter,

When you go to table FKKVKP you can see an include SI_FKKVKPR at the bottom. Double click on that and you can see your field KZABSVER in that.

Please let me know if your issue is something else.

Regards,

Kiran.

Former Member
0 Kudos

Thanks for reply.

Yes, I see that include, and yes, it contains KZABSVER but in SE11, at this structure is remark "New" (so not "Active"), and also "Switched off".

Former Member
0 Kudos

Hi Peter,

If you think you need it's activation you can go ahead and activate it. However, you need to keep it's usage and impact in mind before activation. Moreover there are o inconsistencies in the structure.

Regards,

Kiran.

Edited by: Kiran Mohan on Aug 4, 2010 1:08 PM

Former Member
0 Kudos

I am not sure if I need its activation Just ES30/ES31/ES32 are now dumping, because actually FKKVKP does not contains that field.

Anyway, I tried to activate it - but it ends with error:

Switchable Object Not Activated

Errors occurred during generation

Message no. EU239

And also, this switch cannot be turned on - I cannot maintain standard switch (ISUT_MODIF), it is asking for object key.

Edited by: Peter Marko on Aug 4, 2010 2:28 PM

Former Member
0 Kudos

Please contact your BASIS team if they can do anything from their end

Former Member
0 Kudos

Hi Peter,

What you can do here is open table FKKVKP in SE11 Transaction and just search for "SI_FKKVKPR" in the table, here you can find data element as include structure where you can double click it will include the fields of structure SI_FKKVKPR and then activate the table.

You can find field KZABSVER at 25 position of this structure.

Cheers!

Sagun Desai

Former Member
0 Kudos

Hi, as I mentioned above:

Anyway, I tried to activate it - but it ends with error:

Switchable Object Not Activated

Errors occurred during generation

Message no. EU239

Edited by: Peter Marko on Aug 5, 2010 12:58 PM

Former Member
0 Kudos

Hi Peter,

Why don't to implement customer include CI_FKKVKP(in table FKKVKP) with field KZABSVER. It might help just try and check.

Cheers!

Sagun Desai