Help: Report about No specific task assigned to an SR

Hi,
Does anyone know if there's any way to report about a list of SR, which doesn't have a particular task attached to it?
Thanks

Thanks. Unfortunately I have got the following error:
Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
Does it mean anything to you? sorry. I'm a total beginner.
Thanks a lot anyway.

Similar Messages

  • How to assign project specific task with the newly created projects ?

    Hi All,
    I need help. I need to assign project specific tasks (which i will be taking from staging table) other than the default task which are assigned during project creation. How do I proceed with this within same package. I am attaching the code of my package below...
    CREATE OR REPLACE PACKAGE body xxpa_proj_conv_pkg as
    PROCEDURE xxpa_create_project_proc(O_ERRBUF OUT VARCHAR2,O_RETCODE OUT VARCHAR2)
    is
    variables need to derive global parameters
    v_responsibility_id NUMBER; --- PA Supervisor responsibility id
    v_user_id NUMBER;
    deriving global parameters-
    -- Variables needed for API standard parameters
    v_api_version_number NUMBER := 1.0;
    v_commit VARCHAR2(1) := 'F';
    v_return_status VARCHAR2(1);
    v_init_msg_list VARCHAR2(1) := 'F';
    v_msg_count NUMBER;
    v_msg_index_out NUMBER;
    v_msg_data VARCHAR2(2000);
    v_data VARCHAR2(2000);
    v_workflow_started VARCHAR2(1) := 'Y';
    v_pm_product_code VARCHAR2(10);
    ---variables for catching errors---
    v_error_flag number:=0;
    -- Predefined Composite data types
    v_project_in PA_PROJECT_PUB.PROJECT_IN_REC_TYPE;
    v_project_out PA_PROJECT_PUB.PROJECT_OUT_REC_TYPE;
    v_key_members PA_PROJECT_PUB.PROJECT_ROLE_TBL_TYPE;
    v_class_categories PA_PROJECT_PUB.CLASS_CATEGORY_TBL_TYPE;
    v_tasks_in_rec PA_PROJECT_PUB.TASK_IN_REC_TYPE;
    v_tasks_in PA_PROJECT_PUB.TASK_IN_TBL_TYPE;
    v_tasks_out_rec PA_PROJECT_PUB.TASK_OUT_REC_TYPE;
    v_tasks_out PA_PROJECT_PUB.TASK_OUT_TBL_TYPE;
    v_CREATED_FROM_PROJECT_ID varchar2(20);
    v_CARRYING_OUT_ORGANIZATION_ID varchar2(20);
    v_person_id NUMBER;
    v_project_role_type VARCHAR2(20);
    API_ERROR EXCEPTION;
    v_a NUMBER;
    cursor for project in data
    CURSOR cur_project_in_data IS SELECT * FROM XXPA_PROJECT_IN_STG;
    cursor for task data
    CURSOR cur_task_in_data IS SELECT * FROM XXPA_TASK_IN_STG;
    ------------------------Cursors used for validations----------------------------------
    cursor for product code used for validation
    cursor cprc is select distinct PROJECT_RELATIONSHIP_CODE from PA_PROJECT_CUSTOMERS;
    cursor for distribution rule-
    cursor cdr is select DISTRIBUTION_RULE from PA_DISTRIBUTION_RULES;
    cursor for project status code
    cursor cpsc is SELECT PROJECT_STATUS_CODE, PROJECT_STATUS_NAME FROM PA_PROJECT_STATUSES WHERE STATUS_TYPE = 'PROJECT';
    cursor for template/created from project id
    cursor ccpid is select project_id from pa_projects where template_flag='Y';
    BEGIN
    select user_id, responsibility_id into v_user_id, v_responsibility_id
    from PA_USER_RESP_V
    where user_name like 'amit_kumar%'
    and responsibility_name like'PA SupervisorS';
    -- --Fnd_global.apps_initialize(user_id,resp_id, resp_appl_id);
    -- Fnd_global.apps_initialize(v_user_id,v_responsibility_id,275);
    -- -------calling global parameters---
    pa_interface_utils_pub.set_global_info
    p_api_version_number =>v_api_version_number,
    p_responsibility_id =>v_responsibility_id,
    p_user_id =>v_user_id,
    p_msg_count =>v_msg_count,
    p_msg_data =>v_msg_data,
    p_return_status =>v_return_status
    dbms_output.put_line ('Set Global status ->' || v_return_status);
    ----Cursor for PRODUCT RELATED DATA-----------
    FOR REC IN cur_project_in_data LOOP
    -----PASSING VALUES TO THE COMPOSITE DATA TYPE(PROJECT_IN_REC_TYPE)-------
    ----retrieving product code-----
    select lookup_code into v_pm_product_code
    from pa_lookups
    where lookup_type = 'PM_PRODUCT_CODE'
    and meaning = 'Oracle Project Manufacturing';
    -----retrieving and validating created from project id----
    BEGIN
    select project_id
    into v_CREATED_FROM_PROJECT_ID
    from pa_projects_all
    where name=rec.created_from_project_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent CREATED_FROM_PROJECT_NAME';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where created_from_project_name = rec.CREATED_FROM_PROJECT_NAME;
    END;
    -----retrieving & validating carrying out organization id-----
    BEGIN
    select distinct(CARRYING_OUT_ORGANIZATION_ID)
    into v_CARRYING_OUT_ORGANIZATION_ID
    from pa_projects_prm_v
    where CARRYING_OUT_ORGANIZATION_NAME=rec.carrying_out_organization_name;
    EXCEPTION
    when others then
    O_Retcode := '1';
    O_Errbuf :='Incorrent Carrying Out Organization name';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where carrying_out_organization_name = rec.carrying_out_organization_name;
    END ;
    v_project_in.pm_project_reference := rec.segment1;
    v_project_in.project_name := rec.PROJECT_NAME;
    v_project_in.created_from_project_id := v_CREATED_FROM_PROJECT_ID;
    v_project_in.carrying_out_organization_id := v_CARRYING_OUT_ORGANIZATION_ID;
    v_project_in.project_status_code := rec.PROJECT_STATUS_CODE;
    v_project_in.description := rec.PROJECT_DESCRIPTION;
    v_project_in.start_date := rec.PROJECT_START_DATE;
    v_project_in.completion_date := rec.PROJECT_COMPLETION_DATE;
    v_project_in.distribution_rule := rec.DISTRIBUTION_RULE;
    v_project_in.project_relationship_code := rec.PROJECT_RELATIONSHIP_CODE;
    -------------------------Validation of incoming project data--------------------------------
    v_error_flag := 1;
    project relationship code validation
    BEGIN
    for prc in cprc
    loop
    if (rec.PROJECT_RELATIONSHIP_CODE=prc.PROJECT_RELATIONSHIP_CODE) or (rec.PROJECT_RELATIONSHIP_CODE is null)--can be overridden from template
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project distribution rule validation
    BEGIN
    for dr in cdr
    loop
    if (rec.DISTRIBUTION_RULE=dr.DISTRIBUTION_RULE) or (rec.DISTRIBUTION_RULE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    project status code validation
    BEGIN
    for sc in cpsc
    loop
    if (rec.PROJECT_STATUS_CODE=sc.PROJECT_STATUS_CODE) or (rec.PROJECT_STATUS_CODE is null) null since the value can be taken from template too
    then
    v_error_flag :=0;
    else null;
    end if;
    end loop;
    END;
    dbms_output.put_line ('Error at PROJECT_STATUS_CODE>' ||v_error_flag);
    validation logic for project start date
    BEGIN
    if TRUNC(rec.PROJECT_START_DATE) >= TRUNC(rec.PROJECT_COMPLETION_DATE)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project start date cannnot be greater than completion date';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    END;
    validation logic for project completion date
    BEGIN
    if (TRUNC(rec.PROJECT_COMPLETION_DATE)<=TRUNC(rec.PROJECT_START_DATE))
    then
    if ( rec.PROJECT_STATUS_CODE='CLOSED' and rec.PROJECT_COMPLETION_DATE>sysdate)
    THEN
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='completion date cannot be greater than sysdate for closed projects';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    END IF;
    v_error_flag := 1;
    O_Retcode := '1';
    O_Errbuf :='Project closed date cannot be less than start date';
    end if;
    END;
    --------Update staging table for the error records--------
    BEGIN
    if v_error_flag =1
    then
    O_Retcode := '1';
    O_Errbuf :='Incorrect project relationship code';
    Fnd_File.Put_Line (Fnd_File.LOG, O_Errbuf);
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET ERROR_FLAG ='1' ,last_updation_date='sysdate' where PROJECT_RELATIONSHIP_CODE = rec.PROJECT_RELATIONSHIP_CODE;
    end if;
    END;
    -----------------------End of validation of incoming project data----------------------------------
    ---------------Project Task DATA-----------------
    v_a:=0;
    FOR tsk IN cur_task_in_data LOOP
    v_tasks_in_rec.pm_task_reference :=tsk.task_reference ;
    v_tasks_in_rec.task_name :=tsk.task_name;
    v_tasks_in_rec.pm_parent_task_reference :=tsk.parent_task_reference ;
    v_tasks_in_rec.task_start_date :=tsk.task_start_date ;
    v_tasks_in_rec.task_completion_date :=tsk.task_completion_date ;
    v_tasks_in(v_a) := v_tasks_in_rec;
    v_a:=v_a+1;
    end loop;
    ---------------end of task details------------------
    --INIT_CREATE_PROJECT
    pa_project_pub.init_project;
    ---------------------CREATE_PROJECT--------------------------
    pa_project_pub.create_project(
    p_api_version_number=> v_api_version_number,
    p_commit => v_commit,
    p_init_msg_list => v_init_msg_list,
    p_msg_count => v_msg_count,
    p_msg_data => v_msg_data,
    p_return_status => v_return_status,
    p_workflow_started => v_workflow_started,
    p_pm_product_code => v_pm_product_code,
    p_project_in => v_project_in,
    p_project_out => v_project_out,
    p_key_members => v_key_members,
    p_class_categories => v_class_categories,
    p_tasks_in => v_tasks_in,
    p_tasks_out => v_tasks_out);
    if v_return_status = 'S'
    then
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Success' where segment1 = v_project_out.pa_project_number; ---P->pending & S-> Success
    dbms_output.put_line('New Project Id: ' || v_project_out.pa_project_id);
    dbms_output.put_line('New Project Number: ' || v_project_out.pa_project_number);
    else
    UPDATE XXPA.XXPA_PROJECT_IN_STG
    SET INTERFACE_STATUS ='Pending' where segment1 = v_project_out.pa_project_number;
    raise API_ERROR;
    end if;
    END LOOP;
    Commit;
    ------Handling Exception--------
    EXCEPTION
    WHEN api_error THEN
    dbms_output.put_line('An error occured during project creation');
    IF (v_msg_count > 0 ) THEN
    FOR i IN 1..v_msg_count LOOP
    apps.PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_encoded => 'F',
    p_msg_index => i,
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message v_data ->'||v_data);
    dbms_output.put_line('Error message v_msg_data ->'||v_msg_data);
    dbms_output.put_line('Error message v_msg_index_out ->'||v_msg_index_out);
    dbms_output.put_line('Error message p_msg_index ->'||i);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    WHEN OTHERS THEN
    dbms_output.put_line('An error occured during conversion, SQLCODE ->'|| SQLERRM);
    IF (v_msg_count >=1 ) THEN
    FOR i IN 1..v_msg_count LOOP
    PA_INTERFACE_UTILS_PUB.get_messages(
    p_msg_count => v_msg_count,
    p_msg_index => i,
    p_encoded => 'F',
    p_msg_data => v_msg_data,
    p_data => v_data,
    p_msg_index_out => v_msg_index_out);
    dbms_output.put_line('Error message ->'||v_data);
    APPS.fnd_file.put_line(APPS.FND_FILE.LOG,v_data);
    END LOOP;
    END IF;
    end; --end procedure
    END xxpa_proj_conv_pkg;
    * Please tell me how to assign project specific task with the newly created projects??? *
    Also please tell me how to assign multiple * Project_Relationship_Code * (ex: END CLIENT, GENERAL CONTRACTOR, PRIMARY) for a particular project during project creation?

    Are you not storing the project number in the staging table designed for storing the task data? You can use create_project API to create the project and tasks at the same time with one single call. You may want to try that option

  • Report info about a specific machine

    Hi,
    Does somebody have a report that gives all information in SCCM about a specific machine between a timespan (like between November 1st and November 21st)?
    We would like as much as possible info about a specific workstation that's available in the SCCM SQL database, for forensic reasons (i.e. software installed, last user logged in, etc).
    The specific workstation has been reinstalled, so checking the workstation itself is not possible anymore.
    Thanks!

    I’m absolutely sure, If the PC exists within CM07 then they data will be exposed via resource explorer.
    http://www.enhansoft.com/
    Hi Garth,
    What if the OS reinstalled machine got the SCCM Client installed now. Will it still show the old history details? or Will it show the current inventory details alone?
    ~ Räjeésh M | Blog:
    ScorpITs | Please remember to 'Mark as Answer' or 'Vote as Helpful' on the post that helps. It helps others reading the thread and recognizes useful contributions.

  • Task Assignment Notes in Reporting Database

    Hi,
    I am working on a requirement to display task Assignment level comments (entered by Task Assignees in My Tasks screen) in a Report from Reporting Database. I would like to know the tables from where this information can be queried. Please note that the Notes
    here are not Task level notes in Project Schedule. Any help in this regard will be appreciated.

    Abhijit,
    Please see Paul's reply to your other question, which describes how you can use Powershell with PSI to get this information.
    https://social.technet.microsoft.com/Forums/projectserver/en-US/19824e52-a711-46c1-bdbf-dd7534bd10f7/report-to-list-of-all-proejcts-that-a-user-is-member?forum=project2010custprog
    Alternatively, you could also use it in SSRS as a data source, See here:
    http://blogs.msdn.com/b/chrisfie/archive/2007/10/24/reporting-services-using-a-psi-data-source.aspx
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Please help me to do Completed Tasks Excel Report with Odata Query

    Please help me to do Completed Tasks Excel Report with Odata Query

    Hello,
    If you use the link below in Internet Explorer you will find all of the properties and feeds for the Odata API:
    < site URL>/_api/ProjectData/$metadata
    That should help you find the data you need.
    For more details, see this post:
    https://pwmather.wordpress.com/2014/07/17/getting-started-with-projectonline-part-9-ps2013-office365-project-ppm-sharepointonline-pm-sp2013/
    Hope that helps
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Can anyone help me about create my reports on Oracle XE?

    Hi,
    I want to report with this product and I can created. But my report is search all items. I want to do this. Example our customers are log on this report via internet and they can search their billing. I can not create like this. I'm creating only ; customer logon this report but they can all data on this report
    My View is like this:
    View Name : Customer_Billing
    Customer_Number
    Customer_Name
    Customer_Surname
    Customer_Bill
    This report can be this: Customer visit our pages and log on that link and they write customer number and push to search button. then report working and only display writen customer number....
    Please help me about this. How can I do that
    Note: My Oracle XE Version 10.2.0.1.0
    Message was edited by:
    EqinnoX

    I'm assuming that they are not logging into the application...
    There are many ways you could accomplish this. Here is one.
    You have a report, and text item, and a button...
    1. set the query in the report to reference the text item in the "WHERE" clause of the select statement.
    2. set the display condition of the report to a where exists query and write a select statement that again references the text item in the "WHERE" clause. This will keep the entire report from being displayed unless a correct entry is entered in the text item.
    Now when they click the button, if there is a match the report will display with the correct information.
    This would be better if the users were logging in with a username/password. Then you could reference the user in the query and prevent access to the wrong data.

  • Need Help of Sending Email Notification when new task assigned

    Hi all,
    How can we send a email alert notification for existing lead or new lead, when a new Task is assigned to particular person. Here in my requirement daily n number of tasks assigned to executives. So how can i send the same.
    Thanks in advance.
    Regards,
    Ratan

    Hi Ratan,
    It is not clear from your question whether you are trying to trigger the email notification for the task or the lead, but it doesn't matter. You'll need to write a WF for the Lead/Task and trigger it when a new record is created and then in actions select the email notification.
    Best of luck

  • Dr. Watson report about to be sent

    I have been searching the net for this specific event and can't seem to find anything on it. I can find 4999 errors but not this one. Does anyone know what this is referring to or where I can find the explanation.
    Log Name:      Application
    Source:        MSExchange Common
    Date:          3/11/2015 12:45:38 PM
    Event ID:      4999
    Task Category: General
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      server.domain.com
    Description:
    Watson report about to be sent for process id: 19568, with parameters: E12, c-RTL-AMD64, 15.00.1044.025, w3wp#MSExchangeSyncAppPool, M.E.Data.Storage, M.E.D.S.FolderSync.QueueDelayedServerOperation, System.InvalidOperationException, 9ff7, 15.00.1044.022.
    ErrorReportingEnabled: False
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSExchange Common" />
        <EventID Qualifiers="16388">4999</EventID>
        <Level>2</Level>
        <Task>1</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2015-03-11T16:45:38.000000000Z" />
        <EventRecordID>3302516</EventRecordID>
        <Channel>Application</Channel>
        <Computer>server.domain.con</Computer>
        <Security />
      </System>
      <EventData>
        <Data>19568</Data>
        <Data>E12</Data>
        <Data>c-RTL-AMD64</Data>
        <Data>15.00.1044.025</Data>
        <Data>w3wp#MSExchangeSyncAppPool</Data>
        <Data>M.E.Data.Storage</Data>
        <Data>M.E.D.S.FolderSync.QueueDelayedServerOperation</Data>
        <Data>System.InvalidOperationException</Data>
        <Data>9ff7</Data>
        <Data>15.00.1044.022</Data>
        <Data>False</Data>
        <Data>False</Data>
        <Data>w3wp#MSExchangeSyncAppPool</Data>
        <Data>
        </Data>
      </EventData>
    </Event>

    Hi,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    Best regards,
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Niko Cheng
    TechNet Community Support

  • Query , logical DB or report about plan maintenance and functional location

    Hi,
    I've to do a report about a list of plan maintenance. I've to show the functional location affected by the plans but in the table MPOS the field TPLNR doesn't exist.
    But I have maintenance plans that affects to functional location only. I've not found any useful logical database or report to show this information.
    Could anybody help to me?
    Thanks
    Best Regards

    Dear
    The SAP is provded the option please check once again
    Table MPOS- Field ILOAN 
    First take the ILOAN from ILOA table by object reference is 2 (Field: OWNER) in output.
    Then put the Loc/acct assignment value at input of the MPOS table which is u received from ILOA table

  • Tables for mm03 (specification-material assignment)

    Hi All,
    We have a need to find out which material masters are assigned to GCD (Global Chemical Database) specifications.what are the possibilities from Material master side.
    Specification information (in tab "Spec assignment") on material master side is on a structure RCGMMJIOT. can anybody help with the table name for the corresponding structure.
    Thanks in advance

    HI Vibhuti,
    More detailed information about EHS tables are as follows
    Description--> Table Name
    Specification Header     ESTRH
    Identifiers     ESTRI
    Identifier - Regulatory list assignment     ESTRL
    Referencing in specifications     ESTRR
    Specification  - Material assignment     ESTMJ
    Specification status assignment     ESTST
    Specification - Value Assignment Type Assignment (Property tree)     ESTVH
    Value assignment Item (e.g.  composition values)     ESTVP
    Shadow table for AUSP (Characteristic values)     ESTAUSP
    Additional Information: Value Assignment Assessment     ESTDR
    Additional Information: Value Assignment Source     ESTDS
    Additional Information: Value Assignment Usage     ESTDU
    Additional Information - User-Defined Text     ESTDF
    Value assignment table (Classes)     ESTVA
    I hope this complete list may will be helpful for you.
    Regards
    Amol

  • Help me about tickets

    Hi . I am new to sap sd help me about sap sd
    Thanks & regards
    suresh babu.k

    Dear Suresh,
    CIN
    CIN Means Country India Version
    In Indian Taxing procedure, Excise Duty plays a vital role in manufacturing scenariou2019s. Excise related configuration is known as CIN configuration. CIN Configuration is a topic in itself.
    Some info on CIN Configuration (it may not appear as understandable below, but if you check on screen, it will be understood better)
    Country Version India comes with four pricing procedures as follows:
    JINFAC (Sales from manufacturing plants)
    JINEXP (Export sales)
    JINDEP (Sales from depots)
    JINSTK (Stock transfers )
    CIN: IMG > Logistics - General > Tax on Goods Movement > India > Basic Settings > Maintain Excise Registrations
    In this IMG activity, you maintain the data relating to your excise registrations.
    Enter each of your excise registrations, specifying a four-character code for each Excise Registration Ids
    In this activity, you maintain excise registration IDs. You create one ID for each of your business's excise registrations.
    For each excise registration in your business create a registration ID, and state:
    Which taxes the registration covers (additional excise duty, special excise duty, and cess) Fields for any taxes that are not covered will be hidden in transactions involving excise duty.
    The maximum number of items to be printed on each excise invoice
    Whether you are allowed partial CENVAT credits
    Maintain Registration ID NUMBER, Excise code number, excise registration number
    ECC Number: Specifies the organization's ECC number.
    Excise Registration Number: A number assigned to each premises or location that has registered as a manufacturer with the excise authorities.
    Every entity with an excise registration number is required to keep its own excise books.
    Excise range: Specifies the excise range in whose area the excise registration is located.
    Excise Division: Specifies the excise division in whose area the excise registration is located.
    Excise Collectorate: The code of the excise collectorate in whose area the excise registration is located.
    Indicator for confirming, AED usage Additional Excise duty Percentage.
    These are livable under the additional duties of excise act. These duties are in addition to basic excise duty and special excise duty. Example - Additional Excise duty is livable in case of textile products, tobacco and sugar.
    Similarly for SED CESS Number of Items in Excise Invoice Shows the maximum number of line items that the authorities allow per excise invoice.
    Dependencies - This information is used when you create an excise invoice in Sales and Distribution (SD) for factory sales and for other movements. This information is used to split the transfer postings' items into multiple subcontracting challans.
    Excise register set description: Description of the excise registers set.
    Partial CENVAT Credit: Indicates that the excise registration ID is allowed to credit only a portion of its input excise duty to its CENVAT account
    Dependencies - When you post a goods receipt, the system splits the input excise duty on the material into its deductible and nondeductible amounts. It posts the deductible duty to the appropriate CENVAT account, and adds the nondeductible duty to the material value.
    This information is also shown when you post the vendor's excise invoice.
    Maintain Company Code Settings.
    In this IMG activity, you maintain the data relating to your company codes.
    Document Type for CENVAT Postings.
    It controls, which document type the system uses when making CENVAT postings in Financial Accounting (FI). Here ED is document type for cenvat posting.
    Indicator for providing debit account overwriting
    Debit Account Overwrite Indicator. X - Indicates debit accounts can be overwritten. Use In excise journal voucher transaction. It provides the flexibility to the user to enter the debit account of his choice depending on the nature of transaction.
    Automatic balance Indicator - Excise year start month. The calendar month marking the beginning of the excise year. This start month represents the month for the start of the excise invoice number range. The month 04 is entered here indicating April of the calendar year as the start month for excise invoices. Any change by the Excise authorities regarding start month should be taken care of by an entry in this field and initialization.
    Excise invoice selection procedure :Excise invoice selection type. To indicate the method opted by the company for selecting the excise invoice. It can be either earliest or latest invoices that were received. Number of excise invoices to be selected Indicates the number of excise invoices that needs to be selected in the excise invoice selection.
    Days to be considered for excise invoice selection Number of days from document date for excise invoice selection.
    Example - If the value of this field is 20 and today is 28-03-97. The excise invoice selection will show the related invoices only for the period 08-03-97 to 28-03-97.
    Document type for TDS FI posting: Financial accounting document type for TDS posting.
    Document type for FI posting on Utilisation Financial accounting document type for TDS posting.
    Indicator for item level excise duty round off - This indicator is to be used for deciding whether Item level excise duty amount rounding off is required during procurement cycle. If marked 'X' then the excise duty amount will be rounded off to the nearest rupee at the Purchase order level. This will not round off the CENVAT credit to be taken. If the duty amount is less than one rupee then no rounding is done.
    Rounding off of Excise duty for outgoing excise invoice - You can round off the Excise amount to be paid during an outgoing
    Excise invoice by marking this indicator as 'X'. The rounding is done at the item level for each item where the amount is greater than 1 Rupee.
    Immediate Credit on Capital Goods - Instructs the system, when you verify a goods receipt for capital goods, to immediately post half of the input excise duty to the appropriate CENVAT accounts. The rest is posted the CENVAT on hold account, for use in the following year.
    CVD Clearing Account - Specifies which G/L account the system credits when you take a CENVAT credit on countervailing duty in the Incoming Excise Invoices transaction.
    Exchange rate type - Key representing a type of exchange rate in the system.
    You enter the exchange rate type to store different exchange rates. Example - You can use the exchange rate type to define a buying rate, selling rate, or average rate for translating foreign currency amounts. You can use the average rate for the currency translation, and the bank buying and selling rates for valuation of foreign currency amounts.
    Exchange rate type to be used for Export excise duty converts - When you are creating an Excise invoice for export sales then the exchange rate for duty calculation will be picked up using this Exchange rate type.
    Maintain Plant Settings - In this IMG activity, you maintain excise information relating to your plants.
    Plant Settings - In this activity, you maintain excise information relating to your plants.
    For each plant:
    Specify whether it is a manufacturing site or a depot.
    Assign it an excise registration ID. - You can assign the same ID to more than one plant, if required.
    Depot - Indicates that the plant in question is a depot. - Depots are required to prepare register RG 23D, and follow different procedures for goods receipt and invoice generation.
    Number of goods receipt per excise invoice.
    Multiple GR for one excise invoice, Single credit
    Multiple GR for one excise invoice, multiple credit
    Maintain Excise Groups - In this IMG activity, you define your excise groups. For each excise group, you can also control how various excise invoice transactions will work.
    Excise Groups - In this activity, you define excise groups. An excise group allows you to maintain a separate set of excise registers and excise accounts. The RG 23A, RG 23C and PLA serial numbers are created for an excise group.
    Recommendation - Under normal circumstances, excise authorities require every business to maintain only one set of excise registers and one set of accounts. But through exemption from the authorities, multiple books can be maintained.
    If your company has only one set of excise registers, then you need to maintain only one excise group.
    1. Create one excise group for each set of registers that you need to keep.
    2. Assign the excise groups to plants.
    3. Maintain whether this Excise group is for a depot or not.
    If you receive only one consignment for an Excise challan then you can leave GR's per EI as blank. If you receive multiple GR's for a given Excise challan and would like to avail multiple credits mark the GRs per EI as 'Multiple GR's for one excise invoice, multiple credit'. Alternatively if you want to avail the credit only after all the goods receipts have been made mark it as ' Multiple GR for one excise invoice, single credit'.
    4. If you want to automatically create Excise invoice during Sales cycle at the time of billing the tick the indicator 'Create EI'
    5. During depot sales if you do not want to do RG23D selection and posting separately and would like to complete RG23D selection in one step mark the indicator 'RG23D Auto post'. This will post the selected records into RG23D automatically. You cannot cancel the selection later.
    6. If the indicator 'Default GR qty' is marked system will default the Excise challan quantity on to the Goods receipt if the Excise invoice number is given in the pop-up.
    7. If the indicator 'Folio no create' is marked system will generate Folio numbers for RG23D during receipt of excise invoice into depot.
    8. 'Automatic posting' when ticked will post the Excise invoice other movements automatically along with creation in single step.
    9. 'Create Part1 for Block Stock' when marked will create a Part1 during the receipt of material into Blocked stock .
    10. 'Create Part1 for STO' when marked will create a Part1 during the receipt of material through inter plant transfers.
    11. 'Create Part1 for consumption stock' when marked will create a Part1 during the receipt of material into consumption stock. Excise Group Governs which set of excise registers a business transaction will be included in.
    Following is the relation between excise group, plant and registration. - In define excise groups in Customizing.
    Then, in transactions involving excise duty, for example, when you post a vendor's excise invoice, you specify which excise group you are using. This information tells the system which G/L accounts to post the excise to. At the end of the period, when you come to prepare your excise registers, you create different sets for each excise group.
    Indicates that the plant in question is a depot. - Depots are required to prepare register RG 23D, and follow different procedures for goods receipt and invoice generation.
    GR Per Excise Invoice
    Multiple GR for one excise invoice , Multiple credit
    Multiple GR for one excise invoice , Single Credit
    Create Excise Invoice Automatically - Instructs the system to automatically create a Sales and Distribution (SD) excise invoice immediately you create a commercial invoice or a pro forma invoice.
    The excise invoice is created in the background. - If you want to make use of this function, you must also define the default plant, excise group, and series groups in Customizing for Sales and Distribution (SD), by choosing Excise Group - Series Group Determination.
    RG23D Sales Creation and posting option - RG23D Automatic Option if selected will create Depot excise invoice by posting the selection of excise invoices in single step. If this is not selected then you need to separately do RG23D selection followed by PGI and then RG23D verification and posting. If you need automatic posting of RG23D selection then the Post Goods Issue should have been completed before running RG23D selection.
    Default excise qty in GR - If this indicator is ticked then while doing Goods Receipt using 'MB01' system will default the excise invoice quantity on to the Goods receipt document.
    Folio number for depo Posting - If this indicator is marked then while creating Excise invoice for other movements system automatically does the Verify and Post. You need not separately Post the excise invoice
    Also we can set indicator for creation of part 1 for:
    Blocked stock
    Stock transport order
    Consignment stock
    Maintain Series Group - In this IMG activity, you define the different excise series groups within your company. Series groups allow you to maintain multiple number ranges for the outgoing excise documents. Based on excise regulations and exemptions from the authorities you can maintain multiple number series for outgoing documents. But each of these series has to be declared to the excise authorities.
    Define excise series groups based on type of outgoing document
    Assign series group to excise registration ID
    If no financial postings are required for an Excise invoice in this seris group then you tick the 'No utilization' indicator.
    If the CENVAT has to be paid immediately and you need not wait for the Fort nightly payment then mark the 'Immediate Utilization' Iindicator. Example - You could define two series groups, group 001 for excise invoices, and group 002 for 57 F4 documents.
    No account postings for CENVAT in sales cycle
    No utilization Flag
    If you do not need any CENVAT utilization for an excise invoice but would like to just generate an excise invoice then you need to mark this indicator.
    If the flag is checked then system will create an Excise invoice in the given Series group but there will not be any account postings or Part2 postings.
    Immediate Utilization of CENVAT - Specifies that when you create an excise invoice, the system immediately pays the amount from CENVAT and creates the Part II entry. Such invoices will not be listed for fortnightly utilization.
    If you have both fortnightly and immediate utilization for the same excise group, the account determination within CIN IMG should point to the ED interim account.
    Account determination for immediate payment will be done exactly the same as being done for fortnightly utilization program.
    Maintain Excise Duty Indicators - In this IMG activity, you maintain the excise duty indicators.
    IMG > Logistics - General > Tax On Goods Movement > India > Basic Settings > Determination of Excise Duty > Select Tax Calculation Procedure
    In this IMG activity, you specify which tax procedure you want to use for determining excise duties and sales taxes on input materials in India.
    If you use condition-based excise determination, use a copy of the tax procedure TAXINN.
    If you use formula-based excise determination, use a copy of the tax procedure TAXINJ.
    This tax procedure also supports condition-based excise determination, so that you can work with both concurrently.
    We strongly recommend that new customers use condition-based excise determination. Note that once you have started using a tax procedure, you cannot switch to another one, otherwise you will not be able to display old documents.
    Maintain Excise Defaults - In this IMG activity, you define which tax procedure and pricing condition types are used in calculating excise taxes using formula-based excise determination.
    If you use condition-based excise determination, fill out the CVD cond. field and leave all the others blank.
    If you use formula-based excise determination, fill out all of the fields as follows:
    Enter the tax procedure and the pricing conditions that are relevant for excise tax processing.
    Specify the purchasing and sales conditions types used for basic excise duty, additional excise duty, special excise duty, and cess.
    Specify the conditions in the sales order that are used for excise rates.
    Specify the countervailing duty condition type used for import purchase orders.
    See also : SAP Library -> Logistics -> Country Versions -> Asia-Pacific -> India -> Materials Management (MM) -> Condition-Based Excise Determination and -> Formula-Based Excise Determination.
    IMG > Logistics - General > Tax On Goods Movement > India > Basic Settings > Determination of Excise Duty > Condition-Based Excise Determination
    When you enter a purchasing document, for example, a purchase order, the R/3 System automatically calculates the applicable excise duties using the condition technique.
    Features: The standard system comes with two tax calculation procedures.
    TAXINN is only supports condition-based excise determination, whereas TAXINJ supports condition-based excise determination and formula-based excise determination. Both tax procedures contain condition types that cover all of the excise duties and sales taxes applicable.
    Since the exact rates of excise duty can vary on a large number of factors, such as which vendor you purchase a material from, or which chapter ID the vendor stocks the material under, you create condition records for every sort of excise duty.
    When you come to enter a purchasing document, the system applies the excise duty at the rates you have entered in the condition records.
    Customizing: Make the settings in Customizing Basic -> India -> for Logistics u2013 General, by choosing Taxes on Goods Movements Account -> Excise Duties Using Condition Technique and u2026-> Settings Determination.
    These activities include one activity where you define a tax code for condition-based excise determination.
    Master Data - Create condition records for all excise duties that apply, and enter the tax code for condition-based excise determination in each.
    Day-to-Day Activities - When you enter a purchase order or other purchasing document, enter the tax code for condition-based excise determination in each line item. The system then calculates the excise duties using the condition records you have created.
    When the ordered materials arrive, you post the goods receipt and the excise invoice. The system posts the excise duty to the appropriate accounts for deductible input taxes when you enter the excise invoice.
    Creating Condition Records for Excise Duty
    1. In the command field, enter FV11 and choose .
    2. Enter the condition type that you want to create a condition record for and choose .
    The Key Combination dialog box appears.
    3. Select the combination of objects that you want to create the condition record for. On the dialog box, Control Code means "chapter ID." So, for example, to create a condition record for a tax that applies to a combination of country, plant, and chapter ID, select Country/Plant/Control Code.
    4. Choose.
    5. Enter data as required. - In the Tax Code field, enter the dummy tax code that you have defined.
    6. Save the condition record.
    Formula-Based Excise Determination - When you execute a business transaction involving materials that are subject to excise duty, the system automatically calculates the duty for you.
    In order for the system to be able to determine which rate of excise duty to apply, you must have maintained all the data on the Excise Rate Maintenance screen, which you can Master Data access from the SAP Easy Access screen by choosing Indirect Taxes Excise Rate Maintenance.
    You maintain the following types of data:
    Plant master data
    You assign each of your plants an excise duty indicator. You can use the same indicator for all the plants with the same excise status from a legal point of view, such as all those that are in an exempt zone. See also the information about manufacturers that are only entitled to deduct a certain portion of the duty (see
    Partial CENVAT Credit).
    Vendor master data
    For each of your vendors with the same excise status from a legal perspective, you define an excise duty indicator. You must also specify the vendor type u2013 for example, whether the vendor is a manufacturer, a depot, or a first-stage dealer. You must also stipulate if the vendor qualifies as a small-scale industry. For each permutation of plant indicator and vendor indicator, you then create a final excise duty indicator.
    Customer master data
    Similarly, you assign the same excise duty indicator to each of your customers that share the same legal excise status.
    Again, for each permutation of plant indicator and customer indicator, you then create a final excise duty indicator.
    Material master data
    each material is assigned a chapter ID.
    Excise tax rate
    for every chapter ID and final excise duty indicator, you maintain the rate of excise duty.
    If your business only qualifies for partial CENVAT credit, you must customize your system accordingly.
    Let us consider an example to illustrate how the system determines which rate of excise duty to apply to a material. Assume you are posting a sale of ball bearings to a customer. The system automatically determines the rate of excise duty as follows:
    1. Looks up the customer master data to see what status you have assigned the customer.
    Let's assume you've assigned the customer status 3.
    2. Looks up the plant master data to see what status you have assigned the plant. Similarly, your plant has status 2.
    3. The system looks up the table under Excise Indicator for Plant and Customer to see what the final excise duty indicator is for customer status 3 and plant status 2: It is 7.
    4. The system determines the chapter ID of the ball bearing for the plant.
    Letu2019s assume the chapter ID at plant for the ball bearings is 1000.01.
    5. Finally, the system looks up the table under Excise Tax Rate to see what rate of duty applies to chapter ID 1000.01 under
    status 7.
    Define Tax Code for Purchasing Documents - In this IMG activity, you define a tax code for the purposes of calculating excise duty when you enter purchasing documents. Only carry out this activity if you use condition-based excise
    determination.
    Create a new tax code, and set the tax code type to V (input tax). Do not make any other settings for it.
    Assign Tax Code to Company Codes
    In this IMG activity, assign the tax code for purchasing documents to the company codes where it will be used.
    Only carry out this activity if you use condition-based excise determination.
    Classify Condition Types - In this IMG activity, you specify which condition types you use for which sort of tax. Note that this only applies to condition types that you use with the new excise determination method. The system uses this information when you create a document from another one. For example, when you enter an incoming excise invoice from a purchase order, or when you create an outgoing excise invoice from a sales order, the system determines the various excise duties in the excise invoice using the information that you have entered here. In addition, when you create a purchasing document, the system only uses the condition types that you enter here.
    For taxes on purchases, use the condition types contained in the tax procedure.
    For taxes on sales, use the condition types contained in the pricing procedures.
    The standard system comes with sample settings for the tax calculation procedures and pricing procedures.
    Use these settings as a basis for your own.
    IMG > Logistics - General > Tax On Goods Movement > India > Account Determination
    Define G/L Accounts for Taxes - In this IMG activity, you specify which G/L accounts you will use to record which taxes.
    Requirements - You have set up G/L accounts for each of the processing keys listed below.
    Assign an account to each of the following posting keys. The accounts for VS1, VS2, and VS3 are used as clearing accounts during excise invoice verification.
    VS1 (basic excise duty)
    VS2 (additional excise duty)
    VS3 (special excise duty)
    VS5 (sales tax setoff)
    MWS (central sales tax)
    MW3 (local sales tax)
    ESA (service tax)
    ESE (service tax expense)
    Specify Excise Accounts per Excise Transaction - In this IMG activity, you specify which excise accounts (for excise duty and CENVAT) are to be posted to for the various transaction types. Enter all the accounts that are affected by each transaction type. If you use sub transaction types, enter the accounts for each sub transaction type as well.
    Transaction type UTLZ is used for determining accounts only while posting excise JVs and also if the payment of excise duty has to be done fortnightly. The fortnightly CENVAT payment utility picks up the credit side accounts from the transaction types of GRPO, EWPO, and TR6C for determining the CENVAT and PLA accounts. There is no separate transaction type for fortnightly payment.
    Example:
    Excise TT DC ind Account name
    GRPO CR CENVAT clearing account
    GRPO CR RG 23 BED account
    GRPO DR CENVAT on hld account
    Specify G/L Accounts per Excise Transaction - In this IMG activity, you assign the excise and CENVAT accounts to G/L accounts. When you come to execute the various transactions, the system determines which G/L accounts to post to by looking at the:
    Excise group
    Company code
    Chart of accounts
    Furthermore, if you want separate account determination settings within an excise group, you can also use sub transaction types.
    Requirements
    You have already:
    Defined the G/L accounts
    Defined the excise groups
    Maintained the transaction accounts
    Activities - For each excise group, assign the excise and CENVAT accounts to G/L accounts. For most businesses, one set of accounts will suffice for all transactions.
    Note : you need not remit the CENVAT to the excise department immediately, so maintain the credit account for transaction type DLFC as an excise duty interim account. This will be set off when you remit the duty. Config setting needed to be done in order to get the Excise Details Screen in Material Master.
    Even though this functionality is available in enterprise version, a small configuration step has to be made in Screen Sequences for Material Master.
    Following document helps you to do this configuration.
    Material Master à Logistics General
    1. Go to IMG Define Structure of Data Screen for each Configuring the Material master Screen Sequence.
    2. Select your screen sequence. Usually it would be 21. Select the same and click on Data Screen in the left frame.
    3. Once the data screens are exhibited, select data screen no. 15, ie. SSq. 21and Scrn 15, which is u201CForeign Trade: Import Datau201D. Select the same and click on Sub screens in the left frame.
    4. Go to the last sub screen i.e. 21-15-6 - SAPLMGD1- 0001 and select the same. Click on tab view sub screen and ensure that the sub screen is blank.
    5. Now in the last sub screen i.e. no.6 you delete SAPLMGD1 u2013 0001 and instead add SAPLJ1I_MATERIAL_MASTER and in the screen no. 2205.
    6. Save the setting.
    7. Create a Material Master and check whether in Screen Foreign Trade
    u2013 Import, Excise related sub screen appears.
    Whether you are allowed partial CENVAT credits 
    Maintain Registration ID NUMBER, Excise code number, excise registration number  
    Excise Registration Number 
    A number assigned to each premises or location that has registered as a manufacturer with the excise authorities. 
    Every entity with an excise registration number is required to keep its own excise books. 
    ECC Number 
    Specifies the organization's ECC number. 
    Excise Registration Number 
    A number assigned to each premises or location that has registered as a manufacturer with the excise authorities. 
    Every entity with an excise registration number is required to keep its own excise books. 
    Excise range: Specifies the excise range in whose area the excise registration is located. 
    Excise Division 
    Specifies the excise division in whose area the excise registration is located. 
    Excise Collectorate 
    The code of the excise collectorate in whose area the excise registration is located. 
    Indicator for confirming AED usage 
    Additional Excise Duty Percentage. These are leviable under the additional duties of excise act. These duties are in addition to basic excise duty and special excise duty. 
    Example 
    Additional Excise duty is leviable in case of textile products, tobacco and sugar. 
    Similarly for SED CESS 
    Number of Items in Excise Invoice 
    Shows the maximum number of line items that the authorities allow per excise invoice. 
    Dependencies 
    This information is used when you create an excise invoice in Sales and Distribution (SD) for factory sales and for other movements. 
    This information is used to split the transfer postings' items into multiple subcontracting challans. 
    Excise register set description 
    Description of the excise registers set. 
    Partial CENVAT Credit 
    Indicates that the excise registration ID is allowed to credit only a portion of its input excise duty to its CENVAT account. 
    Dependencies 
    When you post a goods receipt, the system splits the input excise duty on the material into its deductible and nondeductible amounts. It posts the deductible duty to the appropriate CENVAT account, and adds the nondeductible duty to the material value. 
    This information is also shown when you post the vendor's excise invoice. 
    Maintain Company Code Settings 
    Use 
    In this IMG activity; you maintain the data relating to your company codes. 
    Document Type for CENVAT Postings 
    It controls, which document type the system uses when making CENVAT postings in Financial Accounting (FI). Here ED is document type for cenvat posting. 
    Indicator for providing debit account overwriting 
    Debit Account Overwrite Indicator. X - Indicates debit accounts can be overwritten. Use In excise journal voucher transaction. It provides the flexibility to the user to enter the debit account of his choice depending on the nature of transaction. 
    Automatic balance Indicator 
    Excise year start month 
    The calendar month marking the beginning of the excise year 
    Use 
    This start month represents the month for the start of the excise invoice number range. The month 04 is entered here indicating April of the calendar year as the start month for excise invoices. Any change by the Excise authorities regarding start month should be taken care of by an entry in this field and initialization. 
    Excise invoice selection procedure 
    Excise invoice selection type. To indicate the method opted by the company for selecting the excise invoice. It can be either earliest or latest invoices that were received. 
    Number of excise invoices to be selected 
    Indicates the number of excise invoices that needs to be selected in the excise invoice selection. 
    Days to be considered for excise invoice selection 
    Number of days from document date for excise invoice selection. 
    Example 
    If the value of this field is 20 and today is 28-03-97. The excise 
    invoice selection will show the related invoices only for the 
    period 08-03-97 to 28-03-97. 
    Document type for TDS FI posting 
    Financial accounting document type for TDS posting. 
    Document type for FI posting on Utilisation 
    Financial accounting document type for TDS posting. 
    Indicator for item level excise duty round off 
    This indicator is to be used for deciding whether Item level excise duty amount rounding off is required during procurement cycle. If marked 'X' then the excise duty amount will be rounded off to the nearest rupee at the Purchase order level. This will not round off the CENVAT credit to be taken. If the duty amount is less than one rupee then no rounding is done 
    Rounding off of Excise duty for outgoing excise invoice 
    You can round off the Excise amount to be paid during an outgoing Excise invoice by marking this indicator as 'X'. The rounding is done at the item level for each item where the amount is greater than 1 Rupee. 
    Immediate Credit on Capital Goods 
    Instructs the system, when you verify a goods receipt for capital goods, to immediately post half of the input excise duty to the appropriate CENVAT accounts. 
    The rest is posted the CENVAT on hold account, for use in the following year. 
    CVD Clearing Account 
    Specifies which G/L account the system credits when you take a CENVAT credit on countervailing duty in the Incoming Excise Invoices transaction. 
    Exchange rate type 
    Key representing a type of exchange rate in the system. 
    Use 
    You enter the exchange rate type to store different exchange rates. 
    Example 
    You can use the exchange rate type to define a buying rate, selling rate, or average rate for translating foreign currency amounts. You can use the average rate for the currency translation, and the bank buying and selling rates for valuation of foreign currency amounts.  
    Exchange rate type to be used for Export excise duty converts 
    When you are creating an Excise invoice for export sales then the exchange rate for duty calculation will be picked up using this Exchange rate type. 
    Maintain Plant Settings 
    Use 
    In this IMG activity, you maintain excise information relating to your plants. 
    Plant Settings 
    In this activity, you maintain excise information relating to your plants. 
    Activities 
    For each plant: 
    ? Specify whether it is a manufacturing site or a depot. 
    ? Assign it an excise registration ID. 
    You can assign the same ID to more than one plant, if required. 
    Depot 
    Indicates that the plant in question is a depot. 
    Dependencies 
    Depots are required to prepare register RG 23D, and follow different procedures for goods receipt and invoice generation. 
    Number of goods receipt per excise invoice. 
    Multiple GR for one excise invoice, Single credit 
    Multiple GR for one excise invoice, Multiple credit 
    Maintain Excise Groups 
    Use 
    In this IMG activity, you define your excise groups. For each excise group, you can also control how various excise invoice transactions will work. 
    Excise Groups 
    In this activity, you define excise groups. An excise group allows you to maintain a separate set of excise registers and excise accounts. The RG 23A, RG 23C and PLA serial numbers are created for an excise group. 
    Recommendation 
    Under normal circumstances, excise authorities require every business to maintain only one set of excise registers and one set of accounts. But through exemption from the authorities, multiple books can be maintained. 
    If your company has only one set of excise registers, then you need to maintain only one excise group. 
    Activities 
    1. Create one excise group for each set of registers that you need to keep. 
    1. Assign the excise groups to plants. 
    2. Maintain whether this Excise group is for a depot or not. 
    3. If you receive only one consignment for an Excise challan then you can leave GR's per EI as blank. If you receive multiple GR's for a given Excise challan and would like to avail multiple credit mark the GRs per EI as 'Multiple GR's for one excise invoice, multiple credit'. Alternatively if you want to availa the credit only after all the goods receipts have been made mark it as ' Multiple GR for one excise invoice, single credit'. 
    4. If you want to automatically create Excise invoice during Sales cycle at the time of billing the tick the indicator 'Create EI' 
    5. During depot sales if you do not want to do RG23D selection and posting separately and would like to complete RG23D selection in one step mark the indicator 'RG23D Auto post'. This will post the selected records into RG23D automatically. You cannot cancel the selection later. 
    6. If the indicator 'Default GR qty' is marked system will default the Excise challan quantity on to the Goods receipt if the Excise invoice number is given in the pop-up. 
    7. If the indicator 'Folio no create' is marked system will generate Folio numbers for RG23D during receipt of excise invoice into depot. 
    8. 'Automatic posting' when ticked will post the Excise invoice other movements automatically along with creation in single step. 
    9. 'Create Part1 for Block Stock' when marked will create a Part1 during the receipt of material into Blocked stock . 
    10. 'Create Part1 for STO' when marked will create a Part1 during the receipt of material through inter plant transfers.  
    11. 'Create Part1 for consumption stock' when marked will create a Part1 during the receipt of material into consumption stock. 
    Excise Group 
    Governs which set of excise registers a business transaction will be included in. 
    Following is the relation between excise group, plant and registration. 
    Dependencies 
    In define excise groups in Customizing. 
    Then, in transactions involving excise duty, for example, when you post a vendor's excise invoice, you specify which excise group you are using. This information tells the system which G/L accounts to post the excise to. 
    At the end of the period, when you come to prepare your excise registers, you create different sets for each excise group. 
    Indicates that the plant in question is a depot. 
    Dependencies 
    Depots are required to prepare register RG 23D, and follow different procedures for goods receipt and invoice generation. 
    GR Per Excise Invoice 
    Multiple GR for one excise invoice , Multiple credit 
    Multiple GR for one excise invoice , Single Credit 
    Create Excise Invoice Automatically 
    Instructs the system to automatically create a Sales and Distribution (SD) excise invoice immediately you create a commercial invoice or a pro forma invoice. 
    The excise invoice is created in the background. 
    Dependencies 
    If you want to make use of this function, you must also define the default plant, excise group, and series groups in Customizing for Sales and Distribution (SD), by choosing Excise Group - Series Group Determination. 
    RG23D Sales Creation and posting option 
    RG23D Automatic Option if selected will create Depot excise invoice by posting the selection of excise invoices in single step.  
    If this is not selected then you need to separately do RG23D selection followed by PGI and then RG23D verification and posting.  
    If you need automatic posting of RG23D selection then the Post Goods Issue should have been completed before running RG23D selection. 
    Default excise qty in GR 
    If this indicator is ticked then while doing Goods Receipt using 'MB01' system will default the excise invoice quantity on to the Goods receipt document. 
    Folio number for depo 
    Posting 
    If this indicator is marked then while creating Excise invoice for other movements system automatically does the Verify and Post. You need not separately Post the excise invoice 
    Also we can set indicator for creation of part 1 for: 
    Blocked stock  
    Stock transport order 
    Consignment stock 
    Maintain Series Groups 
    Use 
    In this IMG activity, you define the different excise series groups within your company. Series groups allow you to maintain multiple number ranges for the outgoing excise documents. 
    Based on excise regulations and exemptions from the authorities you can maintain multiple number series for outgoing documents. But each of these series has to be declared to the excise authorities. 
    Activities 
    ? Define excise series groups based on type of outgoing document 
    ? Assign series group to excise registration ID 
    ? If no financial postings are required for an Excise invoice in this seris group then you tick the 'No utilization' indicator. 
    ? If the CENVAT has to be paid immediately and you need not wait for the Fort nightly payment then mark the 'Immediate Utilization' indicator. 
    Example 
    You could define two series groups, group 001 for excise invoices, and group 002 for 57 F4 documents. 
    No account postings for CENVAT in sales cycle 
    No utilization Flag 
    If you do not need any CENVAT utilization for an excise invoice but would like to just generate an excise invoice then you need to mark this indicator. 
    IF the flag is checked then system will create an Excise invoice in the given Series group but there will not be any account postings or Part2 postings. 
    Immediate Utilization of CENVAT 
    Specifies that when you create an excise invoice, the system immediately pays the amount from CENVAT and creates the Part II entry. Such invoices will not be listed for fortnightly utilization. 
    If you have both fortnightly and immediate utilization for the same excise group, the account determination within CIN IMG should point to the ED interim account. 
    Account determination for immediate payment will be done exactly the same as being done for fortnightly utilization program. 
    Maintain Excise Duty Indicators 
    Use 
    In this IMG activity, you maintain the excise duty indicators. 
    IMG > Logistics - General > Tax On Goods Movement > India > Basic Settings > Determination of Excise Duty > 
    Select Tax Calculation Procedure 
    Use 
    In this IMG activity, you specify which tax procedure you want to use for determining excise duties and sales taxes on input materials in India. 
    ? If you use condition-based excise determination, use a copy of the tax procedure TAXINN. 
    ? If you use formula-based excise determination, use a copy of the tax procedure TAXINJ. 
    This tax procedure also supports condition-based excise determination, so that you can work with both concurrently. 
    We strongly recommend that new customers use condition-based excise determination. Note that once you have started using a tax procedure, you cannot switch to another one, otherwise you will not be able to display old documents.  
    Maintain Excise Defaults 
    Use 
    In this IMG activity, you define which tax procedure and pricing condition types are used in calculating excise taxes using formula-based excise determination. 
    Activities 
    If you use condition-based excise determination, fill out the CVD cond. field and leave all the others blank. 
    If you use formula-based excise determination, fill out all of the fields as follows: 
    ? Enter the tax procedure and the pricing conditions that are relevant for excise tax processing. 
    ? Specify the purchasing and sales conditions types used for basic excise duty, additional excise duty, special excise duty, and cess. 
    ? Specify the conditions in the sales order that are used for excise rates. 
    ? Specify the countervailing duty condition type used for import purchase orders. 
    See also 
    SAP Library -> Logistics -> Country Versions -> Asia-Pacific -> India -> Materials Management (MM) -> Condition-Based Excise Determination and -> Formula-Based Excise Determination.  
    IMG > Logistics - General > Tax On Goods Movement > India > Basic Settings > Determination of Excise Duty > 
    Condition-Based Excise Determination  
    Use 
    When you enter a purchasing document, for example, a purchase order, the R/3 System automatically calculates the applicable excise duties using the condition technique. 
    Features 
    The standard system comes with two tax calculation procedures. TAXINN is only supports condition-based excise determination, whereas TAXINJ supports condition-based excise determination and formula-based excise determination. Both tax procedures contain condition types that cover all of the excise duties and sales taxes applicable. 
    Since the exact rates of excise duty can vary on a large number of factors, such as which vendor you purchase a material from, or which chapter ID the vendor stocks the material under, you create condition records for every sort of excise duty. 
    When you come to enter a purchasing document, the system applies the excise duty at the rates you have entered in the condition records. 
    Activities 
    Customizing 
    Make the settings in Customizing Basic? India?for Logistics - General, by choosing Taxes on Goods Movements Account? Excise Duties Using Condition Technique and ...?Settings Determination.  
    These activities include one activity where you define a tax code for condition-based excise determination. 
    Master Data 
    Create condition records for all excise duties that apply, and enter the tax code for condition-based excise determination in each. 
    Day-to-Day Activities 
    When you enter a purchase order or other purchasing document, enter the tax code for condition-based excise determination in each line item. The system then calculates the excise duties using the condition records you have created. 
    When the ordered materials arrive, you post the goods receipt and the excise invoice. The system posts the excise duty to the appropriate accounts for deductible input taxes when you enter the excise invoice. 
    Creating Condition Records for Excise Duty  
    1. In the command field, enter FV11 and choose .  
    2. Enter the condition type that you want to create a condition record for and choose .  
    The Key Combination dialog box appears. 
    3. Select the combination of objects that you want to create the condition record for.  
    On the dialog box, Control Code means "chapter ID." 
    So, for example, to create a condition record for a tax that applies to a combination of country, plant, and chapter ID, select Country/Plant/Control Code. 
    4. Choose .  
    5. Enter data as required.  
    In the Tax Code field, enter the dummy tax code that you have defined. 
    6. Save the condition record. 
    Formula-Based Excise Determination  
    Use 
    When you execute a business transaction involving materials that are subject to excise duty, the system automatically calculates the duty for you. 
    Prerequisites 
    In order for the system to be able to determine which rate of excise duty to apply, you must have maintained all the data on the Excise Rate Maintenance screen, which you can Master Data?access from the SAP Easy Access screen by choosing Indirect Taxes Excise Rate Maintenance.? 
    You maintain the following types of data: 
    ? Plant master data 
    You assign each of your plants an excise duty indicator. You can use the same indicator for all the plants with the same excise status from a legal point of view, such as all those that are in an exempt zone. 
    See also the information about manufacturers that are only entitled to deduct a certain portion of the duty (see Partial CENVAT Credit). 
    ? Vendor master data 
    For each of your vendors with the same excise status from a legal perspective, you define an excise duty indicator. You must also specify the vendor type - for example, whether the vendor is a manufacturer, a depot, or a first-stage dealer. You must also stipulate if the vendor qualifies as a small-scale industry.  
    For each permutation of plant indicator and vendor indicator, you then create a final excise duty indicator. 
    ? Customer master data 
    Similarly, you assign the same excise duty indicator to each of your customers that share the same legal excise status. 
    Again, for each permutation of plant indicator and customer indicator, you then create a final excise duty indicator. 
    ? Material master data 
    Each material is assigned a chapter ID. 
    ? Excise tax rate 
    For every chapter ID and final excise duty indicator, you maintain the rate of excise duty. 
    If your business only qualifies for partial CENVAT credit, you must customize your system accordingly.  
    Activities 
    Let us consider an example to illustrate how the system determines which rate of excise duty to apply to a material. Assume you are posting a sale of ball bearings to a customer. The system automatically determines the rate of excise duty as follows: 
    1. Looks up the customer master data to see what status you have assigned the customer.  
    Let's assume you've assigned the customer status 3. 
    2. Looks up the plant master data to see what status you have assigned the plant.  
    Similarly, your plant has status 2. 
    3. The system looks up the table under Excise Indicator for Plant and Customer to see what the final excise duty indictor is for customer status 3 and plant status 2: It is 7.  
    4. The system determines the chapter ID of the ball bearing for the plant.  
    Let's assume the chapter ID at plant for the ball bearings is 1000.01. 
    5. Finally, the system looks up the table under Excise Tax Rate to see what rate of duty applies to chapter ID 1000.01 under status 7. 
    Define Tax Code for Purchasing Documents 
    Use : In this IMG activity, you define a tax code for the purposes of calculating excise duty when you enter purchasing documents. 
    Only carry out this activity if you use condition-based excise determination. 
    Activities: Create a new tax code, and set the tax code type to V (input tax). Do not make any other settings for it. 
    Assign Tax Code to Company Codes 
    Use 
    In this IMG activity, assign the tax code for purchasing documents to the company codes where it will be used. 
    Only carry out this activity if you use condition-based excise determination. 
    Classify Condition Types 
    Use 
    In this IMG activity, you specify which condition types you use for which sort of tax. Note that this only applies to condition types that you use with the new excise determination method. 
    The system uses this information when you create a document from another one. For example, when you enter an incoming excise invoice from a purchase order, or when you create an outgoing excise invoice from a sales order, the system determines the various excise duties in the excise invoice using the information that you have entered here. 
    In addition, when you create a purchasing document, the system only uses the condition types that you enter here. 
    ? For taxes on purchases, use the condition types contained in the tax procedure. 
    ? For taxes on sales, use the condition types contained in the pricing procedures. 
    Standard settings 
    The standard system comes with sample settings for the tax calculation procedures and pricing procedures. 
    Use these settings as a basis for your own. 
    IMG > Logistics - General > Tax On Goods Movement > India > Account Determination 
    Define G/L Accounts for Taxes 
    Use 
    In this IMG activity, you specify which G/L accounts you will use to record which taxes. 
    Requirements 
    You have set up G/L accounts for each of the processing keys listed below. 
    Activities 
    Assign an account to each of the following posting keys. The accounts for VS1, VS2, and VS3 are used as clearing accounts during excise invoice verification. 
    ? VS1 (basic excise duty) 
    ? VS2 (additional excise duty) 
    ? VS3 (special excise duty) 
    ? VS5 (sales tax setoff) 
    ? MWS (central sales tax) 
    ? MW3 (local sales tax) 
    ? ESA (service tax) 
    ? ESE (service tax expense) 
    Specify Excise Accounts per Excise Transaction 
    Use 
    In this IMG activity, you specify which excise accounts (for excise duty and CENVAT) are to be posted to for the various transaction types. Enter all the accounts that are affected by each transaction type. 
    If you use subtransaction types, enter the accounts for each subtransaction type as well. 
    Activities 
    Transaction type UTLZ is used for determining accounts only while posting excise JVs and also if the payment of excise duty has to be done fortnightly. 
    The fortnightly CENVAT payment utility picks up the credit side accounts from the transaction types of GRPO, EWPO, and TR6C for determining the CENVAT and PLA accounts. There is no separate transaction type for fortnightly payment. 
    Example 
    Excise TT DC ind Account name 
    GRPO CR CENVAT clearing account 
    GRPO CR RG 23 BED account 
    GRPO DR CENVAT on hld account 
    Specify G/L Accounts per Excise Transaction 
    Use 
    In this IMG activity, you assign the excise and CENVAT accounts to G/L accounts. 
    When you come to execute the various transactions, the system determines which G/L accounts to post to by looking at the: 
    ? Excise group 
    ? Company code 
    ? Chart of accounts 
    Furthermore, if you want separate account determination settings within an excise group, you can also use sub transaction types.  
    Requirements 
    You have already: 
    ? Defined the G/L accounts 
    ? Defined the excise groups 
    ? Maintained the transaction accounts 
    Activities 
    For each excise group, assign the excise and CENVAT accounts to G/L accounts. For most businesses, one set of accounts will suffice for alltransactions. 
    Note 
    You need not remit the CENVAT to the excise department immediately, so maintain the credit account for transaction type DLFC as an excise duty interim account. This will be set off when you remit the duty. 
    Config setting needed to be done in order to get the Excise Details Screen in Material Master. 
    Even though this functionality is available in enterprise version, a small config step has to be made in Screen Sequences for Material Master. 
    Following document helps you to do this configuration. 
    ? Material Master ? Logistics General ?1. Go to IMG Define Structure of Data Screen for each?Configuring the Material master Screen Sequence. 
    2. Select your screen sequence. Usually it would be 21. Select the same and click on Data Screen in the left frame. 
    3. Once the data screens are exhibited, select data screen no. 15, ie. SSq. 21and Scrn 15, which is "Foreign Trade: Import Data". Select the same and click on Subscreens in the left frame. 
    4. Go to the last sub screen i.e. 21-15-6 - SAPLMGD1- 0001 and select the same. Click on tab view subscreen and ensure that the subscreen is blank. 
    5. Now in the last sub screen i.e. no.6 you delete SAPLMGD1 - 0001 and instead add SAPLJ1I_MATERIAL_MASTER and in the screen no. 2205. 
    6. Save the setting. 
    7. Cre

  • How to edit roles for specific tasks in IR & ID?

    Hello XI gurus,
    I need to assign access to specific tasks in IR & ID to dialog users. I tried creating separate roles in IR & ID but they need to have abap roles in the backend. But If I give some abap roles then the user will be having complete access to IR & ID. Can any one please help me how can i get this done.
    I ran the trace as well from ST01, but no luck. The actions are not getting traced. Any help will be rewarded. Thanks in advance.
    Regards,
    Farooq.

    Farooq,
    Refer the below discussions might be helpful, if not ignore it.
    Security roles needed for IR and ID access
    Best regards,
    raj.

  • Reg : How to retrive Group User ID's and Task assigned to users?

    Hi,
         Can anyone please help me out?
         I have a requirement like, In my process I have assigned a task to Group of Users. Now I need to findout All the User ID's as well as How many tasks assigned for that specific user. This is my requirement.
    My uderstanding for this we need to implement specific API's. But I dont have idea which API have to use.
    Please anyone having idea share with me and suggest me appropriate steps!
    Thanks in Advance,
    Anand.

    How strange I answered (or at least helped) this very same question earlier today. Here the link to my previous answer then:
    http://scn.sap.com/thread/3536135

  • Advanced reporting features in a task list

    Hi
    I hope someone can help with a rather specific question in SharePoint 2010.
    I'm using task lists a lot, but I find that the reporting data from the list is severely lacking.
    I'd like to have a calculated column that displays when the task was completed compared to the due date ("due date"-"Completed date"). I can't seem to get the calculated columns to behave when I want results from two date columns.
    A more complicated question to the same list. The list uses versioning, so It'll be great to be able to see, how far we've moved the due date during the life of the task. Is it possible to extract due date from version 1 in any way? And then create a column
    with the difference between original due date and current due date?
    Thank you in advance for your help!

    1. You'll want to use DATEDIF. See here: http://msdn.microsoft.com/en-us/library/office/bb862071(v=office.14).aspx
    2. You can't extract the version history date, but you can run a workflow that establishes a baseline date and sets it to the original date. Hide that field from the user and you can use that in another calc field to estimate the difference.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

  • No Data to display in Application failure report for a specific Application

    Hi ,
    For a specific application,Application failure report showing no data to display but for the same application other reports shows value.
    Application failure reports seems to work fine for some other application except few.Need to know the root cause.
    Kindly help us to sort this issue.
    Thanks & Regards,
    Preethi S

    Hi,
    Is there any error message when you run Application Failure Analysis report for the specific application?
    Does this application have any failure alerts?
    You may also look into operation manager even logs to check is there any errors or warnings.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • Help with folder options

    On my friends MacBook (newest one) say she has 4 files in a folder and are in one row. If she deletes the 2nd file from the left, the 3rd and 4th files shift one place to the left. On my MacBook Air (newest one too) that doesn't happen. If I delete a

  • Unable to install latest version 11.4 on my laptop i have windows 7

    installation of ver 11.4 failed get error msg need to install MSVCR80.DLL

  • PC value in Traces

    Hi, I have another question regarding sam-t2's trace file. The traces generated from sam-t2 do not have the pc information for every instruction. The pc is always shown zero. Is there anyway to actually get the pc information in the trace file. For e

  • IMac dead pixel

    I Think my Imac has a dead pixel. It's the latest iMac 27 inch display and it has a black mark on the screen. If I take it to apple what will they do?

  • Nokia 8800 arte accessorie price?

    hi i need to know how much it would cost to purchase the following assessories for the nokia 8800 arte charger Ac-6 bluetooth bh-803 dock station dt-19 i have called some authorise dealers but they said they cant get them in??? so how much would the