Using (implementing?) a gui element like the itemlist in the invoice-form

Hi there,
I have to add a list of models (Yamaha SR500,Yamaha XT,Honda XL) selected from a userdefined table to the item form (a matrix or whatever). This list is quite huge, so I have to search in this selectionbox like I can do in the items for an invoice.
I also need to delete these elements from this matrix.
So, it's sth. like the itemcollection of an invoice.
Does anyone know how to get sth. like this ????????
Some sample-code ???
Quite new but willing
Regards,
Holger

Hi Holger,
My first advice is trying to piece your problems. And then ask about details, not an overall solution for your problems.
Then, try to find what you need in the forum. Lots of code is posted.
You could start looking at this two issues:
Code for filliong a matrix from a recordset from Sebastian Danober.
Check this other post with code for adding folder to an existing form.
There are other post in the forum about how to create a form with a matrix, etc.
Regards,
Ibai Peñ

Similar Messages

  • HT4436 We changed the iCloud account on the Mac Book and now we can not use some part of iCloud like Documents, etc on the Mac book to sync to iPad.

    Hi,
    We changed the iCloud account on the Mac Book and now we can not use some part of iCloud like Documents, etc on the Mac book to sync to iPad.
    It says it is not the principal account.
    Regards,
    JG

    The iPad and the Mac need to be signed into the same account, 2 different accounts won't work

  • How do I force a new document at the end of an invoice form?

    I created an invoice form to pull data from an ERP system.  There are parameters that select the invoices based on salesrep#.  I then set up an automatic email that sends invoice copies to salesreps the 2nd day after invoice date.  The invoice copies are sent in 1 PDF attachment and within that attachment can be as many invoices as were created on the date parameter.
    I now have a request that each invoice copy be a separate document so the salesrep can forward that one invoice.  How would I do this while maintaining the automated email delivery?

    Please re-post if this is still an issue to the Business Objects Integration Kits - SAP
    Forum or purchase a case and have a dedicated support engineer work with your directly

  • Will Verizon Be Unlocking the iPhone 5 for International Use with local carriers abroad like they do with the 4S?

    Here is my situation. I am leaving the country on business in a month. Since it is pretty doubtful that an unlocked iPhone 5 will be available for pre-order tomorrow, I'll be buying one at full price under my verizon account (not due for an upgrade yet). Verizon currently SIM Unlocks the iPhone 4S if you meet certain requirements (account in good standing, active 60 days, phone activated on account, etc.) so you can use your iPhone abroad with a local carrier there for cheaper rates. Does anyone think Verizon will do this same procedure for the new iPhone 5? I understand that my new iPhone may not have 4G LTE capability abroad due to hardware limitations on different carrier models, however all new iPhone 5 models have quad band GSM/EDGE and 3G. Would I be able to use this feature if Verizon unlocked my iPhone? It should be noted I am not trying to unlock to use my phone on Tmobile or another US carrier, as with the 4S carriers put a block on this even for unlocked Verizon models. I am looking at this from the standpoint of a traveling business user (and I think there are a lot out there wondering the same thing). Nonetheless I will be preordering the iPhone 5 from Verizon and on release day I will call them and ask if they will unlock it. If they don't I will return it. I'll update my findings here for anyone else curious about this as well.

    Egilbbys21... I am curious how things worked out with getting a nano SIM and your iPhone 5.  Our family will be visiting Manila this summer, and I would like to hear a first-hand account about your phone experiences.  Do you purchase minutes for call/texting?  What about data?  Any feedback you can give from your trip regarding your iPhone usage would be helpful.  Thanks!

  • Is it possible to do something about the heat generation of the phone when using 3G? I would like to know if the new iOS is going to deal with that issue.

    It is a disapointing regarding the heating issue when using the 3G

    Instead of steaming you can just download directly from the cloud.  Don't you see the cloud icon with a downward arrow? You may have already downloaded then then. Turn off iTM and see if the songs are still present.

  • Human Tasks: Create form elements like combobox, radio or checkbox on form

    Hi!
    The creation of above mentioned elements is not the hard part. But how can I get the information back into my BPEL process? Is there a build-in way that I've missed?
    A <select><option></option></select> (aka combobox or dropdown list) marks the selected item by simply writing "selected" into the <option> element. It seems there is no build-in way to get the "selected" or "checked" (for checkboxes) as boolean back into BPEL?
    Any ideas?
    Best Regards
    Sebastian

    Okay, that works for me:
    private String getTableFieldDropdown(Element payload, Form form, String xpath,
    String inloopXPath, String datatype, String refxPath, String valueXPath, String displayXPath) throws Exception {
    Field thisField = null;
    thisField = form.getField(xpath);
    String thisDisabled = "";
    String returnString = "";
    int len3 = PayloadFormGenerator.selectNodes(payload, refxPath, form.getNamespaceMap()).length;
    if (thisField == null || thisField.isEditable())
    thisDisabled = "";
    else
    thisDisabled = "disabled";
    returnString = "<td align=\"left\"><select name=\"" + PayloadFormGenerator.constructName(inloopXPath) + "\" dataType=\"" + datatype + "\" " + thisDisabled + ">";
    for (int i3 = 1; i3 <= len3; i3++) {
    returnString = returnString + "<option value=\"" + PayloadFormGenerator.selectNodeValue(payload, refxPath + "[" + i3 + "]" + valueXPath, form.getNamespaceMap()) + "\" ";
    if (PayloadFormGenerator.selectNodeValue(payload, refxPath + "[" + i3 + "]" + valueXPath, form.getNamespaceMap()).equals(PayloadFormGenerator.selectNodeValue(payload, inloopXPath, form.getNamespaceMap())))
    returnString = returnString + "selected=\"selected\"";
    returnString = returnString + ">" + PayloadFormGenerator.selectNodeValue(payload, refxPath + "[" + i3 + "]" + displayXPath, form.getNamespaceMap()) + "</option>";
    returnString = returnString + "</select></td>";
    return returnString;
    Call this function in your form to create a drop down list: (example for dynamic number of rows where you can select a product in each; for loop not included here - i4 is your for counter)
    <%=getTableFieldDropdown(payload, form, "/ns0:task/ns0:payload/ns1:SalesTaskPayload/ns1:SelectedProductList/ns1:Product[*]/ns1:id", "/ns0:task/ns0:payload/ns1:SalesTaskPayload/ns1:SelectedProductList/ns1:Product["+ i4 +"]/ns1:id", "anySimpleType", "/ns0:task/ns0:payload/ns1:SalesTaskPayload/ns1:ProductList/ns1:Product", "/ns1:id", "/ns1:name")%>
    parameters explained:
    1. payload variable as provided in the auto generated task form
    2. form variable as provided in the auto generated task form
    3. xpath (the subject of selection)
    4. inloopxpath (where your selection should be stored)
    5. datatype
    6. xpath to the list that delivers combobox information
    7. will be concated to 6. -> goes into <option value="{X}">
    8. will be concated to 6. -> goes into <option>{X}</option>
    Cheers
    Sebastian

  • When will Elements 13 be available on the app store?

    Pretty self explanatory. I have credit on my iTunes account, and I figure i'd use it on photoshop elements. 12 is on the app store, but I want the newest version.
    Also, will it be more expensive?

    No, the app store sells Adobe Photoshop Elements Editor, not Adobe Photoshop Elements. It's a special version which has all the usual editor features, but nothing that would require the use of the PSE organizer.
    As for the part you don't understand, every camera in the world has its own raw format, and adobe's plug-in for processing camera raw (ACR) must updated constantly to include the new information for new cameras. In the app store the only way to update is to provide an updated download, so adobe would have to roll a whole new version of PSE every time there's an ACR update (frequent). So they opted to just not update the app store version from what it is when they first post it. Apple won't allow them to have you use help>updates the way you do in a normal version.
    As for mediaDatabase, there is a whole cottage industry of expanding what you can do with PSE by adding stuff to it. Most of these addons install into the Effects panel. To get them to appear you delete that file to force the database to refresh itself and find the new content. The app store version doesn't care about mediaDatabase (at least no app store version so far has done). You can delete that file and it never rebuilds and PSE just runs as it was without it, but it means you can't make new stuff appear in the effects panel or the graphics panel.
    Also, adobe generally makes downloads of outdated versions available for a while (right now you can download PSE 9 and up). However, those downloads require the use of a serial number, which you don't have in the app store version (only your apple ID). When a new version of PSE gets posted in the app store the old version goes away and you're stuck if you need to install it from scratch.
    On the plus side, the app store version is much tidier. Regular PSE strews stuff all over your hard drive and can't ever be copied or migrated after installation, while moving the app store version is like moving most mac programs--just drag it over to the new machine. So even if the download goes away, as long as you have an installed copy someplace you can copy it to a new machine.
    EDIT Also, you pay more for the app store version usually. You can often find the boxed version on deep discount at online retailers and big box stores if you shop around.

  • Which interface would you use to list each element of a vector?

    Which interface would you use to list each element of a vector?

    The laugh's on you, twit! Nobody takes kindly to lazy bums trying to cheat on their homework nor exams. Take a hike loser!

  • I can't use my scanner in Elements 12

    I am unable to use my scanner with Elements 12.  I moved the Twain plug in from the Optional Plug-in folder to the Plug-in folder but no luck  Not in editor or organizer

    Thank you-I looked at that article when I first started this project several hours ago. I called the scanner company and their tech support suggested it.  I moved the Twain Plug in as was suggested but I can’t seem to get the scanner to be recognized by PSE.  Any other suggestions?
    Richard

  • How much data is used uploading photos from element 12 to adobe revel

    how much data is used uploading photos from element 12 to adobe revel

    Rixonruss,
    The size of your photos and videos you mark in Elements for upload depicts how much data is being uploaded. However for download, only small size previews get downloaded first unless you download the originals from Elements whenever needed in any Elements workflows.
    If you have any Revel related queries, they may be answered at the FAQ link http://www.adobe.com/in/products/revel/faq.html
    ~V

  • How to use adobe email in elements

    how to use adobe email in elements 11

    I am referring to the email option of having the photos embedded in the text and not as an attachment.  It is called Photo Mail in Organizer where you add the photos, then choose stationery & border layouts, etc.  I don't have have access to Outlook or any other type of email account.
    The only way for me to send photos direct from Photoshop Elements is by using Adobe email service. I had no problems in earlier versions, but this option does not work in Version 11. When I tried to use the email in version 9 (after I loaded version 11), I kept getting error messages that it was no longer available or supported.
    This option is found in Organizer, Preferences,Shating, Adobe E-mail service (from the email menu).
    Thanks

  • I have Elements 12.  I'm a new user.  Can I use the organizer as a simple viewer of photographs from a file without opening each individual photo up individually like you do with the editor?  Sometimes I just want to look at the pictures.

    Do I use the organizer to use Elements 12 as a simple photo viewer?  Typically with photo viewers, you can access each photo in a file and go from one to the next without opening a specifc file such as with the Editor.  I am new to this.
    Or am I expecting too much from Elements?

    I was digging around with the instructional videos offered at the Adobe site and I believe I have answered my own question.  The key is to import the photos into the Organizer and then it can be used as a simple viewer.  I have always been hesitant to import any of my photos into any kind of "organizer" in the past and always just viewed the photos from the file folder as I wanted.  But the MS viewer is not very handy from my point of view and I always used Photo Impressions in the past on my other computer.  I don't want to download this software again due to all the adware that I expect will be present in the free version.  My virus software will choke on it I'm sure.

  • Can I use SubPanels to display and run multiple executables from the same GUI?

    I have two Labview executables that performs some A/D I/O, each using an independent USB-6008.  I would like to run both of these executables from a single UI.  Is this possible usin SubPanels?  Or some other method?
    I found KB regarding exe's and VI Server but can't seem to get the suggested workarounds implemented.
    http://digital.ni.com/public.nsf/allkb/8545726A00272EB0862571DA005B896C?OpenDocument
    I am using Labview2009
    Thanks
    Dan
    Solved!
    Go to Solution.

    DBerry wrote:
    No, of course I am not sure yet.  I have only begun testing this method. 
    Not sharing common hardware (separate USM-6008s).
    Here is the whole picture:
    I have developed a top-level VI that performs Daqmx IO using a single USB-6008.  The top-level VI references a Project Daqmx Task that points to the desired 6008.  I would like to create a single UI that uses this top-level VI to control twoUSB-6008s simultaneously.  I thought I could build the top-level VI into 2 separate exes, where the only difference between the exes is the hardware it points to (one exe to each of the 6008s).  But I have been unsuccessful at running these two exes within a single UI.  I attempted use subpanels on a tab control to do this but I am unable to obtain a reference to the top-level vis once they have been built into an exe.  I have also tried building a dll and exporting the top-level vi from the dll build but i can't seem to get that to work either.  In both of these cases my Open VI reference function returns errors (Error 1445).  I am aware of the changes in referencing VIs from within an exe/dll since LV8.2 - http://digital.ni.com/public.nsf/allkb/8545726A00272EB0862571DA005B896C
    The link seems to suggest that I should be able to obtain a reference to the top-level vi within the dll but I can't get it to work.
    So I then moved on to the above method (making all the subvis reentrant).  I just haven't figured this all out yet.
    If you have suggestions on other problems I may run into please share.  I think I can eliminate my FGs but haven't gotten back to this yet.
    Thanks
    Dan
    When I am designing apps of the type you described I have kept the ned goal in mind from the begining since of the issue you are mentioning. I also don't want to tell you to throw it all away and start over. So with that in mind I have been looking at your posts and only offering the least destrutive ideas first. With that in mind I would like to invite yo uto look at the code i posted in this thread (reply #18 has a zip).
    That code shows how to realize un-dockable GUI regions but it passes the ref of the top level VI to a reentrant VI it instanciate for each undockable region. It may have enough hints and technique to give you some ideas that will work for you.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • What is the use  implemention of work flow

    Hi guis,
      can u plz tell me what is the uses, u implement a workflow, and also please give the one scenrio on purchase order or invoice or anything, one scenrio explain me.

    Workflow is a tool for automating the business process so that the process itself flows smoothly, without bottlenecks and without dead ends. Critical parts of the process can be streamlined with deadline monitoring and contingency options. Participants are informed of milestones in the process. The process definition itself is powerful enough to allow business re-engineering with re-training and to eliminate the impact of workforce changes on the basic business process.
    SAP Business Workflow is the R/3 tool for handling the process automation within R/3 or between R/3 systems and other systems involved in the business process. It is flexible enough to handle ad hoc processes such as the circulation of an electronic document. It is robust enough to handle mission critical process in the production system such as the creation of a material master.
    The different R/3 applications supply standard workflows for the commonly occurring processes. Once these workflow templates are activated, they are ready for immediate use. A complete set of workflow tools, including the workflow editor and workflow generation wizard, are provided to enhance these standard workflows or create new workflows. These tools are complemented with transactions for monitoring, tracking and the statistical analysis of the processes.
    Because the business process often does not step at the R/3 boundary, various interfaces and third party tools are available for extending the process across systems.
    Workflow is the technique for automating business processes. It is particularly beneficial
    u2022 when different people are involved in different parts of the process
    u2022 when a process only occurs sporadically and the users need to be reminded of what they need to do
    u2022 when the duration of the process is critical and deadlines have to be met
    u2022 when the process definition is likely to change on the fly and retraining users is not possible.
    By automating the process, you free the users from having to know what to do when. Work items are sent to the participants notifying them of what they have to do, and a single click on the notification calls the correct transaction and navigates to the relevant screen.
    When the workflow runs it creates work items which are like e-mails, but
    u2022 they have the advantage that they contain the intelligence needed to execute the relevant task with the correct data when the operational user executes them,
    u2022 they provide their own functionality so that the operational user has access to everything that is useful to improve the flow of the process,
    u2022 they disappear on their own when they have been executed by someone else or made obsolete.
    These work items can be received in the R/3 business workplace, MS Outlook (or any other MAPI compatible client), Lotus Notes, or work item notifications can be distributed by e-mail.
    SAP Business Workflow:
    u2022 accelerates the workflow across applications, functional areas, organizational units, and time periods,
    u2022 supplements the integrated management of processes in the SAP System with individually tailored options for automating and actively controlling business and communication processes,
    u2022 combines integrated organizational management with flexible assignment of tasks and responsibilities to locations, positions, jobs, groups, or individuals,
    u2022 actively supports a quick implementation of workflow technologies through predefined workflow templates, Workflow Wizards and flexible adjustment options,
    u2022 integrates every employee in the value chain by providing a versatile integrated inbox ("universal inbox") at their work centers that can be configured individually,
    u2022 provides a Workflow Information System that is the foundation for process change management and continuous business engineering,
    u2022 was designed to be a change-management tool,
    u2022 simplifies continuous business engineering and process change management with user-friendly tools for defining and dynamically changing workflow tasks
    u2022 conforms to the workflow standards of the Workflow Management Coalition (WfMC)
    u2022 interfaces to other mail clients such as Lotus Notes and MS Outlook
    Check these links.
    http://www.sapgenie.com/workflow/index.htm
    Link workflow business objects to your collaboration tasks!!
    http://help.sap.com/saphelp_nw04/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw33/helpdata/en/92/bc26a6ec2b11d2b4b5006094b9ea0d/content.htm
    http://help.sap.com/saphelp_bw31/helpdata/en/8d/25f94b454311d189430000e829fbbd/content.htm
    http://www.sap-press.com/product.cfm?account=&product=H950
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    Hope this resolves your query.
    raj

  • I am trying to use my adobe premiere elements 12 and when I go to click on a "new project" it takes me to the sign in page. Once I type my information in and click on "sign in" a little 'thinking circle' pops up and it just keeps spinning

    I am trying to use my adobe premiere elements 12 and when I go to click on a "new project" it takes me to the sign in page. Once I type my information in and click on "sign in" a little 'thinking circle' pops up and it just keeps spinning but it never ends up doing anything. Please help me with this issue. I really need to get this project started like yesterday. Thank you.

    dplum12
    What computer operating system is your Premiere Elements 12 running on? Did you have the opportunity to update 12 to 12.1 Update yet using an opened project's Help Menu/Update? If not, please do so when you get the opportunity.
    For now I will assume that your computer is Windows 7, 8, or 8.1 64 bit. Please try the following suggestions to overcome your Premiere Elements Sign In issue.
    http://www.atr935.blogspot.com/2014/04/pe12-premiere-elements-12-editor-will.html
    and, if you get any messages about Internet connect and the computer clock, please review the following
    http://www.atr935.blogspot.com/2014/04/pe12-sign-in-failure-connect-to.html
    Please let us know the outcome.
    Thank you.
    ATR

Maybe you are looking for