I want to create multiple AIF on a single recieving IDOC based on basic type or message type or variant or any other criteria.
Creating two application interface framework on recieving one idoc
655 Views Asked by Sayantan mukherjee At
1
There are 1 best solutions below
Related Questions in INTERFACE
- C++ inheritance, interfaces
- Multiple service contract inter-commnication
- Passing Variables from VBA to R-Script
- Static interface equivalent C#
- What text (in English) should I use when asking the user to overwrite a document?
- Java generic class that contains an instance of implementation of generic interface
- HuggableInterface in PHP and PSR-8
- How do I define constants that must be overridden inside an interface?
- Symfony : is there a best practice about the directories' name including traits and interfaces?
- How to design structure with modifiable fields?
- Why introducing Autocloseable instead of extending the possible exceptions in Closeable
- CI accessing property on interface
- C# list of "Type" that implements specific interface
- ResultTransformer interface in java
- How can I guarantee that a class that implements an interface also extends a class?
Related Questions in ABAP
- second and third line item is NOT updating using `bapi_salesorder_change`
- How to copy a lot of code to a different company
- How to specify a decimal filter in 'select into table where' in ABAP?
- Speedup long running loop in ABAP
- Working with binary data in ABAP
- Delete duplicates in a loop?
- ABAP - cl_gui_toolbar->delete_all_buttons not working
- Not able to LEFT OUTER JOIN three tables
- String template to set the default value of PARAMETER
- Dynamically update row contents via dialog screen
- SAP Eclipse Debugging and Json viewer for variable content
- Reading field before batch data insertion
- sap - abap 'sd_salesdocument_create'
- Minus sign on the left and comma as separation sign
- abap multiple method call
Related Questions in IDOC
- XSLT - Don't display a tag if value = "000000"
- workflow "action menu" popup in Oracle webcenter content(WCC aka UCM) do not show-up in correct position.
- How can I force a request or suppress primary file missing error in UCM/Stellent?
- Outbound OAuth connection in S4Hana on-premise possible?
- Parse SAP IDoc into Java object
- IDoc Beginners tutorial
- Where can I find the documentation for IdocScript for Stellent/Oracle UCM?
- Parsing SAP IDOC files
- End as keyword in Oracle SQL Case statement
- calling a variable in A href URL | encoding
- SAP Connector for Microsoft .Net v3 - SAPIDocSender class missing
- SEGMENT_UNKNOWN error while acessing SAP backend via JCO-connector
- Once I find a string in a file, how can I read all of the lines between two lines in that file
- SAP .Net Connector 3.0 - How can I send an IDoc from a non-SAP system?
- How to change the default credential of hybris data hub
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 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?
If you're asking if an IDoc can trigger 2 AIF interfaces simultaneously, the answer is no.
What you can do is to assign an IDoc to multiple AIF interfaces, and then choose which one to be executed based on the IDoc content.
In
/AIF/CUSTtransaction choosehere you can assign 2 or more interface to a message/idoc type
Then choose
here you can determine which interface to execute when an IDoc is received based on few fields (in this example I'm using Sender partner from control record)
choose the IDoc field used as a condition
choose which value of the field trigger each interface