‎2009 Jan 28 4:02 PM
Any help will be greatly appreciated - Thanks RM
Time Constraint Error
Information on where terminated
Termination occurred in the ABAP program "SAPUP50R" - in
"CHECK_TIME_CONSTRAINT_S1".
The main program was "MP000000 ".
In the source code you have the termination point in line 1069
of the (Include) program "UP50RU01".
Error occurred during batch input processing
Source Code Extract
l_is_inconsistent = 'X'.
ENDIF.
Check if there are inverted time periods.
IF l_prelp_line-begda > l_prelp_line-endda.
l_is_inconsistent = 'X'.
ENDIF.
Check if there are overlaps or gaps.
IF NOT l_prelp_before IS INITIAL.
l_date_difference = l_prelp_line-begda - l_prelp_before-endda.
IF l_date_difference 1.
l_is_inconsistent = 'X'.
ENDIF.
ENDIF.
l_prelp_before = l_prelp_line.
ENDLOOP.
IF l_prelp_before-endda '99991231'.
l_is_inconsistent = 'X'.
ENDIF.
IF l_is_inconsistent = 'X'.
IF p_access_type = 'R'.
490 Datenbankschiefstand Personalnummer & Infotyp &
MESSAGE x490 WITH l_prelp_before-pernr l_prelp_before-infty.
ELSE.
491 Unzulässige Daten Personalnummer & Infotyp &
Line 1069 Error occcurs >>>> MESSAGE x491 WITH l_prelp_before-pernr l_prelp_before-infty.
ENDIF.
ENDIF.
ENDFORM. " CHECK_TIME_CONSTRAINT_S1 "XYVN0352581
&----
-
*& Form clear_no_adapter_needed new "XREN844998
&----
-
text
-
-
FORM clear_no_adapter_needed .
CLEAR no_adapter_needed.
ENDFORM. " clear_no_adapter_needed
&----
-
*& Form set_no_adapter_needed new "XREN844998
&----
-
text
-
-
FORM set_no_adapter_needed .
no_adapter_needed = 'X'.
ENDFORM. " clear_no_adapter_needed
‎2009 Jan 28 4:07 PM
This is a standard SAP program - have you looked for notes??
Rob
‎2009 Jan 29 2:23 PM
Yes we checked the SAP notes and all the notes were applied. But I will doublecheck.
‎2009 Jan 29 5:00 AM
Refer Notes : 361522, 356876, 361522 & 569141. depending on current version.
‎2010 Dec 22 1:21 PM
Can you please help me for the problem arising in ECC 6.0 and 4.7 and refer some solution<< removed by moderator >>
Note : All notes are applied till ver 4.6c
Edited by: Rob Burbank on Dec 22, 2010 1:30 PM
‎2012 Oct 17 12:22 PM
‎2012 Oct 17 2:41 PM
Hi,
Well, are you trying to do a batch input on infotype 0000? If yes you need to check that the proposed values respects the time constraint, meaning no gap, no overlaps and no inversions. Also fields SUBTY, OBJPS, SPRPS and SEQNR must remain initial when processing IT0000...
Kr,
Manu.