cancel
Showing results for 
Search instead for 
Did you mean: 

VKM4 credit limit amount

Former Member
0 Kudos

Hello,

I have the issue in vkm4 report in which credit limit amount shown in thousands.

kindly tell me how i get the total value of credit limit in VKM4 report.

thanx in advance.

Accepted Solutions (1)

Accepted Solutions (1)

former_member217082
Active Contributor
0 Kudos

Hi

Check in OYO4 wheather the decimals have been maintained or not . If not maintained ,just maintain it then you will get in the VKM4 report

Regards

Srinath

Former Member
0 Kudos

kindly check there is no T-Code like that

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

This is a t.code used for the release of the documents for accounts. as you want to know the total cr.limit for that customer then move your cursor to right side till the end now you can view the total cr .limit of the customer.

What you see in the initial is the value of the current document.

Hope this will solve your issue.

Srinu

marcin_milczynski
Contributor
0 Kudos

Hi Danish,

There is no customizing on this as it is hardcoded. To force system to show limit not in thousands you need to modify FORM tausender_werte in include RVALVFORMS and comment out the line for field KLIMK (marked wit arrow below):


FORM tausender_werte.

  LOOP AT postab.
    DIVIDE postab-amtbl BY 1000.
    DIVIDE postab-kwkkb BY 1000.
    DIVIDE postab-kwkkf BY 1000.
    DIVIDE postab-oeikw BY 1000.
    DIVIDE postab-olikw BY 1000.
    DIVIDE postab-ofakw BY 1000.
    DIVIDE postab-klimk BY 1000. "<--------------
    DIVIDE postab-kwkkd BY 1000.                           "P30K0022860
    postab-awaer = text-tsd.
    postab-awaer+1 = postab-cmwae.
    MODIFY postab.
  ENDLOOP.

  LOOP AT xvbkredet.
    DIVIDE xvbkredet-kwkkb BY 1000.
    DIVIDE xvbkredet-kwkkd BY 1000.
    MODIFY xvbkredet.
  ENDLOOP.

ENDFORM.                               " TAUSENDER_WERTE

BR

Marcin

Former Member
0 Kudos

I guess OY04, not OYO4.

but this is not a right solution. I have the same question. I don't know why it's showing thousand amount.