cancel
Showing results for 
Search instead for 
Did you mean: 

change time constraint of Infotype 0006 subtype 1 and subtype 2

Former Member
0 Kudos

Hi

Can anyone tell me how to change the TC of infotype 0006 subtype 1 and subtype 2.

Currently I tried to change the TC in table V_T582A but its giving me an error : "Text maintenance not permitted as infotype part of Data Sharing (T582G) "

Can anyone please advise.

Currently the TC is T

I want to change it to 2.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

go to se16, and table T591A you can change it from there. It is possible to change Time constraints, as different businessess has different setup.

Answers (3)

Answers (3)

Former Member
0 Kudos

Hai..

I think u can do as per hruser suggestion. But make sure to return back to the previous values after u finish off with ur requirement.

Former Member
0 Kudos

hi ,

you can use SE38 to create a report like :

to change the time constraint for IT0006 +subty 1 + 2

REPORT ZTEST.

tables: t591a.

data: wt_tc type table of t591a.

select * from t591a into table wt_tc where infty = '0006' AND

( subty = '1' OR

subty = '2').

if sy-subrc = 0.

loop at wt_tc into t591a.

t591a-zeitb = 'x'. "new TC that you need

modify table t591a from t591a.

endloop.

endif.

regards

Former Member
0 Kudos

Hi Markan,

Its not Possible to change the TC for any Standard infotypes and 0006 Address infotypes has many subtypes so SAP has provided T as TC for this. These are Standards.

Regards,

Narendra.