Multiple Input Ports on BAPI to submit at the same time

Hi
I have looked at previous threads and still not getting this right. When I click the submit button I need it to all go to the BAPI at the same time.
I'm using BAPI SalesorderCreatefromdat2, I need to use at least three input ports.
I have done the following.
-dragged the bapi on the page
-selected the ports required, flipped a port of required
-the for ports I have created 1 form (Order Headr I n Port), 2 tables (Order Itmes In port, Order Partners Port).
-the have connected the form and tables to the bapi, so have three different lines.
-For each one the eventname is *SubmitAll
-Then there is one button,on the action tab I selected custom action,the name is SUBMITALL, Apply To is Self
Is the above correct??
Please let me know, thanks in advance

Hi Basheer
Thank you for your reply.
I have changed the buttons to Action Type "System Action", the field System Action to "Submit Form", the Apply To is "Self"
I however get the error "Please enter sold to party or ship to party"
Can you please help me. I have changed my BAPI to use  SalesorderCreatefromdat1 like yours.
I'm using the following input ports and fields
-Order Header in form, using fields DISTR_CHAN, DIVISON, DOC_TYPE, SALES_ORG
-Order Partners Table in table, using fields PARTN_NUM and PARTN_ROLE
-Order Itmes Table in Table, using fields MATERIAL and TARGET_QTY.
Is this correct? Thank you for the response.

