Milestone Billing with Downpayments / Problem with AZWR

Hi All,
I have a problem as follows.
I have configured my MS billing and downpayments for the customer. These customisations are clear and doesnt need any advice!
When I create a downpayment request in VF01 using FAZ, the condition type AZWR is not fetching the value, though the reqmt and the base value routines are correctly assigned and it is configured before the tax condition types. What can be the problem and the solution for this.
Regards
S.Navaneetha krishnan

Did you check in the pricing analysis in the billing document for reason? Though you have verified configuration, it is worth taking another look into the details. I recommend going through OSS Note 213526 - Customizing of down payment processing SD/FI
Regards,

Similar Messages

  • HT1349 Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.

    Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.
    Would appreciate help...its driving me up the wall!!

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Why can't I receive help with my problems with Match? A service I pay for??

    Why can't I receive help with my problems with Match? A service I pay for??

    Hi,
    THis is a user help forum. If you tell us what your issues are, maybe someone can offer advice. Otherwise, read this https://www.apple.com/uk/support/itunes/itunes-match/
    JIm

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • Why did my calendar view suddenly change? Using iOS 7.1 and I've been using this version for a few weeks with no problem with my calendar. Now the view has changed and I can't view a list mode without seeing the month too

    Why did my calendar view suddenly change in iCal? I've been using ios7 fôr a few weeks now with no problems. Suddenly, without any updates or anything, the calendar view changed and I can no longer view it as a list without having the entire month seen as well.

    Hey Gattypyle,
    Thanks for the question. You simply need to go back to Day/Week view, then tap the list-view icon once more.
    Calendar at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3d110f84
    View a list of events. In month view, tap to see a day’s events. In day view, Tap the to view a list of events.
    Thanks,
    Matt M.

  • Can anyone help me with a problem with Photoshop 7.0?

    I have the old Adobee Photoshop 7.0.1 and I recently ran into a problem with my Type tool that I can't figure out.
    Suddenly the type tool won't type. When I hit the type tool a LARGE cursor appears that's almost the full length of the picture I'm typing on, and it can't be scaled down, and it won't type words. After a few days of frustration I totally removed Photoshop from my system and reloaded it, but the huge cursor still exist.
    Can anyone give me an idea as to how to fix this? Please?
    DM

    Reset the type tool.
    Click on the Type tool, then click on down arrow of tool icon in upper left corner of screen.  The click on the right arrow to reveal dropdown box to reset tool.
    Earlier discussion on this: Photoshop 7.0 type tool malfunctioning

  • Can you help with technical problems with the stereo imagry option

    can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3'

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • New with initial problems with Dreamweaver

    I am working on a large project, think of a multimedia-pedia.
    As I wish to do it by years, from 1950 to present, with 7 sub
    pages for each, I will end up with about 500 pages to horse around
    when I am done, which I expect to take a year or so. I have put up
    the first three years to test things and see how search engines see
    it and that kind of thing. It will not be viable of course until I
    am done with 1969 and I will have something to sell, THE SIXTIES.
    If you would like to see the project:
    http://1960.yearthatwas.com
    Perhaps someone could give me a few conceptual ideas on how
    best to do this in the first place...
    I only have a day looking over Dreamweaver but I have run
    into one problem that I need resolved before I can commit to it and
    DELETE that sorryass Frontpage I been messing with for most of ten
    years. :)
    This concerns just HTML at the moment.
    I loaded the 1960 page created in FP into DW.
    I created new tables at the top, moved the content into them
    and deleted the old tables. Hopefully ridding myself of bad old FP
    code.
    There are lots of new things I am having problems with but
    most will be resolved as I move along.
    But this one is stopping me in my tracks
    Design window:
    Returns to add lines between text and text and text and jpgs
    and jpgs and jpgs often do not show properly in IE and FF, and a
    few style formats, like center show differently in IE and FF.
    I can look at the code and the added lines are there, but a
    few never show up in the review.
    I am using
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    If that has anything to do with it.
    Sure FP with WYSIWYG is flaky, but I know how to deal with
    it, do I have to learn new flakyness all over again? :)

    > Sure FP with WYSIWYG is flaky, but I know how to deal
    with it, do I have
    > to
    > learn new flakyness all over again? :)
    >
    There is no such thing as WYSIWYG on the web or in web
    authoring.
    What you need to learn all over again is HTML and CSS, as
    recommended by
    Michael. DW will be a walk in the park with even an
    introductory
    familiarity with these notions.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "rack22" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am working on a large project, think of a
    multimedia-pedia. :)
    > As I wish to do it by years, from 1950 to present, with
    7 sub pages for
    > each,
    > I will end up with about 500 pages to horse around when
    I am done, which I
    > expect to take a year or so. I have put up the first
    three years to test
    > things
    > and see how search engines see it and that kind of
    thing. It will not be
    > viable
    > of course until I am done with 1969 and I will have
    something to sell, THE
    > SIXTIES.
    >
    > If you would like to see the project:
    >
    http://1960.yearthatwas.com
    > Perhaps someone could give me a few conceptual ideas on
    how best to do
    > this in
    > the first place...
    >
    > I only have a day looking over Dreamweaver but I have
    run into one problem
    > that I need resolved before I can commit to it and
    DELETE that sorryass
    > Frontpage I been messing with for most of ten years. :)
    > This concerns just HTML at the moment.
    >
    > I loaded the 1960 page created in FP into DW.
    > I created new tables at the top, moved the content into
    them and deleted
    > the
    > old tables. Hopefully ridding myself of bad old FP code.
    > There are lots of new things I am having problems with
    but most will be
    > resolved as I move along.
    > But this one is stopping me in my tracks
    >
    > Design window:
    > Returns to add lines between text and text and text and
    jpgs and jpgs and
    > jpgs
    > often do not show properly in IE and FF, and a few style
    formats, like
    > center
    > show differently in IE and FF.
    > I can look at the code and the added lines are there,
    but a few never show
    > up
    > in the review.
    > I am using
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > If that has anything to do with it.
    >
    > Sure FP with WYSIWYG is flaky, but I know how to deal
    with it, do I have
    > to
    > learn new flakyness all over again? :)
    >
    >
    >
    >

  • IE shuts down with message problem with flash10e.ocx

    I have a dell Dimension E310. I keep it in top shape. But recently my IE(7) either freezes up and eventually kicks back to desktop or sometimes it comes with a message that IE has encounted a problem with flash10e.ocx and must shut down. I have been on the phone for the last 3 days with Dell Tech Support and they are no help. Can someone on here please help me. This is driving me insane!!

    Hi,
    It seems that you are having issue with Crystal reports Java SDK's.
    Post your question in [Crystal Reports Java SDK forum|SAP Crystal Reports, version for Eclipse;.
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all Java SDK queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Amit

  • Using xml with datagrid - problem with element attributes ...

    Hi,
    When i try to set the datafield in a DataGridColumn to an
    attribute, ex.: @isPermaLink - the value is not printet in the
    datagrid?
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="feedRequest.send()" layout="absolute"
    backgroundGradientColors="[#808080, #c0c0c0]">
    <mx:HTTPService id="feedRequest" url="
    http://kristianthrane.dk/feed"
    useProxy="false" />
    <mx:Panel x="10" y="10" width="475"
    title="{feedRequest.lastResult.rss.channel.title}" id="panel1"
    height="531">
    <mx:DataGrid id="dgPosts" x="20" y="20" width="100%"
    dataProvider="{feedRequest.lastResult.rss.channel.item.guid}"
    height="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="Lande"
    dataField="@isPermaLink" />
    </mx:columns>
    </mx:DataGrid>
    </mx:Panel>
    </mx:Application>
    I hope someone has a tip ....
    Best regards,
    Kristian Thrane

    Hi Kristian,
    I'm with some problems, a bit alike yours, but from what I've seen, I would recomend you to see type errors...does the atribute "isPermaLink" inside the "guid" tag, or "title" tag?
    My problem is the opposite of what you have... I can place tag attributes in a datagrid, but I can't put in the same Datagrid the tag value. But I have no choice since the feed comes from a public webservice.
    My feed is:
    <search ver="3.0">
    <loc id="BRXX1094" type="1">Aveiro, Brazil</loc>
    <loc id="POXX0006" type="1">Aveiro, Portugal</loc>
    </search>
    <mx:DataGrid x="10" y="53" width="365" id="dgLocation" dataProvider="{wSearch.lastResult.loc}" itemClick="callService(event);">
    <mx:columns>
           <mx:DataGridColumn headerText="Localidade" dataField="loc"/> //This doesn't work
           <mx:DataGridColumn headerText="Referência" dataField="@id"/> //This does
    </mx:columns>
    </mx:DataGrid>
    Hope it give you any ideas.
    Beste regards
    Leonel

  • Help with certficates - problems with CSSMERR_TP_NOT_TRUSTED & validating

    I'm having problems with my machine, and it appears to be a certificate problem. The problems first started showing up with codesigning and when trying to re-install XCode. I've been trying to understand things through keychain, but I don't know if what I'm seeing is normal or not.
    I've got two copies of Apple Root CA and Apple Root Certificate Authority in my keychains (one of each in "System", one of each in "System Roots"). I have no idea if that is normal or if that part of the problem. These all show up with "This root certificate is not trusted". I'm assuming that's OK, maybe that's part of the problem? (They are all have trust set to "use system defaults").
    The Apple Worldwide Developer Relations intermediate certificate that I download from Apple doesn't appear to find or trust the Apple Root CA (in keychain, the AWWDR shows "This certificate was signed by an unknown authority, and keychain "evaluate" doesn't find a root certificate, even though Apple Root CA is in the keychain).
    Note that the AWWDR certificate says that it's issuer was Apple Root CA, serial number 25, version 3, but the Apple Root CA certificate says that it's serial number 2, version 3. I'm not sure if that makes any difference.
    The big problem is that because of what I believe to be certificate problems, I'm getting the CSSMERRTP_NOTTRUSTED error reported when I try to codesign or even when I try to install the iPhone SDK.
    I did have my motherboard replaced a couple of months back, but things were working just fine (including codesigning) after that, and suddenly stopped working (I don't know when, I just know that I noticed the problem around Oct 12).
    For what it's worth, the error when trying to install XCode (with iPhone SDK) is:
    10/16/10 12:20:02 PM Installer[1582] Failed install preflight: Error Domain=PKInstallErrorDomain Code=102 UserInfo=0x19dd99d0 "The package “iPhoneSDKTools.pkg” is untrusted." Underlying Error=(Error Domain=NSOSStatusErrorDomain Code=-2147409622 UserInfo=0x1aa22360 "The operation couldn’t be completed. CSSMERRTP_NOTTRUSTED")

    Reinstalling Snow Leopard from the original DVD seems to have cleared up the problem. My Apple Root CA certificate now shows "valid".

  • Mac Book Air with Lion problems with images?

    Since Lion was installed, does Mac Book Air show problems with moving images, as videos and Skype?

    In these forums one does not speculate about the future of Apple products.

  • Billing Document Releasing Problem with COPA

    Hi,
    While releasing the billing document,it is not releasing to accounting and giving the below error log.
    Error Message number -KE/AD713
    Note:
    In the below error log it is saying that to activate the +/- sign in KE4I.But for some billing documents it didnot give any error like below.Why it is asking only for this billing document? Kindly help me.
    Diagnosis
        When condition "ZSCM" (application "V") was transferred to the value field "VV139" in operating concern "AFCO" in Profitability Analysis, the following became apparent:
    1.The condition can take both positive and negative   values
    2.The flag "Transfer values with +/- signs" has not be set in Customizing for value field assignment.
        Inconsistencies in the data could occur as a consequence.
    System Response
        It is not possible to post the document in Profitability Analysis.
    Procedure
        Set the flag "Transfer values with +/- signs" for the condition "ZSCM".
        You should set the flag "Transfer values with +/- signs"  selectively for individual conditions if:
    1.  The conditions can take both negative and positive values (for example, in the case of conditions that describe a transfer price surcharge or a loss deduction).
    2.  The conditions appear several times in a billing document and thus cause a debit posting as well as a credit posting (this is the case, for example, when creating or cancelling reserves).
    By activating the flag "Transfer values with +/- signs", you balance the positive and negative values in a
    condition. You can thereby guarantee that the sum of the negative and positive condition values is displayed as the correct total value in the value field assigned to the condition.
    Caution when in the production system!
        If you have already used condition "ZSCM" to post data in the production system, then the sign in
        Profitability Analysis may differ from the previous sign as a result of the flag "Transfer values with +/-
        signs" having been activated. See the F1 Help documentation on the field "Transfer values with +/-
        signs" or the OSS note 52849. If deviating signs occur, it makes sense to move condition "ZSCM" to a new value field! Contact your system adviser or SAP.
    Supriya

    Hello,
    The answer resides within your question itself.
    Where you have assigned your condition type in log i.e., ZSCM, make sure that you have ticked +/- tick
    IMG ==> Profitability Analysis ==> Flows of Actual Values ==> Transfer of Incoming Sales Orders
    Assign Value Fields
    Where you will find +/- check box. Make sure that you have checked the same.
    Note: That the indicator transfer +/- is not used to compare the different use of plus or minus signs between FI or SD and CO-PA. If you activate the indicator, only the positive and negative values for the condition in question will be balanced. This guarantees that the sum of the negative and positive condition values are displayed as a correct total value in the value field assigned to that condition.
    Tip: In order to perform transfer conditions from the billing documents the same definitions must be established for the vlaue fields in Profitability Analysis and both pricing and condition types must be defined in SD.
    Please also read SAP note 52849 in this regard.
    Regards,
    Ravi

  • Billing due list problem with customized document types

    Dear Team,
    We have created a new Rental contract and Rental Invoice document types by copying the standard ones (MV & FV), while trying to get the Billing due list, unable to get the Rental Invoice type, rather the system is proposing the standard Invoice type (i have already changed the Billing type to the customized one in sales document type).
    Can you please let me know the pre-requisites for the billing due list.
    Regards
    Sreedhar

    Hi,
    Thank you for your response. But, i was not able to implement those oss notes as the current highest support package we are currently using is SAPKB70208, Software component - SAP-BASIS.
    Kindly let me know if you have more inputs.
    Regards,
    Vinitha

  • Problem with validateRegExp (problem with IE and chrome but works for firefox)

    Hi everyone,
    I have a simple af:inputText with an af:validateRegExp in it with pattern "([^$%# ]+([ ]*[^$%# ]+)*)$".
    Now when I enter a very big value in this inputText and finally add a space to it, it gives a proper validation exception in Mozilla FireFox.
    But when I run the same thing in IE/ Chrome the screen hangs and after some time page not responding exception comes. What it is observed in chrome is that after a very long time it gives the proper validation exception even if page not responding error has come earlier. Has anyone faced such kind of problem earlier? Is there any solution for this?
    {code}
    <af:inputText label="Label 1"
                          binding="#{backingBeanScope.backing_datePOC.it1}"
                          id="it1" maximumLength="120">
              <af:validateRegExp pattern="([^$%# ]+([ ]*[^$%# ]+)*)$"/>
            </af:inputText>
    {code}

    Hi Frank,
    Thanks for your reply. I tried checking this pattern in java as well using an validator, in that case the thread got sucked for a bigger length string. So I guess the problem is with expression only. But I dont get one thing, if the problem would have been with expression it shouldnt have worked for smaller length string. But in this case it is working fine with a smaller length string.
    Regards,
    Vipin V B

Maybe you are looking for

  • How do you perform partial word search using PDF Open Parameters?

    Hello, We are using the 'search=' open parameter in the URL string, which open a PDF and automatically searches for a word within the PDF.  It works great for whole word searches. Unfortunately, it does not work for partial word, or phrases. In other

  • My Photo Stream not going to my computer -but shared streams do.

    I think this started when I updated to the newest version of iCloud panel for windows -version 4.0.2- because I had pictures from less than 2 weeks ago in the stream folder on my computer before I did the update.  What I'm seeing is, on my computer (

  • Full Screen Playback + Add Marker Q

    Is there a way to add a marker while watching in full screen? Previously I was able to do this by tapping M as I watched, then I could go back and add any notes to each marker location in the Browser clip or Sequence. Doesn't seem to work with 10.0.5

  • String date to integer

    Need help. Does anybody know how to convert a string date to int.. format of the date is like this(dd-mm-yyyy) example ->15-Aug-1993. I would like to convert the corresponding month to int... like for Jan=1, Feb=2,Mar=3...Aug=8...Dec=12... is there a

  • Changing the MXML of a component at runTime

    Hi there, I need, depending on runTime conditions, to update the surface of a Flex window with a combination of controls. For example I may need to layout this line THIS IS STATIC TEXT #COMBOBOX# THIS IS ANOTHER STATIC TEXT #CHEKBOX# Or this line : #