As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
Null accessors are not supported by this provider.
I don't use MODIFY myself so I cannot really give you any hints about the syntax you're using so I'll assume it is fine.
However, the error message you're getting comes directly from your database (MS SQL) so apparently there is a NOT NULL field in your table you're not sending a value for and the DB is complaining about that.
If you show us what the table structure is plus the contents of its related synonym (masterfile) that will allow us to better spot what may be wrong.
Please don't forget to enclose your code and table structure in "code tags" (check the </> button in the message's toolbar).
-STARTLOAD MODIFY FILE PURCHASED_WATER_TMP FREEFORM PURCHASED_DATE/YYMD FREEFORM PURCHASED_WATER/P33.4 FREEFORM USER_NAME/A10 FREEFORM GROUP_ID/A10 FREEFORM CREATED_DATE/A50 MATCH KEY_COLUMN ON MATCH UPDATE * -* OR Unique Columns in the Segment ON NOMATCH INCLUDE DATA 2012-02-09,43.56,'user','group',&DATEYYMD &TOD, $ END -RUN
Letting MODIFY finish the code may be easy, but its far better to control how you are going to process the data.
You want to insert data, but what you have may update data as well, as it will check for existing keys. Do you want this to happen ?, should you handle existing keys ?.