Installments - first installment with changing value

Hello Experts,
My customer requires to have such an installment scenario.
Let's say we have Material A for $1000 it is sold in 4 installments.
Installement 1 - $250
Installement 2 - $250
Installement 3 - $250
Installement 4 - $250
that's pretty easy and we can use installment payment terms.
the situation is a bit complicated if a customer decides to pay some money in advance, let's say $200
Material A - $1000, 200 paid in advance
Installement 1 - $200
Installement 2 - $200
Installement 3 - $200
Installement 4 - $200
How can i configure sales in installments when customers pay in advance some money in the beginning.
Please advise
thanks a lot for your help
Points will be granted

hi
Your requirement can be fulfilled through down payment scenario
configure in such a way that $200 will be received as advance or down payment and balance amount in instalments
for down payment search the forum you will get an idea how to configure the down payment with instalment plan
regards

Similar Messages

  • My macbook pro was first installed with leopard and bootcamp 3.2. Now i updated to lion. The problem is now that it is not possible to update to bootcamp 3.3. or 4.0. The report: The installation source is not correct. What can i do? Thanks for answer.

    my macbook pro was first installed with leopard and bootcamp 3.2 under windows 7. After update to lion it is no more possible to update bootcamp to 3.3. or 4.0. The report: The installation source ist not correct. What can i do?
    auf Deutsch:
    Auf meinem Macbook pro war Leopard und bootcamp 3.2  unter windows 7 installiert. Nach dem update auf lion kann bootcamp nicht mehr upgedatet werden. Weder auf 3.3. noch auf 4.0. Folgende Fehlermeldung kommt: Boot camp Dienste: Das installierte Produkt stimmt nicht mit der Installationsquelle überein. ... Was kann ich tun?

    It means what it says. The "computer person" formatted it wrongly/ unsuitably. it needs to be formatted again.
    Error "Case-sensitive drives not supported" or similar install error | Mac OS
    Mylenium

  • Variants -- with changing value!!!

    Hi,
    I want to run a program by using the SUBMIT keyword and passing a variant using USING SELECTION-SET <variant name>
    And the variant changes its values for each execution of the SUBMIT statement.
    According to the replies to a similar question posted in this forum, I found that we can have constant input values in a VARIANT and pass the changing values using the WITH keyword.
    is there any other way to achieve this other than the above solution..........
    any help wud greatly be appreciated.!!!!!

    Hmm, you could set up multiple variants and change which variant you call the program with each time you SUBMIT.  Example:
    SUBMIT program_name USING SELECTION-SET variant1 AND RETURN.
    SUBMIT program_name USING SELECTION-SET variant2 AND RETURN.
    (and so on).
    Another way to do it is to specify the fields separately, like this:
    SUBMIT program_name WITH parameter1 = w_field1 AND parameter2 = w_field2
    AND RETURN.
    You can use this same statement multiple times, changing the values of w_field1 and w_field2 between calls (for instance, by putting the submit statement inside a LOOP, ENDLOOP).  I hope this helps.
    - April King

  • Creating spreadsheet with changing values

    I am trying to create a spreadsheet where the result depends on the value of 2 options selected. Option 1 is a list of different TV manufactures. Option 2 will provide a list of model numbers depending on which manufacturer was chosen in option 1 and finally box 3 will show a list of remote control codes depending on what was chosen in option 2.
    My questions are as follows;
    How do you create a further list for option 2 that changes depending on what was chosen in option 1?
    How do you have it so the final result in box 3 shows a list of codes depending on the value chosen in option 2?
    My second question may be answered by the answer to my first question but i'll include it anyway
    I currently have a list created for the manufacturers in option 1.
    Option 1 result is set up (and will be shown) in B5
    Option 2 result is set up (and will be shown) in B9
    And the final result will be shown in B14

    Kona2010 wrote:
    I am trying to create a spreadsheet where the result depends on the value of 2 options selected. Option 1 is a list of different TV manufactures. Option 2 will provide a list of model numbers depending on which manufacturer was chosen in option 1 and finally box 3 will show a list of remote control codes depending on what was chosen in option 2.
    My questions are as follows;
    How do you create a further list for option 2 that changes depending on what was chosen in option 1?
    How do you have it so the final result in box 3 shows a list of codes depending on the value chosen in option 2?
    Here's a solution that gets part way to what you want. Rather than a list of codes in a single cell, though, it presents the list in multiple cells across a single row. A revision to the way data is entered on the lookup table to open the list in a single cell is offered at the end of the notes below the illustration.
    Three table (Select Mfg, Results, and Lookup table) are used. Lookup table may be placed on a separate sheet.
    The second copy of Results (with all rows and columns shown) is provided for the explanation below, and would not be included in your version.
    Select Mfg is a two cell table. A2 is a pop-up menu containing a placeholder entry (---) and the names of all manufacturers represented on Lookup table.
    Results contains a row for each manufacturer
    Column B in each row is a pop-up menu listing model numbers for the models made by that manufacturer.
    Column C compares the manufacturer name in column A (hidden) with the name chosen in A2 of Select Mfg, returning TRUE ifthey match, FALSE if they do not. Formula (in C2):
    =A2=Select Mfg::$A$2
    Filled down the rest of column C.
    Cells to the right of these (columns D to F in the example) lookup the codes for the manufacturer and model number selected. Formula in D2:
    =IF($C,VLOOKUP($B,Lookup table :: $A:$D,COLUMN()-2,FALSE),"")
    Filled down and right.
    The Reorganize dialogue is used to show only the header row of Results and the row with TRUE in column C.
    Select the Results table, Click the Reorganize button to open the dialogue.
    In the “Show rows... section, choose: Column C    is    TRUE
    then click the check box.
    Revision: To show all codes for a given model in a vertical list in one cell, enter the codes for that model in one cell (column B of the Lookup table), pressing option-return after each code.
    eg. for the codes shown in row 4 of the Lookup table, to the right of Model No. K8032, you would type the following into B4:
    2-1option-return+2-2+option-return2-3   (where option-return means press the option key, tap the return key, release the option key)
    The columns for C-2 and C-3 would not be needed in this version.
    Placing the results as requested can be done by inserting the formulas below in the three listed cells on your main table (after making the revision above to the Lookup table and Results table.
    B5:   =Select Mfg :: $A$2
    B9:   =VLOOKUP($B$5,Results :: $A:$D,COLUMN(),FALSE)
    B14: =VLOOKUP($B$5,Results :: $A:$D,COLUMN()+2,FALSE)
    Note; Although the last formula does return the full list of codes for the chosen model, it did not, in my test, automatically resize row 14 to display the whole list as shown in the Results table above. You will need to set the row height to accommodate the longest list that will occur, or adjust it for each list.
    I would recommend taking a close look at VLOOKUP in the iWork Formulas and Functions User Guide. You'll find a link to the guide (and one to the equally useful numbers '09 User Guide) in the Help menu in Numbers.
    Regards,
    Barry

  • How to repeat duplication with changing values?

    Hello all!
    First of all - english is not my first language so I don't really know how to explain this in an easy way (and therefore I don't know what to search for either). Maybe a better topic title is needed as well.
    I made an illustration to show what I need, I guess it's easier to understand than my explanation below...
    QUESTION: I have a circle. I want to make a copy of this circle for, say, 80 % of the original size. I'd like to repeat the duplication so the next copy have the same distance to the second circle as between the first two circles (in other word the percentage would change between tranformations) - and so on.
    Hopefully there is some easy way to achieve this so I don't have to do it manually.
    Thanks in advance for any advice!
    (Btw, I use CS5)

    Thank you for your quick reply! This works! I found out another way to do it (sometimes it seems to help with the thinking process just to start a new topic...); the Transition-tool. The downside is that I cannot insert the distance that I wan't to use, so you're advice may be better.
    Thanks again!

  • JDBC Receiver Adapter with Null Value

    HI,
    I have configured ID for JDBC Receiver. In my communication channel, I already check Integration of Empty String Values = Null Value. However, when I check the result from audit log, it still shows that SAP XI sends the null value to database. In my understanding, it should not send the field which has null value (It shouldn't be included in sql statement).
    I check this with other scenario. With the same check at Integration of Empty String Values = Null Value, it doesn't send null value to database. It happens only with my first scenario.
    Have anyone ever been through this before? Any suggestion please?
    Thanks,
    Pavin

    Hi,
    1. The occurrence is 0...1
    2. This is the first result with null value (Please see field Error)
    UPDATE EXPCRM_T_CustomerProfile SET RequestID=455, RecordNo=1, SAPCustomerCode=0001000344, Error=NULL, Status=2, UpdateDateTime=12/03/2008 13:45:03 WHERE (RequestID=455 AND RecordNo=1)
    Then, I change the option from Null Value to Empty string. This is the result.
    UPDATE EXPCRM_T_CustomerProfile SET RequestID=455, RecordNo=1, SAPCustomerCode=0001000344, Error=', Status=2, UpdateDateTime=12/03/2008 13:46:12 WHERE (RequestID=455 AND RecordNo=1)
    Field Error Change from NULL to '
    The expected result from me is that field Error should not exist at all. Please help.
    Thanks,
    Pavin

  • Replacing the same value in a string with varying values

    If I have a string:
    "%s is the %s I am referring to"
    and - I want to replace the %s occurrences with DIFFERENT values... what's the best way to do this.
    I was thinking parsing it into seperate strings using substr and instr but, I'm not sure if that's overkill or not.
    Replace is ideal but - it replaces every occurrence so - you can state just replace the first occurrence with one value and the second with another (i.e. if the desired result after replacing the above string was supposed to be "This is the string I am referring to"
    Any help is appreciated.
    Thanks

    Hi,
    wtlshiers wrote:
    If I have a string:
    "%s is the %s I am referring to"
    and - I want to replace the %s occurrences with DIFFERENT values... what's the best way to do this.Whenever you have a question, please post CREATE TABLE and INSERT statements for a little sample data, and the results you want from that data.
    Explain how you get those results from that data.
    Always say which version of Oracle you're using (e.g. 11.2.0.3.0).
    See the forum FAQ {message:id=9360002}
    I was thinking parsing it into seperate strings using substr and instr but, I'm not sure if that's overkill or not.Depending on your requirements, you might need to do that.
    Replace is ideal but - it replaces every occurrence so - you can state just replace the first occurrence with one value and the second with another (i.e. if the desired result after replacing the above string was supposed to be "This is the string I am referring to"As you said, REPLACE changes all occurrences. There's no way to tell it (for example) to change only the first one.
    REGEXP_REPLACE, is a lot more flexible. It does have an option for giving a specific occurrence, but you may not even need that feature. You might just want something like
    REGEXP_REPLACE ( '%s is the %s I am referring to'
                , '(.*)%s(.*)%s(.*)'
                , '\1This\2string\3'
                )It all depends on your data and your requirements.
    Are the new values (such as 'This' and 'string') fixed, or can they change from row to row?
    Will you always have 2 (or some known number) of '%s's in the original string?
    Does '%' always signal something that is to be replaced? If not, how can you tell when it does and when it doesn't?
    Does 's' always come right after '%'? If not, what are the possibilites, and what do the different characters signify?

  • Why is the difference in execution speed of the function "SetCtrlVa​l" between constant and changing values so small ?

    In my large application (1 MB exe-file) I am continuously updating a lot of numeric controls with new values. Most of them do not really change their value. Within my search of improving the performance of my application I noticed, that there is only a small difference of the execution speed between a call of "SetCtrlValue" with constant values and calls with changing values. It runs much faster (25 times on my PC), if I get the actual control value with "GetCtrlVal", compare it with my new value an do a call to "SetCtrlVal" only if the current value and the new value are different.
    My questions to CVI-developers is:
    Isn't it possib
    le to do this compare within the function "SetCtrlVal"
    My question to all CVI-users is:
    Does anyone have similar tips to improve the performance of CVI applications ?
    I developed a small test application for this problem, which I can mail to interested users.

    What takes the extra time is the redraw of the control. When you call SetCtrlVal we ALWAYS redraw the control. We wouldn't want to build in functionality to check if the value was the same because that would add additional time to the SetCtrlVal in every case. If you want to do it outside of the loop you can as you have done above. You have a few options. First, keep a previous value variable for the controls that you can use to determine whether to set the control value. I.E.
    int oldVal = 0;
    int newVal = 0;
    if(newVal!=oldVal) {
    SetCtrlVal(..., newVal);
    oldVal = newVal;
    Also, if you set the value of a control through SetCtrlAttribute instead, there is no built in redraw of the control (which is what takes all the time). Using SetCtrlAttribute
    to set the value is very fast, but remember there isn't a built in redraw on the screen to display the new number.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • How to change stored procedure with Table Valued Parameter

    I am not sure how to change the normal stored procedure with Table Value Parameter.Do I have to create a separate Table or do I have to create a datatype. Can you please help me with this
    ALTER PROCEDURE [dbo].[uspInsertorUpdateINF]
    @dp_id char(32),
    @dv_id char(32),
    @em_number char(12),
    @email varchar(50),
    @emergency_relation char(32),
    @option1 char(16),
    @status char(20),
    @em_id char(35),
    @em_title varchar(64),
    @date_hired datetime
    AS
    BEGIN
    SET NOCOUNT ON;
    MERGE [dbo].[em] AS [Targ]
    USING (VALUES (@dp_id, @dv_id , @em_number, @email, @emergency_relation, @option1, @status, @em_id, @em_title, @date_hired))
    AS [Sourc] (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title, date_hired)
    ON [Targ].em_id = [Sourc].em_id
    WHEN MATCHED THEN
    UPDATE
    SET dp_id = [Sourc].dp_id,
    dv_id = [Sourc].dv_id,
    em_number = [Sourc].em_number,
    email = [Sourc].email,
    emergency_relation = [Sourc].emergency_relation,
    option1 = [Sourc].option1,
    status = [Sourc].status,
    em_title = [Sourc].em_title,
    date_hired = [Sourc].date_hired
    WHEN NOT MATCHED BY TARGET THEN
    INSERT (dp_id, dv_id, em_number, email, emergency_relation, option1, status, em_id, em_title,date_hired)
    VALUES ([Sourc].dp_id, [Sourc].dv_id, [Sourc].em_number, [Sourc].email, [Sourc].emergency_relation, [Sourc].option1, [Sourc].status, [Sourc].em_id, [Sourc].em_title, [Sourc].date_hired);
    END;

    It's not clear how you would change the procedure. But assuming that you want to replace the existing scalar parameters with tabular input, this is how you would do it. You first create a table type:
    CREATE TYPE  Insertor_type AS TABLE
        (dp_id                char(32),
         dv_id                char(32),
        em_number            char(12),
        email                varchar(50),
        emergency_relation   char(32),
        option1              char(16),
        status               char(20),
        em_id                char(35),
        em_title             varchar(64),
        date_hired           datetime)
    Then you change the procedure header:
    ALTER PROCEDURE [dbo].[uspInsertorUpdateINF] @tvp Insertor_type READONLY AS
    And finally you change the USING clause:
       USING (SELECT dp_id, dv_id , em_number, email, emergency_relation, option1, status, em_id, em_title, date_hired
              FROM   @tvp) AS [Sourc] ON [Targ].em_id = [Sourc].em_id
    The rest is fine as it is.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Adobe Creative Cloud - Photoshop CC / Photoshop CC (2014) i had first install Photoshop CC with some actualizations , I have install now Photoshop CC (2014) without desinstalling Photoshop CC... I would like stay only with the 2014 version but i don´t fin

    Adobe Creative Cloud - Photoshop CC / Photoshop CC (2014) i had first install Photoshop CC with some actualizations , I have install now Photoshop CC (2014) without desinstalling Photoshop CC... I would like stay only with the 2014 version but i don´t find more the desinstaller of old CC version and the 2 versions takes a lopt of space on my disk... is it normal or is there a necessity to stay with the 2 versions... Now I use only the 2014 version but the old version is always there ????

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not. 
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.

  • Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows Vista Home ( with SP2) constantly reporting that Safari 5.1.2 has crashed ( usual Windows prompt to close program) yet Safari is still running although loading pages slowly. Any one seen this recently ( note no recent install or changes to Windows

    Windows reports that Safari stopped working . Windows Task Manager shows webkit2webprocess.exe  process still running even after I respond to Windows prompt and close Safari ( Safari continues running after this action )

  • Mass changes of Material Master field with different values

    Hi,
    How to change a field in Material Master for more than thousand materials. I think MM17 can only be used for mass changes of materials with same values. I need to upload different values for different materials. Is there any other way to do this.
    Thanks,
    K R Vishnu Kumar

    Hi Kumar.
    I think you have to use LSMW for mass updation for Material Master fields with different values.
    Regards,
    Rahul.

  • How to change startup disk for a 2012 Mac mini with dual HDD and clean installed with Windows 8.1?

    Hi,
    I have a Mac-mini (late 2012 model), originally with Mac OS X Maverick Server installed (with two HDD). Recently, I had clean installed Windows 8.1 on one of the HDD (worked perfectly, just slow) and swapped the other HDD (with Mac OSX) with a SSD. I then cloned the Windows OS HDD in to the new SSD. Now I am trying to boot this Mac mini from this SSD, however, since this Mac mini do not have BIOS for me to change the boot sequence at the startup, is there any one can help?
    Thank you,
    Liusc

    If you boot with the Option key depressed what boot options are shown?
    Also:
    Restart your computer
    After Windows is installed, you can switch between OS X and Windows. Use the Startup Disk preference pane in OS X, or the Boot Camp system tray item in Windows to select your startup disk, then restart your computer
    How to install Windows using Boot Camp - Apple Support

  • Urgent: Formular question: get first/last month value with qty value

    We've got a query result as the following:
    Jan_2007 -- Feb_2007 -- Mar_2007 -- Apr_2007
    0 --- 54 --- 0 --- 3
    23 ---0 --- 12 --- 7
    In the above query result,
    1st row shows the sales quantity in Jan_2007 is 0, in Feb_2007 is 54, in Mar_2007 is 0, and in Apr_2007 is 3.
    2nd row shows the sales quantity in Jan_2007 is 23, in Feb_2007 is 0, in Mar_2007 is 12, and in Apr_2007 is 7.
    We would like to add a new column to get the first/last month value with quantity, e.g., in 1st row, the 1st month value with quantity value (>0) is Feb_2007, and the last month value with quantity value (>0) is Apr_2007. Therefore the 1st month value with qty is Feb_2007 and the last month value with qty is Apr_2007. In 2nd row, the first month value with qty is Jan_2007 and the last month value with qty is Apr_2007. But how to use formular to get the 1st/last month values with qty?
    We will give you reward points!

    Hello Kevin,  
    You can create forumula using [Boolean Operator|http://help.sap.com/saphelp_nw04/helpdata/en/23/17f13a2f160f28e10000000a114084/content.htm]
    IF<Logic Expression> THEN <Expression1> ELSE <Expression2> can also be made using a formula in the form
    You can also use the [AND, OR Logical operators |http://help.sap.com/saphelp_nw04/helpdata/en/23/17f13a2f160f28e10000000a114084/content.htm]to check all the keyfigure columns.
    Thanks
    Chandran

  • Hi there, I have MacBook Air (Mid 2012) with OSX 10.8.2. I want to update to latest OSX but it is saying that I need to first install MBA Flash Firmware Update 1.1. When I try to install this firmware, I am told I should have OSX 10.8.3,can some one help?

    Hi there, I have MacBook Air (Mid 2012) with OSX 10.8.2. I want to update to latest OSX but it is saying that I need to first install MBA Flash Firmware Update 1.1. When I try to install this firmware, I am told I should have OSX 10.8.3, Each one asking other to update first, can some one help me in this regard ?

    If you don't already have a current backup, back up all data, then reinstall the OS.* You don't need to erase the startup volume, and you won't need the backup unless something goes wrong. If the system was upgraded from an older version of OS X, you may need the Apple ID and password you used.
    If you use FileVault 2, then before running the Installer you must launch Disk Utility and select the icon of the FileVault boot volume ("Macintosh HD," unless you gave it a different name.) It will be nested below another icon with the same name. Click the Unlock button in the toolbar and enter your login password when prompted. Then quit Disk Utility to be returned to the main screen.
    There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    If you installed the Java runtime distributed by Apple and still need it, you'll have to reinstall it. The same goes for Xcode.
    *The linked support article refers to OS X 10.9 ("Mavericks"), but the procedure is the same for OS X 10.7 ("Lion") and later.

Maybe you are looking for

  • Need help with adobe flash player 10.2 keeps crashing

    ok i am having a problem with the adobe flash player ten it keeps crashing on firefox ie8 and google chrome operating system is windows xp  32 bit really need help because this has been going on for 3 weeks straight  and i downloaded the adobe flash

  • What is the Use For Top 3 Contributors

    Hi All, What is the Use For Top 3 Contributors in the Forums REgards Vamsi

  • Xsan's cvadmin repquota command BLOCKING???

    Dear list, could it be, that a repquota command is blocking the whole SAN system until finished? The manual only describes this behaviour for "quotacheck". But: I have a XSan System running as an NFS server (three XServes: one as metadata, two as NFS

  • Why does Tomcat cause IE to load Cyrillic language pack? How do I stop it?

    I have found a bug with IE 5.5 and IE 6.0, that if you hit my JSP page running on a Tomcat server, it asks you to load the Cyrillic language pack. If you say sure, and go get the Win2K CD, everything works fine. If you say never bother me with this s

  • Prevent Someone from closing window

    I am currently filling out a form on safari and there is no option to save my work so I will have to leave it up on the screen all day. My younger sibling use the computer too and have already accidentally closed it and have started over 2 times. Is