I need to find PO and SO using item code through Service Layer, but was not able to find a way to retrieve the items using a contain clause in child items. Any ideas on how to build this query?
SAP B1 - Get Purchase Orders and Sales Orders containing item
879 Views Asked by Geovane At
1
There are 1 best solutions below
Related Questions in SAPB1
- Has anyone tried merging suppliers in SAP Business One?
- SAP B1 WOOCOMMERCE Plugin
- How to remove duplicates in one column
- How to exclude cancelled good receipt P.O
- Golden Arrow Drill Down for A/R Invoice SAP B1
- Error with Opening Balances Internal Reconciliation SAP BusinessOne
- Item is duplicating because of a text line in crystal reports
- SAP B1 Error: (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT
- How to code the functionalities similar to SAP B1 SDK using SAP Business One Webclient API?
- SAP HANA - how to use LEFT LATERAL JOIN
- SAP HANA and Python using hdbcli problem with dates
- SAP B1 SQL Query and selection criteria
- SAP Business One Query - Beginner SQL - SUM of column for unique dates
- Need an SQL query with YEAR and MONTH functions in SAP B1 using Service Layer
- QRCode in Crystal Report
Related Questions in SERVICE-LAYER
- Use Crystal report in an integration flow in SAP CPI
- How to create API to consume SAP B1 Service Layer in SAP BTP using Integration Suite
- Need an SQL query with YEAR and MONTH functions in SAP B1 using Service Layer
- SAP Business One Service Layer Login API net::ERR_SSL_VERSION_OR_CIPHER_MISMATCH error
- Unable to Create Attachment in SAP using Service layer POST method
- ViewModel not bound to a view, used more like a Service. Is it a code smell?
- Should we passing expression to repository layer in ASP.NET Core?
- how to allow the service layer to manage multiple repository layers during insertion
- B1ServiceLayer - get user behind SSO login
- Implementation of ServiceLayer & DataAccessLayer in MVVM design pattern
- Where i should map request dto linked fields
- Does the SAP B1 Service Layer require HANA backend?
- ModelMapper DTO-->Entity. How to skip unconditionally all fields not mapped
- Questions about service class single responsibility in Clean Architecture
- Can helpers methods be placed inside service?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
for sales order you should create view and expose service layer, and get view sl with parameter
1- create view create view ORDERLINEB1SLQuery as select ord.*, r1.ItemCode from ORDR ord inner join RDR1 r1 on r1.DocEntry=ord.DocEntry
2- expose this view in service layer https://....:50000/b1s/v1/SQLViews('ORDERLINEB1SLQuery')/Expose
3- run view with ItemCode parameter https://....:50000/b1s/v1/view.svc/ORDERLINEB1SLQuery?$filter=ItemCode eq 'A00006'