TABLE FOR DIVISION AND ITS DESCRIPTION

Dear Mates,
My client wants to add a Division and its Description to the Z report -Daily Collection Report from Customers.
Can anybody help out for table name and its fields for Division and Description
Thanks in anticipation
Subbu

Hi,
I guess your question is about divisions within a Sales Organization. The related tables are listed below:
TSPAT - organizational unit: Sales Divisions (Text)
TVTA - Organizational Unit: Sales Area(s)
TVKOS -Organizational Unit: Divisions per Sales Organization
Hope you find the information relevant and useful. If so, please close the message.
Muraleedharan.R

Similar Messages

  • Table for view and its description

    Hi,
    Is there any table which can have the view and its description in R/3?
    These views are primarily used in Generic extractor Definition!
    I am preparing a list of the views used in Gneric extraction and for that i need the description of the view in question!
    Raj

    Hi,
    I have nearly 1200 Views .
    It is just not possible to enter each entry of the view and to know the description manually.
    I know that we can find the description in SE11. but if there is a table which can have the viewid along with the description  my job is lot easiler.
    Any ideas?
    Raj

  • Table for queries and their descriptions!

    Hi,
    Can anybody disclose me table name for queries and their descriptions?
    Raj

    HI,
    Check the table RSZCOMPDIR.
    Also RSZELTTXT and RSRREPDIR
    Hope this helps...

  • Table for Component and Component Description in CS03

    Hi,
    I want to know the table associated with CS03 Transaction.I mean from which table we can get component and component description. And Is there any way that we can pull all the characterstic Values for that particular component.
    Thanks in advance

    Hi
    see the tables
    MAST
    STKO and
    STPO
    all related to BOM
    Bill of materials
    to pull all characteristic values
    use tables CAWN and AUSP or
    Use the following BAPI's:
    BAPI_OBJCL_GETDETAIL
    or use the fun module:
    CLAF_CLASSIFICATION_OF_OBJECTS.
    Regards
    ANJI
    Message was edited by:
            Anji Reddy Vangala

  • Table for queries and their descriptions under 4.6C

    Hello experts,
    does anyone know the above mentioned tables. Unfortunately V_COMPDIR_COMPIC and
    -RSZCOMPDIR
    -RSZCOMPIC
    -RSZELTTXT
    -RSZELTDIR
    don´t seem to work under 4.6C.
    Thanks in advance.
    Regards,
    F.H.

    HI,
    Check the table RSZCOMPDIR.
    Also RSZELTTXT and RSRREPDIR
    Hope this helps...

  • Table for TDS sections and its description

    Hi,
    Is there any table where both TDS section and its description is getting stored? If this is possible can we relate the same to Vendor through any link?
    Thanks & Regards,
    Tapan

    HI
    J_1ITDSSEC is the table for TDS section and description.
    TDS sections will be assigned to tax codes, so you can link through tax codes whatever is assigned to a vendor.
    Relation will be -- Vendor-- Taxcode--tDS section.
    Cheers
    Mukta

  • Tables for Defect type and its description while defect recording for a MIC

    Dear Experts,
    Kindly suggest the tables name  in  system by which we can get Defect type and its description that we have used while  performing defect recording for a MIC in system at the time of result reording for an inspection lot.
    Thanks in advance for your inputs ...
    Best regards ,
    Nitishj

    hii,
    Check
    QPAC - Inspection catalog codes for selected sets
    QPAM - Inspection catalog selected sets
    QPMK-CODEQUAL- Defect code grp for rejection at MIC level
    Link above table field name with QAVE for UD code & QAMR for Results recording
    Edited by: Lokesh K on Sep 29, 2010 10:43 AM
    Edited by: Lokesh K on Sep 29, 2010 10:45 AM

  • Which table if for BADI and its implementation

    Which table if for BADI and its implementation
    I want to know which implementations have already been created and actived for one BADI.

    Hi
    check the tables for BADI
    SXC_ATTR   
    SXC_ATTRT  
    SXC_CLASS  
    SXC_COCO   
    SXC_EXIT   
    SXC_FCODE  
    SXC_FCODET 
    SXC_IMPSWH 
    SXC_SCRN   
    SXC_TABLE  
    SXC_TABLET 
    Regards
    Anji

  • Peoplecode to get dropdownlist box value and its description

    Hi,
    I have assigned a value and its description to dropdownlist box. when try to get the value and description in somewhere, i didn't get the description. i got only the value of the current row in a rowset. but i want to fetch the description which i assigned to the dropdownlist for the corresponding value. Is there any way to get the description?

    Since it is not a XLAT bound to the field, you cannot use the field class properties.
    What is the source of the dropdownlist?
    If it comes from a database record, you could fetch the description from the database using the &Field.Value as input.
    But this would cause a lot of database roundtrips.
    You could store the value and description in a two dimensional component array variable and load this array with the values and descriptions at PostBuild Event.
    This will only fires ones during the component build.
    Suppose the values are "hardcoded", something like this
    /* Create component 2-dim array */
    Component array of array of string &DropdownArray;
    &DropdownArray = CreateArrayRept("", 0);
    &DropdownArray.Push(CreateArray("value1", "descr1");
    &DropdownArray.Push(CreateArray("value2", "descr2");
    &DropdownArray.Push(CreateArray("value3", "descr3");
    After this populate the dropdownlist with values and descriptions from the array.
    For &i = 1 To &DropdownArray.Len
      &Field.AddDropDownItem(&DropdownArray[&i][1], &DropdownArray[&i][2]);
    End-For;
    Whenever you need to fetch the description of the dropdownlist value, first find the value by &Field.Value and then search within the array for the description.
    /*Get value from dropdown */
    &Value = &Field.Value;
    /*Find index for value*/
    &Ind = &DropdownArray.Find(&Value);
    /*Get description (second index in subarray)*/
    &Descr = &DropdownArray [&Ind][2];
    I am writing the code without an environment, so typos could exist
    Hope this helps.

  • To fetch proj.definition and its description

    Hai Friends,
    From CJ03 i want to fetch project definition and its description. i have WBS and AUC number.how can i fetch this?.
    I checked in PROJ table but i could not able to take from WBS or AUC. where can i fetch this?.

    hi vennila,
    i refered the tables in my ides. I think following information will be of use to u.
    try out in the table PRPS
    in this table there is a field PSPHI (project)
    Regards
    Sajid

  • Batch and its description

    Hi.
    i want to find batch for material and the description for that particular batch.so in which table i get it?
    can anyone help me...

    try to Use FM <b>read_text</b> with following EXports
    text name   : batch name(proper format )
    text Lang   : EN / Hindi /telugu like that
    text Id     : VERM
    text Object : CHARGE
    for more Details check the Tcode <b>BMBC</b>
    Regards
    Prabhu
    Njoy SAP
    Message was edited by: Prabhu Peram

  • How to fill up set up tables for 2lis_03_UM and BF?

    Hi,
    I am working on Material movements, and i have a How to do document. According to that, its showing me to fill up set up table for 2Lis_03_bf by using TCode OLI1BW, and in the very next step its again telling me to fill up set up table for UM, by using the same TCODE ( OLI1BW ) .
    Now, if i do that, how would the system know that it has to fill up set up table for BF and then UM ? , no where in the screen its asking to fill up the Data source.
    OR i just have to fill up set up table ONCE, and it will fill up for both the DS ?
    please help.
    thanks

    Hi,
    I think you can follow the same procedure.  After completion of setup table filling you can check the result in RSA3.
    In case of UM, you will have the provision to load data based on specific Company codes, but if you don't have any such requirement then you can simply fill setup tables.
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Aug 30, 2011 10:29 AM

  • Table for Customer and vendor open balance on a key date

    Dear All,
    Can anyone please let me know Table for Customer and vendor open balance on a key date. We are developing one customized report.
    I have checked with the below table :
    Customer-KNC1, KNC3,BSID, BSAD
    Vendor-LFC1, LFC3, BSIK, BSAK.
    But these are not working properly for all customers and vedors. Also, in open items, there are items with clearing documents.
    Plesae let me know, how to go for it.
    Please suggest.

    Hi
    Use BSID and BSIK for open items
    And pass company code, year and from date and to date range in Posting date selection option
    Reg
    Vishnu

  • Need table for customer and vendor carry forward balance

    Hi,
    I need to fetch the carry forward(opening) balance for GL, customer and vendor account for my report.
    I have table which contains c/f balance for GL accounts which is "GLT0" and now looking for a table for customer and vendor accounts.
    Please let me know if anyone have idea in which table i can get the c/f balance for customer and vendor accounts.
    Thanks in advance.
    Regards,
    Swati

    Hi Gurus
    The requirement from the client side in my case is to have opening balance in Tr code ZFBL1n, ZFBL3N and ZFBL5N.
    Now, from the above thread i got the Tables where i could find the Vendor and Customer Opening Balance but i also want Opening Balance for GL.
    and my 2nd query is how to get these opening balance in Z report, at Header Level.
    Thanks and Regards
    Dnyanesh

  • I accidentally downloaded a website for coupons and its toolbar keeps popping up? I want to completely get rid of it on my internet. How do I do this?

    I accidentally downloaded a website for coupons and its toolbar keeps popping up at the top of my internet window. I went to the toolbar options and unchecked it but when I get back into the internet it is up again. I want it completely gone so that it doesn't even have a chance to be seen. I don't want it. How do I get rid of it?

    I would start off with Firefox's Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then look for unwanted extensions and try the Remove button.
    If the Remove button is missing, this usually means the extension was installed through the Windows installer. In that case, check for it in the Windows Control Panel, Uninstall a Program. Clicking the "Installed on" column header will bring the most recent additions to the top for easier spotting.
    After you get rid of it, assuming you can remove it in one of those two ways, I suggest "mopping up" with some malware removers. This article lists tools that other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Any luck?

Maybe you are looking for

  • Could anyone provide the complete manual of SAP Query Creation

    Hi, Now I am learning to create SAP Query. I viewed many questions and answers about SAP Query. Some mentioned this,and some did that... Could anyone provide a complete manual of SAP Query Creation for developers. I can create SAP Queries step by ste

  • Login not working even if the password is right

    Greetings, We have a strange problem with our users happening in the morning on their mobile devices (Samsung Galaxy, Ipads, etc.): event if the password is stored on the device it's being asked again and after entering the correct one it keeps sayin

  • 2 reports on one sheet

    Hallo, I would like to visualize 2 queries under each other on one sheet. Both have almost the same columns, therefore I would like to get the second one directly after the first one (so without title, needless space, etc…). How can I do that? The se

  • Color and stuff

    helo, i have a 'main class' for editing text and etc, and i put a button, which poups a colorChooser JFrame. How is it possible, that i want to choose a color, click 'ok' (button is implemented), and return this color (as an object) to the 'main clas

  • Webmail not working - can

    I just stopped the firewall, activated webmail on my Xserve (under "Sites", double-clicked my website and under options, check webmail), and tried accessing it from Safari running on the same server. While http://server.org works fine to serve up my