cancel
Showing results for 
Search instead for 
Did you mean: 

SAP B1 Query on Business Partner

Former Member
0 Kudos

Dear All,

I need to write a simple query that will provide me with the following details

  • Business Partner Number
  • Business Partner Name
  • The date the Business Partner was created/setup

I am able to extract the first two bits of information, not quite sure which table holds the 3rd data, will appreciate your comments/suggestions.

Regards

Raj

Accepted Solutions (1)

Accepted Solutions (1)

kothandaraman_nagarajan
Active Contributor

Hi,

Try this query:

SELECT T0.[CardCode], T0.[CardName], T0.[CreateDate] FROM OCRD T0 WHERE T0.[CardType]  = [%0]

Thanks & Regards,

Nagarajan

Former Member
0 Kudos

Thank You Nagarajan

Answers (3)

Answers (3)

FarazMaqsud
Explorer
0 Kudos

For HANA DB :-

Select T0."CardCode",T0."CardName",T0."CreateDate" From "OCRD" T0

Order By T0."CardCode"

Regards,

Faraz Maqsud

Former Member
0 Kudos

Hi,

Try this:

SELECT T0.[CardCode], T0.[CardName], T0.[CreateDate], T0.[CardType], T0.[CntctPrsn], T0.[Balance] FROM OCRD T0 WHERE T0.[CardType]  = [%0]

Thanks & Regards,

Amrut Sabnis

KennedyT21
Active Contributor
0 Kudos

HI

Select Cardname,cardcode,Phone1,Phone2,CreateDate

from OCRD

Try This

Regards

Kennedy

Former Member
0 Kudos

Thank You Kennedy

Regards