Difference balance between FK10N and FBL1N

Hi All,
In FK10N for a vendor for year 2012 there is a cumulative balance carried forward from previous year is 3711.80
When checked in FBL1N there is no items for 'Open items' and for 'all items' the balance is ZERO.
Will balance of FK10N has to match with FBL1N?
If it does not match, what is the reason?
Thanks,
Vidya

Offcourse, it should tally.
FK10N displays only posted documents, but FBL1N can display parked documents also.
So while running FBL1N, select All Items and give END DATE only as 29.02.2012 and execute it.
Dont select spl gl tranxs, parked items, noted items, customer items,
Now run FK10N and execute for the same inputs and see.
You can also double click on ANY AMOUNT FIELD in FK10N, so system will drilldown to line item breakup for that amount. So for each amount field after doible clicking if you found the breakup for the same amount, then it is ok.

Similar Messages

  • Difference in the Balance between FS10N and Customer Balances in Local Curr

    Hi,
    When i am trying to match the Balances between FS10N and Customer Balances in Local Currency for the Period 8, we are getting the difference, The reconcilliaton Account was changed on 30.08.2010.
    Please help Us in tracing the differences between FS10N and Customer Balances in Local Currency.
    What could be the possible reasons for the differences..
    Thanks

    Hi Varshani,
    Please use the program/report SAPF070 to compare or reconcile your AR with GL balances. You can use SAPF071 to correct any inconsistencies. Provided below documentation for these programs.
    SAPF070  - Compare Documents and Account Transaction Figures
    Description
    This program compares debit and credit transaction figures in customer, vendor, and G/L accounts with the debit and credit totals from documents posted in the corresponding posting period (accounting reconciliation). The sales totals are also compared for customer and vendor accounts. There is no separate comparison for special G/L transactions.
    A comparison for G/L accounts can be made in company code currency and in parallel currencies (such as group currency). A comparison for customer and vendor accounts can only be made in company code currency.
    After the program has finished, a message is issued to the user that started the program. This message summarizes the results of the reconciliation.
    Output
    The program compares the totals of an account on a periodic basis. If the debit and credit total differs between account and documents, the account is printed with the debit and credit totals and the difference.
    Differences in G/L accounts are shown per transaction currency. The first line shows the amount in local currency, the second line shows the amounts in transaction currency.
    If a document which falls within the selection range is posted during the program run, the program is terminated since a reliable result can no longer be delivered.
    SAPF071 - Adjust Balances after Comparing Documents/Transaction Figures
    Description
    If a financial accounting comparative analysis (SAPF190) or a comparison of documents and transaction figures (SAPF070) shows that there are differences between documents and transaction figures, you can use this program to make an adjustment. The documents form the basis for this adjustment. The program adjusts the (redundant) transaction figures, which are only totals of amounts from documents.
    Requirements
    All of the following listed requirements must be fulfilled:
    1. A financial accounting comparative analysis (SAPF190) or a comparison of documents and transaction figures (SAPF070) must be made, and differences must be found between documents and transaction figures.
    2. There must not be any inconsistent documents found. These are listed in both SAPF070 and SAPF190 as well as in this program.
    3. There cannot be any problems in the other modules. Caution: You have to check this yourself. Financial Accounting may be correct but the other modules may not be, and this will adversely affect the program run.
    4. You can only make the adjustment in the ledgers which are compared by program SAPF070. This is ledger 00 or a user-defined ledger for all parallel local currencies except the group currency. (The program displays these ledgers). You have to adjust any additional ledgers as well as average balance ledgers yourself.
    5. No documents during the period in which you are adjusting transaction figures can be archived. Caution: You must ensure that these documents are not archived by establishing appropriate organizational rules and procedures.
    Only use this program after consulting with SAP or after checking the prerequisites thoroughly.
    You should adjust all differences together for a single company code. By setting the program parameters you can limit the adjustment to G/L currency types or to balances in subledgers.
    It is advisable to execute a test run first, which will list any differences that are found.
    Further notes - Authorizations
    Repair program authorization group (F_005)
    Company code authorization         (F_BKPF_BUK)
    Thanks
    Venkata Ganesh Perumalla
    Edited by: Venkata Ganesh Perumalla on Sep 28, 2010 1:30 PM

  • Difference in between J1IH and J1IS

    Dear Gurus,
            I know that J1IH is used JV posting for excise invoices.
    And for J1IS we create the excise invoice and release account posting in J1IV.
    I want to know what is the basic difference in between J1IH and J1IS, though in both cases we capture and post the excises. Please suggest with some couples of examples.
    Regards,
    Shyam

    Hi,
    J1IH is used to post the Excise JV.
    Use: - You use these functions if you need to make an adjustment posting to any of your CENVAT accounts. You can make adjustment postings to account for:
    - Scrap
    - Materials that you have not used in production
    - Additional excise paid by vendors
    - Money that you have transferred to your personal ledger account
    - Other transactions
    - You can also use this function to cancel excise invoices -out going excise invoices.
    J1IS is used to create the excise invoice for other movements like Subcontracting & Stock transfer order.
    Can i use J1IH for canceling vendor excise invoice, the one I captured in J1IEX
    You can refer below link more detail,
    [J1IH & J1IS|J1IH and J1IS]
    Edited by: tej yadav on Feb 3, 2012 1:29 PM

  • I want to find the difference(duration) between logon and logoff time?

    i want to find the difference(duration) between logon and logoff time of below table?
    can any one tell the query to find using self join?
    USR     LOGON_TIME     LOGOFF_TIME
    HR     31-AUG-04 03.04.04.000000 AM     -
    HR     - 31-AUG-04 03.04.14.000000 AM
    Edited by: 794244 on Nov 1, 2010 10:47 PM

    No selfjoin, just analytical functions.
    CREATE TABLe log_time
    (username varchar(20),
    LOGON_TIME timestamp,
    LOGOFF_TIME timestamp);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',sysdate,null);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',null,sysdate+1/38);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',sysdate+2,null);
    insert into  log_time (username,LOGON_TIME,LOGOFF_TIME) values ('HR',null,sysdate+2+14/20);
    commit;
    SELECT username,logon_time,logoff_time, my_logoff_time, my_logoff_time -logon_time,
           time_to_sort
    FROM (
            SELECT username,logon_time, logoff_time,
                   LEAD(logoff_time,1,logon_time) OVER (PARTITION BY username ORDER BY time_to_sort) my_logoff_time,
                   time_to_sort
            FROM (SELECT username,logon_time,logoff_time,NVL(logon_time,logoff_time) time_to_sort
                  FROM log_time)
    where LOGON_TIME is not null     
    ORDER BY  time_to_sort; 
    USERNAME     LOGON_TIME     LOGOFF_TIME     MY_LOGOFF_TIME     MY_LOGOFF_TIME-LOGON_TIME     TIME_TO_SORT
    HR     02.11.10 11:34:56.000000000          02.11.10 12:12:50.000000000     0 0:37:54.0     02.11.10 11:34:56.000000000
    HR     04.11.10 11:34:56.000000000          05.11.10 04:22:56.000000000     0 16:48:0.0     04.11.10 11:34:56.000000000But, if that code which fills that table should better UPDATE than INSERT. You can cover much more issues. (e.g the DB crashes and you get 2 logon but no logoff in a sequence and.....)
    -- andy

  • Difference/relationship between XML and XSD

    Hi All,
    Correct me if i am wrong,
    When we create a source and a target datatype in IR automatically objects will be created in XSD.
    The same way it does when we create message type.
    In message mapping, We map source and target message type and when we test with sample data, we can view source and target in xml
    My question is what is the difference/relationship between XML and XSD ?
    Thanks,
    ss

    Hi,
    XML (Extensible Markup Language) is a W3C initiative that allows information and services to be encoded with meaningful structure and semantics that computers and humans can understand. XML is great for information exchange, and can easily be extended to include user-specified and industry-specified tags.
    Whereas
    An XML Schema Definition (XSD) is an instance of an XML schema written in the XML Schema language. An XSD defines a type of XML document in terms of constraints upon what elements and attributes may appear, their relationship to each other, what types of data may be in them, and other things. It can be used with validation software in order to ascertain whether a particular XML document is of that type, and to produce a Post-Schema Validation Infoset.
    I hope this clarifies.
    Regards.
    Praveen

  • Question about load balancing between Portal and ABAP

    Hi,
    I have the problem whit load balancing between Portal and ECC (ERC) ABAP
    Exist two system:
    1) ECC (ERP) ABAP = Backend     Module = HR
    2) EP (JAVA) = Frontend
    The users (9000 users) logon in the EP and run query (data personal) in the ECC.  The problem to all user connect in Central Instance and not in the Dialog Instance.
    How can balancing the conecction HTTP (EP) to ECC (ABAP)??
    I need balancing in the ECC to Dialog Instance

    Jco -> right. Another possibility is that you use iviews that point to the backend in this case you will need to use a load balanced entry for the backend system in the [system landscape|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/47/8c1e438d7017fce10000000a42189c/frameset.htm] -> SAP_R3_LoadBalancing
    If you have ESS deployed on your portal, you will most probably need to do both.
    Cheers Michael

  • What is the difference/comparison between AppRf and WebCC ?

    Q: What is the difference/comparison between AppRf and WebCC ?
    A:  
    Comparison between AppRf and WebCC:
    AppRF
    WebCC
    2300+ Apps under 21 app categories
    Millions of URLs under 80+ categories
    Need up to 7 packets to classify
    Classified once HTTP GET is received
    Classification
    Classification + Reputation
    Need AOS upgrade to get new Apps
    Dynamic update of WebCC database
    Static content based classification
    Dynamic content based categorization / reputation

    Or put another way:
    Albums organise Photos
    Folders organise Albums
    A Photo cannot be in a Folder, only in an Album.

  • Difference(s) between Fieldpoint and RIO?

    Hello,
    I am pretty new to to PACs. I am finding it really hard to find the difference(s) between cFP and RIO. Where should i choose cFP over RIO?
    Some kind of practical comparison here shall be highly appreciated.
    Regards,

    Hi Mirza,
    Your specific application is going to determine which equipment is best. I found a couple of online presentations about CompactRIO and FieldPoint which should provide you with more insight about the functionality of each product:
    CompactRIO Presentation
    FieldPoint Presentation
    Also, here are the links to the product pages for FieldPoint and CompactRIO. I hope that you find this information helpful.
    Regards,
    Hal L.

  • Movie export size not available/balance between size and quality

    Hi,
    I imported some film into iMovie 08 from my Canon HD camcorder, at full 1920 x 1080 size. After I finished editing it, I wanted to export the final movie at 960 x 540. This size is not available under the "standard" share options ("large" is 1280 x 720 and "medium" is I can't remember what exact size but smaller than 960 x 540). Similarly, when I go into "Export using QuickTime" and try to create an H.264 movie there, the 960 x 540 option simply isn't available. What gives?
    The reason I wanted to use this size was to try to cut down on file size. I exported the movie at 1280 x 720 and got a 380Mb file. So I wanted to try it at 960 x 540 and see what difference that made to the file size and quality. Since I couldn't seem to do it using iMovie, I ended up taking the 1280 x 720 video and using ffmpegx to convert it to 960 x 540. The problem is that I ended up with a file that was, bizarrely, even bigger (384Mb), and that had a thin green line across the bottom of the video.
    So, in summary, my three questions are:
    1. Why can't I export from iMovie in 960 x 540?
    2. Why does my ffmpegx conversion result in an even bigger file?
    3. What's the best way for me to get the optimum balance between file size and quality? (For viewing on Apple TV/HD television).
    Thanks in advance,
    Rob

    Another very good 3rd party slideshow application is PhotoPresenter. It has some of the nicest themes I've seen in any slideshow application (including the Apple TV introduction theme) and will export to a variety of sizes up to 720 x 480 which is DV-DVDCPRO - NTSC.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • HT1178 What the difference is between WPA and WPA2 and how are these settings affecting the access of other computers to the internet through my Time Capsule

    I have a Time Capsule of the 4th generation and I am pretty impressed since I just had a fried harddrive on my 3 month old Imac and Time Capsule restored it fully including all programs etc. without having me to put in all serial numbers etc. for that I give it an A+. However what I find very frustrating is the very short and incomplete user manual and setup instructions. I give those a D-. It does not explain the consequences of certain choices to a normel non computer gig user like me:
    I do not understand what the consequences and difference is between the security setting WPA/WPA2 and WPA2 when setting it up. It would be helpful if the manual would explain something like: If you set it onto WPA2 then computers older than XXX years will not able to hook up to the internet through your router...or the likes, since I slowly supect this may be the reason for some of my troubles.
    I also have a 5 year old PC with vista connected to the Time Capsule. It can wireless connect to the Time Capsule and access the printer (I have managed that after some painful hours...) but it cannot access the internet with that PC through the timecapsule wireless, only if I hook it up with a cable. Why? Does that have to do with the fact that I have set the TIme Capsule to WPA2?
    Our PS3 can connect wireless, no problem. However, I friend of mine tried it with a quite new Toshiba Notebook and he could see the Time Capsule but again it shows the line from the Time Capsule to the internet blocked. All other computers linked with data cable to the Time Capsule are connected to the internet no problem. What have we done wrong? Should I change the security setting to WPA/WPA2?
    I tried the latter, but then another problem does come up, which was there from beginning on: When I change the settings for my Time Capsule my Imac suddenly cannot find the Timne Capsule anymore, even so I am only 3feet away from it. When I set it up for the first time 3 month ago it drove me crazy. The very first time it found the Time Capsule right away. But when I discuverd a mistake in my initial setup and I went through the settings again to change stuff it suddenly could not find the Time Capsule anymore. Only after frustrating 20 times or so with turning wi-fi on and off several times inbetween did it suddenly find the Time Capsule in the set up menu. However, when I tried changing my security setting to WPA/WPA2 today to see whether this solves my other problems again it could not find the Time Capsule when I was finished with the settings and I had to give up/cancel. Why is that???
    I would really appreciate some help here. But please I am not a computer gig and normally always had assistance with these things. On the other hand I am not all stupid either (even so these manuals assuming we all grew up sleeping on a computer make me feel stupid).....
    Thank you all in advance

    Hello Schimi. The Time Capsule is a kind of product that offer you two possibility:
    - To use the TC as a router or as an external HD.
    The difference between WPA and WPA 2 are:
    - They are two kinds of internet connection.
    WPA uses dynamic key encryption , which means that the key is constantly changing and makes the invasion of a wireless network more difficult than WEP . WPA is considered one of the highest levels of wireless security for your network and is recommended if your devices support this kind of encryption . Newer routers offer WPA2 security . WPA2 is compatible with WPA , but offers higher security level . In fact, it meets the high standards of many government agencies . If the router and computer support WPA2 , this should be your choice.
    If you need any help or if you find some difficult setting up it you can contact Apple Support.
    I am sure that they can help you with that.
    I am sory for the delay. I holpe that you solve your issue.

  • Difference​s between User and built-in HDD password

    I wolud like to set a HDD password on my Satellite.
    But when I get inside BIOS to set HDD password, I see two HDD passwords,
    one says USER HDD Pasword and the other says Built-in HDD Password.
    Can you tel me the difference between them and/or what is each one.
    Thanks in advance for your help,
    Edward

    Cezzy, welcome to the forum,
    I am sorry, but regardless of the circumstances this subject is not allowed to be discussed here as stated in the forum rules
    No posts shall include instructions or directions intended to subvert security measures, including passwords, locking mechanisms, fingerprint scans, etc, nor shall any posts provide descriptions to the location of, nor direct links to content related to these topics.
    Thread locked.
    Thanks for understanding
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Load-Balancing between Foreign and two Anchors

    Hi, we have two foreign controllers (one active, one standby) and two anchor controllers. All APs are connected to the active foreign controller. The layer 3 networks for the wlan clients on both anchors are different for the same SSID. SSID: Internet, anchor 1: Subnet A, anchor 2: Subnet B. So when a client is getting anchored to Anchor 1, the clients will get an ip from subnet A and when the client is getting anchored to anchor 2, the client will get an ip from subnet B.
    This is so far not a big problem because we only have a few accesspoints in some rooms. But what will happen, when we have a full covered wlan and the client roams from one AP to the other AP? Is there a possibility, that the client will anchored to a different anchor while roaming? I think this will result in a lack of connectivity because without a real disconnect the client will not ask for a new IP address.
    Other question: Is it possible to disable this load-balancing between anchor controllers? Or can i make a client sticky to only one anchor as long as an access-session is established?
    All controllers are 5760 with 3.3.3 software.

    Hi acontes, 
    It's an interesting question. 
    In this case, if all AP's are on WLC-A and there is no possibility that an L3 inter-subnet roam will occur between WLC-A and WLC-B, I would just forward WLC-A to Anchor A and WLC-B (in the event of fail over) to Anchor B (if Anchors reside on different subnets). If you must specify Anchor A and Anchor B on each WLC for redundancy purposes, it's important to understand the guidelines and limitations with regard to Foreign / Anchor Design.  
    As Scott mentioned, the limitation with Anchoring design is that there is no primary / secondary configuration for an Anchor on the Foreign WLC.
    If WLC-A has two entries (1) for Anchor-A and (2) for Anchor-B, the EoIP tunnels are establish and load-balancing occurs in a round robin fashion.
    Keep in mind the following with regard to guest N+1 redundancy:
    •A given foreign controller load balances wireless client connections across the list of anchor controllers configured for the guest WLAN. There is currently no method to designate one anchor as primary with one or more secondary anchors.
    •Wireless clients that are associated with an anchor WLC that becomes unreachable are re-associated with another anchor defined for the WLAN. When this happens, assuming web authentication is being used, the client is redirected to the web portal authentication page and required to re-submit their credentials.
    Since traffic is transported at Layer 2 via EoIP, the first point at which DHCP services can be implemented is either locally on the anchor controller or the controller can relay client DHCP requests to an external server. Since the IP address directly correlates to the DMZ subnet or the interface where the traffic egresses, it is possible for some clients to get IP's from both Subnet A or Subnet B in the event that WLC-A is building EoIP to both anchors.
    1) What happens if my clients roam?
    Nothing... since all AP's are on WLC-A, it's Intra-Controller Roaming
    Each controller supports same-controller client roaming across access points managed by the same controller. This roaming is transparent to the client as the session is sustained, and the client continues using the same DHCP-assigned or client-assigned IP address. The controller provides DHCP functionality with a relay function. Same-controller roaming is supported in single-controller deployments and in multiple-controller deployments.
    Would it be better to choose the same DHCP Pool on both anchors?
    It's probably better to have redundant anchors on the same subnet, but it's not required. 
    3) How would you design this :-)
    WLC-A <--EoIP--> Anchor A (DHCP Pool A)
    WLC-A <--EoIP--> Anchor B (DHCP Pool A)
    It's important to remeber what Scott mentioned about the lack of a primary / secondary relationship. If multiple controllers are added as mobility anchors for a particular WLAN on a foreign controller, the foreign controller internally sorts the controller by their IP address. The controller with the lowest IP address is the first anchor. For example, a typical ordered list would be 172.16.7.25, and 172.16.7.28. If the first client associates to the foreign controller's anchored WLAN, the client database entry is sent to the first anchor controller in the list, the second client is sent to the second controller in the list, and so on, until the end of the anchor list is reached. The process is repeated starting with the first anchor controller.
    If any of the anchor controller is detected to be down, all the clients anchored to the controller are deauthenticated, and the clients then go through the authentication/anchoring process again in a round-robin manner with the remaining controller in the anchor list. This functionality is also extended to regular mobility clients through mobility failover. This feature enables mobility group members to detect failed members and reroute clients.

  • Load balance between DLSw and CIP routers

    Take a look on this environment:
    - 4 routers receiving all DLSw peers and circuits
    - 4 routers with CIP boards connected to 2 mainframes
    All CIP routers are configured with same MAC address. All routers (DLSw and CIP) are connected on a Ethernet LAN switching, so this traffic are pure LLC2.
    How I can balance the traffic between DLSw and CIP routers ?
    Thank's in advance.

    I am not sure if I totally understand the topology. Let me rephrase it. Please correct me if I misunderstand the topology. In a data centre, there are 4 DLSw routers terminating DLSw peer connections from the remote sites. In the same data centre, there are 4 CIP routers which connects to 2 mainframes. CSNA is configured on all CIP router, which uses the same MAC. You configure transparent bridging on the DLSw routers, which connect to the same ethernet switches as the CIP routers. You configure SR/TLB on the CIP routers; so that all LLC2 circuits coming from the DLSw routers connect through the ethernet interfaces of the CIP routers.
    Do you want the LLC2 circuits from a DLSw router load balance across 4 CIP routers? As duplicate MAC address is not allowed, there is no way to connect all 4 DLSw routers and CIP 4 routers on the same VLAN.
    I can think of a couple of workarounds.
    1. Enable SNASw on the 4 DLSw routers. Create a VDLC port on all 4 DLSw routers. The MAC address of the VDLC interface is the same. The VDLC MAC address is pointed by the remote SNA stations. Each DLSw router uses one of the CIP routers as DLUS.
    2. If this is the case, create 4 VLANs on the ethernet switches. Connect a pair of DLSw router and CIP router to each VLAN.

  • What is(are) the difference(s) between iphoto and imovie apps for the imac as against ipad3?

    What is (are) the difference(s) between iphoto/imovie apps for the ipad as against imac?

    The Mac version would be more complex and be able to do more stuff, while the iPad version can do more simple things due to the lower processing power and the fact that it's an iPad.

  • Difference in Balance between FAGLBO3 and FAGLL03?

    Hello Experts,
    I have perticular one GL Account (ASSET UNDER CONSTRUCTION) where the fagll03 and Faglb03 balance are not matching.
    What may be the reason and how i ll sort it.It is high praority.
    Regards,
    Sumeya offrin

    Hi,
    First execute t.code FAGLF03 to find out the which are document not posted in the relevant period.
    Then kindly execute program RGURECGLFLEX ( T.code : GLGCU1) and input the company code, fiscal year,posting period.
    Select the test run & Load doc into all ledger.
    If the system will show document which are not posted correctly.
    Remove test run and execute in production run. All the relevant document will be posted and the difference will be removed.
    Check the SAP Note : 1156974 for more info.
    Note :  RGURECGLFLEX will consume more time, so it will be better if you execute this program when there is not much load in the system.
    Do revert fro any clarification.
    Regards,

Maybe you are looking for