cancel
Showing results for 
Search instead for 
Did you mean: 

Error in Argentine doc. numbering for cc 1650, subs. 0008, char. R, doc.type H,,, Message no. 8A127

former_member393846
Participant
0 Kudos

Dear All,

Kindly assist me, I did not find relevant threads for this.

I made the settings for Argentina Remito number range.

I was testing the below scenario;

  1. SO
  2. Delivery, WM picking
  3. PGI

I am getting this error as "Error in Argentine doc. numbering for cc 1650, subs. 0008, char. R, doc.type H,,, Message no. 8A127"

Kindly assist or guide me to the right thread.

Regards,

Shyam.

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member393846
Participant
0 Kudos

Dear All,

We were able to resolve this issue in DEV and Q servers and tested successfully as well. But in Production, we are getting the same error again. All my configuration is available in Prod. We are unable to trace out the error.

error-pre.png

Kindly assist, when we did debug, we found this number range missing.

pre.jpg

Regards,

Shyam.

Lakshmipathi
Active Contributor
0 Kudos

Have a look at OSS note 156331

VeselinaPeykova
Active Contributor
0 Kudos

You did not explain what you have configured so far, how do you expect that anyone without access to your system could verify the correctness of the setup?

Anyway, you could place a breakpoint in J_1A_OFF_NUMBER_GET and check what is wrong on your own (or with the help of a local developer).

former_member393846
Participant
0 Kudos

Hello,

These all I have done below;

ariel-1.jpg

VeselinaPeykova
Active Contributor
0 Kudos

This is just a part of the configuration needed to process AR documents.

The easiest way would be to debug J_1A_OFF_NUMBER_GET, because going together through the whole AR localization setup will take a long time.

fernando_evangelista
Contributor
0 Kudos

I Agreed with Veselina, the most commom issues related to this is due to some missing customizing and may be find debugging the FM.

I find many errors due to missing customizing under j_1aofnr1.


e:g:

FUNCTION J_1A_OFF_NUMBERING

SELECT SINGLE * FROM j_1aofnr1 WHERE bukrs = i_bukrs
AND j_1asnr = i_snr
AND j_1aprtchr = i_prtchr
AND j_1adoccls = i_doccls.

* "error handling
IF sy-subrc NE 0.
RAISE determ_not_possible.
ENDIF.

You may review the above point.