Ebusiness tax Rule setup - Set default rule button is disabled

Hi All
In ebusiness tax rule setup - Tax rule default values are not able to set. I cannot able to access the set default.
set default value is disabled. can anyone help me know , how i can enabled button set default value in
Tax Rules
Thanks
Venkatesan

Pl ensure that you have defined all required default values set up. Ex Tax, Tax Status, Tax Jurisdiction, Tax Rate etc.

Similar Messages

  • Setting default alert button at runtime

    Setting default alert button at runtime
    Sometime I want Button1 to be default and sometimes I want Button2 to be default.
    Please tell me how to change the default button at runtime.
    Thanks
    Claus Hansen [email protected]

    Beware of a slight bug in at least some versions. If the user dismisses the alert using the [X] close window control it fires a particular button which is not neccesarilly the default one. I always ensure that I make the default button the one which the control fires.

  • Setting default ruler units

    I am trying to use indesign cs6 for the first time. I started by watching the video tutorial (ten things beginners should know) on adobe TV. already I've run into a problem.
    in the tutorial the guy sets up a new document and the preset for margins on the create new document page is in inches. this is what i would like mine to be. however, my default is set in points/picas. I read a discussion thread in this forum saying to go into preferences>units of measurement in order to change the default to inches. I did that. problem solved!
    except...when I go to create a new document the menu has reverted back to points/picas. I've tried a number of times, quiting the program, etc. It will not change the presets, which quite defeats their purpose. Is this a glitch? advice?
    thanks!

    Make sure you have no open documents and the set the units to inches.
    Bob

  • How to set default custom button in af:popup

    Hi,
    I am using JDeveloper 11.1.2. I have popup. In that there are two input fields and one custom button called "Login". At runtime after the popup is been launched , while pressing Enter key it needs to trigger the "Login" button. If I use *<af:subForm>* in jsff file, the default is getting triggered. Apart from <af:subform> Is there any way to trigger default button at runitime?
    Thanks & Regards,
    Praveen.

    You can use an af:dialog of type ok/cancel for your popup. If you hit enter it'll work like the OK button is clicked. In a dialoglistener you can destinguage all other buttons or ESC.
    Check out http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_dialog.html and http://www.oracle.com/technetwork/developer-tools/adf/learnmore/77-ok-cancel-support-in-dialog-351871.pdf for a sample.
    Timo

  • Defaulting Rule - Help Needed

    hi,
    I want to default the Order Line based on specific Item. I have created the Defaulting Condition Template specifying the item for Entity Order Line.
    At the Item Type : I have added a new defaulting condition with a precedence later than the Regular Line and have added a constant value as the order line type.
    But it doesnt seem to work out. I have compiled the defaulting rules. But it still does not seem to work out.
    Can any one help or atleast point out how to get this thing working ?
    The idea is to have separate line type created for manufactured shippable items and separate line type for service items. Service module is not being implemented.
    since, the number of service items are not large so I am planning to hard code with the service items.
    I am not sure how the PL/SQL process would work. But if somebody could point out the PL/SQL usage for this with pseudo code. I think it might help out.
    Thanks,
    Dhiraj

    Hi Dhiraj,
    I understand that you are looking for different line types for different item types. This can be easily set up in the transaction type definition form itself. You don't have to setup special defaulting rules for this.
    In the transaction type form , when you assign line flows, it lets you choose item type. So you can set different line types for each item_type.
    Regards,
    Swapna.

  • In OO Alv toolbar, sum and subsum buttons are disable as default, WHY ?

    i want to enable sum and subsum buttons in alv toolbar. However, as default those buttons are disable. How can i solve ?

    i defined ref_table and ref_field for quantity field in fieldcat  such as  
    ls_fcat-ref_table = 'V03RB'.
    ls_fcat-ref_field = 'KWMENG'.
    so i solve it. thank you for your help.

  • GRC 10: Default Rule sets

    Hi All.
    i am wondering whether we have default rule set for GRC10 as we found with GRC 5.3. Where do I find them in GRC 10 software download?
    rEgards,
    Faisal

    In GRC10 default rule set are available by BCset :
    GRAC_RA_RULESET_COMMON
    GRAC_RA_RULESET_JDE
    GRAC_RA_RULESET_ORACLE
    GRAC_RA_RULESET_PSOFT
    GRAC_RA_RULESET_SAP_APO
    GRAC_RA_RULESET_SAP_BASIS
    GRAC_RA_RULESET_SAP_CRM
    GRAC_RA_RULESET_SAP_ECCS
    GRAC_RA_RULESET_SAP_HR
    GRAC_RA_RULESET_SAP_NHR
    GRAC_RA_RULESET_SAP_R3
    GRAC_RA_RULESET_SAP_SRM

  • Default Rule Set

    How can I get a copy of the most recent default rule set?

    You can download it in any support pack in VIRCC folder --> CC_rules.zip.
    The delivered rule set is in the CC_rules.zip file
    Ankur
    SAP GRC RIG

  • PL/SQL API + Defaulting Rules in OM

    Hi,
    I want to default custom rule in Sales Order from whenever I select Item. After selecting item from the sales order from, it should populate Warehouse value in Shipping tab. I am using custom PL/SQL API option. I wrote one function and kept in package. I was disabled all defaulting rules. Now If I select Item in sales order form, I am not getting warehouse value.
    The steps are:
    Step 1. Select Warehouse attribute and define defaulting rule
    Application: Order Management
    Entry: Order Line
    Select Attribute as Warehouse
    Click on Defaulting Rules
    Step 2: Define Defaulting Sourcing Rule
    Select Source type as PL/SQL API.
    In the Defaulting Source/Value field give Package Name and Function Name.
    Open Catalog Groups window from the below path: Setup  Items  Catalog Groups
    Specify Name and Description for Catalog Group
    Click on Details button.
    Step 3: Create Catalog Group
    Step 4: Specify Descriptive Elements for the Item Catalog Group
    Step 5: Code preparation
    -- My Custom Code
    Create or replace FUNCTION custom_default_rule
    RETURN VARCHAR2
    AS
    l_line_type_rec oe_order_cache.line_type_rec_type;
    CURSOR cus_l
    IS
    SELECT a.organization_code, b.element_name, b.element_value
    FROM mtl_parameters a,
    mtl_descr_element_values b,
    mtl_system_items_b c
    WHERE b.inventory_item_id = c.inventory_item_id
    AND a.organization_id = c.organization_id
    AND a.organization_id = c.organization_id
    AND c.inventory_item_id = 12924
    GROUP BY a.organization_code, b.element_name, b.element_value
    ORDER BY a.organization_code, b.element_name, b.element_value;
    BEGIN
         l_line_type_rec := oe_order_cache.load_line_type
    (ont_line_def_hdlr.g_record.line_type_id);
    FOR cur_rec IN cus_l
    LOOP
    IF cur_rec.element_name IN
    ('Frequency',
    'Emission Norms',
    'Voltage',
    'Duty Rating',
    'Phase',
    'Product'
    AND cur_rec.element_value IN
    ('50', '', '230', 'Medium', 'Single', 'QSK60')
    THEN
    RETURN cur_rec.organization_code;
    ELSIF cur_rec.element_name IN
    ('Frequency',
    'Emission Norms',
    'Voltage',
    'Duty Rating',
    'Phase',
    'Product'
    AND cur_rec.element_value IN
    ('50', '', '230', 'Medium', 'Three', 'QSK15')
    THEN
    RETURN cur_rec.organization_code;
    ELSIF cur_rec.element_name IN
    ('Frequency',
    'Emission Norms',
    'Voltage',
    'Duty Rating',
    'Phase',
    'Productfamily'
    AND cur_rec.element_value IN
    ('50', '', '230', 'Medium', 'Single', 'DQK50')
    THEN
    RETURN cur_rec.organization_code;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN OTHERS
    THEN
    IF oe_msg_pub.check_msg_level (oe_msg_pub.g_msg_lvl_unexp_error)
    THEN
    oe_msg_pub.add_exc_msg ('OE_Default_PVT', 'CUSTOM_DEFAULT_RULE');
    END IF;
    RAISE fnd_api.g_exc_unexpected_error;
    END custom_default_rule;
    Step 6: Create a Sales Order (Order Returns  Sales Orders)
    Select Customer and Order Type and select Line Items Tab.
    Select Item from the Ordered Item Field. Press Tab.
    After pressing tab in the Shipping Tab Warehouse value Should be populated. But it is not working.
    Can anyone guide me in this.
    It is very urgent.
    If possible, Please send u r details to my official id: [email protected]
    Thanks in Advance,
    sateesh

    Sateesh,
    This is working fine for me here:
    CREATE OR REPLACE PACKAGE xx_def_wh
    AS
    FUNCTION custom_default_rule (p_database_object_name IN VARCHAR2, p_attribute_code IN VARCHAR2)
    RETURN NUMBER;
    END;
    CREATE OR REPLACE PACKAGE BODY xx_def_wh
    AS
    FUNCTION custom_default_rule (p_database_object_name IN VARCHAR2, p_attribute_code IN VARCHAR2)
    RETURN NUMBER
    AS
    l_line_type_rec oe_order_cache.line_type_rec_type;
    l_item_id NUMBER;
    CURSOR cus_l(p_item_id in number)
    IS
    SELECT a.organization_id, b.element_name, b.element_value
    FROM mtl_parameters a, mtl_descr_element_values b, mtl_system_items_b c
    WHERE b.inventory_item_id = c.inventory_item_id
    AND a.organization_id = c.organization_id
    AND a.organization_id = c.organization_id
    AND c.inventory_item_id = p_item_id
    and a.organization_id<>a.master_organization_id
    ORDER BY a.organization_id;
    BEGIN
    l_line_type_rec := oe_order_cache.load_line_type (ont_line_def_hdlr.g_record.line_type_id);
    l_item_id:= ONT_LINE_DEF_HDLR.g_record.inventory_item_id;
    FOR cur_rec IN cus_l(l_item_id)
    LOOP
    IF cur_rec.element_name IN ('Frequency', 'Emission Norms', 'Voltage', 'Duty Rating', 'Phase', 'Product')
    AND cur_rec.element_value IN ('50', '', '230', 'Medium', 'Single', 'QSK60')
    THEN
    RETURN cur_rec.organization_id;
    ELSIF cur_rec.element_name IN ('Frequency', 'Emission Norms', 'Voltage', 'Duty Rating', 'Phase', 'Product')
    AND cur_rec.element_value IN ('50', '', '230', 'Medium', 'Three', 'QSK15')
    THEN
    RETURN cur_rec.organization_id;
    ELSIF cur_rec.element_name IN ('Frequency', 'Emission Norms', 'Voltage', 'Duty Rating', 'Phase', 'Productfamily')
    AND cur_rec.element_value IN ('50', '', '230', 'Medium', 'Single', 'DQK50')
    THEN
    RETURN cur_rec.organization_id;
    END IF;
    END LOOP;
    EXCEPTION
    WHEN OTHERS
    THEN
    IF oe_msg_pub.check_msg_level (oe_msg_pub.g_msg_lvl_unexp_error)
    THEN
    oe_msg_pub.add_exc_msg ('OE_Default_PVT', 'CUSTOM_DEFAULT_RULE');
    END IF;
    RAISE fnd_api.g_exc_unexpected_error;
    END custom_default_rule;
    END;
    Thanks
    Nagamohan

  • RECOVERY RATE의 설정 및 DEFAULT RULE에 대한 설명

    제품 : MFG_PO
    작성날짜 : 2004-05-21
    RECOVERY RATE의 설정 및 DEFAULT RULE에 대한 설명
    =======================================
    PURPOSE
    PO DISTRIBUTION의 RECOVERY RATE를 어떻게 설정하는지를
    기술하고자 한다.
    Explanation
    (1) Recovery Rate의 Setup
    Recovery Rate는 Tax Code를 기준으로 Disply된다.
    즉, Recovery Rate는 Tax Code를 설정하는 화면에서 지정하도록
    되어 있다.
    (path : Purchasing/Setup/tax/Tax code/recovery rate)
    만약, Tax Code가 Recovery Rate를 가지고 있다면, 이 Recovery rate는
    자동적으로 PO Distribution window에 Display된다.
    참고로, Tax Code는 어떻게 PO에 설정되는지를 설명드리겠습니다.
    Tax Code는 Tax hierarchy를 기준으로 자동적으로 PO에 설정됩니다.
    이 Tax Hierarchy는 Purchasing Parameter내에서 설정하게 됩니다.
    (path : Inventory/Setup/Organizations/Purchasing Parameter/tax)
    Tax Hierarchy는 Item/ship-to location/ supplier/ supplier site level
    별로 우선순위를 설정합니다.
    note : 만약, PO Distribution을 생성한 후에, Tax code를 임의로 변경
    한 경우, 관련된 Recovery Rate는 새로운 Tax Code에 의해 재설정
    되지 않습니다.
    (2) Recovery Rate의 자동 지정
    Recovery Rate는 다음의 경우에만 자동 Display된다.
    <1> tax code is not null.
    (TAX will be displayed by tax defaulting rule)
    <2> when you move the cursor to Charge account field in
    distributions window,
    recovery rate can be displayed automatically.
    <3> if you save the po form before distributions window open,
    recovery rate can be inserted in distributions window
    automatically.
    (3) recovery rate가 Null일 경우 Check사항
    case1. Setup of recovery rate is invalid.
    ==> you have to check the setup.
    case2. when you change the tax code from old PO, recovery rate can
    not be updated automatically.
    ==> this is a standard process.
    case3. Tax Recovery rate not defaulting for onetime items(without
    item code)
    ==> this is a bug.
    so we needs a one-off patch#1907369 (based on 11.5.4)
    Example
    N/A
    Reference Documents
    -------------------

  • Default rule in Order type dependend parameters - OPL8 - Order Settlement

    Hello,
    We are doing settlement of production orders via Tcode - Ko88.
    After execution of the same, system is passing an FI entry to GL - which is mentioned in the Material Master (Valuation Class - 7900) i.e. through OBYC setting.
    We have also checked the OPL8 setting (Order Type dependend Parameters - Controlling Tab) in which "Default Rule" is mentioned as - PP1 - Production Material full Settlement.
    As the system is passing an entry via "Default Rule - PP1" stored in Order Type Dependend Paramenters:
    1. What is the use of Settlement Profile (OKO7) & Allocation Structure (OKO6)?
    2. Can we make "Default Rule" field as optional (In Tcode - OPL8) ? since all the settlements are resulting in same Material GL.
    Waiting for a positive answer. Points will be assigned definitly.
    Thanks & Regards,
    Shridhar Sawant

    Hi,
    Settlement Profile:
    In the settlement profile, you define a range of control parameters for settlement. You must define the settlement profile before you can enter a settlement rule for a sender.
    If you want to settle the costs each time to just one cost center or just one G/L account, you need a settlement profile. As you cannot maintain the settlement parameters during settlement to a receiver, you must save the settlement profile either in the order type or in the model order or reference order.
    Allocation Structure:
    During settlement, costs incurred under the primary and secondary cost elements by a sender are allocated to one or more receivers. When you settle by cost element, you settle using the appropriate original cost element.
    An allocation structure comprises one or several settlement assignments. An assignment shows which costs (origin: cost element groups from debit cost elements) are to be settled to which receiver type (for example, cost center, order, and so on).
    You have two alternatives in settlement assignment:
    You assign the debit cost element groups to a settlement cost element.
    You settle by cost element - that is, the debit cost element is the settlement cost element.
    This is a good idea, for example, if the required capital spending for an asset you are building yourself is to be monitored. These costs are settled by cost element to an inventory account in Asset Accounting at the end of the year, or when the measure is complete.
    Each allocation structure must fulfil the following criteria:
    Completeness
    An allocation structure is assigned to each object to be settled. All cost elements in which costs are incurred, must be represented in the appropriate allocation structure.
    Uniqueness
    Each cost element in which costs are incurred may only appear once in an allocation structure. Only one settlement cost element may be assigned to a source within a particular allocation structure.
    Source Structure:
    A source structure contains several source assignments, each of which contains the individual cost elements or cost element intervals to be settled using the same distribution rules.
    In the settlement rule for the sender you can define one distribution rule, in which you specify the distribution and receivers for the costs for each source assignment.
    Thanks,
    Rau

  • I am trying to set up rules in iCloud and gmail on my server, does anyone know how?

    I am trying to set up rules in iCloud and gmail on my server, does anyone know how?

    Thanks for the advice King, but my newly bought iPad2 still isn't showing what the manual (downloaded from the iPad site) says. Also, when you say that there should be a "More" button in the music app (I assume you mean the item under Settings) I am afraid there isn't anything like that either. The page has iTunes Match, Sound Check,EQ,Volume Limit, Group by Album Artist and then the Home Sharing section with my Apple ID and Password. That is all. Maybe I need to find a better User Guide for 5.0.1? Your further input will be much appreciated.
    APS Csontos

  • Acrobat 9.5.5 does not keep preferences Setting Page & Ruler Units to Centimeters on Win7

    Hi,
    I have Win7 Pro x64 and i have problem with Acrobat 9.5.5 Standard Polish.
    Units and Guides: Setting Page & Ruler Units default option is Inches
    I change option to Centimeters or Milimeters.
       => After restart program (close and open) settings are back to Inches.
    My default language is Polish.
    I tried to repair my installation, and change default language to another, it doesn't work.
    Maybe can i make some changes in registry?
    Please help !
    Regards

    Hi Rafal .
    Please refer to the following link once
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7f9d.w .html
    Try Updating it to the latest version.
    Launch Acrobat>Navigate to Help>Check for Updates
    See if that helps.
    Regards
    Sukrit Dhingra

  • Setting Composition Rule In Mail

    THE SET-UP
    I've got mail configured to send and receive from a gmail account and my school-issued student account with the outrageously long extension @student.schoolname.edu. I use my school account strictly for communicating with other students and faculty. Everything else goes through gmail. The extensions for faculty are simply @schoolname.edu
    THE PROBLEM
    Seeing as how my composing rules are currently set to default new messages as being sent from my gmail account, and seeing as how I'm too spacy to double check stuff and switch my address in the message window before I send, I realized I just sent a whole bunch of emails to school people from my gmail. This is certainly not a tragedy, it's just kind of annoying and unprofessional-looking in my opinion.
    HERE'S THE QUESTION
    When I'm composing message, is there a way to program Mail or set a rule so that when I enter "schoolname.edu" in the TO: line, the message will default to my school account?
    For example, if I open a new message window and type "[email protected]" or "[email protected]," I'd like for the sending address to change to my school address rather than my gmail.
    I've clicked around in the menus and haven't seen anything incredibly obvious to this effect, so I'm hoping somebody out there can help. If you can't, I guess I'll just have to learn to double check things.

    no, there is now way to do that in mail.

  • Bill Presentment Architecture, how to Overide Default Rule and ensure the AR Invoice/Transaction Chooses "Customer Transaction Data Source"

    Hi Intelligentsia,
      we are on 12.2.4 on linux, i have setup external template with supplementary Data source as "Customer Transaction Data Source", when i test it fails, i am not able to debug it , however when i run the BPA Transaction Print Program (Multiple Languages) it always gives me the default layout.
    Query is
    How do i ensure the Default rule Does not apply to my Invoice and i am able to override it
    is there a method to explicitly Ensure the Supplementary Data Source as "Customer Transaction Data Source", when i am creating the AR Invoice/ Transaction?  Am i missing some setup in AR Invoice Transaction Flexfield where i need to setup this "Customer Transaction Data Source" as the DFF Context ?
    please let me know if you need any more information.
    Abdulrahman

    Hello,
    Thanks for the answer. When you say rule data is that Rule creation date or the "Bill Creation From Date" that we setup while creating the rule? I have created a new invoice after the rule created, but it did not pick the new custom template.
    I have another issue. It would be greate if you could help. I have split my logo area into 2 vertically to display logo in one and legal entity and addres on the other one. In the Online Preview I can see the logo and Legal address. But in the print preview , i am not able to see them. It just shows a blank space. Any Idea?
    Thanks in advance

Maybe you are looking for

  • Running a query On OIM Database inside an adapter task

    Hi, How can I run a SQL query to get some value from OIM database table inside an adapter task? How do I get Db connection without using JDBC API inside adapter task? Thanks in advance

  • HT201317 Photos in My Photo Stream not downloading to PC anymore.

    Photos in My Photo Stream on my iOS devices are no longer downloading into the designated folder on my PC.  I tried turning off photostream in the control panel on my PC and tried changing the designated download folder, but it still isn't working, 

  • What Jars are being used

    I have a big problem with the number of jars currently being used within my application. Is there a way of working out what jars are needed and which are not?? Regards Jai

  • Drop shadow on img missing

    Hi! I want a drop shadow on my images. I have created this div to do that: .shadow{ box-shadow: 5px 5px 3px rgba(65, 65, 65, 0.5); Then I added the div class to my images. But it doesn't work on the images already inside a div tag. E.g. my two pictur

  • Changing passwords using APEX and Database Credentials

    We are developing an application that uses database credentials. We can login very easily. Is there a simple way to create a page so that the users can change their own passwords? I understand that the users will in effect be issuing an ALTER USER st