GL to AR sql including transaction detail

Hi,
we have jsut upgradede to r12 and i am having to write a view that can get information from receivables that has been posted to GL
i am using the following query:
SELECT DISTINCT GJH.JE_HEADER_ID,
                GJH.PERIOD_NAME,
                --      CTL.LINE_TYPE,
                --   CTL.CUSTOMER_TRX_ID,
                -- xal.ae_header_id,
                XE.EVENT_ID,
                GJH.NAME HEADER_NAME,
                GJH.DESCRIPTION JE_HEADER_DESCRIPTION,
                GJH.ACTUAL_FLAG,
                GJL.DESCRIPTION JE_LINE_DESCRIPTION,
                RCT.TRX_DATE,
                XAL.ACCOUNTED_CR ACC_CR,
                XAL.ACCOUNTED_DR ACC_DR,
                GJL.JE_LINE_NUM,
                GJH.JE_CATEGORY,
                GJH.JE_SOURCE,
                PARTY.PARTY_NAME PARTY,
                RCT.TRX_NUMBER TRX_NUM,
                CTL.DESCRIPTION INV_LINE_DESC,
                RCT.COMMENTS INV_COMMENTS,
                'AR' TRX_TYPE,
                GJL.STATUS,
                ('.') VARIANCE,
                ('.') PO_NUM,
                GJL.CREATION_DATE CREATION_DATE_IN_GLL,
                GJL.CREATED_BY CREATED_BY_IN_GLL,
                GJL.LAST_UPDATE_DATE LAST_UPDATE_DATE_IN_GLL,
                GJL.LAST_UPDATED_BY LAST_UPDATED_BY_IN_GLL,
                SYSDATE DATE_CREATED_IN_REPORT_TAB,
                ('00/00/0000 00:00:00') DATE_UPDATED_IN_REPORT_TAB
  FROM GL.GL_JE_HEADERS GJH,
       GL.GL_JE_LINES GJL,
       GL.GL_CODE_COMBINATIONS GCC,
       GL.GL_PERIODS GLP,
       GL.GL_IMPORT_REFERENCES IMP,
       XLA.XLA_AE_LINES XAL,
       XLA.XLA_AE_HEADERS XAH,
       XLA.XLA_EVENTS XE,
       XLA.XLA_TRANSACTION_ENTITIES XTE,
       RA_CUSTOMER_TRX_ALL RCT,
       HZ_PARTIES PARTY,
       AR.HZ_CUST_ACCOUNTS CA,
       GL_CODE_COMBINATIONS_KFV CC,
       AR.RA_CUSTOMER_TRX_LINES_ALL CTL,
       AR.RA_CUST_TRX_LINE_GL_DIST_ALL CTLD
WHERE     1 = 1
       AND GJH.JE_HEADER_ID = GJL.JE_HEADER_ID
       --AND GJL.STATUS || '' = 'P'
       AND GCC.CODE_COMBINATION_ID = CTLD.CODE_COMBINATION_ID
       AND GJH.PERIOD_NAME = GLP.PERIOD_NAME
       AND GJH.PERIOD_NAME = 'M04-14'
       AND RCT.CUSTOMER_TRX_ID = CTLD.CUSTOMER_TRX_ID
       AND CTLD.CUSTOMER_TRX_LINE_ID = CTL.CUSTOMER_TRX_LINE_ID
       --       AND GLP.ADJUSTMENT_PERIOD_FLAG <> 'Y'
       AND GJH.JE_SOURCE = 'Receivables'
       AND GJL.JE_HEADER_ID = IMP.JE_HEADER_ID
       AND GJL.JE_LINE_NUM = IMP.JE_LINE_NUM
       AND IMP.GL_SL_LINK_ID = XAL.GL_SL_LINK_ID
       AND IMP.GL_SL_LINK_TABLE = XAL.GL_SL_LINK_TABLE
       AND XAL.APPLICATION_ID = XAH.APPLICATION_ID
       AND XAL.AE_HEADER_ID = XAH.AE_HEADER_ID
       AND XAH.APPLICATION_ID = XE.APPLICATION_ID
       AND XAH.EVENT_ID = XE.EVENT_ID
       AND XE.APPLICATION_ID = XTE.APPLICATION_ID
       AND XTE.APPLICATION_ID = 222
       AND XE.ENTITY_ID = XTE.ENTITY_ID
       AND XTE.ENTITY_CODE = 'TRANSACTIONS'
       AND XTE.SOURCE_ID_INT_1 = RCT.CUSTOMER_TRX_ID
       AND RCT.BILL_TO_CUSTOMER_ID = CA.CUST_ACCOUNT_ID
       AND CA.PARTY_ID = PARTY.PARTY_ID
       AND rcT.CUSTOMER_TRX_ID = ctl.CUSTOMER_TRX_Id
       AND CTL.LINE_TYPE = 'LINE'
       AND XAL.CODE_COMBINATION_ID = CC.CODE_COMBINATION_ID
             AND RCT.TRX_NUMBER = '1000178867'
