FAGLF101 - SORTING/RECLASSIFICATION (NEW)

Hi
I have done the configuration of Parallel Ledger and Configured the Sort method, Valuation area, assigning GL accounts for the Sort method and Assignment of Valuation area to Accounting Principle.
Then when I am running the FAGLF101 transaction for sorting/ reclassification of Accounts payeble. The system is giving the list of items for which reclassification is necessary but it is not posting any entry in FI.
Kindly clarify
Cheers
V.Krishnan

Hi
Please check whether foreign currency valuation is pending. Also check whether adjustment accounts are defined
S Jayaram

Similar Messages

  • Sorting  the News Items

    Hi all
    <b>Can we sort the news items created using Xml Form Builder based on the Title in the display iview? </b>
    We are using the KM navigation iview for rendering the news and the user has to get the options for <b>sorting based on news title,date</b> etc in a dropdown in the top of the iview.
    (My problem is similar to the sorting options given for the discussion iview. Similar to the options like sorting based on title,author,modified etc provided for discussions we want the same for the news items also.)
    Thanks for any help in advance
    Geogi

    Hi Geogi,
    You can sort the News items based on Title. For this, you have to find out the layoutset of your iview. Then go to System Administration -> System Configuration -> KM -> CM ->  User Interface -> Settings -> LayoutSet. Then select your layoutset. There you will find Collection Renderer. Clicking on the collection renderer will take you to the details page of collection renderer. On the details page, click on Edit button and when the form is editable, click on "Show advanced options" link. There you will see two properties, Property For Sorting and Sorting Mode. For Property For Sorting give the value : <b>cm:displayname</b> and select the appropriate sorting mode.
    This should do the job for you.
    Try and get back.
    Ranjith
    For your second question, i.e. providing a drop down box for selecting the property on which to sort, I think you will have to go for a new layoutset. I am not sure if you can use the existing layoutset to get this functionality. Anyway I'm not sure about this. Let's wait to see what other SDNers have to say about that.
    Ranjith
    Message was edited by: Ranjith Vijayan

  • Sorting KM news / xml forms

    I've created xml forms / news.
    The publication is working fine but,
       - the news are sorted by News name
    and I would like to change the sorting
       - or by creating date
       - or by a specific field of the news' data model
    Does someone have experience with this ?
    Kind regards
    Vincent

    Hi Vincent,
    It appears the default setting for the "NewsBrowser" are as follows:
    Property for Sorting: modified
    Sorting Mode: descending
    This means the default NewsBrowser will renders all news articles
    on the last modified date in descending order where the property
    id modified maps to the property cm_modified.
    There is no property existing called "date", if you wish to sort
    the news articles on the creation date the property id you would
    use is created which maps to the property cm_created, so you
    parameters would look like this:
    Property for Sorting: created
    Sorting Mode: descending
    Did you tried above configrations?
    Best Regards
    Anjali

  • How to sort the new records when you input them in a Forms bloc?

    Hi,
    I have a multi-record data block, how can I do to sort the records in this block when you enter some new records? for instance, you have a table(emp), 3 coloumns(empid, empname, deptno). when you enter new records, how can you do to make records order by deptno? not in quiry status.
    Thanks. Please help me!

    I think Steve has answered your question and I doubt that what Frank is suggesting is what you are actually trying to do.
    However,
    from the top of my head I don't know if you can set the order by clause on a datablock dynamically <<-Yes you can set it with set_block_property. You don't really want to put it in the where clause because if the user enters query criteria in database fields, they will get appended after the order by and the query will fail.

  • Customizing column sorting in new jsf table

    The new JSF table in the creator 2 is great. I like it. It includes so many out of the box features. It is the reason we use the creator for our current project.
    But I cannot figure out how to customize the column sorting.
    Why do I need column sorting?
    I need to sort a column that can include ad IP address or a host name. Our customer can either use a host name or an IP address to address a device in the network, both in the same column.
    Now sorting an IP address is already difficult. It is actually a sort over a 4 byte number. Sorting over host names is normal alphabetic string sorting.
    How to sort over both in the same column?
    This cannot be done using standard sorting. I need to use a validator or something similar to customize the sorting of this column.
    Can anybody help me with a hint if:
    1- Customizing sorting over a column is possible. (I really would like to keep all other sorting features (icons, multi column support...)).
    2- A hint or code sample, how to do this.
    If this is not possible, I urge the creator team to think of implementing this soon. Otherwise one killer feature of the creator 2 will lose a lot of its teeth.

    Thx mayagiri for your reply!
    But including the src-code for the dataprovider package into a test project, and debugging in the creator-ide has done the thing!
    Here our solution:
    Class ToCompare is the object type which address field displayed in a page, simply containing a table with 2 adress colums, that can be sorted either according to our ip/hostname-comparison or according to String.compare().
    * ToCompare.java
    * Created on 10. Februar 2006, 10:41
    * This class is a basic model object,
    * with a field - String address - according
    * to which it shall be sortable.
    package comparator;
    * @author mock
    public class ToCompare {
         * holds the IP or Host address
        private String address=null;
         * Instance of a Comparator class that
         * provides our sorting algorithm
        private RcHostComparator hostComparator=null;
        /** Creates a new instance of ToCompare */   
        public ToCompare() {
            this("defaultHost");       
         * when creating a new ToCompare instance,
         * the hostComparator is created for it
         *  @ param aAddress - IP or Hostname
        public ToCompare(String aAddress) {
            address=aAddress;
            hostComparator=new RcHostComparator(address);
        public String getAddress() {
            return address;
        public RcHostComparator getHostComparator() {
            return hostComparator;
    }Here the code of the Class RcHostComparator, it is created with the address field of the ToCompare object that it holds. It first checks if the address field is an IP or not, and then chooses the comparison algorithm according to its own field state and the field state of the object to compare to:
    * RcHostComparator.java
    * Created on 10. Februar 2006, 10:43
    *  This class is used to provide a method for
    *  comparing objects that have an address field,
    *  containing either IP adresses or hostnames.
    package comparator;
    import java.text.CollationKey;
    import java.text.Collator;
    import java.util.Comparator;
    import java.util.Locale;
    * @author mock
    public class RcHostComparator implements Comparator
         * holds the IP or Host address
        private String address=null;
         * Is the address an IP
        private boolean isIPAddress=false;
         * if (!isIPAddress) this is created out of the address
         * to provide a performant way of comparing it with another
         * CollationKey, in order to sort Strings localized
         *  @ see java.text.Collator
         *  @ see java.text.CollationKey
        private CollationKey hostnameCollationKey=null;
         * if (isIPAddress) this array holds
         * the 4 byte of the Ip address to compare
        private int[] intValues=null;
         * minimum for IP bytes/ints
        private static final int minIntValue=0;
         * maximum for IP bytes/ints
        private static final int maxIntValue=255;
         * Creates a new instance of IpComparator
         *  @ param aAddress  - holds the IP or Host address
        public RcHostComparator(String aAddress) {
            address=aAddress;
             * check if address is an IP
            isIPAddress=checkIP();
             * if Hostname -> instantiate localized CollationKeys
            if(!isIPAddress){
                 Collator _localeCollator=Collator.getInstance(Locale.getDefault());
                 hostnameCollationKey=_localeCollator.getCollationKey(address);
            }else{}
         *  Here the comparison of the address fields is done.
         *  There a 4 cases:
         *  -1 both Hostnames
         *  -2 aObject1 IP, aObject2 Hostname
         *  -3 aObject1 Hostname, aObject2 IP
         *  -4 both IPs
         *  @ param aObject1, aObject2 - Comparator objects
        public int compare(Object aObject1, Object aObject2)
          int _result= 0;
          if(aObject1 instanceof RcHostComparator && aObject2 instanceof RcHostComparator )
               RcHostComparator _ipComparator1=(RcHostComparator)aObject1;
               RcHostComparator _ipComparator2=(RcHostComparator)aObject2;
               *  Compare algorithms, according to address types
               if(!_ipComparator1.isIPAddress()&&!_ipComparator2.isIPAddress()){
                       *  If both addresses are Strings use collationKey.compareTo(Object o)
                    _result=_ipComparator1.getHostnameCollationKey().compareTo(_ipComparator2.getHostnameCollationKey());
               }else{
                       *  IPs are smaller than Strings -> aObject1 < aObject2
                    if(_ipComparator1.isIPAddress()&&!_ipComparator2.isIPAddress()){
                         _result=-1;
                    }else{
                                *  IPs are smaller than Strings -> aObject1 > aObject2
                         if(!_ipComparator1.isIPAddress()){
                              _result=1;
                         }else{
                             int _intIndex=0;
                             int[] _int1=_ipComparator1.getIntValues();
                             int[] _int2=_ipComparator2.getIntValues();
                                      * compare IP adresses per bytes
                             while(_result==0 && _intIndex<4){
                                  if(_int1[_intIndex]>_int2[_intIndex]){
                                       _result=1;
                                  }else if(_int1[_intIndex]<_int2[_intIndex]){
                                       _result=-1;
                                  }else{}                            
                                             _intIndex++;
          }else{}   
          return _result;
         *  checks if the address field holds an IP or a hostname
         *  if (_isIP) fill intValues[] with IP bytes
         *  if (!isIP)  create hostnameCollationKey
        private boolean checkIP(){
           boolean _isIP=false;
           String[] _getInts=null;
            *  basic check for IP address pattern
            *  4 digits also allowed, cause leading
            *  0 stands for octet number ->
            *  0172=122                  ->
            *  0172.0172.0172.0172 = 122.122.122.122
           boolean _firstcheck=address.matches("[0-9]{1,4}\\.[0-9]{1,4}\\.[0-9]{1,4}\\.[0-9]{1,4}");
           if(_firstcheck){
                _getInts=address.split("\\.");           
                intValues=new int[4];
                for (int _count=0; _count<4; _count++){
                   try{                     
                       int _toIntValue;
                       if(_getInts[_count].startsWith("0")){
                                // if leading 0 parse as octet -> radix=8
                               _toIntValue=Integer.parseInt(_getInts[_count], 8);                          
                       }else{  
                                // parse as is -> radix=10 -> (optional)
                               _toIntValue=Integer.parseInt(_getInts[_count]);                          
                       if(_toIntValue<minIntValue||_toIntValue>maxIntValue){
                              // out of unsigned byte range -> no IP
                              return _isIP;
                       }else{
                              // inside byte range -> could be part of an IP
                              intValues[_count]=_toIntValue;
                   }catch(NumberFormatException e){
                           // not parseable -> no IP
                           return _isIP;
               // all 4 bytes/ints are parseable and in unsigned byte range -> this is an IP
                _isIP=true;
           }else{}      
           return _isIP;
        public boolean isIPAddress() {
                return isIPAddress;
        public int[] getIntValues() {
                return intValues;
        public CollationKey getHostnameCollationKey() {
                return hostnameCollationKey;
        public String getAddress()
            return address;
    }The page bean holds an array of ToCompare objects. It is the model for a new table component, hold by an ObjectArrayDataProvider. Here a code excerpt:
    public class Page1 extends AbstractPageBean
        private ToCompare[] toCompare= new ToCompare[]{
            new ToCompare("1.1.1.1"),
            new ToCompare("2.1.1.1"),
            new ToCompare("9.1.1.1"),
            new ToCompare("11.1.1.1"),
            new ToCompare("0172.0172.0172.0172"),
            new ToCompare("123.1.1.1"),
            new ToCompare("a"),
            new ToCompare("o"),
            new ToCompare("u"),
            new ToCompare("z"),
            new ToCompare("�"),      
            new ToCompare("�"),
            new ToCompare("�")        
         * This method is automatically generated, so any user-specified code inserted
         * here is subject to being replaced
        private void _init() throws Exception
            objectArrayDataProvider1.setArray(toCompare);
        private TableRowGroup tableRowGroup1 = new TableRowGroup();   
        private ObjectArrayDataProvider objectArrayDataProvider1 = new ObjectArrayDataProvider();
    }The relevant .jsp section for the two column table looks like:
    <ui:tableRowGroup binding="#{Page1.tableRowGroup1}" id="tableRowGroup1" rows="10" sourceData="#{Page1.objectArrayDataProvider1}" sourceVar="currentRow">
      <ui:tableColumn binding="#{Page1.tableColumn1}" headerText="SortIP" id="tableColumn1" sort="#{currentRow.value['hostComparator']}">
        <ui:staticText binding="#{Page1.staticText1}" id="staticText1" text="#{currentRow.value['address']}"/>
      </ui:tableColumn>
      <ui:tableColumn binding="#{Page1.tableColumn2}" headerText="SortString" id="tableColumn2" sort="address">
        <ui:staticText binding="#{Page1.staticText2}" id="staticText2" text="#{currentRow.value['address']}"/>
      </ui:tableColumn>
    </ui:tableRowGroup>Sorting localized with Locale="DE_de" according to ip/hostcompare sorts:
    SortIP
    1.1.1.1
    2.1.1.1
    9.1.1.1
    11.1.1.1
    0172.0172.0172.0172
    123.1.1.1
    a

    o

    u

    zWhereas normal sort over String address whitout localization sorts:
    SortString
    0172.0172.0172.0172
    1.1.1.1
    11.1.1.1
    123.1.1.1
    2.1.1.1
    9.1.1.1
    a
    o
    u
    z


    �Not that short, but I hope it will help - if anyone has the need for another than the default sorting algorithms
    Best regards,
    Hate E. Lee

  • Sorting in new Numbers - problem?

    I tried to find a way to sort selected rows in the new Numbers version 3 that updates with
    Mavericks.    The Sort button is gone from the toolbar, and the support page at Apple
    only shows how to sort an entire column.
    I can't imagine they removed the ability to sort selected rows.  Numbers would be
    impossible to use without that function.  Hopefully I'm missing something here.
    Anyone know how to make it work?
    cheers
    david

    David,
    If you find new Numbers impossible to use, you can go back to Numbers V2.3. Don't forget to Submit Feedback to Apple in the Numbers menu before you go.
    Jerry

  • Sorting in new Music app

    I've always used the "genre" category to quickly find music.  The old iPod app would sort by artist within the genre category.  There doesn't seem to be any logic to how the music is listed within the category with the new music app.  I can't believe they didn't build a feature that would allow the user to resort in whatever order they wanted.  

    Hi, Dynamomanu. 
    Thank you for visiting Apple Support Communities.
    There is a new feature in iOS 7 that shows you all your purchases made with your Apple ID.  To disable this feature go to Settings > Music, then turn off Show All Music.  This information can be found on the user guide below.
    iPhone User Guide
    Cheers,
    Jason H.

  • Sort by new App Property

    Hi Experts!!!!!
    I am developing an application that it create a new application property... but my problem is how to sort by this property??
    any idea??
    Thanks in advance!!!!!

    Any idea??? I have the same problem!!!

  • Photo event sorting on new iPad

    I've got 13,000 + photos across 100+ folders/events on my iMac/new iPad and all the folders/events were all in alphabetical order; Andrew's wedding, Dad's birthday, Frank's house, House extension, New Year 2007 etc etc, but recently the events are now not in A-Z order on my iPad. They are still in A-Z order in iPhoto on my iMac, but not on my iPad. It may be since the recent update to iOS 6, but has anyone any idea whether it will be update/resolved in the next iOS6 update or is there anything I can do? Thanks, Simon.

    ***UPDATE***
    Done some more investigation on this and the problem only happens when you select photos that have been taken with the iPad (Camera Roll) and NOT if you have synced photos from your PC/MAC.
    A very odd bug though... why would they be reversed from the Camera Roll and not synced photos?

  • Sort of new to purchasing

    Hi,
    Need some tips/advice on the best way to learn oracle purchasing. I work in a purchasing dept for a couple of years now but work mostly on iprocurement. i have the oracle user guide to purchasing and would like to get a replica of the erp purchasing module to work on at home.
    Any advice on how to go about teaching myself?
    thanks
    Girlie

    Hi Girlie,
    I am sorry as I advised many things without a knowledge of which role you are going to play in Purchasing.. As you mentioned that your primary role will be a functional user, hence you need to focus on transaction level information, like how to create POs, Approval Process, Receiving etc..
    Yes, few sites do provide access to Apps, but I will recomend you to register yourself in www.solutionbeacon.com site, you can have access to both 11i & R12 instance as well. You need to have a CSI number to register in this site.
    Navigation : www.solutionbeacon.com ; --> Toolkit --> R11/R12 Vision Instances --> click on
    *1) Release 11i Vision Instances*
    or
    *2) Release 12 Vision Instances , as per your requirement...*
    say if you click on : Release 12.1.1 Vision (vis1211) , system will prompt for user_id/Pwd.. you need to register in this page. Pre-requisite to access this site is a valid Oracle CSI number.
    In order to access the environment, each new user will need to complete the Release 11i/ 12.1.1 Vision User Registration form!
    Hope this will help... Good luck..
    Merry Christmas !!!
    Regards,
    S.P DASH

  • I am sort of new to MAC's and I love them so far.  I am looking for a software or app to convert power point presentations to flash much like Ipring for PC Can anyone recommend something?

    I am looking for a software or app to convert power point presentations to flash much like Ipring for PC Can anyone recommend something?

    This article has 6 ways to do it.

  • Reclassification of Customer & Vendor Balances in Group Currency

    Hello
    It is with regards to the Reclassification of Customer & Vendor
    Balances vide T Code FAGLF101 - Sorting/Reclassification (New) as per
    IFRS.
    The reclassification entries are getting generated in Document & Local
    Currency but no values are getting accounted in Group Currency. The
    reclassification entries should also get accounted in Group Currency.
    We had also implemented following notes related to the same but were
    unable to get the required results.
    1365637 - FAGLF101: Transaction currency amount in postings
    1463016 - FAGL_CL_REGROUP: Additional local currencies (re-
    measurement)
    1493437 - FAGLF101/FAGL_CL_REGROUP: Additional local currencies
    Can some one please comment why the entries are not be flowing in Group
    currency in IF ledger. OR are there any additional notes need to be
    implemented.
    Regards
    Atul

    Hi Atul............
    This language seems you are asking your doubts related to some other version of SAP and this is SAP Business One Forum.
    You are requested to post your question to correct forum because unfortunately you can not get any help from this forum.
    And if you have the other doubts regarding same version then please close all those threads and post it to right one....
    Regards,
    Rahul

  • Vendor Ageing Items

    Dear Experts,
    The due dates for our supplier items are already passed and the suppliers did not claim them and there are many items like that in 2011. We don't know if the supplier will claim them again or not, some of them may be out of business. But legally these liability should be in our books for five years, if the supplier still not claiming them - some action are to be taken to clear the liability. Previously in the former ERP we used to move these liabilities into separate account which is not included in the aging so can we do the similar kind of settings in SAP?
    Thank you
    Leena...

    Hi
    Reclassify
        The IMG activities for transferring and sorting receivables and payable  are in Customizing for General Ledger Accounting:
        o   For classic General Ledger Accounting under   Business Transactions -> Closing -> Reclassify -> Transfer and Sort
            Receivables and Payables
        o   For new General Ledger Accounting under   Periodic Processing -> Reclassify -> Transfer and Sort Receivables
            and Payables
    Use TCodes F101 - Reclassify Receivables/Payables  and/or FAGLF101 - Sorting/Reclassification (New)
    Srinivas

  • Program for transferring amount from one GL to another based on due date.

    Hi
    There is one requirement to show customers in differnt way (i.e. dues less than 6months seperately and more than 6 months seperately).
    I have created one GL (customers due less than 6 months)
    Now all balances are in one GL account i.e. customer due more than 6 monhts)
    So is there any program which will transfer all the amount for due less than six months from one GL to other GL.
    I also need such program for items (like prepaid accounts) which are entered directly into GL accounts.
    Edited by: Meenu_ND on Dec 23, 2010 5:01 PM

    Hi,
    Yes there is one functionality available that is Reclassification or sorting of Receivables and payables. The tcode is FAGLF101 - Sorting/Reclassification (New), for this you need to do some configuration settings. The navigation path is New gl- periodic processing-Reclassify-Transfer and sort receivables & payables.
    Regards,
    Azeem

  • Reclassification of Debit & Credit balances TC:-FAGLF101 is not happening

    Hi
    We are trying to run the transction FAGLF101 for reclassification of debit and credit balances
    under one company we are have 4 company codes , we are able to post and generate entries for 3 company codes and not happening for one company code alone
    we have checked the setting in OBBU/OBBV/OBBW all are correct, kindly let me know
    1.Is there any particularly settings we have to make on company code basis ,
    2.what all the config in need to check out
    3. any config changes i need to make
    kindly do the needful
    thanks & regards
    salva bindu

    Hello Suresh
    Could you help me with these questions on the configuration of valuation method assigned to valuation area:-
    1. Significance of "determine exchange rate type from act bal" and "determine exchange rate type from invoice reference". How is exchange rate type determined at account balance? Is it that for regrouping of customer / vendor accounts it is required to detrmine exchange rate type from account balance?
    2. What is the significance of valuation area in regrouping? Can i not use the same valuation method mapped to valuation area as configured for foreign currency valuation i.e EVR (standard SAP)?
    3. What are the valuation method settings for US GAAP and IFRS for regrouping?
    Thanks
    Anisha

Maybe you are looking for

  • Error while creating datasource in planing. very urgent

    while configuring a datasource he gets an error failed to authenticate user admin against NYULDAP . this error her gets after entering the datasource name as EDPM_EDU in the config utility for confuguring a datasource.. please hellp asap.. i checkd t

  • Can I puches a Larger internal Hard drive for my Mac Book

    I have a Mac book with an 80 gig HD and I want the 200 gig Hard Drive. Can I buy just the hard drive and install it in my mac book?

  • Open Flash Player context menu with keyboard?

    Is there a way to open the Flash Player (9 or 10) context menu with the keyboard? We are building applications that require full keyboard support, and it is desrable to add some custom items to the Flash Player context menu. However, if keyboard-only

  • IWeb not recognizing podcast exported from Garage band

    I've been sending my podcasts to iWeb for over a year. I used to host my site on MobileMe but switched to a WordPress site through GoDaddy last year. Regardless, I've always continued to send my podcast to the old iWeb site and pinged iTunes from the

  • Invoking Discoverer Report through Apps Form

    Hi all, I have a question as to, is it possible to call a discoverer report created in discoverer desktop and which is stored in the database., from an Oracle Apps form using the following method WEB.SHOW_DOCUMENT(url,target).. and if yes what url ne