Similar Messages

  • How can I use my IPAD to stream Musik to two Air Port Clients in a network at the same time?

    I want to stream my musik via I PAD to more than one Air Port Clients at the same time. Via MAC it is possible to select "more speaker". In the I PAD I can only select Station 1 or Station 2.

    I opened Airport Utility today and it appears to have been simplified to the point where you can't do much with it these days.
    Yes, welcome to the Fisher Price toy box utility.. where nothing in the way of advanced usage is offered.
    Is there a way to accomplish what I want to do that is reasonably simple?
    You can put time controls onto the offending addresses.
    But if the hackers know anything at all they know how to access the MAC address of the computer and change it.. so the effectiveness of this is limited.
    Change the current setup and password.. You must use WPA2 Personal and I recommend you use a pure alphanumeric password, mix case and numbers of 20 characters or more for your situation.. do not give that password to anyone.. protect the admin password of the TC itself equally well but with a different password. And protect the physical access to the TC from anyone in your home.. because the fact is all security on the TC is an illusion if the TC has open access.
    See how to find passwords here.
    i forgot my password for my router, how can I change them.
    So anyone can discover your passwords without your knowledge and leave no trace on your system.
    If you make no progress.. I suggest replacement of the TC as the main router of your network.. you need something with controls.. and even better controls that allow you to block people.
    The favourite one now is older Netgear WNDR3800 . .you might need to buy from ebay although a few new ones are still around.. alternatively the WNDRMACv2 is simply the same hardware in a white box.. instead of black.
    Load gargoyle firmware onto it.. sorry if I even point to where you can find this info my post will be deleted.. I can say it.. just cannot help further.. so use google.. there are lots of posts and let me assure you this get combo.
    You can continue to use TC at what it does best.. a dumb wireless AP and location for TM backups.

  • Multiple hierarchial structuring for Accounts that apply at the same time to a document

    Use Case:
    There are 2 ways of logically grouping entities for our UCM Accounts permission:
    For external Partner users (one  taxonomy applies) 
    @Corp/Partner1, @Corp/Partner1(Region 1)   are valid accounts that can be assigned to users so that they get access to documents owned by all their Subsidiary companies or specifically their company - Partner in Region 1.
    For internal users (both taxonomy applies),
    @Corp/Region1, @Corp/Region 1/Partner 1(Region 1)   are valid accounts that can be assigned to be users so that they get access to documents owned by all Partners in Region1 or  specifically Partner1  in Region 1.
    @Corp/Partner1, @Corp/Partner1(Region 1)   are valid accounts that can be assigned to users so that they get access to documents owned by all the Subsidiary companies of Partner 1 or specifically Partner in Region 1.
    Question:
    At the document level in UCM, looks like only one Account structure can be tagged. Given that,
    How can we deign this using Accounts so that both taxonomies are supported at the same time to provision security for both internal and external users?
    Do we have to use ACLs (Role Entity ACL component) as that is the only one that seems to be support multiple roles with OR condition? If so, can we totally bypass Accounts to only use Role Entity ACLs without performance impact?

    Hi user11282566
    Please refer http://docs.oracle.com/cd/E23943_01/doc.1111/e10792/c05_security.htm#CSMSP569 and it makes the statement mentioned below
    When accounts are used, the account becomes the primary permission to satisfy before security group permissions are applied. You can also think of a user's access to a particular document as the intersection between their account permissions and security group permissions.
    Ideally, you can use any of the combination. But when you enable accounts, security model gets update like - every content should belong to some security group and account. And account should be the primary condition to satisfy before security group permissions are evaluated. So this might make you different security groups for different context based on your requirement. Please take care of this aspect.
    I've not used Oracle Document Cloud yet, so cant comment on security model. Below links from a-team might provide you some pointers
    http://www.ateam-oracle.com/integrating-with-documents-cloud-using-a-text-editor-as-an-example/
    http://www.ateam-oracle.com/calling-oracle-documents-cloud-service-rest-apis-from-webcenter-content-custom-components/
    If you''ve an instance you can sign-up for oracle document cloud and try some test cases.

  • Prevent multiple users from updating coherence cache data at the same time

    Hi,
    I have a web application which have a huge amount of data instead of storing the data in Http Session are storing it in coherence. Now multiple groups of users can use or update the same data in coherence. There are 100's of groups with several thousand users in each group. How do I prevent multiple users from updating the cache data. Here is the scenario. User logs-in checks in coherence if the data there and gets it from coherence and displays it on the ui if not get it from backend i.e. mainframe systems and store it in coherence before displaying it on the screen. Now some other user at the same time can also perform the same function and if don't find the data in coherence can get it from backend and start saving it in coherence while the other user is also in the process of saving or updating. How do I prevent this in coherence. As have to use the same key when storing in coherence because the same data is shared across users and don't want to keep multiple copies of the same data. Is there something coherence provides out-of-the-box or what is best approach to handle this scenario.
    Thanks

    Hi,
    actually I believe, that if we are speaking about multiple users each with its own HttpSession, in case of two users accessing the same session attribute in their own session, the actually used cache keys will not be the same.
    On the other hand, this is probably not what you would really like, you would possibly like to share that data among sessions.
    You should probably consider using either read-through caching with the CacheLoader implementor doing the expensive data retrieval (if the data to be cached can be obtained outside of an HTTP container), or side caching with using Coherence locks or entry-processors for concurrency control on the data retrieval operations for the same key (take care of retries in this case).
    Best regards,
    Robert

  • Can multiple users work on a Numbers spreadsheet at the same time

    We want to acess and edit a spreadsheet with two users in different locations using iPads. Not at exactly the same time but without having to close out of the app like Excel.

    I've seen changes I've made on my iPad show up on the same document that's been open all the time on my Mac, which suggests it might be possible. However, I've also had a small number of notifications that documents on different devices are not in sync with each other. So while it might have the potential to work, I'd be inclined to think it would be quite unreliable.

  • How can I change the length of multiple lines at the same time?

    This just seems like it should be a no-brainer, but obviously for me it isn't.  I'm trying to change the length of multiple lines, that are at different angles, at the same time, in CS4.  Basically, I design the face of dials used for airplane instrument gauges (like RPM, Torque, etc), and they have gradiation marks (lines) located all around, similar what a clock looks like with the hour and minute gradiation marks (lines).  Is there a way to select all the lines, that I know are the same length, and change it to a different length, that's accurate to the 1/100th of an inch?  It would just be like selecting multiple lines that have all the same stroke, then using the stroke box to change the stroke weight from .025in to .030in.
    I've used the transform box to change the 'height' of a line before, but the line has to be at 90 degrees (straight up and down), and that won't work for the lines that are at, say, a 45 degree angle.
    I hope i'm explaining this in a way that someone will understand. If not, I can sure try to clarify more, or insert the picture so you could see what i'm talking about.
    Thanks for any help you can give!

    OK, after fiddling around with everyone's ideas, I think I finally got it. I knew there had to be something with proportions between W and H, but couldn't figure out the math, until Jacob answered with:
    "If each line must be strecthed from the inner/outer end, you may select each and use the Transform palette, choosing the right Reference Point, multiplying by the proportion in W or H (1.75/1.5), and Ctrl/Cmd clicking."
    Now, I basically did everything above, (but I couldn't figure out what you were talking about with the Ctrl Clicking thing), except after figuring out the right proportion (which ends up being so small you guys would die if I told you the number; the numbers I gave earlier were just an example and much larger than what i'm really working with) I just clicked the little chain next to the W and H boxes to constrain the proportions. I then put the new number (multiplied proportion by whatever was in W) in the W box. The line lengthened perfectly toward the center of the dial, keeping the correct angle!
    And Harron-Thanks for the link to Teri's, It is going to help with some things I do, but most of the dials I design don't have equal distances between each gradiation mark, and the blueprints I work off of usually have exactly what distances that the grad. marks are supposed to be. So, after selecting one of my grad marks that is already at it's correct place, I then use the rotate tool and Alt-Clicking the very center of the dial, I can then put in exactly what distance I want the next grad. mark to be at, I hit copy (instead of OK) and there will be a new grad. mark exactly the correct distance from my original. Then if I want to have the 3rd grad. mark I just hit Ctrl-D and it will copy another mark to the next position. I don't know if you necessarily wanted to know all that, but i thought i'd explain why I like doing it that way.
    A BIG thanks to everyone! I'm really a AI newbie and am the only one at my company that knows how to use it, so I don't have anyone close to ask stupid questions to. So I appreciate all your help!

  • How can i run multiple instances of Photoshop EXE at the same time on windows 7

    Alright. You may ask why do you need multiple ?
    Assume that i have 10000 PSD files in 10 different folders
    I have a script that just save as them as PNG
    And these files are each 3000x3000 px
    My computer has 8 cores and 1 photoshop exe is only using 1 cpu core
    Also i have SSD raid system it has 750 mb read write per second
    So right now i am wasting my time with running only 1 photoshop exe instead of at least 4

    I'm not aware of a way to run multiple instances or different versions of photoshop at the same time on windows.
    Assuming of course they are all installed on the same operating system.
    On mac versions you can running two different versions of photoshop at the same time, but i don't think that's possible on windows where it
    appears that only one version of photoshop can run at a time.

  • Dbua upgrading multiple db at the same time

    hi
    in rac environment is it possible to run multiple dbua to upgrade 2 db's at the same time ? they both share the same rac db home.. i dnt think if its possible to run both from nodea but what if i run one from nodea and one from nodeb? will that work ?

    in rac environment is it possible to run multiple dbua to upgrade 2 db's at the same time ?Yes you can execute two binaries at the same time.
    they both share the same rac db home.. DBUA will upgrade database not ORACLE_HOME so if you are going to upgrade you will stop the database.
    i dnt think if its possible to run both from nodea but what if i run one from nodea and one from nodeb?It will happen because before upgrading you need to shutdown, so it is possible
    will that work ?Yes but very careful .. :)

  • How to submit data from multiple Input Ports in single SUBMIT button  click

    Hi,
    I am in SPS8.
    What exactly steps I need to perform to submit data from multiple Input Ports.
    I couldn't able to submit One input Form and one Input Table to BAPI data service in single SUBMIT button click.
    I debugged the VC application in SPS8.
    While debugging, I found that when I click the SUBMIT button in the Input Form, Only data in that Input
    form are being passed to the BAPI, But not the Table Form data.
    If I click on the SUBMIT button in another Input Table, Only data from that table is being passed to the BAPI, but not the Input form data.
    Essentially I need to submit both of them in one SUBMIT button.
    Thanks,
    Ramakrishna

    Ramakrishna,
    From the word document that you sent to me the steps you are missing to map the appropriate information into the BAPI is first you are not mapping all data rows into the table input port. To do this double click on the input table view and change your selection mode from single to multiple. Then when you click on your link between the BAPI and your input table you will see a new option appears under data mapping "Mapping Scope" select All Data Rows.
    That's the first part of the problem to get the BAPI to recognize both the inputs coming from the form and the table eliminate the submit button from the form. Drag and drop a link from the output port of the table view to the Input port of the BAPI. Double click on the link between the BAPI and the table view and open the expressions editor for the two fields:
    1/ Automatic Source
    2/ SKIP_ITEMS_WITH_ERROR
    On the hierarchical folder structure on the right expand expand the Data Fields node to find the fields from the form and map them accordingly.
    Now when you hit the submit button on your table it should pass the BAPI all the parameters from both the form and the table.
    Hope this helps,
    Cheers,
    Scott

  • Multiple Input ports - Single Form

    Hi,
    I have a RFC which has multiple input ports. How do i use a single form to provide data to all the input ports.
    Regards
    Bharathwaj

    Hi,
    you can create the single form direct, if you pull a line out of the RFC, then the form must be created with the fields. If not, then you have to create it manually and map the fields with the input port.
    Best Regards,
    Marcel

  • Does af:commandButton submit multiple requests at the same time?

    Hi experts,
    I have a question about af:commandButton behavior.
    I have two commandButtons in a page. They are button1 and button2.
    Button1 takes a few seconds to complete its request process.
    So when I click button1, I can click button2 although button1 request is still being processed.
    I checked how ADF faces handled this situation with servlet filter.
    And I saw that button2 request was always submitted after button1 request was completed.
    Due to this behavior, I would assume that commandButton is designed not to submit multiple requests at the same time and guarantees click order.
    However I couldn't found any documents specifying this feature of commandButton.
    If anyone knows it, could you share?
    I know ADF Faces has busyStateListener to prevent user inputs during request round trip.
    But I'd like to make it sure that I don't need to use busyStateListener if I just want to keep processing order.
    Regards,
    Atsushi

    Hi,
    Does anyone know the document specifying the behavior of af:commandButton in case I click two buttons in a page almost simultaneously?
    Any help will be much appreciated.
    Thanks in advance,
    Atsushi

  • How do I open the same ports on an Airport Extreme Base Station for multiple computers at the same time?

    As the title suggests...
    I have a mix of five Mac and PC's at home using an Airport Extreme Base Station as the router.   I need many ports opened on the AEBS for all of the computers- not just one computer.  (for example: three people want to play TF2 on Steam at the same time; each machine needs the correct ports open on the router).   Port forwarding  only allows me to forward a given port to a single IP, yet I need that port open for five differnt IP's, all at the same time. 
    How do I do that on an AEBS?
    In the same way, I have a small office of four iMacs using an old airport with the same exact issue.   I would like to be able to connect to all of them remotely with Apple Remote Desktop, but the port forwarding on the airport only allows a port to forward to a single IP.   I want to be able to tunnel into the office network and log onto any machine behind the Airport extreme... not just a single IP.    I currently have it set up where I can tunnel into the office from my house, I can find the one machine that the port forwarding has been assigned to, I can log on and everything is just fine... with one machine.    How do I open the firewall for the other machines? 
    TL,DR version:  How do you open ports on an Airport Extreme Base Station instead of forwarding ports?   Forwarding ports doesn't work for multiple IP's.  

    You can open a single or multiple ports to a single device or different ports to different devices, but you cannot open the same port to multiple devices via the AirPort Utility for the Apple routers.

  • CFP-DIO-550 open multiple input and output at the same time

    I am trying to read and write at different times with the cFP-DIO-550.  I cant figure out how to read all the inputs at the same time.
    In the Create Tag.vi, I cant figure what to wire to the Item Name input.  I have tried Input 0, and that works, but it is only one input, I need to read all 8.  I have also tried Input All, All, Input 0:8. input 0-8, input 0: Input 8, Input 0 - Input 8, and I always get an error.
    I cant find anything on it in the manual.
    Thanks,
    Kenny

    Normally I would select 'All' using a FP IO point function instead of create tag ( LV 7.0 and up ).   I have noticed that the 'All' is only available if the module is all inputs or all outputs.  It may be that since your module is an IO, 'All' is not available by default. 
    I think you need to create an item in MAX in the Data Neighborhood under the DIO-550 Module and configure it to use all the IO on the module.

  • Can a single AE receive and deliver multiple signals at the same time?

    I've looked through the forums and the AE pdf manual and have not been able to find a definitive answer so far.
    We have a (all Apple) cafe in a remote location with no Apple support and we presently operate wireless music and wireless internet for customer use from one iMac and one AE. The iMac is also our cashier station. We have another iMac for customers who don't have their own laptops. The iMacs switch to screensaver displays promoting the cafe when not in use.
    Our wired TV monitors that are currently not associated with our AE display either satellite TV, cable TV or from DVD player using a manually switched hub with the three separate receivers wired to the hub.
    We want to add streaming TV from the internet to the TV monitors so we will have four sources. I am looking at connecting this internet streaming TV source to the TVs via AE hence I want to also allow the other TV sources to operate via AE. If possible, we would also like to switch in the screensaver from one iMac on a timed basis (or using Apple remote to one iMac) if there is nothing else of particular interest on the TVs.
    The AE has multiple ports that can be expanded using hubs that we can hopefully connect the existing 3 TV sources, and can receive / transmit to multiple computers but can it operate the iTunes, internet distribution, and TV output (with switching TV inputs via the iMac & AE Utility) at the same time or do we need multiple AEs and another computer?

    The AE has multiple ports that can be expanded using hubs that we can hopefully connect the existing 3 TV sources, and can receive / transmit to multiple computers but can it operate the iTunes, internet distribution, and TV output (with switching TV inputs via the iMac & AE Utility) at the same time or do we need multiple AEs and another computer?
    The AirPort Extreme base station (AEBS) does not have a TV or video output.
    The AEBS, just like any other router, supports multiple clients simultaneously. Of course there is always bandwidth limitations for any device. So in theory the AEBS can support all of that. In reality the performance of each service will depend on the bandwidth used by each and the bandwidth available. This is no different than any router.

  • Mulitple controllers and multiple tracks at the same time

    I have multiple keyboard controllers and rack modules. I would like to have each of them individually control their own midi tracks(connected to external rack modules) at the same time, so I can record live performances. Right now I create a track set the port and channel and I can play the desired external module one track at a time, but the second I try to use more than one controller they all play the same module.
    I come from Pro Tools.... and in that program for each channel I am able to select an input port/channel and an output port/channel and it works fine, but in logic I can't seem to select an Input port/channel for the individual tracks, they all seem to be the same. Where or how would I do this so I can streamline my setup?

    http://discussions.apple.com/thread.jspa?messageID=8065879&#8065879
    Eddie

Maybe you are looking for

  • Itunes only showing my first Podcast episode

    I added my podcast feed and after approval only one episode showed up. I have now done two more episodes over the last two weeks and they don't appear in Itunes. Anyone know why? Thanks in advance!

  • XI 2.0

    Hi All, anyone who is working on XI 2.0 please give me some idea of what adapters used in 2.0 and if u have any info regarding IDOC and RFC adapters please provide me... ( as i searched in sdn but i didnt get enough information).. regards Kumar

  • How to view "Log data changes" - TC?

    Hello SDN-Community, i have activated the flag "Log data changes" in se13. Now i want to view the data changes, made in this table. 1. I know there is a transaction to view those changes, only i can't remember.... I trust somebody else does!? 2. Do i

  • ALEAUDIT acknowledgement

    Hi my sender and reciever systems are sap systems, i transfeered a idoc from sender to reciever through xi,i need a acknowledgment in sender system,so i configured the aleaudit configurations, i am getting an acknowledgement generated in reciever sys

  • ALSB service monitoring implementation

    We're in the process of planning an ALSB implementation and we're evaluating it's service monitoring capabilities. By default the monitoring is written to file so my understanding is that once the esb is recycled all metrics will be lost, so what we'