If i put the CTL.DESCRIPTION INV_LINE_DESC in the code it brings back 8 rows when there are only 4 in AR.RA_CUSTOMER_TRX_LINES_ALL for the trx named at the bottom of the code.
the inv line desc is blank for 2 rows but has a value in for two. if i remove the line desc from the select the query returns the correct amount of rows.
can anyone offer any help?

with it being receivalbes it will always be a CR in the journal so i have removed the xal accounted dr/cr and replaced with this
(TO_NUMBER (
              DECODE (
                 ctld.account_class,
                 'REC', DECODE (SIGN (NVL (ctld.amount, 0)),
                                -1, -NVL (ctld.acctd_amount, 0),
                                NULL),
                 DECODE (SIGN (NVL (ctld.amount, 0)),
                         -1, NULL,
                         NVL (ctld.acctd_amount, 0)))))
             ACC_CR,
          (TO_NUMBER (
              DECODE (
                 ctld.account_class,
                 'REC', DECODE (SIGN (NVL (ctld.amount, 0)),
                                -1, NULL,
                                NVL (ctld.acctd_amount, 0)),
                 DECODE (SIGN (NVL (ctld.amount, 0)),
                         -1, -NVL (ctld.acctd_amount, 0),
                         NULL))))
                         ACC_DR,

