Thursday, August 21, 2025

Export and import data through data entity globally meaning with all legal entities

 scenario:- Today in this blog we learn about how to Export and import data through data entity globally meaning with all legal entities 

>> Generally when we create a data project either Export or Import the data project will appear in all legal entities but when we do export or import it will give only data from which legal entity you are doing the process but if you want data to be imported or exported from all legal entities then you need customization

>>Customization at two levels 

1) One drag DataAreaId field from Any datasource in dataentity to fields in Dataentity 

2) Open Data entity properties and change Primary context field to empty , Default is DataAreaID as shown in image below


3) After that do Regenerate and Update staging if the data entity is Customized if it is standard then build is enough followed by Modelbuild and sync 

Thats all Start Importing and Exporting You will see changes 

NOTE:-IF changes are not reflecting please do modify mapping and build sync 

Wednesday, August 6, 2025

To align controls in horizontal in form

 Scenario:- To align controls in horizontal in form 

To do this Please take a group control and add all controls and change property  for group as Arrangement to Horizontal left

>> And if you still want to adjust one control up and other control down then use Heightmode property to "SizeToAvailable" and for other use "SizeToContent"

Tuesday, August 5, 2025

Get Hyper link on form control

 Scenario:- Need a form control Hyperlink, Upon clicking on that link it should navigate to website.

These can be done in two steps

1)Take a command button and in properties change  style from none to CommandLink and give text what ever should be visible on hyperlink 

2) Override clicked method and write logic as below:-

Browser br = new Browser();
br.navigate("
https://manidynamics.blogspot.com", true);

Now open form you will get required functionality. 

That all task completed.

Thankyou!!

change lookup for documenttype in file upload from leave request

 Scenario:- Today in this blog we see how to alter lookup of document type based on document type in leave request form as shown in image be...