Like I know, I can use SearchRestrictions to restrict get operations. But what about insert_update? For instance, I want to remove an opportunity to insert Products with CHECK approvalStatus.
相关问题
- How to invoke Ant in a Jenkins Groovy Pipeline
- Correct locale for Indonesia( “id_ID” Vs “in_ID” )
- What is recipe in SAP Hybris?
- HYBRIS - How components and slots work in JSP file
- How to get config data from local.properties to im
相关文章
- HYBRIS - How components and slots work in JSP file
- How to get config data from local.properties to im
- hybris - Which Spring Controller is serving my req
- How could I reduce the Hybris server startup time?
- Hybris MediaModel how to get Bytes
- Change date format in DTO JSON on returning throug
- Hybris: how to schedule cornjob to work from 7am t
- Hybris addons install / uninstall / concept [close
Search restrictions don't work like that. They restrict queries that are made against the database. How? The condition you add to a search restriction is added to the where clause of the select statement of the query. An INSERT query does not have a where clause. At least not those, that are generated when using impex.
Also impex is not the right tool for your purpose. Impex should only be used to import flawless data. It is just a simpler way of inserting data into a database, just like an insert statement in sql. You don't want data in an impex file that needs further checks.
Just filter those lines, that have undesired values. Then you can import the rest.