Default values set  for Tax data in material master

Hi
Can anyone tell me how to set default values for  TAx dat in sales view  while creating material master.
so that it automatically take  values while creating material master.
Regards
Vijay Shukla

Mary and Vijay,
I probably understood your question wrong.
I was somehow assuming you were referring to classification data.. Sorry abt that.
The tax data gets populated automatically while creating the material master.
Th key lies in configuration..  You would have to use Tcodes OVK1, OVK4 to define the material and the tax categories by country
The tax data is populated by the assignment that you make in OVX6.. I believe.. assigning plants t Sales org. Th country code defined in the plant OX10 is used to determine the tax data and once you customize this part.. You should start seeing the tax data populate when you use that sales org while creating MM
Hope this answers your query.
Edited by: Pavan Kumar on May 2, 2008 8:10 AM

Similar Messages

  • Transparent table field for Tax Indicator on Material Master

    I am trying to find the transparent table which holds the Tax indicator field for material in the purchasing view of a material master. Usually it has values - 0,1. Where is this field stored ? I am unable to locate it. I looked into CDPOS..It points to DMLAN. But that is a structure..
    TAXIM is the field ( Tax Ind. f. Material). I need to retrieve this field for a report).

    Hi,
    The country is got based on the plant...you can get the country from T001W for the corresponding plant.
    Thanks
    Naren

  • Default value for Cash Discount in Material Master (SKTOF)

    Hi,
    Could anyone please let me know how the default value of this field in the material master can be customized.
    Thanks,

    SAP told me that this is a hard-coded and that there is no customizing for this field.

  • How to set a default value of " " for a VARCHAR2 in ER diagram?

    Hi,
    I am trying to set the default value of a VARCHAR2 attribute to " " (space) in an ER diagram. But it just thinks I don't want anything for the default value. If I specify CHR(32) will it work? or is there another way? Will I have to wait until I get into the server model to do this, if so how do I do it there?
    thx
    adam

    Are you sure you want the default to be a space, not a NULL? VARCHAR2 fields want to trim spaces from the right, which makes them NULL if they started as all spaces. You can force them to accept spaces, but it is an unnatural condition. Even the VARCHAR2 columns that I use as surrogates for booleans I set as 'Y' for true and 'N' for false, or 'T' for true and 'F' for false. Occasionally, it will be 'X' for selected and NULL for not selected, but the NULLs tend to cause trouble so I avoid them.
    Okay, let's assume that you have a good reason to default to a space. Use ' ', including the single quotes. When you transform to a Table Definition, change the Default Value Type for the column to a Database Function Call. You can't do that in the logical (Entity/Attribute) design, only in the physical (Table/Column). That will make sure that the Server generator will leave it the way you wrote it.

  • Dump in user exist CC01 to set default value to valid from date

    Dear friends,
    Task is to set default value to valid from date field in Transaction "CC01".
    In INCLUDE ZXCCAU01 of Function 'EXIT_SAPMC29C_001' in Enhancement 'PCCD0001' I written the code like this
    DATA var LIKE sy-datum.
    var = var + 1.
    which is not related to program by creating project and activated the project.
    When I run cc01 it is giving dump.
    Error is :
    Program "SAPLXCCA" tried to use screen 1000.
    The screen does not exist.
    Can some one guide me What is the problem and How to resolve this.
    If not, Is there any other method this can be done.
    Regards,
    Venkat

    Hi venkat,
    DATA var LIKE sy-datum.
    var = var + 1.
    the code u written i guess not ok.The code used by kishan is correct. i.e
    DATA var LIKE sy-datum.
    sy-datum = sy-datum + 1.
    var =  sy-datum.
    write var.
    use the above code.
    SAPLXCCA is a functionpool not a program.please check the same.
    regards,
    Nagaraj

  • How to create a value sets for concurrent program?

    Hi Friends,
    I am creating a concurrent program with a parameter period...
    In the value set for the parameter period, I am using the following query :
    ---where application_id = 101
    and set_of_books_id = :$PROFILES$.gl_set_of_bks_id
    and closing_status IN ( 'O', 'F', 'C')
    order by period_year, period_num' ----
    In my cursor, i have a condition 'where set_of_books_id = ' ---
    How can I pass the above set of books id into the cursor ?? it is not working when I am defining another parameter as Book and passing that value to the cursor....
    I need that period parameter to return all the periods for the set of books where we are running the concurrent request from...I also need to get the set of books id for my cursor...
    Hope I am making sense...All that I am trying is to have period parameter and also a SOB id in cursor condition...
    Rgds,

    Hi Vamsi /Nitin,
    Let me explain the whole thing now.....
    My plsql procedure is ......
    CREATE OR REPLACE procedure GL_INT(
         perrbuff     out varchar2,
         pretcode     out varchar2,
    pbook          in varchar2,
    pperiod          in varchar2
         ) is
    cursor cur1 (p_sdate in date, p_edate in date )is
    select distinct group_id groupid,
    user_je_source_name source
    from gl_interface
         where accounting_date >= p_sdate
    and accounting_date <= p_edate
    and set_of_books_id = pbook;
    cursor cur2 is
    select distinct start_date sdate,
         end_date edate, period_name period
    from gl_period_statuses
    where      period_name = pperiod
         and set_of_books_id = pbook
         and application_id = 101;
    i               cur1%rowtype;
    j               cur2%rowtype;
    begin
    open cur2;
                   fnd_file.put_line(fnd_file.output,'PERIOD'||'----'||'GROUPID'||
                                       '----'|| 'SOURCE');
              loop
                   fetch cur2 into J;
    exit when cur2%notfound;
                   open cur1(J.sdate,J.edate);
                   loop
              fetch cur1 into I;
                        exit when cur1%notfound;
              fnd_file.put_line(fnd_file.output, J.period||'----'||I.groupid||'----'||
                                  I.source);
                   end loop;
              end loop;
         Close cur1;
    close cur2;
    Exception when others then dbms_output.put_line(SQLERRM);     
    end;
    ==================================================================================================
    For SOB value set, I have passed the default value as vamsi suggested ($profiles$.gl_set_of_bks_id)....
    For period value set, I have entered query as ..where application_id = 101
    and set_of_books_id = :$PROFILES$.gl_set_of_bks_id
    and closing_status IN ( 'O', 'F', 'C')
    order by period_year, period_num...................
    It still doesn't work....I don't know how to derive those Periods based on the SOBs and at the same time pass SOB id into the cursors...
    Please help...
    Rgds,
    Murali

  • Uploading TAX Classification data in material master

    Hi,
    I have to upload tax classification data in material master for countries DE,IT,FR,ES,CH and GB.
    I have used BAPI_MATERIAL_SAVEDATA and passing values to table TAXCLASSIFICATIONS.
    But bapi is uploading tax classification only for country DE.
    When I am creating through MM02 its getting updated.
    Can anybody tell me what is the problem ?

    Hi Ganga,
    Yes I am passing different countries to table .
    LOOP AT IT_STAX into WA_STAX.
           wa_taxclassifications-depcountry = wa_stax-aland.
            wa_taxclassifications-tax_type_1 = wa_tstl-tatyp.
            wa_taxclassifications-taxclass_1 = wa_stax-taxm1.
            wa_taxclassifications-tax_ind    = wa_stax-taxim.
            APPEND wa_taxclassifications TO it_taxclassifications.
    ENDLOOP.
        CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
          EXPORTING
            headdata           = wa_headdata
          TABLES
            taxclassifications = it_taxclassifications
            returnmessages     = it_return[].

  • How to give  Value set for model attribute?

    Hi all,
           How to give value set for model attribute?
           plz explain me with some sample code.
    Regards,
    Srinu

    Hi Srinivasulu,
    An attribute (of basic data types like integer , string etc) holds a single values.
    Please clarify by what you mean value set ?
    Also, share the structure of context.
    Regards,
    Kartikaye

  • No Default Value Maintained for Operation

    Hi Experts,
    System is showing an error when we are trying to create the process order, hence we are unable to create the process order.
    When we save the process order, system is showing below error:
    " No Default Value Maintained for Op.generation for order type xxxx (mat XXXXXXXXXXXXXXXXXX)"
    We have searched the existing threads, as per them we have checked all the check points like Master recipe, Production version Validity, Control keys, all are available with available validity dates.
    Once Master recipe is there, still system is looking for the default value for operation, this is something which is confusing us.
    Can you please guide us to resolve this issue.
    Thanks in advance.

    Hi Raj
    For some reason your master recipe is not being selected. Generally, this is caused by status, validity, production version or customizing.
    If you have created the recipe with a change number, check if a released is assigned.
    Also, since you mentioned that you already checked averything, you may try to create a new master recipe.
    BR
    Caetano

  • 2EETW169 no connect possible: "invalid values set for DIR_LIBRARY

    uapkb2dc:ss2adm 55% R3trans -d
    This is R3trans version 6.05 (release 46D - 27.03.05 - 14:30:00).
    2EETW169 no connect possible: "invalid values set for DIR_LIBRARY '/usr/sap/SS2/SYS/exe/run' or dbms_type 'ORA'"
    R3trans finished (0012).
    trans.log==>
    uapkb2dc:ss2adm 51% more trans.log
    4 ETW000 R3trans version 6.05 (release 46D - 27.03.05 - 14:30:00).
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: R3trans -x
    4 ETW000 date&time   : 27.07.2007 - 13:18:37
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [developertra,00000]  Fri Jul 27 13:18:37 2007                             713  0.000713
    4 ETW000  [developertra,00000]  db_con_init called                                    88  0.000801
    4 ETW000  [developertra,00000]  create_con (con_name=R/3)                            162  0.000963
    4 ETW000  [developertra,00000]  Loading DB library '/usr/sap/SS2/SYS/exe/run/dboraslib.so' ...
    4 ETW000                                                                             227  0.001190
    4 ETW000  [dlux.c      ,00000]  *** ERROR => DlLoadLib: ld.so.1: R3trans: fatal: libclntsh.so.9.0: open failed: No such file o
    r directory -> DLENOACCESS (0,Error 0)
    4 ETW000                                                                            3140  0.004330
    4 ETW000  [dbcon.c     ,00000]  *** ERROR => Couldn't load library '/usr/sap/SS2/SYS/exe/run/dboraslib.so'
    4 ETW000                                                                             139  0.004469
    2EETW169 no connect possible: "invalid values set for DIR_LIBRARY '/usr/sap/SS2/SYS/exe/run' or dbms_type 'ORA'"
    pls some one help me out to over come this....
    Regards,
    Nani.

    Hello,
    it could be working now, but <b>that</b> setting is wrong
    ORA_NLS33 is an environment variable used by Oracle < 10g
    But you set it to point to a 10g directory that does <b>NOT</b> exist on a standard Oracle 10g installation.
    That makes me think that your oracle client 9.2.0.<x> is not properly installed.

  • Chnage log for classisication data of material

    Hi All,
    From last two day's i have trapped with this problem.
    We have requirement where we have to send IDOC to our EDI partners for any change in material master data and calssification data of material.
    We will run a batch say every day which will chech for these changes and if there are any changes then it will send IDOCs for these materials.
    Now, problem is we are able to track changes in material master through tables CDHDR,CDPOS. But we are not able to find out change log for classification data of material.So, our basic problem is to identifiy change in classification data of material.
    Now my question to all guru's is:
    Is there any way to track these changes or table which record that changes?
    NOte: One thing i want to tell, If you go to MM02 transaction, gove material no. and select basic data1, basic data2, calssification data.Then on output screen there is Blue info button, if you press that button it will give you last change info...from where it is comimng?
    Regards,
    Rahul

    Hi Rahul,
    For that classification data fields
    there is no change log option checked in the data element level.
    or there is no associated changelog class.
    check in <b>SCDO</b> transaction for change log class.
    Regards
    vijay

  • How define Value Set to validate date against sysdate

    Hi gurus,
    I need to validate Value Set against current date. The date entered should be today date or higher.
    During defining Value Set I choose Format Type: Standard Date. The problem is that
    I can not enter value "sysdate" to Min Value field. The following error shows up:
    "Please enter date values sysdate in correct format: DD-MM-RRRR".
    Is it possible to achieve what I need ?
    regards,
    malin

    Hi Hussein,
    I enter not a concrete date but 'sysdate' value.
    The message is of course DD-MM-YYYY in English (DD-MM-RRRR is inPolish). Sorry of mistake.
    I afraid I can not achieve it using Standard Date Format Type.
    regards,
    marcin

  • Default account setting for this user is incomplete

    Hi,
    I have created a user and gave rights(connect and resource) to that user. i have logged in and when i trying to open form module im getting a message.
    default account setting for this user is incomplete. Contact system administrator
    How to resolve this?
    skud.

    default account setting for this user is incomplete. Contact system administratorThis is an application error not an Oracle Forms error. Contact your system administrator to determine what is missing from the user account you created.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Tax Code in Material Master views

    Hi,
    I want to know in which view we can find the details of  "tax code " for the material in Material master views?.
    Also suggest me where else we can find the information of Tax Code for the given material.
    Thanks

    Hi,
    you cannot get the tax code in material master. In material master we mainatin tax releated information in Foregin trade import and to get that contaol data tab in material master you have to do some config.
    After mainatining the data in material master tax code is maintained in FV11 in case of taxinn and in case of taxinj tax releated data is to maintaiin in J1id and different tax code has to be created with the help of FTXP
    Plz let me know if any further information is required

  • Entry Aids for Items Without a Material Master - usage

    Hi
    Can anyone tell me what's usage of "Entry Aids for Items Without a Material Master"  (spro-mm-purchasing-mat master-entry aids..)
    and what it controls???

    Hi,
    In this step, you can assign a purchasing value key and a valuation class to a material group.
    The assignment of a purchasing value key provides you with default values for reminder levels etc. in purchase order items without a material master record and without an info record.
    The assignment of a valuation class to a material group enables the system to determine different accounts for the individual material groups.
    This is usally useful for creation of PO and account posting for materials without an MMR.
    When you create a PO you mention only the material group, based on which the purchase info like the Deadline monitorying, over/under delivery tolerances, Vendor evaluation etc gets incorporated into the PO. The account posting will get captured against the Valuation class maintained to the Material Group for which the GL account mapping will be done against the V.Class in the OBYC.
    Regards
    Merwyn

Maybe you are looking for

  • USB Ethernet Adapter Stopped Working On Mac Mini Server Running 10.6.6

    Is anybody out there successfully using the Apple USB Ethernet adapter on a Mac Mini Server running 10.6.6? They have stopped working for me. The boot disk in the 2009 Mac Mini Server in my classroom failed and after Apple replaced the disk and I rei

  • Dep Req: NProc in MD04 - but not showing in MF47

    On the Stock requirements list (MD04) a dependent requirement is showing as NProc.  However, on MF47 no records appear for re-processing. How to get rid of the dependent requirement?

  • TCode for TDS annual Return

    Hi all, For Quarterly TDS return, TCode J1INQEFILE is available. What is the TCode available in SAP for the Annual TDS return?

  • Data Type - Complex type

    Hi experts! I wonder if it's possible when creating a data type that the highest treelevel doesn't get Category "Complex Type". I want it to be an Element instead. Because the receiving system which is terradata can't read the message with start root

  • P2 STORAGE Volumes won't transfer data

    Okay. So. I have 5 (8 GB) P2 cards loaded up on my P2 Store. The volumes show up on my desk top and in FCP 6.0.1 they show up in log and capture with their respective thumbnails and "(incomplete)" next to the file. I select a clip to add to que... it