We're calling an RFC using the SAP BAPI connector and this function has changing parameters on it. I know how to map Import and Export parameters, but I don't know how to do it with Changing Parameters. I tried a * - 1 association with the Response entity but it didn't work. Any help would be appreciated. Thanks!
↧
How to map SAP Bapi Changin Parameters on our Domain Model?
↧
Teamcenter - Failed to get an HTTP response
Hello Community, I'm developing an app that connects to Teamcenter and retrieves all objects from Teamcenter to Mendix Cloud. If I configure the query to retrieve only one type of object (wich represents 10.000 elements) il works. When I configure the query to retrieve all objects (wich representq almost 200.000 elements), the query fails and I get the error : "TeamcenterServiceException: Failed to get an HTTP response". (The query had been created with the Teamcenter Extension) Do I need to change anythong in the query ? Should this problem be resolved on the Mendix the Mendix side, or on the Teamcenter side ? Thanks for your help
↧
↧
Native style: Bottom Sheet widget
Hello everyone, I’m using a bottom-sheet widget but when I open the page; the page opens up empty. and this is the general setting. I want to be something like this.
↧
Running Mx with graddle in a non connected environment
Currently im trying to build a project using Mx 10.12.1 however i cannot start the project as gradle complains that it cannot download its dependency cyclonedx, which makes sense as we do not have direct access to the internet. In order to solve this I enabled custom repositories and added the following maven {
url 'our maven central repo'
}
flatDir {
dirs 'path/to/localfolder/with/plugins'
} I downloaded the jar directly from https://plugins.gradle.org/m2/org/cyclonedx/cyclonedx-gradle-plugin/1.8.1/ and added it to the path/to/localfolder/with/plugins but Mendix sais it can still not find it. What am i doing wrong here? Does the Jar file perhaps need proper naming?
↧
How to dynamically grow a combo-box height
Hi all, I'm struggling to have a combo-box grow dynamically. I managed to have the text wrap as we want it (see screenshot) however, the combo-box is not growing with it We are adding the following class and CSS to the combo-box instance: .combobox_nowrap{
.widget-combobox-input{
height: auto;
& + .widget-combobox-placeholder-text{
white-space: break-spaces !important;
height: fit-content !important;
}
}
} Any ideas? TIA
↧
↧
Teamcenter connector unable to fetch the related object parameters
Hi Team, we have a following data model created in Teamcenter. I have created a similar Data model in Mendix. I created a microflow to fetch the properties of DES-000003 object. I am able to fetch the standard properties but unable to fetch the properties of related object SPDATA-000009 and SPDATA-000008. They are related objects of DES-000003. Thank you for your suggestions.
↧
Body Input of Published REST Call Expects a File
Hi all, We have a published REST service with a POST call, which looks as follows: The issue we are having is that in the SwaggerUI, the input type of our Root-object is a file instead of an object: Any idea on how to change the input from a file to an object? TIA! FYI: The expected JSON is as follows: {
"transactionEntries": [
{
"transactionDate": "yyyy-MM-dd",
"entryType": "Credit",
"subAccount": "accountName",
"contraAccount": "account2Name",
"description": "",
"amount": 1234.56
}
]
} In our modeler we have the following structure: Our import mapping is as follows:
↧
How do I convert a static image to Dynamic Image?
I'm trying to do the Quickstart App but when the guide shows me how to convert a static image to a Dinamyc Image the option when i right clicked didn't appear
↧
Getting error when starting the server(Run Locally) while implementing sapodataconnector
C:\Users\*****\Mendix\*****\javasource\sapodataconnector\utils\ODataClientBuilder.java:153: error: cannot find symbol clientBuilder = clientBuilder.setSSLContext(sslContext); ^ symbol: method setSSLContext(SSLContext) location: variable clientBuilder of type HttpClientBuilderNote: Some input files use or override a deprecated API.Note: Recompile with -Xlint:deprecation for details.Note: Some input files use unchecked or unsafe operations.Note: Recompile with -Xlint:unchecked for details.1 error FAILURE: Build failed with an exception. * What went wrong:Execution failed for task ':compile'.> Compilation failed; see the compiler error output for details. * Try:> Run with --stacktrace option to get the stack trace.> Run with --debug option to get more log output.> Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 22s Please help to resolve
↧
↧
How to test tag interface resolution on a faceplate without instantiating
Is it possible on a Faceplate to test if a Tag is connected to a Tag interface?
↧
Tree Node Configuration
Hi good day, do anyone know how to use or configure the Tree node?
↧
Module: External Database Connector - Snowflake: impossible to connect with a privatekey and password
Hello, I'm encountering issues while connecting a Snowflake database to a Mendix application (version 10.12.1) using the External Database Connector module from the Mendix Marketplace (https://marketplace.mendix.com/link/component/219862?_gl=1*168nms5*_gcl_au*MTU4MTIyNTg2OS4xNzI1NTIxNzYw). I have all the necessary information to establish the connection, except for my PrivateKey which is in (.pem) format. When I paste my key into the module's connection interface using 'connection details' and 'Key Pair', I receive the error: Error: Could not read private key with value passed in connection string.
Error : incorrect private key value or private key format: use ‘\n’ for newlines and double the equals sign.
SqlState:, VendorCode: 270052, QueryId: I have attempted to reformat the key as a single line and replace newlines with '\n', as suggested in the error message and the documentation (https://docs.mendix.com/appstore/modules/snowflake/external-database-connector/). However, I continue to receive the same error. My private key is of type RSA (Proc-Type: 4, ENCRYPTED).
↧
Remove all items form list which is related to an object and commit an empty list
Hello, My app contains a list of questions and a list of answers to these questions. Upon edit of answers I want to overwrite all answers related to the question with new answers. For this I have 2 lists, first which is a list of Answers (Option) and second which is Temporary Answers (TempOption) which I use to store answers until they are saved by the user. Currently in order to overwrite all answers in the main Answers list with new options I do the following: retrieve both lists loop through first and delete each object loop through other and set its association to Question commit TempAnswers You can see how it looks below: My question is: Is there a better way to do this? Can I assign new Options without having to loop through each one? Can I somehow replace options list associated to Question without the need to delete each one?
↧
↧
Path for preparing Advanced Developer Certification
I took the intermediate exam last week, and now I need to prepare for the advanced certification, i have few questions below. What is the ideal amount of time to prepare for the advanced certification exam? How challenging is the exam? For example, how many questions are based on knowledge checks? Will covering the learning path be sufficient to prepare for the exam, considering I have two months of project experience?
↧
Automatically Auto Focus on a text box
Dear Team, How can I automatically focus a textbox in these two scenarios? When one textbox is filled, the next textbox should automatically be focused. A textbox should automatically be focused when the page loads, without needing to refresh the page.
↧
SOS HELP ME PLEASE EMERGENCY
Good day sir/mam. I'm a student and I'm learning on how create a basic mvp app. I had 2 options one of doing front-end in figma and doing the backend work in vs code or doing the full process through Mendix.... as a low code person what would u suggest me to do or is there any better options to try. I'm just a beginner. Can u pls guide me.
↧
Is Native Builder free?
I have a question about the Native Builder that builds my application for distribution and allows me to download an .apk file. If I publish my Mendix application to the Mendix cloud, can I then take that URL and use it to build the app in Native Builder into an .apk file, download that through the QR code, and test the app in that way? And most importantly, is this all available and possible on the free plan of Mendix? I am talking about purely testing purposes, no production, no release on app stores.
↧
↧
found {"result":560,"type":"exception"} when selecting value from drop-down list
i found 560 error when selecting value from drop-down list, and this is series drop-down list. My example.. Drop-down list A ==> soap type, e.g. bar type, liquid type Drop-down list B ==> size, e.g. 160 ml., 250 ml. Drop-down list C ==> packaging , e.g. plastic, sachet Drop-down list D ==> brand Below are scree Error throw when I select drop-down list A, then I can't continue my testing.
↧
Can't open app in studio pro - "KeyNotFoundException"
Hi all, I'm encountering an issue that prevents me from opening an app in Studio Pro 10.12.4. I've searched extensively but couldn't find a solution. I've included the error details below. Has anyone encountered this issue recently or knows of a fix? I'd appreciate any help. Thanks. Error Details: System.Collections.Generic.KeyNotFoundException: The given key 'd042321d-758e-4b04-8a5a-34f1d1c2cb00' was not present in the dictionary. at System.Collections.Generic.Dictionary`2.get_Item(TKey key) at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 136 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 102 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 137 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 102 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 137 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 98 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 137 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 102 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 137 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 98 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConvertFromStorage(IStorageUnit containingUnit, IStorageObject obj, ICachedProperty prop, JToken token) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 137 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.FillProperties(IStorageUnit containingUnit, IStorageObject obj, JObject jObject, ICachedType cachedType) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 98 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructObjectInternal(IStorageUnit containingUnit, IStorageObject container, JObject jObject) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 64 at Mendix.Modeler.Storage.Operations.UnitContentsLoader.ConstructUnitFromContents(IStorageUnit container, Byte[] contents) in Mendix.Modeler.Storage\Operations\UnitContentsLoader.cs:line 39 at Mendix.Modeler.Storage.Operations.UnitLoader.ConstructUnit(IStorageUnit container, IMprUnitData unitData) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 193 at Mendix.Modeler.Storage.Operations.UnitLoader.<>c__DisplayClass16_0.b__0(IMprUnitData unitData) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 163 at Mendix.Modeler.Storage.Mpr.Storage.MprUnitRepositoryBase.ExecuteLoadCommand(IDbCommand command, Boolean loadContents, Action`1 handleUnitData) in Mendix.Modeler.Storage\Mpr\Storage\MprUnitRepositoryBase.cs:line 183 at Mendix.Modeler.Storage.Mpr.Storage.MprUnitRepositoryBase.LoadUnitsBatched(IEnumerable`1 unitIDs, Boolean loadContents, Action`1 handleUnitData) in Mendix.Modeler.Storage\Mpr\Storage\MprUnitRepositoryBase.cs:line 166 at Mendix.Modeler.Storage.Mpr.Storage.MprUnitRepositoryBase.LoadUnits(UnitQuery unitQuery, Boolean loadContents, Action`1 handleUnitData) in Mendix.Modeler.Storage\Mpr\Storage\MprUnitRepositoryBase.cs:line 118 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadUnits(IStorageUnit unit, IEnumerable`1 unitIDs) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 157 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadChildUnits(IStorageUnit unit) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 119 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadChildUnits(IStorageUnit unit) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 150 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadChildUnits(IStorageUnit unit) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 150 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadChildUnits(IStorageUnit unit) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 150 at Mendix.Modeler.Storage.Operations.UnitLoader.LoadChildUnits(IStorageUnit unit) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 150 at Mendix.Modeler.Storage.Operations.UnitLoader.Load[T](IProgressInfo info, Dictionary`2 _knownUnits) in Mendix.Modeler.Storage\Operations\UnitLoader.cs:line 48 at Mendix.Modeler.Storage.Database.Load[T](IProgressInfo info, Dictionary`2 knownUnits, Boolean throwOnUnknownObjects) in Mendix.Modeler.Storage\Database.cs:line 50 at Mendix.Modeler.Operations.ProjectFileLoader.<>c__DisplayClass3_0.b__0(IDatabase database) in Mendix.Modeler.Core\Operations\ProjectFileLoader.cs:line 30 at Mendix.Modeler.Storage.DatabaseManager.<>c__DisplayClass12_0`1.b__0(IDbConnector connector) in Mendix.Modeler.Storage\DatabaseManager.cs:line 77 at Mendix.Modeler.Storage.DbConnectors.SQLiteConnector.<>c__DisplayClass2_0`1.b__1() in Mendix.Modeler.Storage\DbConnectors\SQLiteConnector.cs:line 45 at Mendix.Modeler.Storage.DbConnectors.DbConnector.WithoutTransactionDo[TResult](Func`1 action) in Mendix.Modeler.Storage\DbConnectors\DbConnector.cs:line 53 at Mendix.Modeler.Storage.DbConnectors.SQLiteConnector.Do[TResult](String filePath, Boolean useTransaction, Func`2 action, Boolean forceNewConnector) in Mendix.Modeler.Storage\DbConnectors\SQLiteConnector.cs:line 43 at Mendix.Modeler.Storage.DatabaseManager.Do[TResult](String filePath, Boolean useTransaction, Func`2 action) in Mendix.Modeler.Storage\DatabaseManager.cs:line 73 at Mendix.Modeler.Operations.ProjectFileLoader.Load(IProgressInfo info, String filePath, Boolean debugLogEnabled) in Mendix.Modeler.Core\Operations\ProjectFileLoader.cs:line 26
↧
Retrieve drop down selected Enumeration Value
I want to retrieve the Enumeration value of Drop down which is selected by Current User in a new edit page. How I can do it? logic is as follow if selected Enumeration Value=Logged in user then do task 1 else task 2
↧