How to remove an table error

while doing f-28 for a new company code, I encountered an error
Entry RASA is missing in table T043G
secondly how can we see transaction code when we have already run any transaction following a menu path in spro,, when i try to look in to transaction code it displays SPRO, how can we see the particular t.code while we are in screen of tcode that we are using (specifically spro tcodes)

Hi,
This error relates to Tolerances for Groups of Customers/Vendors. Use transaction OBA3 and create a empty tolerance group for your company code.
Secondly, when you execute a transaction and you see the Tcode is SPRO which means Tcode is not maintained in foreground. Use SE38 and check program where used list and select Transaction. This is one of the way you can find it.
As long as transaction search is concerned there is really no accurate way to find the correct transaction code.
You can refer table TSTC in SE16 which stores Tcodes in the system.
Regards,
Chintan Joshi.

Similar Messages

  • How to remove a table from Replication

    Version: SQL 2008 R2
    Problem: I have a user who wants to remove table, but when she tries to remove it ( drop the table), she gets an error:
    ===========================================================
    MSG 3724, Level 16, State 2, Line 6: Cannot drop the table, 'dbo.<table name>' because it is being used for replication.
    MSG 2714, Level 16, State 6, Line 2
    There is already an object named '<table name>' in the database.
    ============================================================
    To investigate, I saw the following:
    In the SSMS---> Replcation---> Local Publication--> [XYZ].Pub_XYZ
    [SERVER Name].[XYZ_Replication]
    Local Subscriptions:
    [Reference DB].[Server\Instance].[Instance Name]:ABC.ABC_TO_XYZ.Reference DB).
    How do I remove that table? Do I need to edit Replication? How? Which one?
    Thanks for your help.

    You need to reinitialize the subscription.
    If a subscription is not synchronized within the maximum distribution retention period (default of 72 hours) and there are changes in the distribution database that have not been delivered to the Subscriber, the subscription will be marked deactivated by the Distribution
    clean up job that runs on the Distributor. The subscription must be reinitialized.
    If a subscription is not synchronized within the publication retention period (default of 336 hours), the subscription will expire and be dropped by theExpired subscription clean up job that runs on the Publisher. The subscription must
    be recreated and synchronized.
    If a push subscription expires, it is completely removed, but pull subscriptions are not. You must clean up pull subscriptions at the Subscriber. For more information, see Delete
    a Pull Subscription.
    --Prashanth

  • How to remove the "table control" icon in ITS based ESS screen

    Hi All,
    I have upgraded my external ITS 620 to patch level 28. Earlier we were on patch 04.
    Since then I am seeing the table control in my ESS screens (ITS Based),
    In some thread i got to know that the table control is totally redefined / modified from patch 22 of ITS.
    Is it possible that we can remove / hide the table control from the screens.
    I dont want to let the users access the "Table Settings" screen at all....can u plz tell me how to do it
    regards,
    PK

    we could not remove the table control...it seems like we can not remove it as the table control also appears in the r3 screens also..

  • How to remove control flush error

    hi
    basically i m devloping one application with lotus notes domino serve
    i made one bapi in which i m using <b>gui_download</b>   function modul
    when i m running my bapi in SAP environment  which i devloped its working fine
    not any kind of exception is generating pdf file also genearting and my bapi saving it into c:/
    no problem with sap gui.
    but when i m trying to run my bapi in which i used <b>gui_download</b> functon module  in this function module one exception is there  <b>control fulsh erro</b>
    is generating.
    so how can i remove this exception when i m tring to run this bapi from lotus notes domino mail server.
    help
    thanks in advanced.

    Hi,
    control errors come often with old SAP GUI version, have you installed the newest GUI patches? Also patch all other components which might have something (remotely) to do with this (operating system, explorer, JAVA,...) - and if still errors occurs, a OSS message might bring help for you.
    Regards,
    Christian

  • How to remove the following error

    Hi everyone,
    I did Extended program Check (including Obsolete statements check) for the below codes.
    FORM F_OUTPUT_LOG  TABLES      L_XXX STRUCTURE ZXXX
                                          USING        VALUE(LPXXX) TYPE CHAR
                                          CHANGING  LPXXXXX.
    But the following error message will appears.
    The current ABAP command is obsolete and problematic, especially so in ABAP
    Objects
    Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary
    types, not "LIKE" or "STRUCTURE".
    Could you give me some ideas to remove this error? Any suggestion is appreciated.
    Best regards,
    Julian

    Julian,
    In the newer versions of SAP for object oriented programming we declare objects using TYPE statements.
    Obsolete:
    DATA: V_MATNR LIKE MATNR.
    DATA: V_TABLETYPE LIKE BSEG_T.
    To be used.
    DATA: V_MATNR TYPE MATNR.
    DATA: V_TABLETYPE TYPE BSEG_T.
    For declaring structures we need to use below code:
    LVC_T_FCAT is a table type
    LVC_S_FCAT is a structure
    DATA: i_fcat1 TYPE lvc_t_fcat.
    DATA: i_fcat2 TYPE TABLE OF lvc_s_fcat.
    Here W_FCAT1 and W_FCAT2 are same but the way they are declared are
    different. If you are referring to a TABLE TYPE you can use TYPE LINE OF
    method or you can directly say TYPE referring to that structure (lvc_s_fcat).
    DATA: w_fcat1 TYPE lvc_s_fcat.
    DATA: w_fcat2 TYPE LINE OF lvc_t_fcat.
    Thanks

  • How to remove function module error?

    Hi Iam using a FM to get the database value of project name(PROJ-PSPID),Iam using this in my module pool program,when I enter wrong project name,the FM itself throwing the error,I want my own error message rather FM error message.How to achieve it?
    Thanks in advance.

    Hi Rock,
    After executing the function module , check for sy-subrc value as shown below
    data: w_return type bapiret2,
            it_return type table of bapiret2.
    call function '.....'
    IF SY-SUBRC EQ 0.
        PERFORM fm_update_return_msg
                      USING  'E'
                             your Message class
                             'msg no'
                      CHANGING w_return.
          APPEND w_return TO IT_RETURN.
          clear w_return.
       ENDIF.
    FORM fm_update_return_msg  USING    p_msgty  TYPE sy-msgty
                                        p_msgid  TYPE sy-msgid
                                        p_msgno  TYPE sy-msgno
                                        p_msg_v1 TYPE sy-msgv1
                                        p_msg_v2 TYPE sy-msgv2
                                        p_msg_v3 TYPE sy-msgv3
                                        p_msg_v4 TYPE sy-msgv4
                               CHANGING p_return TYPE bapiret2.
      CALL FUNCTION 'BALW_BAPIRETURN_GET2'
        EXPORTING
          type   = p_msgty
          cl     = p_msgid
          number = p_msgno
          par1   = p_msg_v1
          par2   = p_msg_v2
          par3   = p_msg_v3
          par4   = p_msg_v4
        IMPORTING
          return = p_return.
    ENDFORM.                    "fm_update_return_msg

  • How to remove the SYSTEM_NO_TASK_STORAGE error

    hi,very guys:
       for changed the datasource,i have to restore the source system,but when i restore the source system , the SYSTEM_NO_TASK_STORAGE error occur, i have 8 GB physical RAM ,and the source system have 1892 datasources, i do not know how to improve which parameter in my bw's profile. the profile of my instance[the profile of my instance|http://www.masson.com.cn/newweb/pro.txt]

    Hi,
    It is a standard functionality. Those information will be very useful when you send a message to SAP.
    If you still want to remove them, raise an OSS message.
    Regards,
    Rajesh Kumar

  • How to solve mutating table error?

    I compiled the trigger below successfully:
    CREATE OR REPLACE TRIGGER avail_products
    BEFORE INSERT ON orders_tbl
    FOR EACH ROW
    DECLARE
    m_prodqty products_tbl.prod_qty%TYPE;
    m_ordered orders_tbl.ord_qty%TYPE;
    m_prodid orders_tbl.prod_id%TYPE;
    BEGIN
    SELECT p.prod_qty, o.ord_qty, o.prod_id
    INTO m_prodqty, m_ordered, m_prodid
    FROM products_tbl p, orders_tbl o
    WHERE ord_num=:NEW.ord_num;
    IF m_prodqty>=m_ordered THEN
    UPDATE products_tbl
    SET prod_qty=prod_qty-m_ordered
    WHERE prod_id=m_prodid;
    ELSE
    RAISE_APPLICATION_ERROR(-20101,'Product is not available');
    END IF;
    END;
    However, when I run my PL/SQL block as follows:
    DECLARE
    v_max NUMBER;
    BEGIN
    SELECT MAX(ord_num)+1
    INTO v_max
    FROM orders_tbl;
    INSERT INTO orders_tbl(ord_num, cust_id, prod_id, ord_qty, ord_date, dvy_date, refund)
    VALUES (v_max, &cust_id, &prod_id, &ord_qty, '&ord_date', '&dvy_date',0);
    COMMIT;
    END;
    UPDATE orders_tbl
    SET refund=0.1*(SELECT price FROM products_tbl WHERE prod_id=(SELECT prod_id FROM orders_tbl WHERE ord_num=(SELECT MAX(ord_num) FROM orders_tbl)))
    WHERE ord_num = (SELECT MAX(ord_num) FROM orders_tbl) AND dvy_date>ord_date+3;
    COMMIT;
    It gives me these errors:
    ERROR at line 1:
    ORA-01403: no data found
    ORA-01403: no data found
    ORA-06512: at "SYSTEM.AVAIL_PRODUCTS", line 9
    ORA-04088: error during execution of trigger 'SYSTEM.AVAIL_PRODUCTS'
    ORA-06512: at line 10
    I try to debug it again and again but still can't find the mistake. So I change the trigger option to AFTER INSERT, then I got the error message that the table is mutating and trigger migh not see it. Anyone know how to solve this problem?
    ERROR at line 2:
    ORA-04091: table SYSTEM.ORDERS_TBL is mutating, trigger/function may not see it
    ORA-06512: at "SYSTEM.AVAIL_PRODUCTS", line 13
    ORA-04088: error during execution of trigger 'SYSTEM.AVAIL_PRODUCTS'
    null

    This extract from an earlier post might be of help:
    You can solve this problem by using following thing
    1)create a view on same table with all fields
    and write trigger on table (insert,update or delete ) while inserting or updating or deleting row from table read from view.
    (Mutating error come when you are reading from one table and want to update,insert or delete row of same table).
    2)create a temporary table(but it is possible in 8i onword only) same as table on which you want to write trigger,while updating,inserting or deleting rows of table read from temporary table and after your work is over temporary table auotomatically drop (see proper command in oracle documentation to create temporary table).
    null

  • How to remove the hexadecimal error in ECC 6.0

    REPORT  Z_KA51151_TEST.
    DATA: BEGIN OF gt_temse OCCURS 0,
             line(100),
           END OF gt_temse.
    DATA: chr TYPE x VALUE '0A',
          x_string(255) TYPE X,
          last_chars(128),
          blank(128) VALUE space.
    LOOP AT gt_temse.
      WRITE gt_temse TO x_string.
    ENDLOOP.
    The Error i/m getting is  X_STRING must be a charectar type field (data type C,N,D or T)
    my question is what is alternate to code the logic to have the same finctionality ?

    Hi Avinash,
    It is recommended you convert your fields in the CHAR format, also for TAB, End of line characters use the CL_ABAP_CHAR_UTILITIES.
    Regards,
    Atish

  • How to remove unsatified linking error (dll linking)

    hi,
    I am having a problem while using Jbuilder4.0 that when i include a dll file and the java file that calls it. I get an error (Unsatisfied link error). please help URGENT have to submit a project! in 5 hours GOOD ENUFF! maybe i am not including a dll
    this is the java side code of the JNI which i am including in the package.
    package talkinghands;
    class DGlove
         public static float[] values = new float[7];
         public static boolean status = false;
         public static native void getValNative();
         public static native void connectDG();
         public static native void disconnectDG();
         public static native boolean getStatus();
         public static native float getSensor0();
         public static native float getSensor1();
         public static native float getSensor2();
         public static native float getSensor3();
         public static native float getSensor4();
         public static native float getSensor5();
         public static native float getSensor6();
         static
         System.loadLibrary("dg5dt");
         public static void getValues()
              getValNative();
              values[0] = getSensor0();
              values[1] = getSensor1();
              values[2] = getSensor2();
              values[3] = getSensor3();
              values[4] = getSensor4();
              values[5] = getSensor5();
              values[6] = getSensor6();
         public static void main (String[] args)
    /*          connectDG();
              while(true)
              getValues();
              status = getStatus();
              System.out.println(status);
              for (int i =0; i<=6;i++)
                   System.out.println(values);
              getValues();
              for (int i =0; i<=6;i++)
                   System.out.println(values[i]);

    You didn't say anything about the dll. Did you compile it to use C linkages (not C++)?

  • How to remove the unwanted error message probably from AOL?

    For the past several days very frequently I receive a message "service temporarily not available-try again later" When this message appears, in the bar address there is a very long url the beginning of which is: Https//my.screenname.aol"When this message appears and I write in any url in Safari browser the message reappears. However, if I click second or third time on "try again later" the AOL page is accessed.I downloaded a new copy of AOL,I tried to sign in using a different AOL screen name(I have several) and different password but it did not remedy the problem. I did not download recently any new software or updates to existing software.Any suggestions?

    For the past several days very frequently I receive a message "service temporarily not available-try again later" When this message appears, in the bar address there is a very long url the beginning of which is: Https//my.screenname.aol"When this message appears and I write in any url in Safari browser the message reappears. However, if I click second or third time on "try again later" the AOL page is accessed.I downloaded a new copy of AOL,I tried to sign in using a different AOL screen name(I have several) and different password but it did not remedy the problem. I did not download recently any new software or updates to existing software.Any suggestions?

  • How to remove a component from a panel

    i have a table attached to a scrollpane...the scroll pane is attached to the CENTER of a panel that have a borderlayout like this :
    JScrollpane sp = new JScrollpane(table);
    add(sp, BorderLayout.CENTER);
    how to remove the table from the center....i have tried : remove(sp); and then calling revalidate(); but that did not work....
    please help....
    Thanks in advance

    i did not try it...but i insert a repaint() after the revalidate and it seems to work...
    thanks a lot

  • Remove a Table from a mapping

    It is really monday,
    I can not seem to find how to remove a table from a mapping that was put there by accident.

    Never mind. Ware scared by the Delete but tried it.
    Just delete.
    it does not delete the object.
    An enhancement would be to call that remove from map.

  • How to drop the tables (articles) in subscription database MERGE replication.

    We have configured the merge replication from publication server to subscription server,
    Here I mistakenly selecting few tables (articles) in publication,
    Now I need to remove those mistakenly selected tables in subscription server database . 
    Note: I am trying to below way but unable to remove those tables in subscription server.
    1<sup>st</sup> I unselected those tables (articles) in publication, but not working.
    Could please tell me the how to remove those tables in subscription database.

    Ok that is normal, dont worry, if you mistakenly  chosen few tables, just add the new tables
    that you forgot it, just make click on the publication, you only have to Re-run the snapshot agent, i mean you must generate another snapshot and then synchronice with your suscriber, and then you will not need DROP the tables on the suscriber, if you have
    troubles yet, please post imagens to help you more !
    Thanks and regards.

  • How to remove error from propagation and verify replication is ok?

    Have a one-way schema level streams setup and the target DB is 3-node RAC (named PDAMLPR1). I run a large insert at source DB (35million rows). After committing on source, I made a failure test on the target DB by shutting down the entire database. The streams seems stopped as the heartbeat table sequence (it inserts a row each min) on target is still reflecting last night. We get the error in the dba_propagation:
    ORA-02068: following severe error from PDAMLPR1
    ORA-01033: ORACLE initialization or shutdown in progress
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 1087
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 7639
    ORA-06512: at "SYS.DBMS_AQADM", line 631
    ORA-06512: at line 1
    08-FEB-10
    while capture, propagation, and apply are all in enabled status. I restarted capture and propagation at source DB. But still see the error message above. My questions are:
    1. How to delete the error from dba_propagation?
    2. How to verify the streams is still running fine?
    In normal test, during such large insert, the heartbeat table added a row in an hour. Very slow.
    thanks for advice.

    Well, if I can give you my point of view: I think that 35 millions LCR is totally unreasonnable. Did you really post a huge insert of 35 millions then committed that single utterly huge transaction? Don't be surprised it's going to work very very hard for a while!
    With a default setup, Oracle recommends to commit every 1000 LCR (row change).
    There are ways to tune Streams for large transaction but I have not done so personnaly. Look on Metalink, you will find information about that (mostly documents id 335516.1, 365648.1 and 730036.1).
    One more thing: you mentionned about a failure test. Your target database is RAC. Did you read about queue ownership? queue_to_queue propagation? You might have an issue related to that.
    How did you setup your environment? Did you give enough streams_pool_size? You can watch V$STREAMS_POOL_ADVICE to check what Oracle think is good for your workload.
    If you want to skip the transaction, you can remove the table rule or use the IGNORETRANSACTION apply parameter.
    Hope it helps
    Regards,

Maybe you are looking for

  • Capturing issues abound

    I just got FCE yesterday, and so far it's proving to be quite impressive, but it also seems to have broken something to do with Firewire. Not only can I not capture in FCE, but iMovie will no longer capture video, and simply having a camera plugged i

  • Unicode Enabling

    Greetings, We are going through an upgrade from 46C to ERP 5.0. Will we be able to unicode enable individule ABAP programs without setting the system to unicode enabled?  Thanks in advance for your assistance. Regards, Jason

  • Disp+work.EXE - Application Error

    Hi, I downloaded both rars in c:\netweaver and unzipped the first rar in c:\netweaver as well and started the installation. After some time the installation was finished without any warnings, however when I clicked the 'start SAP' checkbox I got the

  • Pagenumber and totalpagecount is always shown 1/1 for .txt format.

    When I export my report in .txt format somehow the pagenumber/totalpagecount is always shown 1/1.So I had placed formulae as page_num :- whileprintingrecords; if recordnumber  = 1  then 1 else if recordnumber mod 10 = 0 then int ( recordnumber / 10 )

  • HP LTO-6 Compressio​n issues for video files

    Hi there, My client is having major issues with the HP 6250 LTO-6 external tape drive, with HP LTO-6 tapes. We are backing up video files and getting zero compression even tho it has been enabled on the yosemite software. The tapes also show a compre