Similar Messages

  • SQL query to get transaction detail from DEFERRED_TRAN_ID

    Hi,
    I'm using Oracle Advance Replication and get the transaction detail from Enterprise Manager Console.
    So instead of using the console.
    Is there a way any SQL query which get transaction details like SQL query fired, old and new column value etc from DEFERRED_TRAN_ID.
    thanks

    quote:
    Originally posted by:
    lucapac
    I have two tables: tblWorkers and tblSkills. tblWorkers has a
    column, Skills, which is populated from a multiple-checkbox form
    field with one or more skill_IDs from tblSkills, so each
    tblWorkers.Skills consists of a list of one or more comma-delimited
    values. For any Skill_ID, I need to generate a listing of all
    Workers with the corresponding skill, so I have tried to do
    something along the lines of SELECT WorkerName FROM tblWorkers
    WHERE Skills IN (Skills, #FORM.Skill_ID#) ... or WHERE Skills IN
    (ListFind(Skills, #FORM.Skill_ID#)) ... etc. ??? My results (once I
    got data type mismatches out of the way) return all Workers, not
    just those with the desired Skill. There must be an easy way to do
    this ... How do people with a bit more CF/SQL experience than I
    have do this???
    As Kronin implied, we normalize our databases. If you don't
    understand that answer, the book "Database Design for Mere Mortals"
    is often mentioned on this forum.

  • Error #3115: SQL Error.', details:'no such table

    Hi,
    I'm creating my Adobe Air App using Flash CS5 Professional and facing exactly the following error.
    SQLError: 'Error #3115: SQL Error.', details:'no such table: 'categories'', operation:'execute', detailID:'2013'
    My SQLite Db has been created using Firefox extension - SQLite Manager. The db file is placed into the same folder as the .fla and .swf files. The db has three tables namely: categories, period and activity. I don't understand why I'm getting this error. I have even tried copy pasting other source code from AS 3.0 reference guide but same error every time.
    The code below is a modified version of example code in AS 3.0 reference documentation. Can you suggest how the above error can be fixed?
    /you can also reply to me directly at [email protected]
    /regards
    import flash.data.SQLConnection;
    import flash.data.SQLResult;
    import flash.data.SQLStatement;
    import flash.display.Sprite;
    import flash.events.SQLErrorEvent;
    import flash.events.SQLEvent;
    import flash.filesystem.File;
    var conn:SQLConnection;
    var insertCategory:SQLStatement;
    var dbFile:File;
    databaseConnect();
    function databaseConnect():void
    // define where to find the database file
    var appStorage:File = File.applicationStorageDirectory;
    dbFile = appStorage.resolvePath("MyBudgetCalc.db");
    // open the database connection
    conn = new SQLConnection();
    conn.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    conn.addEventListener(SQLEvent.OPEN, openHandler);
    trace("dbFile.exists:"+ dbFile.exists);
    conn.openAsync(dbFile);
    // Called when the database is connected
    function openHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.OPEN, openHandler);
    // start a transaction
    //Object(this).inputfield.text = "openHandler called.. ";
    conn.addEventListener(SQLEvent.BEGIN, beginHandler);
    conn.begin();
    trace("exiting openHandler..");
    // Called when the transaction begins
    function beginHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.BEGIN, beginHandler);
    //trace("beginHandler - SQLEvent message: "+SQLEvent.message);
    Object(this).inputfield.text = "beginHandler called.. ";
    insertCategory = new SQLStatement();
    insertCategory.sqlConnection = conn;
    insertCategory.text = "INSERT INTO categories(id, name) VALUES (', Auto')";
    insertCategory.execute();
    insertCategory.addEventListener(SQLEvent.RESULT, insertCategoryHandler);
        insertCategory.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    trace("exiting beginHandler..");
    // Called after the phone number record is inserted
    function insertCategoryHandler(event:SQLEvent):void
    insertCategory.removeEventListener(SQLEvent.RESULT, insertCategoryHandler);
    insertCategory.removeEventListener(SQLErrorEvent.ERROR, errorHandler);
    // No errors so far, so commit the transaction
    conn.addEventListener(SQLEvent.COMMIT, commitHandler);
    conn.commit();
    trace("exiting insertCategoryHandler after conn.commit()..");
    // Called after the transaction is committed
    function commitHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.COMMIT, commitHandler);
    trace("exiting commitHandler(): Transaction complete..");
    // Called whenever an error occurs
    function errorHandler(event:SQLErrorEvent):void
    trace("entering errorHandler()..");
    // If a transaction is happening, roll it back
    if (conn.inTransaction)
    conn.addEventListener(SQLEvent.ROLLBACK, rollbackHandler);
    conn.rollback();
    trace(event.error.message);
    trace(event.error.details);
    trace("exiting errorHandler()..");
    // Called when the transaction is rolled back
    function rollbackHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.ROLLBACK, rollbackHandler);

    Can you try creating the table using the AIR ActionScript APIs? It is possible the SQLLite Manager program that you are using is creating a database that isn't compatible with AIR.

  • Payment Wizard - Non included transactions

    Hi Experts,
    When we run the payment wizard to make batch payments to vendors, there are two vendors that it excludes. In the Non-included transactions report is says - "No data" when I try and run it.
    I have double-checked that those vendor bank account details are correct and the payment method is also correct.
    Any reason for this?
    Thank you,
    Regards

    Hi,
    Can you check and update the following :
    1) Does the detect query in Note No. : 1041101 display any result?
    2) Is the Invoice or the BP marked blocked for payment?
    3) Is there any add-on working or any additional code under SP_TransactionNotification. Test whether stopping the Addon and the additonal code under SP_transactionNotification helps.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • In SQL Server Transactional replication what all changes I can do on subscriber table

    In SQL Server Transactional replication what changes I can do on subscriber table
    Thanks

    Hi Ajay.G,
    According to your description, if you want to do some updates at the Subscriber, you need to note the following things.
    •If TIMESTAMP or IDENTITY columns are used, and they are replicated as their base data types, values in these columns should not be updated at the Subscriber.
    •Subscribers cannot update or insert text, ntext or image values . Instead, you could partition the text and image columns into a separate table and modify the two tables within a transaction.To update large objects at a Subscriber, use the
    data types varchar(max), nvarchar(max), varbinary(max) instead of text, ntext, and image data types, respectively.
    •Updates to unique keys (including primary keys) that generate duplicates and then they are not allowed and will be rejected because of a uniqueness violation.
    •If the Subscriber database is partitioned horizontally and there are rows in the partition that exist at the Subscriber but not at the Publisher, the Subscriber cannot update the pre-existing rows.
    For more information, see: Updatable Subscriptions for Transactional Replication
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • SQL Server database details - DBInstanceSummary- Connection Status: Failure

    Hi guys,
    I have a strange problem with Maps 9.0 in the SQL Server database details -> DBInstanceSummary and DBInstanceProperties I got a failure as shown in the picture below.
    This sounds quite strange because I'm able to collect most of Instances and Database infos. And I'm also able to connect with status: Success to other Instances hosted in the same cluster.   
    Can you give me any good advice?
    Thanks in advance
    Ruggiero Lauria
    MCT-MCITP-MCSA-MCSE-MS SQL DBA

    We can try to see if a detailed log might reveal where the breakdown occurs. To get the detailed log, follow these instructions precisely:
    With MAP closed, rename the existing MAP log file which is located in "%LOCALAPPDATA%\Microsoft\MAP\MapToolkit.log" if the default was used during installation. It is recommended that you include a number or date when renaming so that we can keep the logs
    in order if we have to do this again.
    Open Notepad as Administrator
    Open "%LOCALAPPDATA%\Microsoft\MAP\Logging.cfg" in Notepad
    Change the line that says “.default=Info” to read “.default=Trace2”
    Save and close the file
    Open MAP (this creates a new log file)
    Go to File > Select a Database
    In the window that opens, select the radio button called “Create an inventory database” and enter a name
    Click ok
    On the Overview page in MAP, click on “Perform an inventory”
    Choose the "SQL Server with Database Details" inventory scenario
    Choose only the manual entry discovery method and enter just one target machine
    Make sure that you use the All Computers credentials for the user name and password
    Once the inventory has completed, exit MAP
    Open Logging.cfg is the same manner as before and change it back to “.default=Info”
    ZIP and send us the new log file
    Please remember to click "Mark as Answer" on the post that helps you, and to click
    "Unmark as Answer" if a marked post does not actually answer your question. Please
    VOTE as HELPFUL if the post helps you. This can be beneficial to other community members reading the thread.

  • SQLError: 'Error #3115: SQL Error.', details:'no such table: 'contact'', operation:'execute', detail

    hi
    just create database with SQLite Database Browser 2.0 b1 after creating the data base when i tried connect it in flash cs4-with air 1.1 its showing me error
    SQLError: 'Error #3115: SQL Error.', details:'no such table: 'contact'', operation:'execute', detailID:'2013' i tried to found every where but did not get the solution of this
    my code is here
    import flash.filesystem.File;
    import flash.data.*;
    import flash.data.SQLConnection;
    import flash.data.SQLStatement;
    import flash.data.SQLConnection;
    var dbFile:File=File.applicationStorageDirectory.resol  vePath("mydb.db");
    var sqlConn:SQLConnection = new SQLConnection();
    var sqlState:SQLStatement = new SQLStatement();
    sqlConn.open(dbFile);
    sqlState.sqlConnection = sqlConn;
    trace(sqlConn.connected+"current status "); // its show "true" here
    sqlState.text = "SELECT name FROM contact";
    sqlState.execute();
    var resultArray:Array = sqlState.getResult().data;
    thanks in advance

    Hi,
    I'm creating my Adobe Air App using Flash CS5 Professional and facing exactly the same error.
    SQLError: 'Error #3115: SQL Error.', details:'no such table: 'categories'', operation:'execute', detailID:'2013'
    My SQLite Db has been created using Firefox extension - SQLite Manager. The db file is placed into the same folder as the .fla and .swf files. The db has three tables namely: categories, period and activity. I don't understand why I'm getting this error. I have even tried copy pasting other source code from AS 3.0 reference guide but same error every time.
    The code below is a modified version of example code in AS 3.0 reference documentation. Can you suggest how the above error can be fixed?
    /you can also reply to me directly at [email protected]
    /regards
    import flash.data.SQLConnection;
    import flash.data.SQLResult;
    import flash.data.SQLStatement;
    import flash.display.Sprite;
    import flash.events.SQLErrorEvent;
    import flash.events.SQLEvent;
    import flash.filesystem.File;
    var conn:SQLConnection;
    var insertCategory:SQLStatement;
    var dbFile:File;
    databaseConnect();
    function databaseConnect():void
    // define where to find the database file
    var appStorage:File = File.applicationStorageDirectory;
    dbFile = appStorage.resolvePath("MyBudgetCalc.db");
    // open the database connection
    conn = new SQLConnection();
    conn.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    conn.addEventListener(SQLEvent.OPEN, openHandler);
    trace("dbFile.exists:"+ dbFile.exists);
    conn.openAsync(dbFile);
    // Called when the database is connected
    function openHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.OPEN, openHandler);
    // start a transaction
    //Object(this).inputfield.text = "openHandler called.. ";
    conn.addEventListener(SQLEvent.BEGIN, beginHandler);
    conn.begin();
    trace("exiting openHandler..");
    // Called when the transaction begins
    function beginHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.BEGIN, beginHandler);
    //trace("beginHandler - SQLEvent message: "+SQLEvent.message);
    Object(this).inputfield.text = "beginHandler called.. ";
    insertCategory = new SQLStatement();
    insertCategory.sqlConnection = conn;
    insertCategory.text = "INSERT INTO categories(id, name) VALUES (', Auto')";
    insertCategory.execute();
    insertCategory.addEventListener(SQLEvent.RESULT, insertCategoryHandler);
        insertCategory.addEventListener(SQLErrorEvent.ERROR, errorHandler);
    trace("exiting beginHandler..");
    // Called after the phone number record is inserted
    function insertCategoryHandler(event:SQLEvent):void
    insertCategory.removeEventListener(SQLEvent.RESULT, insertCategoryHandler);
    insertCategory.removeEventListener(SQLErrorEvent.ERROR, errorHandler);
    // No errors so far, so commit the transaction
    conn.addEventListener(SQLEvent.COMMIT, commitHandler);
    conn.commit();
    trace("exiting insertCategoryHandler after conn.commit()..");
    // Called after the transaction is committed
    function commitHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.COMMIT, commitHandler);
    trace("exiting commitHandler(): Transaction complete..");
    // Called whenever an error occurs
    function errorHandler(event:SQLErrorEvent):void
    trace("entering errorHandler()..");
    // If a transaction is happening, roll it back
    if (conn.inTransaction)
    conn.addEventListener(SQLEvent.ROLLBACK, rollbackHandler);
    conn.rollback();
    trace(event.error.message);
    trace(event.error.details);
    trace("exiting errorHandler()..");
    // Called when the transaction is rolled back
    function rollbackHandler(event:SQLEvent):void
    conn.removeEventListener(SQLEvent.ROLLBACK, rollbackHandler);

  • ICP -Cell Does not support Inter company transaction details

    Hi All
    I have trouble in ICP.... in the metadata i configured the ICP related account and entity are correct and plug account a....
    i have written the rules like
    Sub Transaction()
    HS.SupportsTran "S#Fullline.A#111501.C1#FLW_ST.C2#AGINGACCTREC.C3#AGINGSPECS.C4#ALL"
    HS.Supportstran "S#Fullline.A#154501.C1#FLW_LT.C2#AGINGACCTPAY.C3#AGINGSPECS.C4#ALL"
    End Sub 'Transaction
    in the ProcessICP transaction i assigned correct way but i try to save them the message was throw *" Cell Does not support Inter company transaction details"*
    .... Help me urgent
    or another way to create the ICP transaction like load the ICP Data ..if possible then how i do (format)?
    Regards
    Kimi

    Hyperion/Oracle includes examples of most of the product functionality in the sample applications. For ICT you will find examples of the metadata, data, rules, and more in the STAT application. Look under \Financial Management\Sample Apps\Statutory and you will see this syntax in the rules file:
    Sub Transactions()
    HS.SupportsTran "S#ActMon.A#RecltIC.C1#Closing"
    HS.SupportsTran "S#ActMon.A#RecltIC.C1#Increases"
    End Sub
    Also check your scenario settings to ensure the frequency for IC transactions is correct.
    --Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Report that includes Item Details?

    Hello:Is there a report that includes item details?In the previous PPal interface there was an option to "Include Shopping Cart details" in the history download section, but that is no longer present.Thanks.

    The old download history page is still available. But the interfaces are different for different account types and getting to the link/page is difficult than earlier. These are the ways I have figured out so far.Merchant Account - Transaction -> Activity -> Download Link on the right hand side.Consumer Account - Activity -> Click on Statements DropDown on right hand side -> Activity Export. Irrespective of the account type, direct link https://history.paypal.com/us/cgi-bin/webscr?cmd=_history-download works fine and I have bookmarked and using the same.

  • Inventory report with the last transaction details of each material

    Hi,
    is there any standard inventory report in SAP which gives us  the last transaction details of each
    Material,along with last procurement qty, value, date and last issue
    details of Qty, Value & date.
    Thansk in advance.

    Hi
    try following t-code
    MB5B u2013 Stock on Posting Date
    or
    2   s_p00_07000139 u2013 Stock Card and Inventory Material Report
    Regards
    Kailas Ugale

  • Report in Payment Wizard - Non Included Transaction Report

    Hi Guys,
    Within the Payment Wizard is a report called " Non Included Transaction Report", later in the wizard also referred to as "Error Log Report (System)".
    I would like to recreate this report so that I can add some additional fields on the Purchase Invoice side only, to make the report more helpful.
    I believe the tables I require are PWZ5 and OPOR, however when I run my query I get 96,000 plus entries returned which is not correct for just one month !
    This is the query I have:
    SELECT distinct T0.[InvID], T0.[CardCode], T0.[CardName], T1.[DocDate], T1.[DocDueDate], T1.[Ref2] AS [Supplier Invoice No], T0.[Amount], T0.[ErrDisc] FROM PWZ5 T0 , OPOR T1 WHERE T1.[DocDueDate] >=[%0] AND  T1.[DocDueDate] <=[%1]
    Am I on the right tracks or have I missed the mark by a country mile - could someone please point me in the right direction or has anyone else recreated this ?

    Hi,
    Try this:
    SELECT distinct T0.InvID, T0.CardCode, T0.CardName, T1.DocDate, T1.DocDueDate, T1.Ref2 AS 'Supplier Invoice No', T0.Amount, T0.ErrDisc FROM dbo.PWZ5 T0
    INNER JOIN dbo.OPCH T1 ON T0.InvID=T1.DocEntry
    WHERE T1.DocDueDate >=[%0] AND T1.DocDueDate <=[%1]
    Thanks,
    Gordon

  • Payment transaction details in the Vendor Master

    Hi Experts
    I have My client wants in the Vendor master data not allow access to  the Payment ytransacion details  for the Users ,I am trying to Supress it in the Account group but it is not happening pls help me to know why and any where in the SAP where we can block the Users not access to to the Vendor MAster data The payment Transaction details.
    Thanks

    Hi,
    Use t.code OMSG, under general data - Payment transactions, you can select the required fields as Suppress.
    regards
    Vivek.

  • I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details.

    I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details. jgm22

    -> iTunes Cards & Codes

  • Non included transactions in Payment Wizard

    After running the payment Wizard there are some payments in the Non included transactions report.
    Where can I find the explanation of the 'Error description'
    example : Payment amount is greater dan balance amount (rule 4)

    hello,
    The next payments have the message.
    The balance amount is 130,00 € and the payment amount is 126,10 €. Why gives it this message
    Greetings,
    André

  • Guide to differences between SQL Server Transact SQL and Oracle PL/SQL

    Does anyone know of a good book (or online guide) that has an in-depth comparison of the differences between SQL Server Transact SQL and Oracle PL/SQL? (Something more than a beginner's guide)

    Hello,
    Below links will surely be helpful
    Discontinued features in SQL 2012
    Depricated features in SQL Server 2012
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

Maybe you are looking for

  • "the application AppleMobileDeviceHelper quit unexpectedly"

    hello, everytime i attempt to sync my iphone, i am met with this error message "the application AppleMobileDeviceHelper quit unexpectedly".  i cannot find support anywhere online, who else is experiencing this?  thank you!

  • HP Pavilion g6 Won't detect charger

    I have a HP Pavilion g6 running windows 7. I have had the laptop a little under a month. When i turned the laptop on today I found that it would not detect the charger as neither windows or the LED indicator next to the charging port would notify me

  • Depreciation Areas for Mexico

    Our company has a company code in USA and it follows the US GAAP Accounting. Now we have acquired a company in Mexico and carrying out the rollout. Please let me know what all the depreciation areas to be defined for our Mexico Company Code. Thank yo

  • Problem Installing Jive Portlet

    Hi, We are installing the Jive Portlet on OralceAS 10g but got errors. The Jive Forum is installed on different OC4J Not OC4J_Portal We extracted the OracleProviderForJive.zip, but when we run the test URL: http://localhost:7782/forum/providers/forum

  • Question about configuring Computer Browser service

    On network computers after the net view command displayed different lists of computers. All computers are in the same domain. OS: Windows Server 2012, 2012R2, Windows 8, 8.1. On all computers except domain controllers and another server using Group P