Which are the Related tables in Service Tax

Hi,
Which are the Related tables in Service Tax
Regards,
Siva

Hi
i am not pretty sure of the tables..but better check the config for it in service tax at extended withholding tax type
regards
shibu

Similar Messages

  • Join 2 tables which are not related with any primary-foriegn key constraint

    Hello,
    How to join 2 tables which are not related with any primary key foreign key constraint.
    Ex.Consider Table A has 5 columns->A_ID,A_Name,A_Address,A_City,A_Pin(Total 10 rows)
    Table B has 5 columns->B_ID,B_Name,B_Adress,B_City,B_City(Total 30 rows)
    From both the table i want the data,which i need to use in curosr to display finally as "Address Label".
    Both the table are entirely different,but there can be some names of Table A which may come in Table B also,if the name,address and city is also same.That means same person in both the table.
    So finally i want total number of distinct records(distinct data of Table A which is not in B+all the data of table B) to come under Address Label.
    How can i write the select query for this condition?
    Thanks
    Swapna

    Hi, Swapna,
    user11018268 wrote:
    Hello,
    How to join 2 tables which are not related with any primary key foreign key constraint.
    Ex.Consider Table A has 5 columns->A_ID,A_Name,A_Address,A_City,A_Pin(Total 10 rows)
    Table B has 5 columns->B_ID,B_Name,B_Adress,B_City,B_City(Total 30 rows)
    Both the table are entirely different,but there can be some names of Table A which may come in Table B also,if the name,address and city is also same.That means same person in both the table.I think you want a UNION, not a join.
    If you have 10 rows in table_a, and 30 rows in table_b, then
    SELECT       A_ID,          A_Name,     A_Address,     A_City,     A_Pin
    FROM      table_a
    UNION
    SELECT       B_ID,          B_Name,     B_Adress,     B_City,     B_City
    FROM      table_b
    ORDER BY            2,               4          
    ;will produce up to 40 rows; 40 if there are no duplicates. (UNION implies DISTINCT.)
    The corresponding column types should be similar, if not exactly the same.
    There's no problem if A_Name is VARCHAR2 (50) and B_Name is CHAR (30).
    However, there will be a problem if A_ID is a NUMBER and B_ID is a TIMESTAMP.
    You must have the same number of columns in all branches of the UNION.
    If you want an ORDER BY clause, put it at the very end, after the last branch of the UNION.
    You can use positional notation (where 2 means the 2nd column) like I did, or you can use names from the first prong of the UNION (such as A_Name).
    From both the table i want the data,which i need to use in curosr to display finally as "Address Label".
    So finally i want total number of distinct records(distinct data of Table A which is not in B+all the data of table B) to come under Address Label.I'm not sure what your mean about "Address Label".
    Whenever you have a question, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) from all tables, and the exact results (formatted) that you want from that data.
    You can concatenate all 5 columns into one VARCHAR2 column, if you want to.
    You'll probably want to use RPAD (or simillar functions) to make the output line up nicely.
    If any of the columns are not strings, use TO_CHAR to make string versions of them.
    For example:
    SELECT  TO_CHAR (A_ID, '9999999')
         || '   '          -- leave a little space between the left-justified a_id and the right-justified a_name
         || RPAD (A_Name, 25)
         || RPAD (A_Address, 50)
         ...Edited by: Frank Kulash on Nov 14, 2009 10:11 AM

  • There is any table which makes the relation between sold to party and ship

    Hi Gurus,
    There is any table which show the relation between ship to party and sold to party.
    regards
    gursharan

    You can get this information from KNVV, KNVP Tables.
    Refer following link: http://www.erpgenie.com/abap/tables_sd.htm ....Customer Master Data for more detailed explanation.
    Please award points if you find this information useful / resolves your issue.
    Letme know if you need more information.
    Thanks,
    Ramesh

  • How to find the tables which are the candidates for gathering stats in 10g

    Hi,
    In 10g how can we find the tables, partitions which are the candidates for gathering the stats.
    I want to findo those tables, partitions and gather the stats on daily basis.
    Thanks,
    Mahi

    The probem you describe has been posted about before. There are known issues with the default dbms_stats parameter settings for some environements.
    What you can do is just go ahead an manually submit dbms_stats commands with appropriate parameters for tables that have not been analyzed or modify the maintenance window to give it more time.
    I would rather just generate the missing statistics myself then the job can continue to run in the normal maintenance window. Since the job should be looking only for tables that meet the stale requirements then once everything is analyzed it is likely the job can keep the statistics updated in the default time allowed.
    Be warned that the default parameter settings do not work well for some tables in some environments and if that proves true for your shop you can generate workable statistics on a table and then lock them so the nightly job ships regenerating the statistics for that table. You would then manually unlock, generate, and lock that statistics for that table as necessary.
    HTH -- Mark D Powell --

  • Which are the tables updated in SRM and R/3 System for SC created?

    Hi,
    I want to know which are the tables updated in SRM system and also in R/3 system, when a Shopping Cart is created. Also how do i get the PO number for the Shopping Cart created.
    Thanks.
    Regards.
    Rahul

    Hello Rahul,
    All list of tables for eg. SC You can find in transaction BBP_PD on SRM side.
    These tables are (SRM):
    - CRMD_ORDERADM_H - for Header (Business Transactions Header)
    - BBP_PDHGP - Business Transaction Purchasing Information
    - CRMD_ORDERADM_I - for Item - Business Transaction Item
    - BBP_PDIGP - Business transaction item-Purchasing information
    - BBP_PDBEI - Backend Specific Item Data
    On R/3 side:
    EBAN - purchase requisition
    EBKN - purch. req. account assignment
    Regards,
    Marcin Gajewski
    please reward points for helpful answer

  • Which are the standard assignment blocks that should appear in SAP Product?

    Hello Guru's
    Currently I am creating some new products to check the fields available in every assingment block within the product, when I create my new transaction and add a new position (product) I went in the link to see the product information which are the following 4 standard assignment:
    - AB Product Details
    - AB Categories
    - AB Notes
    - AB Attachments
    I unmarked the pricing on the item category, because this is only a test and we don't have any pricing definition yet. So I was wondering if this is all the assignment blocks that I should be expecting inside the position or if I'm missing any step on the road.
    Also we just use the standard SET TYPES for the base hierarchy so I thougt that maybe all the assignment blocks that I shoud create them through COMM_ATTRSET route.
    Can anyone help me out confirming me if these are the only assignment blocks that SAP CRM Products contain or which else I should be expecting?
    Thanks in advance
    Sue M

    Hello Sue,
    First you should know which are the settypes and Reltypes that you want to add to your product category.
    Example for settypes would be COMM_PR_UNIT and COMM_PR_MAT in order to get Unit Of Measure related fields in UI.
    CRMM_PR_TAX for maintaining to product tax details.
    You can refer table COMC_SETTYPE to get a list of all available settypes.
    Example for Reltype is PRDBP, if you want to maintain BPs associated with products or ACCESS if you want to maintain
    accessories for product etc.
    You can maintain the settypes and Reltypes to product cateogry using txn:COMM_HIERARCHY under the tab
    'Set Types' and 'RelnTypes'.
    Once you maintain this, corresponding views you need to be added to product/service OVP like PRD01OV,PRD02OV etc.
    (PRD01OV/MaterialOV) in the configuation. If you open the configuration for view PRD01OV/MaterialOV,
    you can see the corresponding view in 'Available AB'. This you need to move it to ' Displayed AB', in order for this to available in
    CRM UI. (Eg: PRDIL/Accessories)
    Hope this helps!
    Best Regards,
    Shanthala Kudva.

  • What are the Relations between Journalizing and IKM?

    What is the best method to use in the following scenario:
    I have about 20 source tables with large amount of data.
    I need to create interfaces that join the source tables into target tables.
    The source tables are inserted every few secondes with about hundreds to thousands rows.
    There can be a gap of few seconds between the insert of different tables that sould be joined.
    The source and target tables are on the same Oracle instance and schema.
    I want to understand the role of: 'Journalizing CDC' and 'IKM - Incremental Update' and
    how can i use it in my scenario?
    In general What are the relations between 'Journalizing' and 'IKM'?
    Should i use both of them? Or maybe it is better to deelte and insert to the target tables?
    I want to understand what is the role of 'Journalizing CDC'?
    Can 'IKM - Incremental Update' work without 'Journalizing'?
    Does 'Journalizing' need to have PK on the tables?
    What should i do if i can't put PK (there can be multiple identical rows)?
    Thanks in advance Yael

    Hi Yael,
    I will try and answer as many of your points as I can in one post :-)
    Journalizing is way of tracking only changed data in your source system, if your source tables had a date_modified you could always use this as a filter when scanning for changes rather than CDC, Log based CDC (Asynchronous in ODI, Logminer/Streams or Goldengate for example) removes the overhead of of placing a trigger on the source table to track changes but be aware that it doesnt fully remove the need to scan the source tables, in answer to you question about Primary keys, Oracle CDC with ODI will create an unconditional log group on the columns that you have defined in ODI as your PK, the PK columns are tracked by the database and presented in a Journal table (J$<source_table_name>) this Journal table is joined back to source table via a journalizing view (JV$<source_table_name>) to get the rest of the row (ie none PK columns) - So be aware that when ODI comes around to get all data in the Journalizing view (ie Inserts, Updates and Deletes) the source database performs a join back to the source table. You can negate this by specifying ALL source table columns in your PK in ODI - This forces all columns into the unconditional log group, the journal table etc. - You will need to tweak the JKM to then change the syntax sent to the database when starting the journal - I have done this in the past, using a flexfield in the datastore to toggle 'Full Column' / 'Primary Key Cols' to go into the JKM set up (there are a few Ebusiness suite tables with no primary key so we had to do this) - The only problem with this approach is that with no PK , you need to make sure you only get the 'last' update and in the right order to apply to your target tables, without so , you might process the update before the insert for example, and be out of sync.
    So JKM's provide a mechanism for 'Change data only' to be provided to ODI, if you want to handle deletes in your source table CDC is usefull (otherwise you dont capture the delete with a normal LKM / IKM set up)
    IKM Incremental update can be used with or without JKM's, its for integrating data into your target table, typically it will do a NOT EXISTS or a Minus when loading the integration table (I$<target_table_name>) to ensure you only get 'Changed' rows on the load into the target.
    user604062 wrote:
    I want to understand the role of: 'Journalizing CDC' and 'IKM - Incremental Update' and
    how can i use it in my scenario?Hopefully I have explained it above, its the type of thing you really need to play around with, and throroughly review the operator logs to see what is actually going on (I think this is a very good guide to setting it up : http://soainfrastructure.blogspot.ie/2009/02/setting-up-oracle-data-integrator-odi.html)
    In general What are the relations between 'Journalizing' and 'IKM'?JKM simply presents (only) changed data to ODI, it removes the need for you to decide 'how' to get the updates and removes the need for costly scans on the source table (full source to target table comparisons, scanning for updates based on last update date etc)
    Should i use both of them? Or maybe it is better to deelte and insert to the target tables?Delete and insert into target is fine , but ask yourself how do you identify which rows to process, inserts and updates are generally OK , to spot a delete you need to compare the table in full, target table minus source table = deleted rows , do you want to copy the whole source table every time to perform this ? Are they in the same database ?
    I want to understand what is the role of 'Journalizing CDC'?Its the ODI mechanism for configuring, starting, stopping the change data capture process in the source systems , there are different KM's for seperate technologies and a few to choose for Oracle (Triggers (Synchronous), Streams / Logminer (Asynchronous), Goldengate etc)
    Can 'IKM - Incremental Update' work without 'Journalizing'?Yes of course, Without CDC your process would look something like :
    Source target ----< LKM >---- Collection table (C$) ----<IKM>---- Integration table (I$) -----< IKM >---- Target table
    With CDC your process looks like :
    Source Journal (J$ table with JV$ view) ----< LKM >---- Collection table (C$) ----<IKM>---- Integration table (I$) -----< IKM >---- Target table
    as you can see its the same process after the source table (there is an option in the interface to enable the J$ source , the IKM step changes with CDC as you can use 'Synchronise Journal Deletes'
    Does 'Journalizing' need to have PK on the tables?Yes - at least a logical PK in the datastore, see my reply at the top for reasons why (Log Groups, joining back the J$ table to the source table etc)
    What should i do if i can't put PK (there can be multiple identical rows)? Either talk to the source system people about adding one, or be prepared to change the JKM (and maybe LKM, IKM's) , you can try putting all columns in the PK in ODI. Ask yourself this , if you have 10 identical rows in your source and target tables, and one row gets updated - how can you identify which row in the target table to update ?
    >
    Thanks in advance YaelA lot to take in, as I advised I would reccomend you get a little test area set up and also read the Oracle database documentation on CDC as it covers a lot of the theory that ODI is simply implementing.
    Hope this helps!
    Alastair

  • What are the Update tables?

    In LO Delta scenario, Data posted parallel into document tables and update tables. What are the Document tables? What are the Update tables?
    Give example for Application 11, which is document tables, and update tables?

    Hello Mannev,
    Document tables are the actual application tables where the data is posted when you post a document in R/3.
    Examples can be MSEG, VBRK etc.
    Update tables are the intermediate tables which store data read from document tables. The V3 runs collects deltas in form of LUWs from these update tables and populates the delta queues.
    hope this helps..
    thanks,

  • Which are the standard classes for events in ALV and explain each class pls

    which are the standard classes for events in ALV and explain each class pls
    POINTS WILL BE AWARDED,
    REGARDS,
    jagrut bharatkumar Shukla

    hi,
    some links.
    www.sapgenie.com
    www.abap4u.com
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5e/88d440e14f8431e10000000a1550b0/frameset.htm
    download the PDF from following link.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVALV/BCSRVALV.pdf
    The ALV object Grid methods allow the same functionality as ALV grid report function modules but are displayed within
    a screen (dialog program). SAP has provided a suit of programs which demonstrate how to For examples see standard SAP
    programs as detailed below:
    BCALV_EDIT_01 This report illustrates the simplest case of using an editable/noneditable ALV Grid Control.
    BCALV_EDIT_02 This report illustrates how to set chosen cells of an ALV Grid Control editable.
    BCALV_EDIT_03 In this example the user may change values of fields SEATSOCC (occupied seats) and/or PLANETYPE.
    The report checks the input value(s) semantically and provides protocol messages in case of error
    BCALV_EDIT_04 This report illustrates how to add and remove lines to a table using the ALV Grid Control and how to
    implement the saving of the new data.
    BCALV_EDIT_05 This example shows how to use checkboxes within an ALV Grid Control. You learn:
         (1) how to define a column for editable checkboxes for an attribute of your list
         (2) how to evaluate the checked checkboxes
         (3) how to switch between editable and non-editable checkboxes
    BCALV_EDIT_06 This example shows how to define a dropdown listbox for all cells of one column in an editable ALV
    Grid Control.
    BCALV_EDIT_07 This example shows how to define dropdown listboxes for particular cells of your output table.
    BCALV_EDIT_08 This report implements an ALV Grid Control with an application specific F4 help. The following aspects
    are dealt with:
         (1) how to replace the standard f4 help
         (2) how to pass the selected value to the ALV Grid Control
         (3) how to build an f4 help, whose value range depend on a value of another cell.
    Rgds
    Anversha

  • What are the main tables of SITs?

    Hi
    What are the main tables of SITs? How can I find out the tables related to SITs?
    Regards
    Rahman

    PER_SPECIAL_INFO_TYPES: This table holds the definitions of SITs that are available to each Business Group. Each special information type is a user defined structure for the personal analysis key flexfield. The name of the special information type is the same as the name of the corresponding key flexfield structure.
    PER_SPECIAL_INFO_TYPES_V : This table has the Employee's SIT info. A supplementary view used to simplify forms coding
    PER_SPECIAL_INFO_TYPES_V2 : A supplementary view used to simplify forms coding.

  • What are the other tables in B2 cluster

    hi experts,
    what are the other tables like ZL table in B2 cluster..and what data is stored in them.

    Results related to a time evaluation period in cluster B2
    PSP
    Personal work schedule
    Time evaluation result
    For each day
    QTACC
    Generation of quota entitlement
    Time evaluation result
    For each day
    QTTRANS
    Transfer pool
    Time evaluation result
    For each day
    ZES
    Time balances for each day
    Time evaluation result
    For each day
    SALDO
    Cumulated time balances
    Time evaluation result
    Time evaluation period
    ZL
    Time wage types
    Time evaluation result
    For each day
    VS
    Variable balances
    Time evaluation result
    For each day
    CVS
    Cumulated variable balances
    Time evaluation result
    Time evaluation period
    FEHLER
    Messages
    Time evaluation result
    For each day
    PT
    Time pairs
    Raw data/time evaluation result
    For each day
    KNTAG
    Core night work (relevant only for the German country version)
    Time evaluation result
    For each day
    Results related to a time period in cluster B2
    Table
    Description
    Origin
    Time Dependency
    VERT
    Substitutions
    Copy of infotype 2003
    Period
    ABWKONTI
    Absence quotas
    Copy of infotype 2006
    Period
    AB
    Absences
    Copy of infotype 2001
    Period
    ANWES
    Attendances
    Copy of infotype 2002
    Period
    RUFB
    On-call availability
    Copy of infotype 2004
    Period
    MEHR
    Overtime
    Copy of infotype 2005
    Period
    ANWKONTI
    Attendance quotas
    Copy of infotype 2007
    Period
    SKO
    Time transfer specifications
    Copy of infotype 2012
    Period
    ALP
    Different payment
    Raw data
    Pointer to table entry
    C1
    Cost distribution
    Raw data
    Pointer to table entry
    Edited by: BALAPANI on Oct 19, 2009 10:38 AM

  • Which are R/3 table used for Infocube 0FITV_C01 and 0FITV_C01

    How to find which are the R/3 tables used for Infocube 0FITV_C01 and 0FITV_C01
    Thanks and regards,
    Ranjan

    Hi Ravi,
    Please check this link:
    http://help.sap.com/saphelp_nw04/helpdata/EN/05/5ae8375ae64014e10000009b38f8cf/frameset.htm
    I hope it will help u.
    thanks and regards
    Venkata Naidu Bandi

  • Which are the latest business packages for ESS and Mss?

    Hi all,
    Which are the latest business packages for ESS and Mss?
    Regards
    Rajendra

    Hi rajendra
    It's all about R3 version, which R3 version u used?
    the following BP are available for ESS/MSS on service.sap.com u need sid-password to download it.
    <b>R3 4.6C/4.7 Enterprise</b>
    ESS: - Business Package for Employee Self-Service 4.6C - 4.7 50.4
    https://websmp102.sap-ag.de/~swdc/011000358700005104712004D/BPESS46C504_0-20000613.ZIP?_ACTION=DL_DIRECT
    MSS: - Business Package for MSS 60.1
    https://smpdl.sap-ag.de/~swdc/012002523100003529452006D/BPMSS601_19-20001489.zip?_ACTION=DL_DIRECT
    <b>ERP2004: - (R3 ECC 5.0)</b>
    ESS:- BP for Employee Self-Service (mySAP ERP 2004) 60.2
    https://smpdl.sap-ag.de/~swdc/002007974700000167412004D/BPERP4ESS0_0-10003146.zip?_ACTION=DL_DIRECT
    MSS:- BP for Manager Self-Service (mySAP ERP 2004) 60.1.1
    https://smpdl.sap-ag.de/~swdc/002007974700000246072005D/BP_ERP4MSS0_2-10002991.zip?_ACTION=DL_DIRECT
    <b>ERP2005 : - (R3 ECC 6.0)</b>
    ESS: - BP ERP05 ESS 1.0 Support Package 03 ( Up to SP5 available)
    https://smpdl.sap-ag.de/~swdc/012002523100000076042006D/BPERP5ESS03_0-10003288.sca?_ACTION=DL_DIRECT
    MSS: - BP ERP05 MSS 1.0 Support Package 03 ( Up to SP5 available)
    https://smpdl.sap-ag.de/~swdc/012002523100000076062006D/BPERP5MSS03_0-10003289.sca?_ACTION=DL_DIRECT

  • Delete user and all his related data form the relation table

    HI All,
    I have user and for the user i have 3 more tables with additional fields that relate to the user
    the the user is a key on the 3 tables and relate with foreign key .
    in case i want to delete the user and i want that all the user data from all the related table will be deleted how can i do that ?
    Regards
    Joy

    HI,
    The user is in Z DB tables so i cant delete it with this bapi,
    The problem is when i have 4 table and i want to delete the user from them like that :
      DELETE FROM: (sv_user_table_name) WHERE userid = iv_user_id,
                   (sv_add_fld_table_name) WHERE userid = iv_user_id,
                   (sv_att_table_name) WHERE userid = iv_user_id,
                   (sv_app_attributes_table_name) WHERE userid = iv_user_id.
    IF sy-subrc <> 0.
        RAISE EXCEPTION TYPE .....
    if the user are exist in the first and the second table and not in the third and four
    i get the sy-subrc = 4 despite the user has deleted from the first and seconed tables
    there is nice way to overcome this issue ?
    Regards
    Joy
    Edited by: Joy Stpr on Aug 3, 2009 8:57 AM

  • Which are the quires has been build by using this ODS.

    Hi,
    Please some one tell me how to find out  The any ODS has been using in which are the queries .
    Or which are the quires has been build by using this ODS.
    Thanks,
    GAL

    Hi GAL BI,
    You check in the meta data repository, you can get the list of queries build on that particular DSO.
    The table RSRREPDIR (directory of all queries) - it will display the queries developed on the top of IC and MP.
    If you want to know particular query where it is used click on where used list it will display .
    Regards
    KP

Maybe you are looking for