on ‎2018 Aug 08 9:56 AM
Dear All,
We are using the same sales quote form for our sales operations for different countries & need to submit sales quote in different currencies. Currently our sales quote form is displaying AED, EURO & USD before amount in Total Words which is maintained at Sales Quote.
SALES QUOTE

AED in SALES QUOTE

USD in SALES QUOTE

EURO in SALES QUOTE

Where if i add the currency (GBP or JNY) in Sales quote we are not able to view the same currency in Sales quote form, the same form will be displayed the currency if i add the currency AED, USD & EURO.

Request clarification before answering.
Can you please share the screen of the PDF Form where u r facing the issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Dhruvin,
In the Sales Quote form currency GBP & JPY currencies are not displaying remaining all currencies are displaying.
Example Total in Words : GBP Eight Thousand Fifty-Three And Ninety-four cents, Currency(GBP & JPY) is not displaying remaining all currencies are displaying for sales quote form.

Okay, So basically we need to check in the Form template,
Can you go to Administartor , Business Flexibility -> Form Template
Search for Sales Quote, Country -> Great Britain , Lang-> English.
Open the same in ALD and check whats there , or you can show us also the binding and we can help yoiu 🙂
Hi Rajneeth,
There was no code for GBP and JPY in the XDP file which you sent.
FormQuoteNotification.bdyMain.frmInfoBlock_2.z_TotalinWord::validate - (FormCalc, client)
if(this.rawValue == null | this.rawValue == "")
then this.presence = "hidden"; endif this.rawValue = replace(this.rawValue,"Dollars ","");
this.rawValue = replace(this.rawValue,"Cents","cents");
if(FormQuoteNotification.bdyMain.frmAddInfoBlock.frmInfoBlock.z_Currenzy == "AED")
then this.rawValue = concat("AED ",this.rawValue); this.rawValue = replace(this.rawValue,"cents","fils");
elseif (FormQuoteNotification.bdyMain.frmAddInfoBlock.frmInfoBlock.z_Currenzy == "EUR") then this.rawValue = concat("EUR ",this.rawValue);
elseif (FormQuoteNotification.bdyMain.frmAddInfoBlock.frmInfoBlock.z_Currenzy == "USD") then this.rawValue = concat("USD ",this.rawValue);
elseif (FormQuoteNotification.bdyMain.frmAddInfoBlock.frmInfoBlock.z_Currenzy == "GBP") then this.rawValue = concat("GBP ",this.rawValue);
elseif (FormQuoteNotification.bdyMain.frmAddInfoBlock.frmInfoBlock.z_Currenzy == "JPY") then this.rawValue = concat("GBP ",this.rawValue); endif
in future if you roll out for other countries you need to add this. to e3ach currency.
BR, Dhruvin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.