Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Which number range object?

Former Member
0 Likes
1,871

Dear all,

I hope you can help me with the following.

I am establishing a new education enviroment for a customer. This is a copy of the testsystem. (ISU R3). When I am creating customers (EPRODCUST) i get an ABAP error because the system is writing duplicate errors in the table JSTO. This accours in the following code:

 
* Verbuchung Statusobjekte
  DESCRIBE TABLE jsto_ins LINES sy-tabix.
  IF sy-tabix > 0.
    INSERT jsto CLIENT SPECIFIED
                FROM TABLE jsto_ins.
  ENDIF.

My question is not why I get this message, I allready know that. The thing I want to know which object i need to maintence in SNRO to dissolve this issue.

Is there anyone who can help me with this?

Edited by: Matt on Jul 22, 2010 10:22 AM - made title more meaningful

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,314

Welcome to SDN.

Unfortunately I do not have access to an ISU-system, so I cannot come up with an exact answer - but: since you have duplicate records, you should have records of aborted postings, too. So check in tx. SM13 for those records > doubleclick on it > position the mouse > GoTo > Display Update Data. You should find more information there ...

4 REPLIES 4
Read only

Former Member
0 Likes
1,315

Welcome to SDN.

Unfortunately I do not have access to an ISU-system, so I cannot come up with an exact answer - but: since you have duplicate records, you should have records of aborted postings, too. So check in tx. SM13 for those records > doubleclick on it > position the mouse > GoTo > Display Update Data. You should find more information there ...

Read only

0 Likes
1,314

Thank you for the welcome

I am afraid your suggestion did not worked. There arent any updaterequest in this enviroment. I am pretty sure the problem is caused by the use of an non-tested enviroment which only is used for technical dry-runs. This is something I have to deal with.

Could you tell me in general how I can decide which object in SNRO is related to a keyfield in a table.

Thanks a lot!

Read only

0 Likes
1,314

Unfortunately, I don't know the object off the top either but you could probably scan the entries in NRIV and find it fairly easily by comparing the number status field with your failed number. Also, if you have number range issues with client copies, just take the contents of NRIV from the source client and overlay the contents in NRIV in the target client using an LSMW.

Read only

0 Likes
1,314

Thank you very much for this solution.

Working with the table NRIV does the trick!

Kind regards,

Gerco

Edited by: Gercod on Jul 23, 2010 11:04 AM