BAI2 Lockbox statement. for Discount component

Hi,
In BAI2 Lockbox ( I am new to this) I have no issue to get the amount matched to Customer Open Item.\
How the discount amount for early payment by customer is repressented in BAI2 ? With minus sign or discount is represented by some code no ?
Thanks,
Chitra.

Hi Orlando,
what was your solution to this problem?  I'm also facing the same problem.
Regards,
Andrew

Similar Messages

  • Lockbox issue for discount amount and incorrect reference

    Hi All,
    While doing Lockbox processing through FLB2, for certain payment advices discount was not recorded and it was posted directly by the system in price difference(maintained in Reason Code). Also, system did not prompted an error message for the invoice paid with incorrect reference and not even processing to On Account.
    In total of discount amount and invoice amount paid with incorrect reference posted to GL Account maintained in one of the Reason codes automatically. 
    Where could be the error in configuration point of view to check, please advice with your expertise.
    Thanks,
    Likhit

    hi ,
    can you pl help me in sending the lockbox config and test file & testing process as my client needs lockbox set up?
    i would be thankful to you if could help me inthis regard.
    mail: [email protected]
    regds,
    raman

  • Save last selected and state for Tree Component?

    I have a Tree component that refreshes its data everytime I
    open the Tab containing it (doing a SQL call to return an index of
    models). The problem is that everytime the dataProvider changes (a
    new one overwrites the old one) with databinding, even if the data
    is exactly the same, it loses its old state and selected node. Is
    there any way to save this state/selected node when the
    dataProvider updates?

    good article on all aspects of trees including your issue.
    http://www.adobe.com/devnet/flex/quickstart/working_with_tree/

  • View states for components

    Hi hoping someone could help. I understand view states and can use them. However in this situation I want to have a view state for a control bar but I already have 2 view states for another component (a panel component) in my Flex app and want to separate the control bar view state from the panel view state.
    Therefore when I set the currentState = 'showBtn' it's affecting the panel view state and I don't want it to. I've tried putting the <mx:states> tag in under the component i'm trying to add the button view state to but i'm getting an "Initializer for the property 'states' is not allowed here" error.

    i've tried that... when i start using the id of the component like myPanel.currentState = "whatever" it tells me the currentState whatever is undefined. it only seems to work if i do currenState = "whatever". here is some of my code to help you see my problem:
    <mx:Script>
    <![CDATA[ 
    private function toggleFilter():void{ 
    if (p1.currentState == 'viewRequests'){p1.currentState =
    'searchFilter';filterButton.label =
    'Hide Filter';}
    else{p1.currentState =
    'viewRequests';filterButton.label =
    'Show Filter'; 
    private function buttonBar():void{ 
    if (changeQueue.selectedItem.REQ_BY_ID == Application.application.parameters.emplid){queueControlBar.currentState =
    'showRecallBtn';}
    else{queueControlBar.currentState =
    ]]>
    </mx:Script>
    <mx:states>
    <mx:State name="viewRequests">
    <mx:AddChild relativeTo="{p1}" position="firstChild">
    <mx:HBox id="resultBox" width="100%" height="100%">
    <mx:DataGrid id="changeQueue" x="0" y="0" width="100%" height="100%" dataProvider="{SAMService.getRequests.lastResult}" change="buttonBar();">
    <mx:columns>
    <mx:DataGridColumn headerText="Change ID" dataField="CHANGE_ID" visible="false"/>
    <mx:DataGridColumn headerText="Change Type" dataField="CHANGE_TYPE"/>
    <mx:DataGridColumn headerText="Status" dataField="STATUS"/>
    <mx:DataGridColumn headerText="Request Date" dataField="REQ_DT" labelFunction="doDateLabel"/>
    <mx:DataGridColumn headerText="Requested By ID" dataField="REQ_BY_ID" />  
    </mx:columns>
    </mx:DataGrid>
    </mx:HBox>
    </mx:AddChild>  
    </mx:State>
    <mx:State name="searchFilter">
    <mx:AddChild relativeTo="{p1}" position="secondChild">
    <SearchPanel id="searchPanel" width="100%" height="100%"/>
    </mx:AddChild>
    </mx:State>
    <mx:State name="showRecallBtn">
    <mx:AddChild relativeTo="{queueControlBar}" position="lastChild">
    <mx:Button label="Recall Item" icon="@Embed(source='images/recall.gif')" enabled="{changeQueue.dataProvider.length > 0}"/>
    </mx:AddChild>
    </mx:State>
    </mx:states>
     <mx:HBox x="0" y="360" width="95%" horizontalAlign="center" paddingLeft="25" paddingRight="25">
     <mx:Panel id="p1" width="100%" height="90%" layout="absolute" title="Change Request Queue" currentState="viewRequests">
     <mx:ControlBar>
     <mx:HBox id="queueControlBar" width="100%" horizontalAlign="center" currentState="">
     <mx:Button label="Details" icon="{detailsIcon}" enabled="{changeQueue.selectedIndex>-1}" click="WindowManager.add(getDetails(), this, true);"/>
     <mx:Button id="filterButton" label="Show Filter" icon="@Embed(source='images/search.png')" click="toggleFilter();"/>
     <mx:Button id="OICbutton" label="Export OIC Changes" icon="@Embed(source='images/export.png')" enabled="{changeQueue.dataProvider.length > 0}" click="oicChanges();"/>
     </mx:HBox>
     </mx:ControlBar>
     </mx:Panel>
     </mx:HBox>

  • Error: Could not resolve s:states to a component implementation.

    So I am trying to setup states on a Flex application I'm building, but it doesn't seem to want to compile. I get this error:
    $ ./build.sh
    Loading configuration file /Applications/Adobe Flash Builder 4/sdks/4.1.0/frameworks/flex-config.xml
    uploader.mxml(24): Error: Could not resolve <s:states> to a component implementation.
        <s:states>
    Here is my build command nothing special ...
    $ cat ./build.sh
    #!/bin/bash
    mxmlc -output bin/uploader.swf src/uploader.mxml
    I have a class that extends the Spark application like so ...
    package com.uploader.controllers
        import spark.components.Application;
         dynamic public class FlashUploader extends Application
    Then in my main application mxml file I use it like so ...
    <?xml version="1.0" encoding="utf-8"?>
    <c:FlashUploader xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
        xmlns:v="com.uploader.view"
        xmlns:c="com.uploader.controllers.*"
        minWidth="709" minHeight="400"
        skinClass="com.uploader.skins.UploaderApplicationSkin">
        <fx:Style source="styles.css" />
        <!-- states -->
        <s:states>
            <s:State name="default" />
            <s:State name="startup" />
            <s:State name="uploading" />
            <s:State name="normal" />
        </s:states>
    </c:FlashUploader>
    Now when I try to compile I get the states error. I've found several examples and even made a dummy app just using the spark application and it compiles fine. Not sure if I'm doing anything weird here but the few other flex devs I know don't seem to see anything wrong with what I'm doing that could cause this.

    When you define an object using a namespace you have to use the same namespace for its properties, so you will want to use "<c:states>" instead of "<s:states>" in this case.

  • Build Plugin IS NOT DEFINED for this component or the defined Build Plugin

    Hello,
    we have upgraded our NWDI (nw04s) to SP13 and to DB2 V.9. We don't know if this has something to do with our problem. The NWDS developers called us. They can't activate the changes anymore. When I check the CBS I can see, that all components are broken. Any idea?
    REgards,
    Alexander
    Build number assigned: 487
    Change request state from QUEUED to PROCESSING
    REQUEST PROCESSING started at 2007-10-10 10:46:13.526 GMT
        BUILD request in Build Space "NW1_GPMS_D" at Node ID: 27,972,750
         [id: 473; parentID: 0; type: 2]
        Waiting for access: 33 ms
        ===== Pre-Processing =====  started at 2007-10-10 10:46:13.559 GMT
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2007-10-10 10:46:13.702 GMT
                    'zurich.com/gpms/jco_pool' variant 'default'
                    'zurich.com/gpms/jco_pool' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/yea' variant 'default'
                    'zurich.com/gpms/yea' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/chgpwd' variant 'default'
                    'zurich.com/gpms/chgpwd' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/rep' variant 'default'
                    'zurich.com/gpms/rep' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/model' variant 'default'
                    'zurich.com/gpms/model' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/idp' variant 'default'
                    'zurich.com/gpms/idp' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ovt' variant 'default'
                    'zurich.com/gpms/ovt' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/arch' variant 'default'
                    'zurich.com/gpms/arch' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/myr' variant 'default'
                    'zurich.com/gpms/myr' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/div' variant 'default'
                    'zurich.com/gpms/div' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ume' variant 'default'
                    'zurich.com/gpms/ume' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/com' variant 'default'
                    'zurich.com/gpms/com' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/ovw' variant 'default'
                    'zurich.com/gpms/ovw' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/obj' variant 'default'
                    'zurich.com/gpms/obj' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/chgpwdb' variant 'default'
                    'zurich.com/gpms/chgpwdb' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/pdata' variant 'default'
                    'zurich.com/gpms/pdata' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
            Analyze request DC BV... finished at 2007-10-10 10:46:14.049 GMT and took 347 ms
            Prepare build environment in the file system... started at 2007-10-10 10:46:14.049 GMT
                Synchronize development configuration... started at 2007-10-10 10:46:14.049 GMT
                Synchronize development configuration... finished at 2007-10-10 10:46:14.068 GMT and took 19 ms
                Synchronize used libraries... started at 2007-10-10 10:46:14.068 GMT
                Synchronize used libraries... finished at 2007-10-10 10:46:14.068 GMT and took 0 ms
            Prepare build environment in the file system... finished at 2007-10-10 10:46:14.068 GMT and took 19 ms
        ===== Pre-Processing =====  finished at 2007-10-10 10:46:14.069 GMT and took 510 ms
        Waiting for access: 3 ms
        ===== Processing =====  started at 2007-10-10 10:46:14.072 GMT
            No Components to be built.
            BUILD DCs
        ===== Processing =====  finished at 2007-10-10 10:46:17.407 GMT and took 3 s 335 ms
        ===== Post-Processing =====
        Waiting for access: 5 ms
        ===== Post-Processing =====  started at 2007-10-10 10:46:17.412 GMT
            STORE build results... started at 2007-10-10 10:46:17.413 GMT
                "zurich.com/gpms/jco_pool" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/jco_pool": store meta-data
                "zurich.com/gpms/jco_pool" in "default" variant  is PROCESSED
                "zurich.com/gpms/yea" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/yea": store meta-data
                "zurich.com/gpms/yea" in "default" variant  is PROCESSED
                "zurich.com/gpms/chgpwd" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/chgpwd": store meta-data
                "zurich.com/gpms/chgpwd" in "default" variant  is PROCESSED
                "zurich.com/gpms/rep" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/rep": store meta-data
                "zurich.com/gpms/rep" in "default" variant  is PROCESSED
                "zurich.com/gpms/model" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/model": store meta-data
                "zurich.com/gpms/model" in "default" variant  is PROCESSED
                "zurich.com/gpms/idp" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/idp": store meta-data
                "zurich.com/gpms/idp" in "default" variant  is PROCESSED
                "zurich.com/gpms/ovt" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ovt": store meta-data
                "zurich.com/gpms/ovt" in "default" variant  is PROCESSED
                "zurich.com/gpms/arch" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/arch": store meta-data
                "zurich.com/gpms/arch" in "default" variant  is PROCESSED
                "zurich.com/gpms/myr" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/myr": store meta-data
                "zurich.com/gpms/myr" in "default" variant  is PROCESSED
                "zurich.com/gpms/div" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/div": store meta-data
                "zurich.com/gpms/div" in "default" variant  is PROCESSED
                "zurich.com/gpms/ume" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ume": store meta-data
                "zurich.com/gpms/ume" in "default" variant  is PROCESSED
                "zurich.com/gpms/com" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/com": store meta-data
                "zurich.com/gpms/com" in "default" variant  is PROCESSED
                "zurich.com/gpms/ovw" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/ovw": store meta-data
                "zurich.com/gpms/ovw" in "default" variant  is PROCESSED
                "zurich.com/gpms/obj" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/obj": store meta-data
                "zurich.com/gpms/obj" in "default" variant  is PROCESSED
                "zurich.com/gpms/chgpwdb" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/chgpwdb": store meta-data
                "zurich.com/gpms/chgpwdb" in "default" variant  is PROCESSED
                "zurich.com/gpms/pdata" in "default" variant  is BROKEN. No build results to store.
                "zurich.com/gpms/pdata": store meta-data
                "zurich.com/gpms/pdata" in "default" variant  is PROCESSED
            STORE build results... finished at 2007-10-10 10:46:17.440 GMT and took 27 ms
            Change request state from PROCESSING to SUCCEEDED
            Analyze effect of applied changes to buildspace state... started at 2007-10-10 10:46:17.440 GMT
                Skip check for build time dependency cycles. DC metadata is not changed.
                Determine components that have become DIRTY due to the results of this request started at 2007-10-10 10:46:18.601 GMT
                    No such components have been found.
                Determine components that have become DIRTY due to the results of this request finished at 2007-10-10 10:46:18.602 GMT and took 1 ms
                No Internal Build Requests are canceled by this request
            Analyze effect of applied changes to buildspace state... finished at 2007-10-10 10:46:18.642 GMT and took 1 s 202 ms
            Request SUCCEEDED
        ===== Post-Processing =====  finished at 2007-10-10 10:46:18.646 GMT and took 1 s 234 ms
    REQUEST PROCESSING finished at 2007-10-10 10:46:18.646 GMT and took 5 s 120 ms
        ===== Pre-Processing =====  started at 2007-10-10 07:16:55.069 GMT
            Calculate all combinations of components and variants to be built...
            Analyze request DC BV... started at 2007-10-10 07:16:55.104 GMT
                    'zurich.com/gpms/jco_pool' variant 'default'
                    'zurich.com/gpms/jco_pool' variant 'default' cannot be built and will be marked as BROKEN.
                    Build Plugin IS NOT DEFINED for this component or the defined Build Plugin is INVALID.
                    'zurich.com/gpms/yea' variant 'default'

    Here are some things to have a look at:
    - Check your SC definitions and their Usage Dependencies in the SLD
    - Check that the basis SCA's have been imported into the track. You can quickly see this by having a look at the total nr of DCs for these SCs in CBS.

  • WARNING: No saved state for javax.swing.JTable

    Hi All,
    I have a JTable component in my code and I used Netbeans to add swing components. However, I get this warning after I run my app:
    WARNING: No saved state for javax.swing.JTable[jTable1,0,0,329x80,alignmentX=0.0,alignmentY=0.0,border=,
            flags=251658568,maximumSize=,minimumSize=,preferredSize=,autoCreateColumnsFromModel=true,
            autoResizeMode=AUTO_RESIZE_SUBSEQUENT_COLUMNS,cellSelectionEnabled=false,editingColumn=-1,
            editingRow=-1,gridColor=javax.swing.plaf.ColorUIResource[r=128,g=128,b=128],
            preferredViewportSize=java.awt.Dimension[width=450,height=400],rowHeight=16,rowMargin=1,
            rowSelectionAllowed=true,selectionBackground=javax.swing.plaf.ColorUIResource[r=51,g=153,b=255],
            selectionForeground=javax.swing.plaf.ColorUIResource[r=255,g=255,b=255],showHorizontalLines=true,
            showVerticalLines=true]What is the reason of this? If I need to catch this exception, how can I add it with netbeans?
    Edited by: Darryl Burke -- broke a long line into several lines

    Set the name property of your JTable, it's a Netbeans thing, rather than a Java problem. table.setName("MyTable");Have a look at this thread for details: SessionStorage warning while program is running
    Please only post Java related questions here and post Netbeans questions to a netbeans forum/mailing list, thanks.

  • Request for Discount , Free Transport before creating PO

    How does the customer will ask for discount or free transportation of goods to be delivered from a vendor .
    I want to send quotations to vendors such that it should contain quantity of items along with request for free goods delivery or some discounts . After getting their quotations back from the vendors is their any way of asking for negotiation of price or free goods delivery ( if this is not asked in RFQ ) .
    I need if this is possible , where we define all this things. Points will be rewarded .
    - David Boon

    Hello David,
    Free shipping and discounts are part of negotiation with the vendor. Once you receive the Quotation from vendor then it will be maintained in "maintain Quotation - ME47".
    Based on the comparition list, you can negotiate with the vendor for Free Shipping and discounts. If vendor is ready to supply the material with free of cost and discount then you can maintain Discount in Quotation again or in purchase order, where as you will not maintain delivery condition in Quotation/Purchase order.
    Hope this helps.
    Regards
    Arif Mansuri

  • I cannot access online statements for my credit card account when using firefox, but have no problem when using safari.

    When I attempted to check the monthly statement for my credit card account and clicked on "See statement", the next screen that appeared, which was labeled Online Statement", was blank. In the past, I have never had any problems with this. When I checked with the bank that issued the credit card, the representative I spoke with said that it was a browser issue and that, since I was working on a Mac, I should try using Safari. When I switched to Safari, I had no problem bringing up my statement. But I would prefer to be able to use Firefox to obtain information like this, since it's the browser I always use.

    Can you upgrade your browser to Firefox 12 and check?
    * getfirefox.com

  • Opening balance and closing balances for discounts?

    Hi all,
    I have a typical sceanario where in
    opening balance for discounts 10,000 (balance of last month)
    actual discounts  from the sales order 5,000
    manual upload is   from flat file            2,000
    closing balance is 7,000 (which is opening balance + manual upload - actual discounts)
    opening and closing balance needs to be calculated, how to calculate nor handle this on every month?
    level of granularity of the data is
    sku, month, rebate category and rebate amount?
    Thanks

    Hi Pooja,
    can you please let us know few things about your report requirements
    What is the extractor you are using?
    What are the KFs ?
    what are the selection parameters that you want to enter at the reporting level?
    is it the report related to FI AR. do you want to display the values based on the customer -->profitcenter?
    Bcoz we had a same requirement where our requirement was global recievables aging report in which the report need to display opening bal, sales,adjustment,colelction and closing balance and the aging values.
    here what we did is changed the modeling of the DSO and infocube.
    we had used non-cumulative KF in order to calculate closing balance and from that derived opening balance and again create a new formula to get the closing balance.
    if you can be specific with your requirement hope can help you with your report.

  • VLD-1119: Unable to generate Multi-table Insert statement for some or all t

    Hi All -
    I have a map in OWB 10.2.0.4 which is ending with following error: -
    VLD-1119: Unable to generate Multi-table Insert statement for some or all targets.*
    Multi-table insert statement cannot be generated for some or all of the targets due to upstream graphs of those targets are not identical on "active operators" such as "join".*
    The map is created with following logic in mind. Let me know if you need more info. Any directions are highly appreciated and many thanks for your inputs in advance: -
    I have two source tables say T1 and T2. There are full outer joined in a joiner and output of this joined is passed to an expression to evaluate values of columns based on
    business logic i.e. If T1 is available than take T1.C1 else take T2.C1 so on.
    A flag is also evaluated in the expression because these intermediate results needs to be joined to third source table say T3 with different condition.
    Based on value taken a flag is being set in the expression which is used in a splitter to get results in three intermediate tables based on flag value evaluated earlier.
    These three intermediate tables are all truncate insert and these are unioned to fill a final target table.
    Visually it is something like this: -
    T1 -- T3 -- JOINER1
    | -->Join1 (FULL OUTER) --> Expression -->SPLITTER -- JOINER2 UNION --> Target Table
    | JOINER3
    T2 --
    Please suggest.

    I verified that their is a limitation with the splitter operator which will not let you generate a multi split having more than 999 columns in all.
    I had to use two separate splitters to achieve what I was trying to do.
    So the situation is now: -
    Siource -> Split -> Split 1 -> Insert into table -> Union1---------Final tableA
    Siource -> Split -> Split 2 -> Insert into table -> Union1

  • My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours and

    My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours hoping it would reload and work.  No luck.

    Hello KCC4ME,
    You may try booting your Mac in Safe Boot, as it can resolve many issues that may prevent a successful login.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564
    If a Safe Boot allows you to successfully log in, you may have issues with one or more login itmes (while the following article is labelled as a Mavericks article, it is viable for earlier versions of the Mac OS, as well).
    OS X Mavericks: If you think you have incompatible login items
    http://support.apple.com/kb/PH14201
    Cheers,
    Allen

  • How to write a case statement for the totals column of two different years (2013 and 2014) of the same month so that I can get a +/- column

    Please Help!!!
    How to write a case statement for the totals column of two different years (2013 and 2014) of the same month so that I can get a +/- column.
                                      January 2014         January
    2013                            +/-
                    Region   Entry   Exit  Total    Entry   Exit   Total   (Total of Jan2014-Total of Jan2013)
                    A               2         3      
    40        5       7        30                    40-30= 10

    What is a table structure? Sorry cannot test it right now..
    SELECT <columns>,(SELECT Total FROM tbl WHERE Y=2014)-(SELECT Total FROM tbl WHERE Y=2013)
    FROM tbl
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • I want to upgrade to CS6 Production Premium suite from CS5.5.  Can I use CS6 upgrade made for CS5, or do I have to use upgrade that specifically states for CS5.5.

    I want to upgrade to CS6 Production Premium suite from CS5.5.  Can I use CS6 upgrade made for CS5, or do I have to use upgrade that specifically states for CS5.5.
    I am referring to the DVD installation Disks not Cloud.  Disk last release, I believe in 2012.
    Thank you.

    at the link i posted i see an upgrade for cs5 and cs5.5.
    you can contact adobe support if you don't see that.
    contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • Error while uploading Bank statement for BACS

    Hi All,
    We are facing a error while uploading a bank statement for BACs, the system is not autoposting (clearing the open items) for the BACs file. The bank statement is as below
    :20:20081015
    :25:200000/50414107
    :28:28290/01
    :60F:C081015GBP1176,45
    :61:0810151015DX448,97FDDRNONREF//
    :86:999/00DDRARVAL             1875180          
    :61:0810151015DX779,07FDDRNONREF//
    :86:999/00DDRBP OIL UK RECPS AC230679BI2898784  
    :61:0810151015DX24469,50FDDRNONREF//
    :86:999/00DDRSAPBACS0000341816               BACS
    :61:0810151015DX233018,83FDDRNONREF//
    :86:999/00DDRSAPBACS0000340411               BACS
    The last line items BACS file is not posting the document but we have manually auto cleared the document.
    Can any one let me know what has caused the error. And where to check out the setting of this.
    Thanks and Regards
    Sri

    solved myself

Maybe you are looking for