No entry found in table TTXD Calculation procedure with TAXCR

Hello,
Transaction FB01 F-02 and is sending me the following error, "No entry found in table TTXD Calculation procedure with TAXCR Message no. TAX_TXJCD106" requires me to turn jurisdiction code.
What I can do to avoid this problem?
Regards,

Hello,
You need to make sure the basic configuration is in place first, because I saw in my plain SAP environment, Costa Rica doesn't have a tax procedure assigned. I'm not familiar with Tax in CR as well. However, general rule of thumb for tax posting:
1. SPRO general settings - Set countries - Define countries in my SAP Systems
Assign the tax procedure TAXCR in country CR
2. SPRO FI global settings (New) - tax on sales/purchases - Basic settings - assign country to calc procedure
3. Define Tax Jurisdictions - TAXCR
4. Then Specify structure for tax jurisidiction code for TAXCR (This is the config content for table TTXD)
Regards,
WH

Similar Messages

  • Error message while running the payroll-no entry found in table t54c1

    Hi All,
    Im getting this error-error message while running the payroll-no entry found in table t54c1.What is the reason for this error?
    How doi solve it?

    Hello
    From the description of your problem above, your cumulation calender has not been generated for that month.
    Please take necessary action to ensure that calendar type is assigned to pay period in payroll area, by maintaining the payroll period which is represented by Date modifier and period modifier in view maintainance for table T54C1.
    Entries for this table are generated with the program RPUCTP10. (You should not have to create manual entries in this table.)
    Thanks and Kind Regards
    Ramana

  • Error in Sales Order idoc - No appropriate entry found in table ADRT

    Hello SAP Gurus,
    When I am retriggering a sales order idoc I am getting the following error message.
    No appropriate entry found in table ADRT
    How can I resolve this issue.
    Thanks,
    Narayan.

    Hello Lakshmipati,
    I have checked up the customer master. There was no communication method maintained for any of the customers.
    But even then the order idoc is triggered to our XI system.
    For the one that failed I have maintained the communication method and retriggered again. It had the same failure message.
    Any helpful thoughts is highly appreciated.
    Thanks & Regards,
    Narayan.

  • No entry found in table SMOFQFIND for BDoc type SI_CONTRACT

    Hi Gurus,
    I try to do a request dowload for SI_CONTRACT object.
    When  execute and monitor my request objects the status is OK.
    Then, I check the BDocs Message Trace and I see the following  error
    "No entry found in table SMOFQFIND for BDoc type SI_CONTRACT - Queue name used: CRI_SI_CONTRACT (see note 677800 for further info"
    Does anyone know how to resolve this issue?
    Thanks,
    M@le

    Hi Brian,
    There was leading 0 for the contract # in the request detail, however this message is still in the BDoc message trace. The BDoc was posted successfully. I checked the table SMOFQFIND and could not find the entry for BDoc type SI_CONTRACT.
    There are records for SI_CONNOBJ and SI_POD which are all delivered by SAP. I think we just need to maintain SI_CONTRACT in this table to get rid of this message. Just I do not know what exact to maintain for SI_CONTRACT.
    Could you help to check standard SAP environment to see what is the detail for SI_CONTRACT in table SMOFQFIND?
    Thanks,
    ZJKong

  • Background job error No appropriate entry found in table ADRT

    Hi,
    I have developed a report to sent mail in background. My background job is getting cancelled in background. but it runs in foreground.I have used leave to transaction statement in my report.
    In my development server job cancellation occurs.but mails are being sent.whereas in production server job cancellation ocurrs but mails are not sent.
    It shows the below error also...
    27.12.2010 17:00:00 Job started
    27.12.2010 17:00:00 Step 001 started (program YSD_OUTSANDING, variant &0000000000094, user ID ABAPER)
    27.12.2010 17:00:01 No appropriate entry found in table ADRT
    27.12.2010 17:00:01 Job cancelled after system exception ERROR_MESSAGE
    please help me to overcome this error...
    Thanks & Regards,
    A. Jenifer

    I don't see how either of those replies are helpful...
    To the OP, you haven't given much information.  That's a custom program but the failure is being triggered most likely by your attempt to generate the email by the standard code.  You need to get the error message ID and number from the log and find the codepoint (from a where-used analysis or debug) and analyze the condition that's triggering the message.  Most likely, it's a simple fix - there appears to be a missing remakrk entry but sometimes those messages are misleading and the message issued isn't actually the problem.

  • No appropriate entry found in table ADRT

    Hi,
    In XI T-Rfc (sm58) we get error --> No appropriate entry found in table ADRT
    Kindly, suggest.
    Akki.

    Hi Akshay,
    See the SAP Note Number: 983748
    Regards,
    Sarvesh

  • Create Table in a Procedure?

    Hey everybody!
    got a question... I would like to create a table within a procedure with a dynamic number of rows. The Input of the Procedure should be a number, and this number should determine the number of rows. Thought about something like this:
    create_table(3)
    -> rows: Seq_nb, Z1_Air, Z1_Gas, Z1_Time, Z2_Air, Z2_Gas, Z2_Time, Z3_Air, Z4_Gas, Z3_Time
    is this possible to do? All Tries to make a CREATE TABLE within the Procedure didn't work. Also, it seems to be difficult to name a row like 'Zx_Gas', x := Number
    I don't mean a temporary table, it should be a REAL table ;)
    Anybody who could help me please? Thanks in advance!!

    Is this the one you are trying to get?
    create or replace procedure create_table(num_of_cols in number) is
    num number;
    stmt varchar2(400);
    begin
    num:=num_of_cols;
    execute immediate 'drop table test_tab';
    stmt:='create table test_tab(constant_cols varchar2(30)';
    for i in 1.. num
    loop
    stmt:=stmt||', Z'||i||'_Air varchar2(30)';
    stmt:=stmt||', Z'||i||'_Gas varchar2(30)';
    stmt:=stmt||', Z'||i||'_Time varchar2(30)';
    end loop;
    stmt:=stmt||')';
    execute immediate stmt;
    end;

  • Calling stored procedures with parameters with the Database Connectivi​ty Toolkit

    Hi all,
    I am new to the forum and am having difficulty finding a solution to a particular problem I am having regarding using the LabVIEW Database Connectivity Toolkit on a project I am currently working on at my job.  I have a database in which I have tables and stored procedures with parameters.  Some of these stored procedures have input, output, and return parameters.
    I have been trying to follow this example but to no avail:  http://digital.ni.com/public.nsf/allkb/07FD1307460​83E0686257300006326C4?OpenDocument
    One such stored procedure I am working on implementing is named "dbo.getAllowablePNs", which executes "SELECT * from DeviceType" (DeviceType is the table).  In this case, it does not require an input parameter, it has an output parameter that generates the table [cluster], and has a return parameter which returns an integer value (execution status code) to show if an error occurred.  The DeviceType table has 3 columns; ID (PK, int, not null), PN (nvarchar(15), null), and NumMACAddresses (int, null).  I have gone over many examples and have talking to NI support to try to implement this and similar stored procedures in LabVIEW but have not been successful.  I am able to connect to the database with the Open Connection VI without error, but am running into some confusion following this step.  I am then trying to use the Create Parameterized Query VI to call the stored procedure and set the parameters.  I assume I would then use the Set Parameter Value VI for each parameter that is wired into the parameters input on the previous Parameterized Query VI?  I am also having some confusion during and following these steps as well.  I would greatly appreciate any advice or suggestions anyone might have in regards to this situation as I am not a SQL expert.  Also, I would be happy to provide any more information that would be helpful.
    Regards,
    Jon
    Solved!
    Go to Solution.

    Also, I don't know if this would be helpful but here is the actual stored procedure in SQL:
    CREATEPROCEDURE [dbo].[getLastSequenceNumber]
    @p1 nvarchar(10)='WO-00000'
    AS
    BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SETNOCOUNTON;
    -- Insert statements for procedure here
    selectmax(SequenceNumber)from Devices where WorkOrderNumber= @p1
    END
    GO

  • Status 29: Error in ALE service : Entry in outbound table not found

    IDoc: 0000000003560240 Status 29: Error in ALE service
    Entry in outbound table not found
    No partner profile (outbound parameter) could be found using the following key:
    /0000000000/LS//YHROT_XXM_IN////
    This refers to the key fields in table EDP13:
    RCVPRN  Partner number
    RCVPRT  Partner type
    RCVPFC  Partner function
    MESTYP  Logical message
    MESTYP  Message code
    MESCOD  Message function
    TEST    Test indicator
    Procedure
    Please check the EDI partner profiles.
    But The IDOC befor this and after this is successfully run.
    And even after reprocessing also it is giving same error.
    After checking Contorl record, we found that there is no data in receipant Info in Partner Tab.
    What would be the issue.
    Please suggest. 
    Thanks & Regards,
    Monika

    Hi ,
    Thanks for your reply.
    We are using one custom message type.
    I would like to give you example of exact scenario.
    Suppose my IDOC has large amount of segments then ,
    It is dividing as
    1st IDOC : Control record ....header and data segments
    2nd IDOC : only data segment
    3rd IDOc : only data segment
    4th IDOC : data segment and Trailer.
    In this way, I am getting all my 4 IDOCs in error.
    What should be d reason?
    your help will be grateful.
    Hi Everyone,
    any update?
    Edited by: Monika.Dhumal on Feb 14, 2012 11:49 AM

  • Get first entry of a table (return parameter of procedure)

    Hello Community,
    I created a procedure with a couple of projections and one join.
    The procedure returns the result as a parameter (o_result).
    In the calling procedure, I get the result.
    But I need to do further processing based on the first row of the result.
    Is this possible with SAP Hana SQL Script?
    Many thanks in advance.
    Regards, Rolf

    Hi Rolf,
    Your question is not very clear. May be you explain what you want to achieve after getting first entry of table.
    In your calling procedure you would make a call and bind the output table like this
    call proc1 ( :input_param, output_tab);
    On the returing output_tab you could just write something like
    output_top1 = select top 1 * from :output_tab;
    You could use this table for whatever processing you want to do further.
    If you want to get values into some scalar variables that is also possible.
    e.g
    declare lv_column1 nvarchar(10);
    select column1 into lv_column1 from :output_top1;
    Thanks
    Sagar

  • No table entries found for specified key

    Hi All,
    I have developed a program to upload data from flat file with the help of GUI UPLOAD. It is succesfully updating data in my Z-table.
    Whenever I tried to view the content of table for specific field, message shows No table entries found for specified key. However if I add * as a suffix, it shows the data & when I directly Execute table it also displays the data.
    I have also cross checked the spaces before or after the specific content, no space found.
    Only two fields are creating this issue Individually (one of them is key field)
    Regards
    Mukul Maheshwari

    Hi Dear ,
    Here i had implemented program go through it you can understand easily.
    While creating table give one field as primary as you know that.
    tables zdata1.
    data it_tab type TABLE OF zdata1 WITH HEADER LINE.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'C:\Documents and Settings\E50039\Desktop\data.txt'     ***************File path
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = it_tab
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    LOOP AT it_tab.
    zdata1-no1 = it_tab-no1.
    zdata1-name = it_tab-name.
    zdata1-empid = it_tab-empid.
    insert zdata1.
    ENDLOOP.
    Flat file
    1 name1 empid1
    2 name2 empid2
    note: Give the tabspace between values in flat file.
    Edited by: Aditya.G on Oct 12, 2011 10:22 AM

  • Getting idoc error - Entry in outbound table not found- in outbound scenari

    hi,
    while generating idoc for outbound idoc to file scenario - i am getting error
    "Entry in outbound table not found" (29 - error in ALE service)
    Diagnosis
    No partner profile (outbound parameter) could be found using the following key:
    /C100/KU//WP_EAN////
    This refers to the key fields in table EDP13:
    RCVPRN  Partner number
    RCVPRT  Partner type
    RCVPFC  Partner function
    MESTYP  Logical message
    MESTYP  Message code
    but already entry has been maintained in partner profiles for the corresponding message.
    same setup is working for other message types. pls let me know what might be the problem

    Hi,
    Check whether partner name is correct or not in WE20/outbound parameters undoer Logical System.
    Regards,
    Sreenivas.

  • Entry in outbound table not found

    i am using we19 trying to do standard outbound processing for idoc mbgmcr02
    i use  receiver Port internal and partner abc01
             sender  Port -
      and partner abc02
    in we20  is set up partner
    abc01   type ls   in outbound parameter area i see  mbgmcr
    now in 19 when is use as receiver  partner abc01  i get the following error
    entry in outbound table not found
    /abc01/ls//mbgmcr   message no 400   id E0
    can anyone direct me to what i am doing wrong?????????????????/

    Hi Janice,
    See these..
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/71/9bbdde2f66454bb9771170369bae81/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/2d/f371e4d24a11d289810000e8216438/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/dc/6b80c243d711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/f0/08ef0d06b111d286e2080009b98822/frameset.htm
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/0b/2a6620507d11d18ee90000e8366fc2/frameset.htm
    cheers,
    Prashanth

  • Entry in inbound table not found

    There is a typical problem here. R3 is recieving IDOCs from other (SRM) systems.
    But the sender's(SRM) partner name is not there in R3. The present IDOCs are getting failed with status 56 and message " Entry in inbound table not found" Please help me out..

    Sending partner (number) is not there...so U cannot have partner profile..

  • Entry in outbound table not found, Error message no. EO400

    I have created Partner profile and include message in partner profile.  when i have generated IDOc (we60), that time, it is given error ( Entry in outbound table not found---- Error Msg no. EO400).
    Please suggest me solution for the same.
    Kunjan shah

    Hi Kundan,
    can u be more specifidc about ur requirement.So that i can help u out.What all the configs u have done and what is method ur using for generationg outbound idoc.
    Regards,
    nagaraj

Maybe you are looking for