cancel
Showing results for 
Search instead for 
Did you mean: 

Clearing posting change notices

Former Member
0 Kudos

Hi All,

I'm trying to close out posting change notices manually by marking the status as U through LU02. Not able to create TO and clear this as the stock is no longer available and these are very old ones.

The problem is that the source and destination data are the same and its throwing an error.

Can you suggest any ways to clear these open posting changes

Regards,

Ashwin

Accepted Solutions (1)

Accepted Solutions (1)

former_member182609
Active Contributor
0 Kudos

Sap provided corrrection program to clear the posting change notices.Develop this program in your system then check.We are using 4.6c version.

To set the posting change in question to processed (U), please

implement the following correction program in your system.

1) Create program 'ZLTEST00' with type '1' and application 'L' with the

following code:

report zltest00.

tables: lubu.

parameters: w-no like lubu-lgnum, "warehouse number

post-no like lubu-ubnum, "posting change notice

status like lubu-statu, "status

update. "update

select single * from lubu where lgnum = w-no

and ubnum = post-no.

write: / lubu-lgnum,

lubu-ubnum,

'Status old >', lubu-statu,

'Status new >', status.

if update ne space.

update lubu set statu = status

where lgnum = w-no

and ubnum = post-no.

if sy-subrc = 0.

write: / 'Update posting change notice'.

else.

write: / 'No update posting change notice'.

endif.

else.

write: / 'No update posting change notice'.

endif.

To run above correction program:

1) You have to indicate warehouse number, posting change number and the

status which you want to set in the posting change.

2) Without including the UPDATE-parameter, the program only shows the

posting change, or

3) When you mark the parameter UPDATE then the posting change will be

changed.

Former Member
0 Kudos

Hi,

Can you please provide the OSS note for this?

Regards,

Ashwin

Former Member
0 Kudos

Hi Ashwin,

There is no SAP note with this report. You can use this report or you can directly update the status field on table LUBU in SE16 / SE16N to processed.

Regards.

Answers (1)

Answers (1)

csaba_timar
Explorer
0 Kudos

It is not recommended to update tables via SE16.