Query for customer classification

we have maintained some data as characteristics in the classes for the customer master, my requirement is to generate the characteristics maintained for the sold to party using the SAP querys.
Can some one assist in creating the required query?
regards,

Please search the forum before posting;many of the questions are already answered;
For example, check this link, similar question has been answered Re: Tables related to relationship between Customer and Classification
Also check this link How to Get Customer Classification details
Regards,

Similar Messages

  • Querying for custom picklist values

    Hello all,
    I have created a new field on my opportunity type called "Industry" and gave it picklist values. However, the system is not allowing me to query for the values using the Picklist web service. Am I missing a step here, or does the system not allow querying for custom picklist field values? I can get to certain lists of picklist values for Opportunity (Type, Probability, some others) but not the picklist I created. Am I doing something wrong?
    Thanks!
    -Kevin Green

    Hi,
    Find integration tag for custom field in Field Setup. When you call getPicklist method, pass three values like Object type(ex: Lead), integratin tag for the custom field, "" ( this is language, this field is no need for English languague)
    Hope this willl work
    Raja Kumar Malla
    [email protected]

  • Query for Customer Shipping instructions:

    Hi
    i want a query for Customer Shipping instructions. i am working on depot repair module
    what about Customer data conversion template? can anyone help me in the query

    Hi Team,
    This is a shipping report in header level we have the customer information with site address. The requirement is along with site address we need to show the phone number and Fax number .For this we need to write the formula column.Thes are the comes through HZ parties only. I have no idea how to achieve this.
    Best Regards
    NRC

  • Query for  customer and its all the underlying sites in AR

    Hi Expert,
      Please help me to build a query for a customer and its all the underlying sites .
    Thanks

    Please check this thread:
    Running Total in QLD
    Thanks,
    Gordon

  • SQL query for custom alert view

    I have created a custom alert view and scoped to show alerts related to group of servers.
    Alert view Criteria: Resolution State - New, Severity - Warning and Critical, Group - "Group 1"
    I am trying to query the Operations Manager database to show the alerts with same criteria using below query.
    select MonitoringObjectName, ResolutionState, Priority, Severity, TimeRaised, TimeAdded, TimeResolved, AlertStringName, AlertStringDescription from AlertView where ResolutionState = '0' AND (Severity = '2' or Severity = '1')
    AND
    MonitoringObjectId IN (select TargetObjectId from RelationshipGenericView
    where SourceObjectDisplayName = 'Group 1')
    in Console i see both warning and critical alerts where as in SQL query output i see only critical alerts.  Could you please correct if I am using wrong query. also please share your suggessions if i am completely wrong on this.
    Kind Regards,
    Bommi
    ~Bommi

    your query looks perfectly fine. Are you sure if the alerts you see in the console are of the 'Resolution State =0' (New). It might be the case where the alert have moved to a fidderent resolution state.
    Also, take a sample warming alert from console, query for the same in DB and check the Severity value. If it is '2'.
    Regards,
    Saravanan

  • Change Pointers for Customer Classification

    Hi All,
    I am using Object Class 'DEBITOR' to capture the Customer Classification changes.I am able to see the entries in BDCP but not in CDHDR and CDPOS Whenever i add the classifcation to the customer.
    I need to add these classification changes to my ZDEBMAS Message type thorugh BD52. I am not able to see the 'DEBITOR' Object class to add the classification changes too.I don't find the 'DEBITOR' Object class in the table TBD62 also.
    Can anyone help me how to link the Object class 'DEBITOR'  to capture the classification changes for my Z message type.
    Thanks In Advance.
    Regards,
    Sudha.

    Hi,
    U have to create a object class in SCDO transaction code and then u have generate update program...
    once u do that u can find the list of includes...and then u need to call them in a custom program which will update to CDHDR and CDPOS...
    for example..
    goto SCDO->SPEICFY the object class as MATERIAL and then display, now click on update geneartion program in the aplication tool bar ,  u will find includes there, similarly u have to generate those includes in SCDO. take one include and they put it in se38 and do where used list..u can see how they are used.
    however they will be genrated by SAP only thing u have to do is u need to press that button and press on save button...
    Regards,
    Nagaraj

  • Query for Customer site Phone number and Fax number  in Oracle Apps

    Dear All,
    Can anyone guide me how to write qurey for Customer site phone number and Fax number for Acive customers.
    Thanks in advance.
    Best Regards
    NRC

    Hi Team,
    This is a shipping report in header level we have the customer information with site address. The requirement is along with site address we need to show the phone number and Fax number .For this we need to write the formula column.Thes are the comes through HZ parties only. I have no idea how to achieve this.
    Best Regards
    NRC

  • Write query for Customer recievable Report.

    *1.No concrete solution given to take project wise, bill wise. 2. Opening dues break up - project wise. Bill wise. 3. Aging days not able to select the required interval. Only standard intervals are available. 4. How to find the exact payment receivable for an customer. Pl tell me. How write a query in query generator..Sl no     V.Code     Customer Name     Project Code     Prj Type     Series     In no     Posting Date     Due Date     Future Remit     0 - 30     30 - 60     60 - 90     90 +     Total
    For getting Customer receivable Aging Reports. Its SAP B1 2005 Version.*

    Hi,
    Try this. May be this will help you.
    select OCRD.cardcode 'Supplier Code',OCRD.cardname 'Name',sysdeb 'Debit GBP',syscred 'Credit GBP',
    case JDT1.transtype
    when '-2' then 'OB'
    when '13' then 'IN'
    when '16' then 'DN'
    when '24' then 'RC'
    else 'Other'
    end 'Type',
    Ref1,
    fccurrency 'BP Currency',
    CONVERT(VARCHAR(10), refdate, 103)'Posting Date' ,
    CONVERT(VARCHAR(10), duedate, 103) 'Due Date',
    CONVERT(VARCHAR(10), taxdate, 103) 'Doc Date' ,
    CASE
    when DATEDIFF(dd,taxdate,current_timestamp) < 31
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "0-30 days",
    case when (datediff(dd,taxdate,current_timestamp) > 30
    and datediff(dd,taxdate,current_timestamp)< 61)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "31 to 60 days",
    case when (datediff(dd,taxdate,current_timestamp) > 60
    and datediff(dd,taxdate,current_timestamp)< 91)
    then
    case
    when syscred <> 0 then syscred * - 1
    else sysdeb
    end
    end "61 to 90 days",
    CASE
    when DATEDIFF(dd,taxdate,current_timestamp) > 90
    then
    case
    when syscred  0 then syscred * - 1
    else sysdeb
    end
    end "90 + days"
    from JDT1,OCRD where JDT1.shortname = OCRD.cardcode and cardtype = 'C' and intrnmatch = '0'
    ORDER BY OCRD.CARDCODE, taxdate
    Thanks
    Pradnya

  • Transaction code thro' SAP Query for customer spefific report

    hi experts,
    how to create transaction code (using SE43-) for the sap query created on own??
    I have created the following required for a customer specific report
    1.Infoset thro sq02
    2.user group thro sq03 and assigned it to infoset
    3.query thro sq01 and saved it with text
    earlier i have used logical database PNPCE ( relevant for PA and payroll modules reports)
    using sq01 , go to basic list , selected required infotypes and fields and
    then selected, SAP List viewer for viewing and i get the report.
    Now my question is how to create a separate transaction code for this sap query which i created
    should i use SE43( area menu maintenance and area class???_)
    should i create a variant and go to SE43??
    advice solicited
    snr

    Hello
    when you excecute the query in right han side corner  you can get the program name
    go to se80 select program & type this name and then you can create a tcode for that prog in SE80
    reward points if helpful.
    the prog name will be something like : AQZZ/SAPQUERY/* " ur query name
    you can search for the name also in this manner

  • Refined query for customized numbering

    Hi,
    Below is the query that used to generate a customized number for service call
    It was set to auto generate when user select the customer code.
    The number will increment only if the service call is created.
    Before it has no issue  if one user create a service call at one time.
    However, I found a issue when A user open a service call and number was generated (ABC0001), user haven't create the service call.
    At the meantime, B user also opening a service call and number was generated (ABC001), B user  created the service call, following by A user.
    So when I run a report, there will be two ABC001.
    So wonder is this issue due to query or some other setting ?
    Declare @fmt_num as Integer
    Select @fmt_num=count(OSCL.CallID) from OSCL
    SELECT 'ABC'+ replace(str((@fmt_num)+1,7,0),' ',0)
    Thanks

    Hi,
    1. Create header UDF
    2. Assign your query to get customized number ( ABC0000005)
    3. There is no message if two users are open service and update.
    Thanks & Regards,
    Nagarajan

  • Query for Customer Receivables Aging Report

    What is the query to the Customer Receivables Aging Report? I cannot seem to reproduce the same results that SAP has in my Crystal Report.
    Thanks

    To reproduce it by query would not be an easy job.  Crystal Report is a better tool for report.
    Thanks,
    Gordon

  • SAP QUERY for Customer Master

    I need to create a SAP Query to generate a report for customers and i need to use KNA1,KNB1,KNVV,KNVP and KNB5 tables.I have no idea how to create Query's using SQ01,02 and 03.Can some help me reagarding this in terms of documentation or any usefull material.I am using ECC 6.0 any documentation based on this version is helpful.
    Regards,
    Sri.

    Review following link;
    http://www.thespot4sap.com/articles/sap_abap_queries_create_the_query.asp
    Thanks.

  • Query for Customer data

    Hi friends,
    I am trying to create a query through SQVI.  My requirement is
    Input fileds(selection fields): Comapny Code
    Output fileds: Customer No.
                        Customer Name
                        Recon. A/c
    I have tried with join tables of LFA1 and LFB1  but I am not able to get the out put.
    Can anybody tell in which table and fields are to be selected.

    Hi Muraleedharan,
    I have tried by joining KNA1 and KNB1.  I have taken
    selection fields - KNB1- BUKRS
    list fieds - KNA1-KUNNR
                   KNA1-NAME1
                   KNA1-ORT01
                   KNA1-AKONT
    After execution i am not able to get the data.  No data selected message is getting.

  • Query for Customer Balances and Corressponding Incoming Payments

    Hi all,
    How to get the account balance of a particular customer with corressponding incoming payments.
    Eg: Suppose one Invoice having 5000.00 for which i got 3 incoming payments of 1000.00 2000.00 and 500.00, now i need to give a report as
    CardCode | Balance | Adjusted Amount | Un Adjusted Amount
    xyz | 5000.00 | 1000.00 | 4000.00
    xyz | | 2000.00 | 2000.00
    xyz | | 500.00 | 1500.00
    i have mentioned for one customer similarly i need for all the customers and vendors.
    Waiting for you earliest reply,
    Thanks in Advance.

    Please check this thread:
    Running Total in QLD
    Thanks,
    Gordon

  • Tip: adding metadata for customized reporting

    Users sometimes build their own custom reports around dimensions specific to their company. For example, a bank may want to know about financial data elements that are high priority, but violate completeness rules. You can do this with Data Insight 11.5.1.1.
    Simply have your Data Insight administrator choose weights, dimensions, priorities, and so on in their Data Insight UI. All of the users can choose Rule Classifications when they edit/create a rule and specify the appropriate items. This metadata is stored in the repository, which you can easily query for custom reports.
    For more details, check the Data Insight User's Guide. Enjoy!

    Hi,
    I hope you wont mind me asking for the steps on how to do this.
    The customized data source which i had obtained from the ecc6 is zskat. And the local language which are actually being maintained in the R/3 FI-GL. The following fields in zskat datasource are:
    KTOPL     Chart of Accounts
    MCOD1     Search Term for Matchcode Search
    SAKNR     G/L Account Number
    SPRAS     Language Key
    TXT20       G/L account short text
    TXT50       G/L Account Long Text
    If i am not wrong, SPRAS would be the key to the language right? I found that it is in the table T002, but again, how would i know which one would be the correct text?
    Since the language translation had been maintained in the source system, i guess i wont need to use the flat file option do i?
    Should I find the text data from the source system and load as you had advised? Should I do it through DTP and so on?
    Could you show me some steps by steps if possible? Simple one if possible.
    Cheers
    Tommy
    Edited by: Yu Tommy on Jul 23, 2008 12:14 PM
    Edited by: Yu Tommy on Jul 23, 2008 12:16 PM
    Edited by: Yu Tommy on Jul 23, 2008 12:27 PM

Maybe you are looking for

  • After upgrading to itunes 7.3.2 system sound does not work

    I recently upgraded my itunes to 7.3.2 and the sound worked for a short time. it then began to cut on and off until ceasing to work completely after a day or so. I have run diagnostics and my computer can produce sound, but not in any programs or any

  • SCCM 2012 SP1 - R2 Upgrade Incl Windows ADK for Windows 8.1 Update

    Hi All I Need some advice We are preparing for the upgrade SCCM 2012 SP1 -> SCCM 2012 R2 Quick steps: 1 Uninstall ADK 8.0 2 Install ADK 8.1 3 Upgrade SCCM 2012 SP1 -> SCCM 2012 R2 4 Install CU1  SCCM 2012 R2 5 Upgrade Clients to SCCM 2012 R2 6 Upgrad

  • Issue using a distant client to set a project on owb server

    Hi, I'm new to OWB, and I'm facing a problem using a client - server installation. I've designed a project on a computer (win2k), tested it and so on, following the online course to help me. Once the test phase succesfull, I wanted to deploy the proj

  • How do I add another Screen to my iMac?

    Hello, I am wanting to add an additional screen to my existing iMac. I have heard that there is the Thunderbolt Display (TD) that I can add but before I do that I would like to ask if there is any less expensive directions I can take. I have old moni

  • Class id

    Hii, could you else please tell me, how to get class id of an .ocx file using java api ! thanks in adv. Dev