Unable to delete row or amend transaction in Cash Journal

Dear All,
I tried to post an amount in CJ.   The tax amount should be zero.  I have selected the zero tax code.
System is not allowing for posting.   Unable to delete or reverse the transaction.
The followng msg shown in the check box
"Tax does not equal 0 when tax percentage rate is zero."
Need help and guidelines from the experts.
Thanks in advance.
Regards,
VM

hi
can you try it once
If you want to reverse particular transaction> Select that particular row and  SHIFT+F2, give  reversal reson and posting date.
Edited by: sindhu on Feb 22, 2010 10:57 AM

Similar Messages

  • Unable to delete rows from Target.

    Hello everyone,
    I am unable to delete rows from target data store. Here is what I have done.
    Source Oracle 10g - staging 11g - Target Oracle 11g
    I have implemented consistent set CDC on data model in staging and added 2 tables to CDC and turned on the journals . Both tables A and B are joined together via Column E (primary key of table A). Table A is the master table(has foreign key). Table B is child table. Target column consists of all the columns of both table A and B.
    Following is what I am able to do and not to do
    ABLE TO DO. If data is inserted into both or any of journalized tables I can successfully load the same in target by performing following steps. 1. Extend the consistency window at model level. Lock subscriber. Run the interface with any source table marked as Journalized data only. Unlock subscriber and purge journal.
    ABLE TO DO. If data is updated in any of the journalized table, along with the steps mentioned above I can execute two interfaces. In one Interface table A marked as journalized data only Joined with table B and in second interface table B marked as Journalized data only joined to table a.
    NOT ABLE TO DO If data is deleted from one or both tables it shows up as journalized data in JV$D<tablename> marked as D with date and subscriber name but when i run the interface by extending the window , locking subscriber executing both interfaces, unlock subscriber purge journals. no change takes place is Target. After unlocking subscriber step, journalized data gets removed from JV$D view. Please let me know what I am doing wrong here. How can rows delted from source can also be deleted from TARGET?
    NOTE : In the flow table SYNC_JRNL_DELETES is YES
    In moel under jounalized table tab Table have following order Table A folloed by Table B
    Thanks in advance
    Greenwich

    Sorry I still do not get it. when you say "Its a legacy app", are you talking about the VB.NET app ?
    If so then I repeat my self :-) Why not to connecting to the SQL server directly?
    * even if you need information from several databases (for example ACCESS + SQL Server), in most cases, it is much better to connect directly and get each information to the app. Then in your app you can combine the information and analyse it
    [Personal Site] [Blog] [Facebook]
    Access app is the legacy app. 

  • Cross company code transaction in cash journal

    Hi,
    Is it possible to do cross company code transactions in cash  journal ?
    Eg:
    i want to make a  payment ,from cash journal of cocd 1000  to  cocd5000.
    i should book the payment  only thro cash journal .
    Regards
    Guru

    Hi Guys,
    No cross company code transactions can be made thru CJ. Reason being, CJ is created under a company  code & generally related to a specific BA and handles petty cash. But u r not using BA.
    So we cannot post corss company code transactions in CJ
    Regards,
    Ajay

  • Unable to delete records as the transaction log file is full

    My disk is running out of space and as a result I decided to free some space by deleting old data. I tried to delete 100,000 by 100,000 as there are 240 million records to be deleted. But I am unable to delete them at once and shrinking the database doesn't
    free much space. This is the error im getting at times.
    The transaction log for database 'TEST_ARCHIVE' is full. To find out why space in the log cannot be reused, see the log_reuse_wait_desc column in sys.databases
     How can I overcome this situation and delete all the old records? Please advice.
    mayooran99

    In order to delete the SQL Server need to write the information in the log file, and you do not have the place for those rows in the log file. You might succeeded to delete less in each time -> next backup the log file each time -> next shrink the
    log file... but this is not the way that I would chose.
    Best option is probably to add another disc (a simple disk do not cost a lot), move the log file there permanently. It will increase the database work as well (it is highly recommend not to put the log file on the same disk as the data file in most cases).
    If you can't add new disk permanently then add one temporary. Then add file to the database in this disk -> create new table in this disk -> move all the data that you do
    not want to delete to the new table -> truncate the current table -> bring back the data om the new table -> drop the new table and the new file to release the temporary disk.
    Are you using full mode or simple recovery mode ?
    * in full mode you have to backup the log file if you want to shrink it
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • Unable to delete row(s) from tabular form

    Hi!
    I created report with row selector, when I select one row I get tabular form regarding to the selected row from report. I can insert and update data from tabular form, but I have problem with deleting them. Error I get is ORA-01403: no data found (Row 207589)My tabular form is created by wizard and primary key is managed by database rowid, I use apex 4.1 an 10g database.
    Do you know for any solution for my problem?
    Regards,
    drama9346
    Add:
    For creating report and tabular form I use code and suggestion from this thread: {thread:id=2490862}
    Edited by: drama9346 on 28.1.2013 1:51

    Hi,
    I tried everything I know and I didn't solve my problem.
    Can anyone give me some clue?
    Regards,
    drama9346
    Add:
    I solve my problem.
    Edited by: drama9346 on 29.1.2013 1:52

  • Unable to delete rows from remote db table

    Hi
    I am relatively new to SQL Server and this issue is strange to me.
    In my vb.net code I am opening a connection to local MS Access DB using oledb provider and then am executing below query to remote SQL Server via DBCommand.ExecuteNonQuery();
    DELETE tblStaff.* FROM Staff INNER JOIN [ODBC;Driver=SQL Server;SERVER=<remote ip>;DATABASE=dddddddd;UID=uuuuuuuu;PWD=ppppppppp].tblStaff ON Staff.[Staff ID] = tblStaff.[StaffID] WHERE Staff.[Contact Status] <> "Current"
    This however created below error in the code;
    System.AccessViolationException was unhandled
    Message=Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
    Source=System.Data
    StackTrace:
    at System.Data.Common.UnsafeNativeMethods.ICommandText.Execute(IntPtr pUnkOuter, Guid& riid, tagDBPARAMS pDBParams, IntPtr& pcRowsAffected, Object& ppRowset)
    at System.Data.OleDb.OleDbCommand.ExecuteCommandTextForSingleResult(tagDBPARAMS dbParams, Object& executeResult)
    at System.Data.OleDb.OleDbCommand.ExecuteCommandText(Object& executeResult)
    at System.Data.OleDb.OleDbCommand.ExecuteCommand(CommandBehavior behavior, Object& executeResult)
    at System.Data.OleDb.OleDbCommand.ExecuteReaderInternal(CommandBehavior behavior, String method)
    at System.Data.OleDb.OleDbCommand.ExecuteNonQuery()
    During testing I noticed that if I create the relevant table tblStaff in another database on the same remote SQL Server then it works fine, so it appeared to me there is some issue with the original backend db or the table.
    The relevant table tblStaff is related to several tables in the database. I assumed that relations may be an issue so I set the relations to cascade delete even though none of the tables contains any data at this point. This did not work. I then went into
    database diagram, added all the tables and then deleted all relations of the tblStaff table. This did not work either. I then used 'Script Table as..->CREATE to' to script the tblStaff in Management Studio, deleted original tblStaff and ran the create script
    above to recreate the tblStaff table. This worked.
    What is the problem here and why doesn't the table accept delete query in its original form? I appreciate it’s the .net code that creates the error but as the error seems to be related to the backend SQL Server db therefore I have posted it here in case
    someone can help with this.
    Thanks
    Regards

    Sorry I still do not get it. when you say "Its a legacy app", are you talking about the VB.NET app ?
    If so then I repeat my self :-) Why not to connecting to the SQL server directly?
    * even if you need information from several databases (for example ACCESS + SQL Server), in most cases, it is much better to connect directly and get each information to the app. Then in your app you can combine the information and analyse it
    [Personal Site] [Blog] [Facebook]
    Access app is the legacy app. 

  • Business Transaction in cash journal

    Hi, I have difficulty in solving this error.
    You cannot use accounting transaction type "Incoming payment" here
    Message no. F5A070
    Diagnosis
    You are using the payments tab, but have selected an accounting transaction that is used exclusively for receipts.
    System Response
    The system analyzes this inconsistency and waits for your adjustment.
    Procedure
    Either select a different accounting transaction or change the tab.
    Can you help me?

    Hi
    In FBCJ Tansaction code you will have different tabs for
    Payments and Receipts.
    You are in tab "Payments" and tyring to post a transaction which is related to "Reciepts".
    Please change the tab and try to post.
    Best Regards
    RS

  • Unable to post cash receipt in cash Journal-FBCJ

    HI All,
    I am unable to post cash receipt in cash Journal-FBCJ. It is showing below error.
    Also i have created Number ranges for 01. Please advice.
    "For object CAJO_DOC2 AMZN, number range interval
    01 does not exist"

    Hi Venkat,
    The steps involved in cash journal configuration are defined at one configuration area
    The steps are :
    1. Create general ledger account for cash journal
    Spro > Financial Accounting > Bank Accounting > Business Transactions > Cash Journal >
    Define gl account for cash journal
    2. Define Document type for cash journal
    spro > Financial Accounting > Bank Accounting > Business Transactions > Cah Journal >
    Define document type for cash journal
    3. Define Number ranges for Cash journal
    Spro > Financial Accounting > Bank Accounting > Business Transactions > Cash journal >
    Define number ranges
    4. Set up cash journal
    Spro > Financial Accounting > Bank Accounting > Business Transactions > Cash journal >
    Set up cash journal
    5. Define business transactions for cash journal
    Spro > Financial Accounting > Bank Accounting > Business Transactions > Cash journal >
    Define business transactions for cash journal
    6. Run cash journal
    FBCJ transaction code to use the cash jounal.
    You should first have the opening balance to carry out any transactions.
    Please try this, this should help you. Any updates please let me know.
    Thanks & Regards

  • Cash Journal : Business Transaction Query

    Hi Experts,
    does it mean that Business Transactions in cash Journal are nothing but a type of grouping? please correct me if i m going wrong.
    please lemme if based Cash Journal's Business Transaction, will i be able to generate a MIS/Cash Book analysis, to track the cash outflow Business Transaction wise.

    Hello,
    I have NOT seen any report that you can segregate the reports based on business transaction. For any analysis purpose, these business transactions may not be much relevant.
    But, if you ask me these business transaction will help the user who is entering the cash journal to easily identify the transactions.
    Regards,
    Ravi

  • Database, Dataset, Table Adaptors Error "Unable to load, Update requires a valid DeleteCommand when passed DataRow collection with deleted row"

    Microsoft Visual Basic 2010 Express.
    I am new to Visual Basic programing and i am trying to understand the relationships between Datasets, database, table Adaptors. I have to following code that is is giving me the following error" Unable to load, Update requires a valid DeleteCommand
    when passed DataRow collection with deleted rows". 
    I can track the error and its located in "OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)" code. What am i missing?
    It seems that i can delete the data on the DataGridView Table and it only displays the correct data. but my database is not updating, even though the data grid displays differently.I can determine this because, when i save the offset database, i have all
    the previous uploads and all the rows that i wanted to delete are still there.
    My final goal is to be able to import offset data from a CSV file, save this data on the pc, send a copy of this data to a NuermicUpDown so the customer can modify certain numbers. From here they download all the date to a controller.  IF the customer
    needs to modify the imported data, they can go to a tab with a data grid view and modify the table. They will also have to option to save the modified data into a csv file.  
    Im not sure if i am making this overcomplicated or if there is a easier way to program this.
    CODE:
    Private Function LoadOffSetData()
            Dim LoadOffsetDialog As New OpenFileDialog 'create a new open file dialog and setup its parameters
            LoadOffsetDialog.DefaultExt = "csv"
            LoadOffsetDialog.Filter = "csv|*.csv"
            LoadOffsetDialog.Title = "Load Offset Data"
            LoadOffsetDialog.FileName = "RollCoaterOffset.csv"
            If LoadOffsetDialog.ShowDialog() = Windows.Forms.DialogResult.OK Then  'show the dialog and if the result is ok then
                Try
                    Dim myStream As New System.IO.StreamReader(LoadOffsetDialog.OpenFile) 'try to open the file with a stream reader
                    If (myStream IsNot Nothing) Then 'if the file is valid
                        For Each oldRow As MaterionOffsetDataSet.OffsetTableRow In MaterionOffsetDataSet.OffsetTable.Rows
                            oldRow.Delete()                       
    'delete all of the existing rows
                        Next
                        'OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)
                        Dim rowvalue As String
                        Dim cellvalue(25) As String
                        'Reading CSV file content
                        While myStream.Peek() <> -1
                            Dim NRow As MaterionOffsetDataSet.OffsetTableRow
                            rowvalue = myStream.ReadLine()
                            cellvalue = rowvalue.Split(","c) 'check what is ur separator
                            NRow = MaterionOffsetDataSet.OffsetTable.Rows.Add(cellvalue)
                            Me.OffsetTableTableAdapter.Update(NRow)
                        End While
                        Me.OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)
                        MainOffset.Value = OffsetTableTableAdapter.MainOffsetValue          'saves all the table offsets
    to the offset numericUpDown registers in the main window
                        StationOffset01.Value = OffsetTableTableAdapter.Station01Value
                        StationOffset02.Value = OffsetTableTableAdapter.Station02Value
                       myStream.Close() 'close the stream
                        Return True
                    Else 'if we were not able to open the file then
                        MsgBox("Unable to load, check file name and location") 'let the operator know that the file wasn't able to open
                        Return False
                    End If
                Catch ex As Exception
                    MsgBox("Unable to load, " + ex.Message)
                    Return False
                End Try
            Else
                Return False
            End If
        End Function

    Hello SaulMTZ,
    >>I can track the error and its located in "OffsetTableTableAdapter.Update(MaterionOffsetDataSet.OffsetTable)" code. What am i missing?
    This error usually shows that you do not initialize the
    DeleteCommand object, you could check this
    article to see if you get a workaround.
    >> Im not sure if i am making this overcomplicated or if there is a easier way to program this.
    If you are working CSV file, you could use OleDB to read it which would treat the CSV file as a Table:
    http://www.codeproject.com/Articles/27802/Using-OleDb-to-Import-Text-Files-tab-CSV-custom
    which seems to be easier (in my opinion).
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to delete a row in table control

    Hi,
    I'm unable to delete a row in table control.
    I have defined a selection column for my table control but it is not getting value 'X' when i'm selecting a row for deletion.
    Also, when I press enter, some of the columns in table control are getting initialized. I'm passing these values to the internal table along with other columns.
    Please help.
    Regards,
    Manasee
    Message was edited by: Manasee Chandorkar

    hi,
    kindly chk this.
    PROCESS BEFORE OUTPUT.
    MODULE status_9010.
    LOOP WITH CONTROL tab_control.
    MODULE move_data_to_table.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP WITH CONTROL tab_control.
    MODULE move_data_from_table.
    ENDLOOP.
    *& Module move_data_to_table OUTPUT
    This is to move the data from the internal table to the table control
    MODULE move_data_to_table OUTPUT.
    This is to move the data from the internal table to the table control
    zmpets_mode-modecode,zmpets_range-rangeid,zmpets_servfacto-factor are column name of table control
    READ TABLE int_factor INDEX tab_control-current_line.
    IF sy-subrc = 0.
    zmpets_mode-modecode = int_factor-modecode.
    zmpets_range-rangeid = int_factor-rangeid.
    zmpets_servfacto-factor = int_factor-factor.
    ENDIF.
    ENDMODULE. " move_data_to_table OUTPUT
    *& Module move_data_from_table INPUT
    Date is moved from the table control to the Internal Table
    MODULE move_data_from_table INPUT.
    To move the data from the table control to internal table 'INT_FACTOR'.
    int_factor-modecode = zmpets_mode-modecode.
    int_factor-rangeid = zmpets_range-rangeid.
    int_factor-factor = zmpets_servfacto-factor.
    int_factor-chk = line.
    *here if the data is there, it will modify
    MODIFY int_factor INDEX tab_control-current_line.
    IF sy-subrc NE 0. "data not exixting in table control . ie new data, then append it
    APPEND int_factor.
    CLEAR int_factor.
    ENDIF.
    ENDMODULE. " move_data_from_table INPUT
    *delete a line from table control
    MODULE user_command_9010 INPUT.
      CASE sy-ucomm.
    When an entry is deleted, and the entry is removed from the table
    control.
        WHEN 'DELETE'.
          PERFORM f_del_frm_tab_cntrl.
      ENDCASE.
    ENDMODULE.
    FORM f_del_frm_tab_cntrl .
      LOOP AT int_factor WHERE chk = 'X'.
        DELETE int_factor WHERE chk = 'X' .
        CONTINUE.
      ENDLOOP.
      CLEAR int_factor.
    ENDFORM.
    for any clarifiaction pls mail me.
    pls reward points, if this helped u.
    regards,
    anversha.
    [email protected]
    Message was edited by: Anversha s

  • Deleted Rows Flashback : unable to read data - table definition has changed

    Hi All,
    Its Really Important.
    I Unfortunately truncated a table using
    Trancate table mytable;
    and Made a alter table to decrease data pricision length.
    But i Need the tabla data back,
    i used the below command to get deleted rows, it shows error.
    query : select * from pol_tot versions between timestamp systimestamp-1 and systimestamp;
    error : ORA-01466: unable to read data - table definition has changed
    query : flashback table pol_tot to timestamp systimestamp - interval '45' minute;
    error : ORA-01466: unable to read data - table definition has changed
    Kindly Share your ideas How Can i Get thoose Deleted Records.
    Edited by: 887268 on Jul 8, 2012 12:26 AM

    BluShadow wrote:
    Khayyam wrote:
    Flashback dont works after DDL. Truncate command is DDL. Only recover from backup can help.Please don't spread untrue statements.Working of flashback after Drop command is so clear to say. I mean such DDL commands as CREATE, ALTER, TRUNCATE and so on...
    "Remember that DDLs that alter the structure of a table (such as drop/modify column, move table, drop partition, truncate table/partition, and add constraint) invalidate any existing undo data for the table. If you try to retrieve data from a time before such a DDL executed, you will get error ORA-1466. DDL operations that alter the storage attributes of a table (such as PCTFREE, INITRANS, and MAXTRANS) do not invalidate undo data."
    [http://docs.oracle.com/cd/B28359_01/appdev.111/b28424/adfns_flashback.htm#BJFJHDAG]

  • Unable to Disable Delete row option in FBCJ tcode

    Hello Sir/Madam,
                             I am giving authorizations to users, and I have given auth of FBCJ t-code to a user with create/generate and park activity codes, but I am surprised to see that delete row option is by default working in the tcode, which needs to be disabled or blocked or hidden. Kindly suggest if anything needs to be done in configuration, or from basis side.  I havent given 06  i.e delete access to this user.
    Thanks and Regards,
    Harsha
    SAP-Basis
    Clockwork Business Solutions

    Hi,
    Please refer the below link and SAP notes which might help in solving the issue. If disabling the delete option does work with standard authorization, then please take help of your ABAPER's and check if the same can be disabled using user exits.
    Note 304685 - FI Cash Journal (FBCJ): Authorizations
    Note 304984 - FBCJ: Missing/incorrect authorization checks
    Note 785283 - FBCJ: Authorization check with external call
    http://help.sap.com/saphelp_47x200/helpdata/en/95/ab201b137b11d3a6fc00104b57ed65/frameset.htm
    Regards,
    Sharath

  • Unable to delete data from a partition

    Hi,
    Unable to delete data from a partition
    I am using the command as:
    ALTER TABLE TEST DROP PARTITION DATE_20090820090000
    Its giving 0 rows deleted.Bu there are 200 rows for the Partition.
    The partition is getting deleted but the data remains.
    I want a command where the data in the partition also to be deleted along with partition.
    Any help will be needful for me

    SQL> CREATE TABLE range_part (
    prof_history_id NUMBER(10),
    person_id NUMBER(10) NOT NULL,
    organization_id NUMBER(10) NOT NULL,
    record_date DATE NOT NULL)
    PARTITION BY RANGE (record_date) (
    PARTITION yr0 VALUES LESS THAN (TO_DATE('01-JAN-2007','DD-MON-YYYY'))
    PARTITION yr7 VALUES LESS THAN (TO_DATE('01-JAN-2008','DD-MON-YYYY'))
    PARTITION yr8 VALUES LESS THAN (TO_DATE('01-JAN-2009','DD-MON-YYYY'))
    PARTITION yr9 VALUES LESS THAN (MAXVALUE) );
    Table created.
    SQL> INSERT INTO range_part VALUES (1, 1, 1, SYSDATE-720);
    INSERT INTO range_part VALUES (2, 2, 2, SYSDATE-360);
    INSERT INTO range_part VALUES (3, 3, 3, SYSDATE-180);
    INSERT INTO range_part VALUES (4, 4, 4, SYSDATE);
    1 row created.
    SQL>
    1 row created.
    SQL>
    1 row created.
    SQL>
    1 row created.
    SQL>
    SQL> commit;
    Commit complete.
    SQL> SELECT * FROM range_part;
    PROF_HISTORY_ID PERSON_ID ORGANIZATION_ID RECORD_DATE
    1 1 1 31-AUG-2007 05:53:22
    2 2 2 25-AUG-2008 05:53:22
    3 3 3 21-FEB-2009 05:53:22
    4 4 4 20-AUG-2009 05:53:22
    SQL> SELECT * FROM range_part PARTITION(yr7);
    PROF_HISTORY_ID PERSON_ID ORGANIZATION_ID RECORD_DATE
    1 1 1 31-AUG-2007 05:53:22
    SQL> alter table range_part drop partition yr7;
    Table altered.
    SQL> SELECT * FROM range_part PARTITION(yr7);
    SELECT * FROM range_part PARTITION(yr7)
    ERROR at line 1:
    ORA-02149: Specified partition does not exist
    SQL> SELECT * FROM range_part;
    PROF_HISTORY_ID PERSON_ID ORGANIZATION_ID RECORD_DATE
    2 2 2 25-AUG-2008 05:53:22
    3 3 3 21-FEB-2009 05:53:22
    4 4 4 20-AUG-2009 05:53:22

  • Error while deleting extension in EEWB transaction

    Hi Friends,
    When we tried to run EEWB - easy enhancemnet workbench in CRM system to extend new custom fields in Sales transactions, it gives an option to check the different systems where this new field data should be flown.
    Now due to some problem in the middle of running EEWB, we cancelled the process and deleted the extension created. But it is not deleting and displaying an error which is like this as below :
    "DataSource 0CRM_SALES_ORDER_I must be activated using transaction BWA5".
    We do not see any option in the BWA5 to activate this datasource and hence are unable to delete this extension to create a new one again.
    Help us with the process to be done to activate this and also the impact on the system after activation .
    Thanks & regards
    Raju.

    Hi
    ask in BusinessWarehouse forum how to activate it.
    regards
    Radek

Maybe you are looking for

  • Problem redeeming gifts sent via e-mail

    my sister sent me a gift via e-mail (a movie), and when I try to redeem it at the itunes store it says that it has allready been redeemed, but it is nowhere to be found in my library. Does any one have a solution?

  • How to design a page in multi language in oaf?

    Hi Folks, I have a requirement, we have an one OAF standard page...now i need to design a same page,custom page, with same functionaly in some other language. Appriciate any help.... --Harry                                                            

  • Email Subject & Body

    Is there any way to change the subject line and the body message when i send a scheduled report by email from the queue manager?

  • Warning  Query has exceeded 200 rows. Potentially more rows exist...

    Hi all, I am getting a following warning message on every page. Query has exceeded 200 rows. Potentially more rows exist, please restrict your query. In my code whatever VO i am using doesnt fetch more than 50 records still I am getiing warning as Qu

  • How to disable camera for G+ Hangout?

    Anyone know how to disable the camera before entering into a G+ Hangout?