Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Gohulan

    Data Extension value of employee

    Try this // Convert the integer tableID to the required DbKey.DbTableID type DbKey.DbTableID tableID = new DbKey.DbTableID(106); // Assuming 106 is the integer value var employeeCustomColumn = this.DataStore.ReadExtensionDataPropertiesByTableID(tableID); // To display or process the...
  2. Gohulan

    Data Extension value of employee

    So, just to clarify—are you trying to retrieve the column name from the extended data rather than the actual value? In your scenario, it should be EmpPfNumber, meaning the output you're expecting from the extension application is the field name (EmpPfNumber), not the employee's entered value...
  3. Gohulan

    Data Extension value of employee

    Hey Mi, Try this it should work, var employeeCustomColumn = this.DataStore.ReadExtensionDataValue("Employee", "Department", this.OpsContext.TransEmployeeID); OpsContext.ShowMessage("Custom Employee Column Value for Current Employee is " + employeeCustomColumn);
  4. Gohulan

    Simphony Extension Application - Add a payment to a check that is not selected "Open" on the workstation

    It's not a possible case... You won't be able to pass it through GUID, if you want to close in this manner then you require to use the TSAPI
  5. Gohulan

    Get Input via Mag Stripe Reader Data to Ops Alpha Request Entry

    I have developed a Simphony Extension Application and I am using Ops.AlphaEntry and Ops.Numeric Entry, how can I control or take the input from mag card swap as well. Please some one help me I am suing the below code at the moment string guestname =...

Part and Inventory Search

Back
Top