cancel
Showing results for 
Search instead for 
Did you mean: 

SRM Contract: Version Management

Former Member
0 Kudos

Hi,

In SRM 7 portal, while creating contract it throws following error:

'Version 0 is not defined for fiscal year 2011.'

Today is 1st October and as per setup in system fiscal year 2011 starts. Can anyone please let me know what customizing I need to do for this.

Thanks & Regards,

Nilesh Kumar

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member183819
Active Contributor
0 Kudos

GP 626 Version & is not defined for fiscal year &.

This error comes from backend

FM

K_VERSN_READ

  • read year dependent parts of version parameters

CHECK I_GJAHR <> '0000'.

IF I_KOKRS <> LS_TKA07-KOKRS OR

I_VERSN <> LS_TKA07-VERSN OR

I_GJAHR <> LS_TKA07-GJAHR.

SELECT SINGLE * FROM TKA07 INTO LS_TKA07

WHERE KOKRS = I_KOKRS

AND VERSN = I_VERSN

AND GJAHR = I_GJAHR.

IF SY-SUBRC <> 0.

MESSAGE E626(GP) WITH I_VERSN I_GJAHR I_KOKRS

RAISING NOT_FOUND_GJAHR.

ENDIF.

PERFORM CHANGE_TKA07 USING LS_TKA07.

ELSE.

IF BYPASSING_BUFFER = 'X'.

SELECT SINGLE * BYPASSING BUFFER FROM TKA07 INTO LS_TKA07

WHERE KOKRS = I_KOKRS

AND VERSN = I_VERSN

AND GJAHR = I_GJAHR.

IF SY-SUBRC <> 0.

MESSAGE E626(GP) WITH I_VERSN I_GJAHR I_KOKRS

RAISING NOT_FOUND_GJAHR.

ENDIF.

ENDIF.

PERFORM CHANGE_TKA07 USING LS_TKA07.

CHECK with piece of code with tech resource and FICO consultant

Muthu