COUNTRY CODE DOESN'T EXIST IN COUNTY TABLE

Hi experts,
when i run foreign currency  valuation for gl account in t code FAGL_FC_VAL ,the following error massege is showing...,SE, PT,DOES NOT EXIST IN THE COUNTY TALBLE.
my company code  country is india-  and i use hard currency and group currency in USD..already IN and US  codes and hard currency USD are there in country table.....WHY THE SYSTEN ASKS THE OTHER COUNTY CODES. I M USING COPIED VERSION......
THANKS IN ADVANCE
NARAYANA.

thanks, but what is link between to fagl_fc_val and other country codes . my company code and local currency is inr,, group and hard currency is usd , the country code  US  is there in the county table.
thanks in advance,

Similar Messages

  • TAX CODE doesn,t exist for jurisdictin code

    hi
    while posting the GR, when selecting taxcode it is giving message " TAX CODE V1 DOES NOT EXIST FOR JURISDICTION CODE 2200 "
    i have defined jurisdiction code under costing sheet( tax procedure) and tax code for jurisdiction code. then entered in screan in excise invoice detail in header and item tabs (in head in invoice tab, no excise invoice showing )
    thank you
    sowmya

    hi all
    i have already did all the things you people said.
    1. I have already assigned company code to tax code.
        in "tax on goods movements"
    2. I have already defined "MWVS" condition type in "FV11"
          which is the link between taxcode and country.
    3. And "JMOP" offcourse, is the basic excise duty condition, I have already   
        defined in "FV11"
    But still getting the error
    please help me
    regards
    anand.

  • Error Transaction 'Function code' doesn't exist.

    hi ppl,
    i have a screen in which i am calling a subscreen.In the Subscreen there is button and i have given its function code as 'SSR'.
    Now when i execute the transaction the subscreen with all the data is appearing on the screen.When i press the button SAP is giving me error'Transaction 'SSR' doesnt exist'.
    In the PAI of the subscreen i have the below logic.
    case sy-ucomm.
    when 'SSR'.
    call screen 1008 starting at 5 10 ending at 23 43.
    when others.
    exit.
    endcase.
    Can anybody suggest what is the problem and how to fix it?

    have you called the subscreens in PBO and PAI like this..
    ROCESS BEFORE OUTPUT.
      MODULE STATUS_100.
      CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,
                      AREA2 INCLUDING SY-REPID NUMBER2.
    PROCESS AFTER INPUT.
      MODULE CANCEL AT EXIT-COMMAND.
      MODULE SAVE_OK.
      CALL SUBSCREEN: AREA1,
                      AREA2.
      MODULE USER_COMMAND_100.

  • Exporting a movie with time code when time code doesn't exist

    Title says it all. I need to export a 150 frame movie from CG rendered frames that contain no time code so that I can find which frames to re-render

    I do not wish to create a time code effect. I need to generate an actual time code that will display in an exported movie.
    The latter is achieved with the former.
    But I would ask, why can't you just watch the timeline?  Why export at all?  I mean, 150 frame movie is only 5 seconds long.

  • Enhancing existing Abap code: using values that doesn't exist in table

    Hi,<br><br>
    I would like to enhance this code . My requirement is as follows.<br><br>
    I have two tables  customer and product<br><br>
    <pre>KNVP  customer master data table
    Customer                            PF                Person
    700008          YF     45555
    700008          YQ     46666
    700008          ZF     46666
    700008          YM     49999
    700008          ZQ     44444
    700008          ZM     43333
    T179 product hierarchy table*
    product hier                     PF
    1000014000          ZM     
    1000015000          ZF     
    1000033000          ZQ     
    The current extractor is showing YM for all YPF values
    Customer         Zperson          ZPF        YPF    YPerson
    700008            46666              ZF          YM        49999
    700008            43333              ZQ         YM        49999
    700008            44444              ZM         YM        49999</pre>
    <br><br>
    Case 1:IF customer doesn't have Partner function value YQ in master data then partner function YF person and partner function should be use.
    <br><br>
    case 2: IF customer doesn't have Partner function value YF in master data then partner function YQ person and partner function should be use.
    <br><br>
    case3:IF customer doesn't have Partner function value YQ and YF in master data then partner function YM person and partner function should be use.
    <br><br>
    The tricky part is that YQ doesn't exist in T179 table
    <br><br>
    <pre>
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
       Select partner function, assigned to current
       product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
       Replace value with new partner function.
       by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
       Try to find new sales employee with this new partner function
          CLEAR KNVP.
          SELECT * FROM  KNVP UP TO 1 ROWS
            WHERE  KUNNR  = T_DATA-KUNNR
            AND    VKORG  = T_DATA-VKORG
            AND    PARVW  = NEWPF.
          ENDSELECT.
          IF SY-SUBRC EQ 0.
       New partner found with this partner function
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
      ELSE.
                NEWPF = 'YM'.
       Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
    </pre>
    <br><br>Edited by: Matt on Aug 24, 2010 9:31 AM - fixed formatting

    Hi,
    thanks for your input, I have written it like this and it is working well for YQ and YF partner functions but YM is not showing when both are missing.
    LOOP AT T_DATA.
          ZIDX = SY-TABIX.
          CLEAR T179.
    *    Select partner function, assigned to current
    *    product hierarchy level 2
          SELECT * FROM T179
                   WHERE  STUFE = '2'
                   AND    PRODH = T_DATA-PRODH.
          ENDSELECT.
    *    Replace value with new partner function.
    *    by replacing first letter to 'Y'
          CONCATENATE 'Y' T179-ZZPARVW+1(1) INTO NEWPF.
    IF SY-SUBRC EQ 0.
    IF NEWPF EQ 'YF'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0.  "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YF'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0. "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YQ'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
    IF NEWPF EQ 'YQ'.
          READ TABLE T_KNVP WITH KEY PARVW = 'YQ'.
            IF SY-SUBRC EQ 0.  "YQ exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YQ'.
            ENDSELECT.
              T_DATA-ZPARVW = 'YQ'.
              T_DATA-ZPERNR = KNVP-PERNR.
            ELSE.
            READ TABLE T_KNVP WITH KEY PARVW = 'YF'.
            IF SY-SUBRC EQ 0. "YF exists in master data
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = 'YF'.
            ENDSELECT.
               T_DATA-ZPARVW = 'YF'.
               T_DATA-ZPERNR = KNVP-PERNR.
    ENDIF.
    ENDIF.
    ENDIF.
          ELSE.
            NEWPF = 'YM'.
    *    Try to find new sales employee with partner function 'YM'
            CLEAR KNVP.
            SELECT * FROM  KNVP UP TO 1 ROWS
              WHERE  KUNNR  = T_DATA-KUNNR
              AND    VKORG  = T_DATA-VKORG
              AND    PARVW  = NEWPF.
            ENDSELECT.
            T_DATA-ZPARVW = NEWPF.
            T_DATA-ZPERNR = KNVP-PERNR.
          ENDIF.
          MODIFY T_DATA INDEX ZIDX TRANSPORTING ZPARVW ZPERNR.
        ENDLOOP.
    thanks
    Edited by: Bhat Vaidya on Aug 30, 2010 1:31 PM

  • Reg: Table doesn't exist -

    Hi Experts,
    I'm getting this error - 'Table or View doesn't exist' when the table <tt>DBA_DML_LOCKS</tt> is used inside a (cursor) package but the same works fine when run independently.
    I'm quite sure that I'm lacking some knowledge there. Can anybody please help me in that?
    CREATE OR REPLACE PROCEDURE dml_locks
    AUTHID CURRENT_USER --DEFINER
    IS
       CURSOR cur_locks
       IS
          SELECT ROW_NUMBER () OVER (PARTITION BY b.session_id ORDER BY b.name)
                    "Rno",
                 a.sid "session_id",
                 a.schemaname,
                 b.name "table_name",
                 b.mode_held "lock_mode_held",
                 a.osuser,
                 a.machine,
                 a.program
            FROM v$session a, dba_dml_locks b
           WHERE a.sid = b.session_id;
    BEGIN
       FOR i IN cur_locks
       LOOP
           --HTP.PRINT (i.rno || '---' || i.session_id);
           htp.print('*');
       END LOOP;
    EXCEPTION
       WHEN OTHERS
       THEN
          HTP.PRINT ('Error - ' || DBMS_UTILITY.format_error_backtrace);
    END;Is it something related to the rights - Definer or Current User?
    Checked this similar thread but couldn't understand - table/view does not exist using dbms_sql
    Help much appreciated!
    - Ranit (on Oracle Database 10g Enterprise Edition Release *10.2.0.5.0* - 64bi )

    ranit B wrote:
    Karthick_Arp wrote:
    Grant to dictionary objects is assigned through a ROLE to your user. You need to have grant assigned explicitly to your user to access the object from within a PL/SQL code.Ohhh... nice to hear that. Thanks!
    Can't I use <tt>AUTHID</tt> to resolve this?
    And I'm not getting - what is the difference between Grants through ROLE and explicitly assigned Grants? I mean to say finally all give Grants only right??
    Edited by: ranit B on May 6, 2013 12:41 PMhttp://asktom.oracle.com/pls/asktom/ASKTOM.download_file?p_file=6551289900368934430

  • Adding T-code to Role Area Menu which doesn't exist in box

    Hello,
    We are using a SAP system called QIM which has "jumplink" functionality, which is a web based linked (NWBC) which will launch you into a ERP system transaction when clicked. For example, in QIM we will display a outbound delivery, and if we click on the link it launches VL03N from the ERP system and displays as  web UI.
    In PFCG under area menu, this transaction code appears under the menu, but VL03N doesn't actually existing in the system... The issue is we created a custom object for inbound delivery and we need ot add it under this area, but when we attempt to add a transaction code under the Role Area, the system says the t-code doesn't exist... Even when we try this with an existing t-code showing in the menu (Vl03N) it says it doesnt exist. Same if we look at the authorization object S_TCODE. These t-codes exist in here, but when you try to readd them they system says it doesn't exist.
    Please find the attachments with some screen shots... Any idea how we can do this?

    You can create a role menu as remote enabled remote menu.
    The authority checks will happen on the remote side, also against objects which don't exist in the calling system as the music is on the other side.
    On the RFC client system side, you only need the parameter transaction to start the remote transaction in the remote system.
    See the documentation on SYST function module ABAP4_CALL_TRANSACTION.
    This is however a rather antiquated technology... it is more popular to use a SAP Portal or webdynpro applications for this sort of thing (the user does not notice the difference) or later versions of such integration such as Fiori UIs or imbedded links within the Business Client.
    I don't want to lean out the window too far, but the buggy phase of these new things is approaching an end and they are usable if you are on newer releases. Then you can pool the menu and use APIs for navigation and no more irritating S_TCODE checks.
    Cheers,
    Julius

  • Error code ws-36787-1 doesn't exist??? *****?

    So i linked my Facebook account and uploaded my profile pic,After a week i lost all real names and pictures from all my friends and i cant use my own anymore.Got an email from scee saying it doesn't warrant a punishment, yet i constantly get error code ws-36787-1 whenever i even try to send a real name or close friend request and when i search the error code pages on here the code doesn't exist???? I've sent a message to sony but they just ignore me.Can any1 help a desperate girl out, please.?

    Ask Playstation said this about it to someone else - https://twitter.com/askplaystation/status/582793804635377664 It's worth a try I guess, it can't hurt anyway. Did you get the email from sony as a reply to one you'd sent or they just emailed you? (OP)

  • Delete allowed in a multirow blk only if no records exist in another table

    How can I delete an existing row in a multirow block after checking that no records exist in another table ?
    How do I proceed please ?
    I know I need to check the primary keys of both tables to do that . Please help.

    I've written the following code in the KEY-DELREC trigger :
    DECLARE
    *     Fail EXCEPTION;*
    *     alert_title varchar2(100) := null;*
    *     p_button_choice number := 0; -- 10g : for Stop_Alert, Caution_Alert & Note_Alert*
    *     cnt NUMBER;*
    *     choice NUMBER;*
    Begin
    *     If :system.record_status NOT IN ('INSERT', 'NEW') THEN -- can be CHANGED or QUERY mode*
    *          begin*
    *          SELECT count(AMD_CODE)*
    *          INTO cnt*
    *          FROM t_mmamd,t_amdtype*
    *          WHERE AMD_CODE = :AMD_CODE*
    *          AND MMA_AMD_CODE = AMD_CODE;*
    *     IF cnt > 0 THEN*
    Alerts.Stop_Alert('Error: IMDG Code '||:AMD_CODE||'Delete not allowed!!Exists in t_mmamd table', choice);
    RAISE FORM_TRIGGER_FAILURE;                       
    *          ELSE*
    *          alert_title := 'Are you sure to remove this record ?';*
    *          Alerts.Stop_Alert_YesNo (alert_title, p_button_choice);*
    If p_button_choice = 1 Then
    *     delete_record;*
    End if;
    END IF;
    end;
    Else -- record status is in INSERT or NEW mode
    *          delete_record;*
    *     End if;*
    End;
    It works okay and prevents me from deleting records in the other table . However I get the following errors when I try to delete a record which doesn't exist in t_mmamd table :
    Could not resolve record(2 tries) keep trying?
    Error : 40501 - oracle Error unable to reserve record for update or delete .

  • Query the values not exist in the table

    We have a table AP_INVOICES_ALL where we have a column INVOICE_NUM, now we are searching INVOICE_NUM from a large set of values of INVOICE_NUM provided by the user.
    I want a query to find the INVOICE_NUM values supplied by user that doesn't exist in AP_INVOICES_ALL table.
    Database version : 11g
    OS : aix 6.1
    Regards,
    Gaurav

    Hi,
    If you are getting values in the table then the above solution is there but if you are getting the values in excel or text file then you need to upload the data into the table by using sql loader or by using external table.
    if the case then
    load data from excel or plain file into oracle table by using sql loader.(loader is server based utility)
    create table in oracle like create table table_name as column specification.
    If you have excel then save it as .csv file and create sql loader control file like
    oPTIONS (SKIP=1)
    load data
    infile 'Path_where_you_saved_csv_file'
    truncate
    into table table_name_you_have_created
    fields terminated by ','
    optionally enclosed by '"'
    trailing nullcols
    (your_column_name)
    {code}
    call control file from command prompt from the path where your control file and csv or plain file resides.
    {code}
    sqlldr userid=user_name/passowrd@database_name control=control_file_name
    {code}
    above will insert data into table.
    now you can use the select query...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • SE,PT DOESN"T EXIST IN COUNTRY TABLE

    HI EXERTS,
    when i run foreign currency valuation for gl account in t code FAGL_FC_VAL ,the following error massege is showing...,SE, PT,DOES NOT EXIST IN THE COUNTY TALBLE.
    my company code country is india- and i use hard currency and group currency in USD..already IN and US codes and hard currency USD are there in country table.....WHY THE SYSTEN ASKS THE OTHER COUNTY CODES. I M USING COPIED VERSION......
    THANKS IN ADVANCE.

    Hi
    Copy here whole message including message no etc.,
    Check table T005 the availability of country codes of SE (Sweden) and PT(Portugal).  some body must have deleted.
    You can create at SPRO-SAP NetWeaver-General Settings-Set Countries-Define Country Codes
    Srinivas
    Edited by: Srinivasa Maruvada on Dec 4, 2011 10:43 AM

  • Table 'sitv.a' doesn't exist.  vendor code 1146

    Post Author: pattyg
    CA Forum: Crystal Reports
    I need help with a sql statement that I am using in Crystal reports.  The table that I am using is sitv and I get an error that
    it doesn't exist.
    Here is the statement:
    SELECT a.UID, a.fid, b.fname , c.lname, d.genderFROM a as profile_values LEFT OUTER JOIN (SELECT uid,fid, cast(value as char (20)) as 'Fname'     FROM profile_values     WHERE profile_values.fid =1) as bON a.UID = b.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'lname'    FROM profile_values     WHERE profile_values.fid =2) as cON a.UID = c.UIDLEFT OUTER JOIN(SELECT uid,fid, cast(value as char (20)) as 'gender'    FROM profile_values     WHERE profile_values.fid =3) as dON a.UID = d.UID
    Any help will be greatly appreciated.  Thanks in advance.

    Post Author: pattyg
    CA Forum: Crystal Reports
    I figured it out after I went though my statements more closely.  The second line was reversed.
    FROM a as profile_values
    It should be From provile_values as a.

  • While doing MIRO, i am getting error:-Tax code V0 country IN does not exist

    hi frds,
    while doing miro. i am getting this error:-
    pls correct me
    Tax code V0 country IN does not exist in procedure TAXINN
    Message no. FF713
    Diagnosis
    You entered a tax code which is not defined for the country of the company code to be posted to in the tax calculation procedure.
    System Response
    Procedure
    Check and, if necessary, correct the entry.
    Procedure for System Administration
    If it is not an input error, check and possibly change the system settings.
    To do this, choose Maintain entries (F5).
    Check whether the company code is assigned to the correct country and whether the correct tax calculation procedure has been entered for the company code country.
    Create a new tax code if necessary.
    Caution:
    Since it is possible that the tables in question are being updated at a different time on another computer, it can take a certain amount of time for the tax code to be on all local machines in client server architectures after saving the new code.
    regards,
    william

    hi
    go to ftxp choose tax code v0
    here in first input field give 00
    then select that field and click on gl acct tab
    here mention a gl or go to ob40 and mention gl for the acct key of that field
    try finding
    Tax code country IN does not exist in procedure TAXINN
    on SDN u will get many threads
    Tax code XX country IN does not exist in procedure TAXINN (MIRO Error)
    conclusion is u must get acct for at least one condition in the tax code
    regards
    kunal

  • "Tax code V0 country IN does not exist in procedure TAXINN"

    I am following , following sequence for import purchases :
    1. PO on bond plant ( tax tab at inovice tab in PO : V0 )
    2. Following conditions are planned delivery costs :
    JCDB / JCV1 / JECV / ZEBC --> these condition values are entered manually
    at PO.
    3. When I am trying to enter invoice for Planned delivery costs at MIRO ,
    the error appears : "Tax code V0 country IN does not exist in procedure TAXINN"
    V0 ( V-ZERO) Tax Code is maintained has
    been assigned to company code. This tax code works fine for local purchase , why
    the system is not allowing it for import purchase ? I even tried to remove it from
    Info record and OMR2 and OBCL , however no effect ? I am using TAXINN . Can anybody
    advise ?

    Check whether condition table 003 i.e. Tax classification is there in your access sequence for your condition type JMOP or not?
    If not then maintain/create  the same in Acees sequence of JMOP.
    Now in FV11, select condition JMOP, key combination should be 'Tax Classification' only.
    Maintain Country 'IN', assign tax code V0 to V0.
    Regards,
    Piyush

  • Error: Tax cod OI country IN does not exist in procedure TAXINN

    Hi all,
    while posting invoice, i am facing an error
    "Tax code OI country IN does not exist in procedure TAXINN"
    I defined the tax code OI and assigned it to my company code XXX. I created Tax procedure TAXINN with three basic condition types (BASB, MWAS, MVBS). I assigned my tax procedure to the country IN.
    I think i missed some thing in the configuration part. Please guide me.
    Thanks!
    Pavan

    Hi,
    1. If tax is deducable in nature means if you are using CIN then assigm Tax code
    SPRO --> logisctic General --> tax on goods movements --> india --> bacis setting --> determine of excise condition --> defaults excise conidtion
    here assign tax code with company code .
    2. If while doing miro you are getting Tax Code" VN" Instead of OI
    then please check condition in FV11 for material/plant/vendor combination, may be this tax code system is fetching from there or some other combination you are maintaining.
    You can use data base tables also for your Tax code if you know tax conditions used there
    T Code : SE16
    Table : A363
    A358 Country/Plant/Ctrl code/Material
    A357 Country/Plant/Ctrl code
    A362 Country/NBM-NCM Code
    A971 Tax Code
    A359 Plant/Matl group
    Hope Help u !
    Regards,
    Pardeep Malik

