Mapping of tax code with juridiction code

Hi MM Experts
While releasing service entry i m geting error " Message FF718 (tax code does not exist fo jurisdiction code)"
i have checked in FTXA tax code is mapped with juri code.
pls tell me where is the problem.
Thanks
Anubhav

Hope you have created Tax Code with Jurisdiction in FTXP Properly and Checked the Jurisdiction in Purchase ORder Item Detail Invoice Tab.
Now Check in OBCL whether Jurisdiction is Assigned to Company code.
Regards,
Ashok

Similar Messages

  • Pagination of output  php code with sql code

    if one program of php including sql query
    it seems to output wrong .(means some data will be calculated sum)
    if php code output all data in one page.pagination
    it seems to output right(means some data will be calculated sum)
    if there has column of company including two companies of A and B.
    and if each page output 3 lines while A company has 4 lines in sql query,so
    the last line of A company will output in second page,
    i want to calculate A company including 4 lines sum
    how to calculate sum of company of A in second page.
    i think it will be a good interesting question of php code with sql code.
    who can solution thus question ?
    thanks !

    Hi,
    for Example:
    SELECT sum(quantity * price)
    FROM orders
    WHERE COMPANY = 'A';
    This will give you the total amount for company A.
    But remember that your example table will give no output, since you have no price column. So you must decide, what which sum to calculate.
    A sum only calculated over the quantity makes IMHO no sense, because there are apples and bananas ...
    Greetings from Hamburg
    Thorsten Körner

  • Mapping of GL code with material code

    Hi MM experts
    is there any table where i can find GL code that is mapped with material code.
    Regards
    Anubhav

    i think there is no standard report existing for this GL material combination, also the same info is not also in same table. so i feel you can develop a report through SAP query or ask your abaper to develop it for you that material valuation class and GL account combination. you can use mm60 which have material and val. class combination
    regards,
    qsm sap

  • [Beta 6] Camera is crashing on simple code with exit code 101

    First time it was perfect
    Second time application failing with exit code 101
    If I don't use result image. For example remove line: imageView.image = image;
    then it works!
    Any ideas?
    [q]
    - (void)showCamera {
    // Set up the image picker controller and add it to the view
    UIImagePickerController *imagePickerController = [[[UIImagePickerController alloc] init] autorelease];
    imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
    imagePickerController.delegate = self;
    imagePickerController.allowsImageEditing = NO;
    [self presentModalViewController:imagePickerController animated:YES];
    - (void)imagePickerController:(UIImagePickerController *)picker
    didFinishPickingImage:(UIImage *)image
    editingInfo:(NSDictionary *)editingInfo
    [picker dismissModalViewControllerAnimated:YES];
    imageView.image = image;
    [/q]

    did you ever figure this out?
    i am having the same thing, but i assumed it was an out of memory problem...

  • Compare owb 9i code with 11g code

    HI
    Recently we migrated the 9i OWB's to 11g pls files.I need to verify whether correct versions were migrated or not.
    is there any way to Compare the 9i OWB's with 11g pls files?
    Note:9i databases with all OWB Components and 11g databases with new code is available.

    Hi
    Since you are using LCT Oracle to Oracle dblink you might as well remove the source execution unit and put the operators in the Oracle default target execution unit.
    Cheers
    David

  • Tax code with Jurisdiction Code

    Dear Gurus,
    How to find the Tax code is assigned to how many Jurisdiction codes, is there any Table for checking the same.
    regards,
    Gopi.P

    Dear,
    Use table A053
    Regards,
    Chintan Joshi

  • Sql code with php code

    for example:
    create table testtable (
    sales_area varchar2(30),
    sales_comp varchar2(40),
    sales_market varchar2(30),
    order_number number(20),
    order_date varchar2(20),
    item_id number(15),
    quantity number(20),
    item_desc varchar2(50)
    insert into testtable values ('westarea','acompany','amarket','52001',1001,1,10,'apple');
    insert into testtable values ('westarea','acompany','amarket','52005',1002,2,20,'banana');
    insert into testtable values ('eastarea','bcompany','bmarket','52002',1003,2,50,'banana');
    insert into testtable values ('eastarea','bcompany','bmarket','52004',1006,1,30,'apple');
    insert into testtable values ('eastarea','bcompany','bmarket','52003',1007,1,30,'apple');
    insert into testtable values ('westarea','ccompany','cmarket','52006',1003,1,30,'orange');
    insert into testtable values ('westarea','ccompany','dmarket','52007',1004,3,60,'orange');
    commit;
    select *
    from testtable
    it outputs below:
    westarea     acompany     amarket     52001     1001     1     10 apple
    westarea     acompany     amarket     52005     1002     2     20 banana
    eastarea     bcompany     bmarket     52002     1003     2     50 banana
    eastarea     bcompany     bmarket     52004     1006     1     30 apple
    eastarea     bcompany     bmarket     52003     1007     1     30 apple
    westarea     ccompany     cmarket     52006     1003     1     30 orange
    westarea     ccompany     dmarket     52007     1004     3     60 orange
    use php code outputs like below php code :
    apple banana orange .......
    westarea     acompany     amarket     52001     1001     10
    westarea     acompany     amarket     52005     1002     20 ........
    acompany 10 20 .........
    westarea     ccompany     cmarket     52006     1003          30 .........
    westarea     ccompany     dmarket     52007     1004          60 .........
    ccompany 90 .........
    westarea 10 20 90 .........
    eastarea     bcompany     bmarket     52002     1003     50 .........
    eastarea     bcompany     bmarket     52004     1006     30 .........
    eastarea     bcompany     bmarket     52003     1007     30 .........
    bcompany 60 50 .........
    eastarea
    total 70 70 90 ......
    make below php code output a new table:
    <?php
    $v_item_count = count(array(item));
    echo"<table border = 1>";
    echo "<tr>";
    echo "<td rowspan="2">sales area</td>";
    echo "<td rowspan="2">sales comp</td>";
    echo "<td rowspan="2">sales market</td>";
    echo "<td rowspan="2">customer_number</td>";
    echo "<td rowspan="2">order_number</td>";
    echo "<td colspan="'||to_char($v_item_count)||'">categories and quantities</td>";
    while ($row = oci_fetch_array ($stmt, OCI_BOTH)) {
    echo "<tr>";
    echo "<td>".$row['ORDER_NUMBER']."</td>";
    ?>
    who can help me?

    for example:
    while ($row = oci_fetch_array ($stmt, OCI_BOTH)) {
    echo "<tr>";
    echo "<td>".$row['ORDER_NUMBER']."</td>";
    echo "<td>".$row['ORDERED_DATE']."</td>";
    for ($i=0; $i<sizeof($items); $i++) {
    echo "<td>".$row[$i]." </td>";
    echo "</tr>";
    echo "</table>";
    ?>
    above php code should output plentites of lines while it output few lines.
    i don't know there has many lines outputed?
    who can help me?

  • Replace source code with destination code

    Hi,
    How to replace a program in source system with the program in production system technically?
    Thanks in advance...

    hi,
    Using Version Management you can do that.
    Use menupath...
    Utilies->Vesion->Version Management.
    Check the lastet request whcih exist in the Production sytem using Remote Comparsion Button
    After know the Request number Select the request number in the source system and press retrive.

  • Error with no code on warehouse builder

    Hi,
    I need some help on this porblem, please.
    Im trying to put in a maping the cube I have just created, and when I send it from available objects to the mapping an error mesage with no code or text apears. It just shows the error icon and the buttons acept and details.
    When I click on details this is the text:
    at oracle.wh.repos.impl.mapping.CMPMapOperatorOwnerImpl.createOperator(CMPMapOperatorOwnerImpl.java:87)
    at oracle.wh.repos.impl.mapping.CMPBaseMap.createOperator(CMPBaseMap.java:387)
    at oracle.wh.ui.tsmapping.MappingTransferHandler.handleCreateOperator(MappingTransferHandler.java:132)
    at oracle.wh.ui.tsmapping.MappingTransferHandler.importData(MappingTransferHandler.java:64)
    at oracle.wh.ui.editor.dnd.EditorTransferHandler$EditorDropHandler.drop(EditorTransferHandler.java:232)
    at javax.swing.TransferHandler$SwingDropTarget.drop(TransferHandler.java:598)
    at sun.awt.dnd.SunDropTargetContextPeer.processDropMessage(SunDropTargetContextPeer.java:542)
    at sun.awt.dnd.SunDropTargetContextPeer.access$800(SunDropTargetContextPeer.java:52)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchDropEvent(SunDropTargetContextPeer.java:805)
    at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchEvent(SunDropTargetContextPeer.java:743)
    at sun.awt.dnd.SunDropTargetEvent.dispatch(SunDropTargetEvent.java:29)
    at java.awt.Component.dispatchEventImpl(Component.java:3494)
    at java.awt.Container.dispatchEventImpl(Container.java:1627)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
    at java.awt.LightweightDispatcher.processDropTargetEvent(Container.java:3269)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3123)
    at java.awt.Container.dispatchEventImpl(Container.java:1613)
    at java.awt.Window.dispatchEventImpl(Window.java:1606)
    at java.awt.Component.dispatchEvent(Component.java:3477)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Caused by: java.lang.NullPointerException
    at oracle.wh.service.impl.mapping.component.dimension.DimensionInboundAdapter.constructLevelGroup(DimensionInboundAdapter.java:775)
    at oracle.wh.service.impl.mapping.component.dimension.CubeInboundAdapter.convertOperator(CubeInboundAdapter.java:562)
    at oracle.wh.repos.sdk.mapping.mxs.OperatorInboundAdapter.convert(OperatorInboundAdapter.java:28)
    at oracle.wh.repos.pdl.mxs.ReconcileService.createTarget(ReconcileService.java:572)
    at oracle.wh.repos.pdl.mxs.ReconcileService.createTarget(ReconcileService.java:544)
    at oracle.wh.repos.pdl.mxs.ReconcileService.reconcile(ReconcileService.java:304)
    at oracle.wh.repos.impl.mapping.CMPMapOperatorOwnerImpl.createOperator(CMPMapOperatorOwnerImpl.java:67)
    ... 25 more
    I dont know how to face the problem because I have no feedback. Can someone help me please

    When I validate all it gets a success.
    Im running version 10. standar edition one
    Thanks.
    Edited by: user10764934 on 02-02-2009 04:42 AM

  • Tax code is not picked up while doing ERS with T. Code. MRRL

    Hi Experts,
          I have got one Scheduling Agreement of certain material and based on goods receipt quantity user is performing ERS with T. Code MRRL. but when we are seeing different invoice documents generated by ERS with T. Code MIR4 for the same Scheduling Agreement, we are finding in some invoice document(In Basic data tab) didn't pick Tax Code and some invoice documents have picked Tax code.
    Following things are already maintained.
    1) Scheduling agreement is having tax code maintained.
    2) ERS field is ticked in Scheduling agreement
    3) Vendor is ticked for ERS
    4) GR based IV is ticked in Scheduling agreement
         Can some body suggest why this is happening

    Hi.,
    have u maintained the info record & tax code in info record for that particular material.
    please check it.
    Regards,
    Satpal

  • List of tax code with tax rate

    I need a list that give the tax code with the tax rate.
    I can view this in SAP or witch table i look this.
    Moderator: please do not log issues twice and crosspost into different (and wrong) forums. Thread relocated to ERP Financials and locked.

    hi
    >i wanna see the list of the tax code defined for the Service PO in its "invoice" tab.like for service tax we have three tax :
    check T code FTXP
    > tax code displayed to which the calculations are applied
    check t code  OBYZ
    regards
    kunal

  • Tax code with more than one tax rate

    Hi,
    I am using TAXINN procedure and I created on tax codes with more than one rate. i.e. for service tax I created  a tax code S1 with 3 rates as follows
    Acc. Key    Tax %      condition type
    VS9            12             JSE4
    VS0              2             JES4
    VSS              1             JHS4
    When I am trying to post a document with the above tax code the system is giving the following error message
    Tax code S1 may only contain one assignment line
    Message no. FF731
    Diagnosis
    For direct postings to tax accounts, only tax codes containing exactly one tax line may be used. Tax codes with several rates or a nondeductible portion are not allowed here.
    Procedure
    Use a different tax code.
    For direct postings to a tax account, you might have to define a separate tax code for which only one line with a percentage rate other than zero is active in percentage rate maintenance. All other lines must be inactive.
    To do this, choose Maintain entries (F5).
    Could you please let me know how to rectify this problem? I want to post 3 line items for each of base rate, Edu. Cess and Higher Edu.cess.
    Advance thanks for your help and
    Regards
    Koteswara Rao Padarti

    The problem is in the master data of the revenue account. the tax category should not be > and it should be *

  • Down pmnts with taxes are not permitted when processing with jur.code (Message no. FS206)

    Hi Guys,
    I am facing very critical issue on down Payment request, to process with saperate Tax Value.
    We are supporting on Roll-out for Germany. We have implemented all standard SAP processes in the Project. We have also implemented many interfaces and one of the Interface is Sabrix Tax Engine (Tax Jurisdiction Code).
    As per the Germany legal requirement, the Tax has to get calculated whenever the funds gets transfered from one Bank Account to Another Bank Account.
    Coming to the issue: In the Customer Down Payment scenario, we are creating the Down payment request for Customer and as per Germany local requirement the Tax of 19% has to get calculated on Down payment.
    For an Example: We have the Sales Order Contract Value of 100,000.00 EUR and we are creating the Down Payment reqeust of 10% which is 10000 EUR + Tax 19% 1900 EUR.
    We are trying to post the Down Payment request in F-37 and we get the issue "Down pmnts with taxes are not permitted when processing with jur.code". This error is appearing due to Sabrix Tax engine (Tax Jurisdiction Code) has implemented in our System.
    We have gone through the SAP notes 97288 and 213567 and understood that the Standard SAP does not support us to post the Down Payment request with Separate Tax Value, when the External Tax Engine has implemented.
    I request you to suggest me, if you have already seen this issue in any of your Projects and fixed through the work-around solution. We have been working on work-around since 2 weeks, however no result.
    Below is the error message:
    Down pmnts with taxes are not permitted when processing with jur.code
    Message no. FS206

    HI Preeti,
    Thanks for your response. We have already seen the similar SAP notes and the SAP notes explains that the "Down pmnts with taxes cannot be done along with with jur.code". The only solution is to post the DP without Tax.
    However there might be some workaround which can be done in SAP, to process the Down Payment/Advance Payments with Tax Value along with Jurisdiction Code. I would like to know this.
    Did any one seen this case in your experiece, if yes, what is the work-around solution?.
    Need your help guys!,...
    Regards,
    Damodar Naidu

  • Error FS206 Down pmnts w/ taxes not permitted when processing with jur.code

    Issue:   I am encountering a problem entering Taxes when applying  down payments received from customers since we are using a jurisdiction code taxation procedure.  This process works as desired in Europe for our firm.  I found OSS 97288 which is not valid for version ECC 6.0.  Please assist due to US go-live in 2 weeks.Process:  Create Down Payment Request for cash in advance.  Required to tax at this point.  Billing document creates a noted item in the G/L (Special G/L).  I apply customer's payment via transaction F-29 and receive error "FS206 Down pmnts with taxes are not permitted when processing with jur.code."
    Settings:  1) Alternative Recon account for Special GL posting has The tax category on the GL account = B "Output tax - down payments managed gross."  2) Transaction OBXB specifies tax clearing account for transaction key MVA.  This G/Laccount has same tax category setting (B). My settings work perfectly for Europe since they are not taxed via juridicition codes.
    Thank you in advance!

    Check the GL master of the alternative recon account. Ideally there should be no setting in the tax fields as there is no tax calculated on down payment but only on the final amount. Leave the tax fiel blank and do not check mark posting without tax allowed.

  • Detailed example for ABAP mapping in XI7.0 with code in  class builder

    hi experts,
                  will any one one send me the detailed example(including navigation steps) for ABAP mapping in XI7.0 with code in class builder.
                                                         Thankin u,

    Hi,
    Just go through the below link.It will guide you how to do abap mapping:
    The guide is on XI 3.0 but the same can be used in 7.0 also.
    The How-to-guide
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5c46ab90-0201-0010-42bd-9d0302591383
    This link will provide more information regarding program point of view.
    http://help.sap.com/saphelp_nw04/helpdata/en/86/8280ba12d511d5991b00508b6b8b11/content.htm
    Thanks,
    Kishore.
    Edited by: Kishore on Mar 14, 2008 4:35 AM

Maybe you are looking for

  • Multiple buttons on a form

    Hi all, I have a form which have four input buttons(<input type="button">). Based on which button is clicked I have to call a method in the servlet. The problems is the value of the button is always returned as null. The code is given below. In jsp <

  • Best apps for the visually impaired?

    Setting up ipad for my visually impaired system if anyone knows of any apps that would be suitable for things such as twitter and facebook that would be great. thanks

  • Sync server failed to sync the iphone

    Good Day! Everytime I try and sync my contacts I get this error message "Itunes could not sync contacts to the iPhone because the sync server failed to sync the iPhone". What do I need to do? Itunes 11.2.2.3, Windows 8.1, iPhone 5 (IOS 7.1.2) Thank y

  • Import media from card vs. Finder

    Is it a bad idea to Import MOVs straight from the Finder to FCPx as opposed to Importing from the original card structure? The only difference I see it the "Camera Name" and "Reel" columns are blank, but maybe there is something else I am missing.  L

  • Flash will not install

    I have been trying to install adobe flash. First instructions were to uninstall and previous versions. I did that and now Flash will not install. It says that gplay is interfering and can not down load. I dont even know what gplay is, were do I find