Skip to content

Instantly share code, notes, and snippets.

@miguelcperez
miguelcperez / txt
Created April 19, 2019 05:00
send multidependence values sapui5
/*flavor.Bottler.ExchangeRateCountrySaleNWSP = sap.ui.getCore().byId('input_CTCS1' + country.CountryCode + '_' + flavor.FlavorCode + '_calc').getValue();
flavor.Bottler.PTCUnitLocal = sap.ui.getCore().byId('input_UPTC' + country.CountryCode + '_' + flavor.FlavorCode).getValue();
flavor.Bottler.PTCUnitUSD = sap.ui.getCore().byId('input_UPTC' + country.CountryCode + '_' + flavor.FlavorCode + '_calc').getValue();
flavor.Bottler.PTRBoxLocal = sap.ui.getCore().byId('input_BPTR' + country.CountryCode + '_' + flavor.FlavorCode).getValue();
flavor.Bottler.PTRBoxUSD = sap.ui.getCore().byId('input_BPTR' + country.CountryCode + '_' + flavor.FlavorCode + '_calc').getValue();
flavor.Bottler.NWSPLocal = sap.ui.getCore().byId('input_BNWSP' + country.CountryCode + '_' + flavor.FlavorCode).getValue();
flavor.Bottler.NWSPUSD = sap.ui.getCore().byId('input_BNWSP' + country.CountryCode + '_' + flavor.FlavorCode + '_calc').getValue();
flavor.Bottler.ExchangeRateCountryProduction = sap.ui.g
@miguelcperez
miguelcperez / web.config
Created July 23, 2021 17:23
fix openui5 i18n error in C#
// If your application doesn't recognize i18n, use this tip
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".properties" mimeType="application/text"/>
</staticContent>
</system.webServer>
</configuration>