Maybe you are looking for

  • Motorola V551 - Won't sync Phone Numbers

    Hi Everyone; So I got a Motorola V551, paired it to my Mac via Bluetooth, and added it to iSync 2.2 . I went to sync, and only the Calendars were added, even though all Contacts was selected. I went into MORE OPTIONS and Selected "Synchronize Email A

  • Event Handling in Fullscreen Exclusive Mode???????

    WIndows XP SP2 ATI 8500 All-In-Wonder JDK 1.6 800x600 32dpi 200 refresh 1-6 buffer strategy. the graphic rendering thread DOESN'T sleep. Here's my problem. I have a bad trade off. In fullscreen exclusive mode my animation runs <30 fps and jerks when

  • System Software Update - smaller files?

    I am having problems with our Internet connection at work. File download is slow. Every time I try to update the system software, it takes half an hour, gets within about 2 MB, then it seems to quit and gives me a red "!" in the software update. In t

  • Launch Listener Problems in Server Side Backing Bean Code.

    Hi All, I am construcing an Table of Rich Command Links in the backing bean. For each command Link i launch a dialog through the backing bean. I have added a Launch Listener for each Command Link.However i see that although the dialog gets launched t

  • Can i restore deleted files

    I work at a school and had taken some video with an ipod touch.  the ipod was stolen, but then recovered but the videos had been deleted.  is there a data recovery method I can use to get the videos restored.  they have not been overwritten yet, so I