FT commissions charges in R11
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago #14852
by cvega
FT commissions charges in R11 was created by cvega
Hi Colleagues: I want to get the charges/commissions values in an FT using a VALIDATION ROUTINE. The reason to do this, is the inputter has to be aware of the final amount that will be credited to the credit account. I have to suppose that the charges codes are already in R.NEW and I just want to trigger the routine that calculates this charges. We have R11 Desktop version. Thanks for your help. Regards
Please Log in or Create an account to join the conversation.
- leopoje
- Offline
- Senior Member
Less
More
- Posts: 71
- Thank you received: 0
11 years 2 months ago #14854
by leopoje
If it was so, it might be; and if it
were so, it would be; but as it isn’t, it ain’t. That’s logic... (computerrage)
Replied by leopoje on topic FT commissions charges in R11
Why not try and make use of the field 44 of the FT application, CHARGE.COM.DISPLAY .
If it was so, it might be; and if it
were so, it would be; but as it isn’t, it ain’t. That’s logic... (computerrage)
Please Log in or Create an account to join the conversation.
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago #14856
by cvega
Replied by cvega on topic FT commissions charges in R11
Thanks, but that field does not work as expected, at least in Desktop Version. It does show the message, but it does not show the comm/chrg amounts.
Please Log in or Create an account to join the conversation.
- jpb
- Offline
- Moderator
- retired . . . ¯\_(ツ)_/¯
Less
More
- Posts: 2859
- Thank you received: 649
11 years 2 months ago #14858
by jpb
Replied by jpb on topic FT commissions charges in R11
Dear cvega,
I suppose you haven't tried leopoje's hint correctly - if you set CHARGE.COM.DISPLAY to Y you have to commit the transaction once to get the charges populated, after that remove the Y and commit to store the record.
I suppose you haven't tried leopoje's hint correctly - if you set CHARGE.COM.DISPLAY to Y you have to commit the transaction once to get the charges populated, after that remove the Y and commit to store the record.
Please Log in or Create an account to join the conversation.
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago - 11 years 2 months ago #14863
by cvega
Replied by cvega on topic FT commissions charges in R11
YES, I did that. After I commit a nice message appears next to the field, but the commissions/charges do not. More than that, it removes the previously set charges codes. Do you know what routine should I launch to get this, and the parameters that I should set?. Thanks.
Last edit: 11 years 2 months ago by cvega. Reason: Forgot info
Please Log in or Create an account to join the conversation.
- jpb
- Offline
- Moderator
- retired . . . ¯\_(ツ)_/¯
Less
More
- Posts: 2859
- Thank you received: 649
11 years 2 months ago - 11 years 2 months ago #14864
by jpb
Replied by jpb on topic FT commissions charges in R11
Sure you have default charges and not WAIVE ?
You can try using FT.COMPLETE.XVALIDATION (CURR.NO,R.DEFAULT.COMM, R.DEFAULT.CHARGE)
which should return the desired values but also makes a lot of other stuff.
Another option is using FT.DEF.COMM.CHG(R.COMM.DEFAULT, R.CHARGE.DEFAULT, R.TAX.DEFAULT, COMM.CCY, INPUT.AMT, CHARGE.ACCT.CCY, OTHER.CCY, TOTAL.FOR.COMM.CHG, TOTAL.LOCAL.COMM.CHG, CURR.NO)
Input fields are COMM.CCY, INPUT.AMT, CHARGE.ACCT.CCY, OTHER.CCY and CURR.NO (and for sure R.NEW as the FT).
You can try using FT.COMPLETE.XVALIDATION (CURR.NO,R.DEFAULT.COMM, R.DEFAULT.CHARGE)
which should return the desired values but also makes a lot of other stuff.
Another option is using FT.DEF.COMM.CHG(R.COMM.DEFAULT, R.CHARGE.DEFAULT, R.TAX.DEFAULT, COMM.CCY, INPUT.AMT, CHARGE.ACCT.CCY, OTHER.CCY, TOTAL.FOR.COMM.CHG, TOTAL.LOCAL.COMM.CHG, CURR.NO)
Input fields are COMM.CCY, INPUT.AMT, CHARGE.ACCT.CCY, OTHER.CCY and CURR.NO (and for sure R.NEW as the FT).
Last edit: 11 years 2 months ago by jpb. Reason: mention R.NEW
Please Log in or Create an account to join the conversation.
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago #14865
by cvega
Replied by cvega on topic FT commissions charges in R11
YES, completely sure. There is one CHARGE code defaulted by the VERSION in use. All input fields are filled as required and then the CHARGE.COM.DISPLAY field is moved to YES. The transaction is commited and the message appears to the right of the field, but no value shows, and the CHARGE code is removed. I will try what you just mentioned and comeback to this forum. Thanks.
Please Log in or Create an account to join the conversation.
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago #14867
by cvega
Replied by cvega on topic FT commissions charges in R11
Hi JPB, I'm trying with FT.DEF.COMM.CHG but it does not work, return is zero. I will try now FT.COMPLETE.XVALIDATION but I am concerned about what "other stuff" this routine does. Thanks again
Please Log in or Create an account to join the conversation.
- jpb
- Offline
- Moderator
- retired . . . ¯\_(ツ)_/¯
Less
More
- Posts: 2859
- Thank you received: 649
11 years 2 months ago #14869
by jpb
Replied by jpb on topic FT commissions charges in R11
I haven't expected that it returns something when setting CHARGE.COM.DISPLAY doesn't show you any charges.
Mentioning that the "previously set charges codes" have been removed seems to be an indicator that your charges are locally applied and not by using the default mechanism. If you just want to calculate the amounts related to your " previously set charges codes" you should use CALCULATE.CHARGE (described in "Subroutine Guide").
Mentioning that the "previously set charges codes" have been removed seems to be an indicator that your charges are locally applied and not by using the default mechanism. If you just want to calculate the amounts related to your " previously set charges codes" you should use CALCULATE.CHARGE (described in "Subroutine Guide").
Please Log in or Create an account to join the conversation.
- cvega
- Topic Author
- Offline
- New Member
Less
More
- Posts: 8
- Thank you received: 0
11 years 2 months ago #14905
by cvega
Replied by cvega on topic FT commissions charges in R11
Thanks JPB, I will try the CALCULATE CHARGES. However, after including in my routine several of the INSERTS that one colleague recommended me (i.e. I_F.ACCOUNTS and like 10 more) the FT.DEF.COMM.CHG routine worked, but it didn't return the correct amount for customers with special charges. SO I tried de FT.COMPLETE.VALIDATION and this time I worked. I also had to set two fields that were defined in one of the INCLUDEs.
design very understand difficult A to.
I mean, "a design very difficult to understand". Thanks.
design very understand difficult A to.
I mean, "a design very difficult to understand". Thanks.
Please Log in or Create an account to join the conversation.
Time to create page: 0.097 seconds