Skip to main content

EWM S4 Tableschecktables failed to repopulate in Administer->Setup->ValueMappingconfig throwing error 'Incorrect Syntax '/'

Comments

1 comment

  • Jon Green

    I believe there may be an issue with the / in the table name that would mean that we would need to place [ ] around the table name for the SQL to recognise the table.  If you can raise a support ticket for this so that we can then investigate if this is a defect that needs a patch in the product that would be great.

    If you click on the edit icon for the specific table in question you should be able to edit the SQL statement for the value mapping config.

    Example:

    SELECT MSEHI AS TARGET_VALUE, MSEHI AS LOAD_VALUE, MSEHT AS Description
    FROM  T006A AS C

    change to 

    SELECT MSEHI AS TARGET_VALUE, MSEHI AS LOAD_VALUE, MSEHT AS Description
    FROM  [T006A] AS C 

    1

Please sign in to leave a comment.