Vendor interest scale error !!!!

Dear Experts
At the time of executing the report through F.44 ( Vendor Interest Scale ) getting the error "Error table for
vendor interest scale from 01.11.2011 No List Generated.
Immediate feedback is needed.
Regards,
Raziq

Dear Raziq Fareed
please check once again in OB81 (Term : Debit interest arrears int. cal. / credit int. arrears int.cal.)
also check in OB82 & check in vendor master were maintain interest ind.or not (By mistaken any one changed)
Regards
shankar

Similar Messages

  • G/L Account Balance Interest Scale

    hi Gurus,
    I done the G/l Balance Interest Calculation( Configuration and Settings )
    Example :  Loan Account xxxxx this account Open Item Select and Interest Indicator y1,  & Frequency is 1 month is given.
    1. F-02 Posting     Bank A/c  Dr   10000
                               Loan A/c Cr     10000
    next then Go to Fbl3n xxxx loan a/c is open item balance 10000
    2. F.52 G/L account Bal Interest Scale
    Interest tobe Calculated  some amount 1month  Rs 400
    Batch input session run Ok ,( No Errors )
    Interest not Posted to a Particular G/L Account
    ALL Setting Fulfill in Interst Calculation ( Balance )
    Advance Thanks

    Hi John,
    The tables you need are going to be JDT1 (journal lines), OJDT (journal header) and possibly OACT (account master). The contents of these tables should be sufficient to calculate the balance as at a certain date. For details of the columns in each table, you could use the Query Generator or consult the database help file (which is available if you have installed the SDK).
    A basic SQL query would be something like this:
    SELECT T2.AcctCode as AcctCode, T2.AcctName, sum(T0.Debit - T0.Credit) FROM JDT1 T0  INNER JOIN OJDT T1 ON T0.TransId = T1.TransId INNER JOIN OACT T2 ON T0.Account = T2.AcctCode WHERE T1.RefDate <= 'YYYY-MM-DD' and T2.AcctCode = '_Sys00000000019' group by T2.AcctCode, T2.AcctName
    where YYYY-MM-DD is the date you want the balance at and _Sys00000000019 is a made up account number I used as an example.
    Hope this helps,
    Owen

  • JVM Vendor not supported error in NWDS.

    I installed the NWDS 7.3 for customizing my portal 7.3 logon page. I am following an interesting blog for the same: Getting started with Netweaver 7.3 portal Part 2 - NWDS and Logon Page
    However I am yet to complete this task successfully due to a JVM vendor not supported error. I have a JAVA_HOME entry to the javaw.exe path. Also, i have vm entry of the same path in the NWDS shortcut- properties- target value. C:Program Files (x86)Javajdk1.7.0_02 in
    I chose program files (x86) for this installation bcos during my previous java error i read in my log that JVM 64 bit could not be run.
    Initially i use to get JVM error during startup itself bcos of which i was not able to get to the home page of developer studio. I solved that error now by installing right version and making necessary entries as mentioned above. Now i get a pop up stating that oracle vendor is not supported (it says that i should have either a Sun or SAP provided java). Is it really the problem? If so, can some 1 get me the link to download it.
    I am creating a new thread since the old ones posted by others on the same topic does not give me the solution.
    Thanks in advance

    Hi,
    I also come to this warning. I did a little research, and found solution that worked for me by solving source of problem, without need of trying different JDK versions.
    My current configuration:
    SAP NWDS:
         - v7.30 EHP1 (7.31) SP10 PAT0001 (8.31.100001.140103092401 SP10 PAT0001)
         - file: "nwds-extsoa-7.3-EHP1-SP10-PAT0001-win32.zip"
         - Download location: https://nwds.sap.com/swdc/downloads/updates/netweaver/nwds/nw/731/doc/auto_latest_distributions.html
    JDK:
         - v7 Update 51 - both x86 and x64 versions. As NWDS is x86 version, that platfotm is enought if you don't need native support for x64 applications.
         - Latest version download location: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
         - Older versions download location: http://www.oracle.com/technetwork/java/javase/archive-139210.html
         - I'm not suggesting that you need to install last version. I tested it on this version and it worked for me, but I use NWDS only for few specific tasks. So I did't test all functions for JVM compatibility. But my solution should work for solving cause of vendor specific problem. Not other JVM problems. And installing newer Java may be source of other problems, like is every release. But with correct backup there shouldn't be a problem.
    Problem:
    Problem is in older code of initial JVM check, where are specified allowed vendors. Oracle is not included in configuration, so warning is shown. Module is located in plugins folder:
         "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
    Version number (orange) can differs based on NWDS distribution. In jar file is configuration stored in file "config.xml". There is this part, that specifies allowed vendors:
    <supportedRuntimes shutdownIfNotMatches="false" warnIfNotMatches="true">
          <vendor name="SAP AG">
              <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
          </vendor>
          <vendor name="Sun Microsystems Inc.">
              <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
          </vendor>
      </supportedRuntimes
    Here you can see that only "SAP AG" and "Sun Microsystems Inc." from older Java releases are included. And that's the problem, as new versions are released by Oracle. So vendor differs and warning is here.
    Solution:
    Before we begin it's best to backup whole NWDS directory and also workspace(s)!
    1) Locate file with JVM checking module:
         "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
        As mentioned before, version number can be different in your release.
    2) Create backup copy of current file. Call it for example "com.sap.ide.jvm.check_1.0.0.140103091951.jar.BAK".
    3) Copy original file to temporary location. I used "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951.jar"
    4) Extract files from JAR. JAR files are basically ZIP files. I used 7-zip program to extract source to folder based on file name:
    "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\".
    5) Locate and edit configuration file "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\config.xml". Add vendor node "Oracle Corporation" (part in green color). Just copy existing node and replace vendor name.
    <supportedRuntimes shutdownIfNotMatches="false" warnIfNotMatches="true">
        <vendor name="SAP AG">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
        <vendor name="Sun Microsystems Inc.">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
        <vendor name="Oracle Corporation">
            <versionRange jdkRequired="true" minInclusive="1.6.0_07"/>
        </vendor>
    </supportedRuntimes>
    6) Pack directory. Pack whole content of directory from step 5) back to ZIP format. Change extension to .JAR in your favorite compression program, or rename new file from ".zip" to ".jar" after compression is done. Now we have our new corrected file for checking JVM version in NWDS - "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar".
    7) Replace original file. Copy file over original one:
    "C:\Temp\com.sap.ide.jvm.check_1.0.0.140103091951\com.sap.ide.jvm.check_1.0.0.140103091951.jar" -->
    "<SAP NWDS>\plugins\com.sap.ide.jvm.check_1.0.0.140103091951.jar". Overwrite if asked.
    8) Done.

  • Interest calculation error

    Hi,
    When i run vendor interest calculation, Interest is calculating properly.
    But it also calculating interest on cleared items also. It only to calculate on overdue items which are managed on open item basis.
    Pls solution
    Rgds
    sunfico

    While running the interest calculation T.Code: F.52,after giveing the all parameters under the output control you will deselect  additional balance line and interest splitting options. which interest type your used (P or S).
    Regards
    gvr

  • Vendor interest

    Hi guys,
    Let me know if someone had already worked with vendor interest. Is it possible to treat it using payment terms? For my understanding  we can't.
    Does someone know another way?
    Thanks

    Hi All,
    For my understanding these ways are to run a report and it will inform the interest. Or is there any way to post the interest value.
    For example: I recieve an invoice from my vendor 100.000, but it will be shared in 10x with 2,5%, i.e., 10 x 10.250.
    Let me know if you have any comments about that.

  • Vendor Code 6502 error for SQL pane of existing View

    When I am in the SQL pane of an existing valid view, it hangs saying "Generating DDL....". When I cancel, I get the vendor code 6502 error - the View is a simple select from a Materialized View. We have other Views that select from the same MV, but have no problems showing the View source in the SQL pane. . ( I can see the view source with no problems using Toad). Any ideas ?
    Thanks,
    Anne

    Hi rkonno!
    The ORA-904 tells you that PROJECT_PROGRESS is an invalid identifier. Is this the correct columnname?
    yours sincerely

  • Database scale error

    When trying to change the scale of our SQL database from S1 to S2 in the new portal I get the following error:
    Database scale error
    Database scale operation from S1 Standard to S2 Standard failed for <DBNAME>. ErrorCode: BadRequest ErrorMessage: The operation is not supported for your subscription offer type.
    Tried again on the old portal and get a similar message:
    The operation is not supported for your subscription offer type.
    This is a pay as you go subscription. Are those not compatible with anything above S1?

    Hi Alex,
    This should not be the case for Pay-as-you go subscription. We might have to verify you subscription details and so request you to raise a technical support request via
    http://azure.microsoft.com/en-us/support/options/ along with the screen shot of the issue.
    Regards,
    Shirisha Paderu

  • Soalris 9 Installation Error: Vendor 'GEN-ATA 'error code: 0X3"

    I am getting the following message:
    "WARNING: /pci@0,0/pci-ide@7,1/ide@0/cmdk@0,0 (Disk 0):
    Error for command 'read sector' Error Level: Informational
    Sense Key: aborted command
    Vendor 'GEN-ATA 'error code: 0X3"
    when I try to install solaris 9.0
    I have Seagate SATA 120gb hdd installed on my machine.
    I also tried disabling ata-enable-dma property and still Get the same error message.
    I tried booting from a CD ROM drive
    Anyone know how to solve this problem
    is Sata supported in solaris 9.0

    I don't know, but here's a link to an archived message from the old solarisonintel mailling list, where some user
    claims that a SATA drive works without problem on an ASUS P800 mainboard:
    http://www.riddleware.com/solx86/solarisonintel/msg37404.html
    Apparently, Solaris x86 detects a standard "But Mastering IDE controller" for that SATA drive.
    I guess it's important whether the SATA controller is integrated into the mainboard's chipset, or if the SATA
    controller is a separate function in an extra chip. I guess an SATA controller integrated into the main chipset
    has a chance to emulate a standard PCI-IDE device, which might be impossible with a sepate SATA
    controller chip.
    (Similar to the restriction that an USB controller integrated into the main chipset is able to emulate a legacy
    PS/2 keyboard from an USB keyboard, but an USB controller in an extra PCI card can't do that).

  • Inhouse Cash : interest scale posting date and value date

    Hello,
    We would like to configure the posting of the calculated interests at month end as follows:
    calculation period  : from first calendar date of the month (included) until last calendar date of the month (also included !)
    posting date = last calendar date of the month
    value date = first calendar date of the next month
    My understanding is that the posting date of F991 is driven by F9L4.  How can I make sure that valuedate of the payment item generated by T-code  F991 (mass balancing)  = F9L4 date + 1 calendar day?
    Thank you very much for your suggestions.
    Carl

    I agree that you can influence the value date as compared to the posting date,
    but that is not the key issue.
    Key is how to ensure that both the interest calculation end date AND the posting date be equal to the last calendar date of the month?
    The system seems to look at what is stored in the account balancing tab of F9K3 and if you have "31" stored there, the system seems to calculate until the 30th of the month (for months of 31 days, obviously).
    I can however not put in F9K3  "1"  (first day of the month), because then I will be unable to trigger the interest scales (F991) with a posting date 31st of the previous month, because in order to trigger F991 the date in F9L4 (which is the posting date of the interest scales) must be equal to or bigger than the date stored in F9K3 (next balancing date, which would be equal to 1st of the next month !
    So, It looks I am running in circles.....
    Any solution for this?
    Thx,
    Carl

  • Error during creating a Vendor:"Vendor Already Exists- Error Message- 2007"

    Hi,
    During creating a Vendor I am facing a problem, I get message as "Vendor XXX(number) Already Exists". I have checked the number ranges for vendor and found that current number in the system for the vendors exceeds the number XXX, mentioned above.
    I dont understand why this is happening.
    Thanks in advance.
    Regards,
    Prasad A. Wathare.

    Go to SE16 , enter the table name as LFA1 .
    Enter the vendor number for which you are getting the error .
    Execute and view the record for which you are getting the error , you will come to know who has created the vendor and when , check the corresponding entry in LFB1 for more details .
    Else , execute the T code FK03 and enter the vendor number and check the vendor details .
    Cheers ,
    Dewang

  • Vendor Master Replication Error  from ECC to SUS : Error in ALE Service

    Dear Experts,
    We are implementing MM SUS (SRM 5.0). As a part of this we need to replicate vendors from ECC to SUS system via XI. We have created a Reduced Message Type Z_CREMAS_SUSMM and had set up the partner profile in WE20 with SUS logical system as destination and specifing the Message Type, and port of the XI system
    We executed the transaction BD14 for replication, it is resulting in error 29 : Error in ALE Service : Entry in Outbound table not found.
    Please provide inputs to overcome this problem
    Thank you,
    Regards,
    Ravi

    Hi,
    Check
    Re: Idoc Error Status "Entry in outbound table not found "
    Looks like some issue with the partner profile set up for the sender or receiver of the EDI message in WE20.
    Set up them again and When these have been set up try reprocessing your IDocs from BD87

  • Vendor interest in f.44

    Hi,
    while excecuting the batch input for inetrest calculation on vendors in f.44. withholding tax is not getting calculated.may i know
    if any configuration is left.  Please help me reg this.
    Thanks & Reg
    reddy

    Hi,
    SAP calculates interest only on amounts credited to vendor account. I hope your with holding tax amount might not be credited to vendor account. When we post the invoice we credit vendor with net of with holding tax amount and with holding tax amount credited to seperate liability account. Please check on this and let me know if you need any help.
    Thank you.
    Regards,
    Sachin

  • WHT on vendor interest

    Hi
    I am facing a peculiar problem. We have created Fixed deposits as vendor and we have attached interest indicators to these vendors. Also since interest is subject to WHT in India (TDS), WHT types and codes are attached to the vendor.
    For interest processing with 'F.4B - With Open Items ' a batch input session is created. When the session is run, the interest entry is created but WHT (TDS) entry does not take place. When the session is run is foreground a popup for WHT appears but when i click on it the screen just proceeds and final document does not have WHT.
    I have checked manually entering the interest amount thru FB60 and WHT is properly deducted.
    Pl help, thanks in advance
    Regards
    Amit

    SOlved

  • Vendor Witholding Tax Error

    Dear All,
    While doing entry in FBCJ for business transaction type  vendor payment i am getting the following error.
    "Witholding TAX  information  missing from line item" Message No:7Q301.
    Also on F-47 i am getting the same error.
    I have maintained Withholding tax details in vendor master.
    Kindly guide me.
    Girija

    Hi Gurus,
    I am having the same issue.
    My client will give the advances to vendors and they will deduct in instalment basis.
    The problem is at the time of advance payment tds is deducted at 2% Now the currrent rate is 3%.
    I changed the tax code in vendor master and posted invoices, Whenever i am going to clear the invoice it is given error Withholding tax incosistancy.
    I execueted RFwt010 program  Now i am able to adjust the advance.
    But it is not allowing to reverse the TDS.
    Regards,
    Prasad.

  • Vendor account clearing - Error message F5354

    Hi All,
    I am trying to do Vendor account clearing through transaction code F-44, when I am getting the error message Message no. F5354
    "Account "1000001" in company code "1000" is marked as a reconciliation account for account type "K" and cannot therefore be directly posted to".
    Account 1000001 is a reconciliation account defined in the vendor. The documents which I am trying to clear do not have any special GL indicators.
    Please can anyone tell me why I am getting this message
    Thanks in advance.
    Edited by: mgokhale on Aug 17, 2010 8:20 AM

    Hi,
    Usually you have to give Adj. GL for automatic exchange rate clearing differences.
    Please change the account in OBA1 transaction under account key KDF.
    Here you have given reconciliation account for B/s account which can't possible for direct postings.
    Please select recon account and double click, there you will find the account determination GL accounts.
    Rgds
    Murali. N

Maybe you are looking for