Application Development 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: 

Details Of One TIme Customers

Former Member
0 Kudos
532

i want to know the details of ONE TIME CUSTOMER such as SALES AREA,SALES ORG ETC. fROM WHICH TABLE I CAN GET IT

4 REPLIES 4

Former Member
0 Kudos
249

Hi Dheeraj

Customer Details can be extracted from table KNA1. There is a field: XCPDK in this table which identifies whether ONE TIME customers.

For their sales data you can go with these customer to table KNVV.

Maybe below code can help you to understand:

  select a~kunnr a~name1 a~adrnr b~vkorg b~vtweg b~spart ...
         into table itab
         from kna1 as a
         inner join knvv as b
         on a~kunnr = b~kunnr
         where a~kunnr in s_kunnr
         and   a~xcpdk = 'X'. <b>-> One time Customer</b>

Kind Regards

Eswar

former_member404244
Active Contributor
0 Kudos
249

Hi Dheeraj,

check the below tables for one time customer/account..

KNA1,LFA1,VBPA,VFPA,VTPA.

Regards,

nagaraj

Former Member
0 Kudos
249

One time accounts are handeled differently than normal customers. Go to table BSEC with the company code, FI document number, fiscal year, and line item number.

Rob

Former Member
0 Kudos
249

hi dheeraj nadamwar,

A term for a collective master record used for the processing of transactions involving miscellaneous customers with whom you do not regularly do business.

When you record a transaction involving a one-time customer, you must enter the customer data manually.