Hi @tbeimel ,
Try to pass the Datasource name by using the input property type table.
for example:
Component Name is: AlfaComponent
Input Property Name: IP_newRessourcename (Type text)
Input Property Name is: IP_TableName (Type is table)
Output Property Name: Op_TablePatch
Create a sample table in IP_TableName don't forget to add your column name "Ressourcenname"
Now write your Patch query like this:
Patch(
AlfaComponent.IP_TableName,
Defaults(AlfaComponent.IP_TableName),
{Ressourcenname: AlfaComponent.IP_newRessourcename}
)
When you add this component to your screen in IP_TableName property pass your actual table name and in IP_newRessourcename pass the dynamic value. Please make sure Ressourcenname column name must exist in your actual table.
If this is the answer for your question, please mark the post as Solved.
If this answer helps you in any way, please give it a like.
@tbeimel