Attach File to the selected item

Hi all,
To attach file to the Puchase order, i am using
1- BBP_PD_PO_GETDETAIL ( PO Guid )
2- BBP_PD_PO_UPDATE ( E_HEADER + IT_ATTACH  with PO Guid )
3- BBP_PD_PO_SAVE ( PO Guid )
4- Commit
and it works Fine
Now when i want to attach this file to the selected PO Item by making the same prossess it's not working (By passing the PO ITEM Guid into IT_ATTACH )
Am I missing some parameters to attach the file to the selected item  ?
Best regards

Thanks for help!
From my experience I can notice that Apple has an excellent support team, but it doesn't listen it's consumers. This is 3rd generation iPad, but this feature still doesn't exist. I've had a better opinion about this company.
IMHO this feature is a basic function of any other mail program. About 7 years ago I had a simple mobile phone with mail client which supported this function, but costed about 100$. Now I hold in my hands device with price ten times higher but it's native mail client doesn't have this feature.
Different Android, Windows devices allow to do this, but iPad doesn't.

Similar Messages

  • Attaching files to the PDF

    Hi guys,
    I would like to add attachments to the PDF form. I found some tutorial using the menu item with the following code:
    try
    app.execMenuItem("AddFileAttachment");
    catch(e)
    xfa.host.messageBox("Cannot add an attachment: " + e);
    This works fine but not in the Acrobat Reader. For my business case the following two options can be possible:
    a) using the attachment functionality of Acrobat (e.g. using the menu item)
    b) transporting the binary data in the XML content of the PDF form
    To a)
    Is there another programmatical way to attach files to the PDF supported by the Acrobat Reader?
    To b)
    Does someone of you know how to read the binary content of a file using Java Script and adding it into the data XML? With this solution, the data can be extracted using the Adobe Document Service. Would be a fine solution.
    Thanks for your help.
    Thomas

    Hi Paul,
    thanks for you post. Sounds really good. But how can this be done?
    Could you please give me a hint?
    Thanks very much.
    Thomas

  • Changing JList non-editable Font color of the selected items

    Hi All,
    I want to change the font color of non-editable JList's selected items which is not clearly visible to user. And I need to change the font color only the selected item in this scenerio.
    Could you please clarify me?
    <img src="file:///C:/DOCUME~1/sgnanasi/LOCALS~1/Temp/moz-screenshot-4.png" alt="" />

    [email protected] wrote:
    ..I want to change the font color of non-editable JList's selected items which is not clearly visible to user. And I need to change the font color only the selected item in this scenerio.Set a custom [cell renderer|http://java.sun.com/javase/6/docs/api/javax/swing/ListCellRenderer.html] *(<- link)* for the JList.

  • DS 1.3 Charts will not release the selected Item.

    Hello all,
    I have problem with Design Studio 1.3 we developed a couple of dashboards with DS 1.2. Now we upgraded dashboards to 1.3. We used Chart selection functionality to filter values on other charts etc. We also using dynamic visibility if you click on a chart it filters another chart and disappears and brings a new chart. To go back, we used a button to clear filter and make the first chart visible.
    Now, before upgrading after the chart disappeared and clicked on a button to remove the filters, the chart would release the selected item on itself. However, after the upgrade, this won't work because the chart won't release the selected item. It just keeps selecting even after we clear all filters and make it visible.
    I have been searching and trying to find a solution for this, but I couldn't come up with some kind of idea. And in scripts and don't see setSelectedItem or setSelectedValue or reset the selection. etc
    1. Create a button with the script below: (BUTTON_1) This will clear the filter and make the chart disappear.
    DS_2.clearFilter("0PLANT"); //Map DS_2 to another chart
    CHART_1.setVisible(false); //Chart using DS_1
    2. Create another button with the script below: (BUTTON_2) This will set the chart visible.
    CHART_1.setVisible(true);
    3. Click CHART_1 and select item.
    4. Click BUTTON_1 to clear selected filter.
    5. Click BUTTON_2 to make CHART_1 visible again.
    One you click the second button it will set the filter back which was clicked in step 3.
    Does anyone have idea on this? How could I reset the charts' selection?
    Your help will be appreciated it greatly.
    Thanks.

    Hi,
    In Design Studio 1.3  (SP0 & SP1), enhancing functionality was delivered with the new ability of the user to bookmark design studio applications and recall these bookmarks within the application. This resulted in changes to the behaviour of charts wrt selection of chart members....
    As I understand this, the issue here is really around chart selection not persisting in Design studio 1.2, while chart selection is persisted in 1.3 release.
    In 1.2 release, when the original chart is hidden and made visible again , the chart selection is not present when the chart reappears, and does not need to be cleared. In this case the chart is rerendered in its initial state in the browser (no selection).
    In 1.3 release, selection within the chart is now persisted in general, this can be seen when a chart with a selection is hidden and made visible. In this case the chart is rerendered with selected member present in the browser. By clearing this selection within the chart, the user is now firing again the OnSelect event. (This causes the chart to be hidden and data source filtered again).
    The scripting attached to the chart just needs to be modifed slightly to cover this scenario. The result of the getSelectedMember() func call needs to be checked to see if a valid selection is returned.
    For example :
    var temp = CHART_1.getSelectedMember("0BC_TYPE");
    if (temp.text != "") {
          DS_1.setFilter("0BC_TYPE", temp);
          CHART_1.setVisible(false);
          CHART_2.setVisible(true);
    The addition of an "if" statement in this case (marked in bold above), checks that if a member within the chart is not selected, in this case no value ("") is returned, and the Data src is not filtered/charts are not hidden & shown as before.
    So the issue in 1.3 SP1 is in relation to the persistence of the selection within the chart, which when cleared, fires the onSelect event again (resulting in undesired filtering of data src again).
    Hopefully the above scripting will resolve this issue for you....
    Best regards,
    Brian

  • How to get the selected items from listbox

    Regarding listbox i have two questions
    1) I want to get the selected items as per the order in which ihave selected.Presently i'm getting in the ascending order.For example after selcting the 1,2,6 if i select 3 then its giving 1,2,3,6.But i want it in the order 1,2,6,3
    2)I want to select items from a single list box to many other listboxes.(ie) my first selection should goto first,second one to the second listbox and like this.How should i write the logic.
    please give me a suggestion.

    In order to have the selected items line up in accordance to the selection order, please do it one at a time. (That's the limit for that VI)
    If you need more than that (i.e. to regconize which item clicked first and which one comes later), you may have to figure it out ya
    Wish you good luck. Perhaps, someone else has a already made vi.
    Cheers!
    ian.f
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com

  • Open attached file in the same editor(ZCRM_DNO_MONITOR customer program)

    Hi All,
    I wrote a dialog program to simplify the CRM_DNO_MONITOR.  I gave the facility to attach file from the PC(any doc  type .txt ,doc, xls. etc) by calling the functions. I need to give  a facility to open these attached file in the same edit. Please let us know way
    Additionally,I can find the logical and physical document of these attached files
    e. g
    (Doc class       : CRM_L_ORD
    Doccument   : 4CA517D70BE60F7FE1000000AC113F3F
    Doc Class       CRM_P_ORD
    Document        4CA517D80BE60F7FE1000000AC113F3F)
    Attached files successfully by calling the following functions
           objkey = wa_tab-guid .    " (crmd_orderadm_h-guid)
           objtype = 'BUS2000116'.
          CALL FUNCTION 'SO_FOLDER_ROOT_ID_GET
          CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER
         CALL FUNCTION 'BINARY_RELATION_CREATE_COMMIT'
         CALL FUNCTION 'CRM_KW_MIGRATE_GOS' DESTINATION 'NONE'

    Hello ,
    i think you can make use of Clase CL_GOS_MANAGER
    check Sap program which are using this clasee.
    try yourself and let me know if you have any doubts.
    regards
    Prabhu

  • How i can set the selected item of a dropDown component from java code

    Hi
    Thank you for reading my post
    How i can set the slected item of a DropDown component from backing beans java code ?
    it is binded with a database , so one field determine its display and one other field determine its value , I want to set the selected item of this combobox
    In back code i have both value and display values to use them .
    can some one give me some help ?
    Thanks ,

    See code sample 3 at http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/helloweb.html
    See also, the selection components row in the table under http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/helloweb.html
    It says
    One way to preselect items is to call setSelectedValue(Object[]) or setSelectedValue(Object) from the prerender() method. You pass in the return values of the items that you want preselected. Be sure to verify that getSelected() returns null before setting the default options, or you will overwrite the user's selections on a post-back.

  • The 'selected items' color randomly changes and I can't figure out why.

    Hi everybody, I recently upgraded to Firefox 13, which appears to be the most stable browser version so far and I really like it. I have loved Firefox very much, having used it since somewhere between versions 2 and 3.
    After upgrading to version 13 I noticed something that annoys me quite a bit. This may have been present before but I can't remember and I did not notice until now.
    On my computer (Windows 7 x64 Ultimate) I have set the color of the 'selected items' (specifically text) to be lime green text on a slightly off black background. I chose this color scheme because it blends very well with Firefox itself (I have the NASA night launch theme), Windows Explorer, and many web pages that I have changed to a dark theme (using the Stylish browser extension). This color scheme has excellent contrast in areas with black text on a light background, as well as light text on a dark background. It has served me well.
    After upgrading to Firefox 13 I have noticed that if the web page is dark with light text, the 'selected items' color changes to lime green text on a light grey background. (Less frequently, it changes instead to off-black text on a lime green background). I have not been able to isolate the threshold where this change occurs (meaning how dark the website background needs to be /how light the text needs to be for this to happen) nor have I found a solution.
    This problem sometimes extends even to sites that have dark text on a light background: when tabs are switched, with no input fields clicked and the address bar is not clicked. This very page (Firefox support) is apparently vulnerable as well.
    This problem only happens on rendered web pages. Firefox's menus, buttons and toolbars, as well as all other programs and Windows itself, are unaffected.
    I want the 'selected items' to remain as I have set it, and not deviate regardless of the apparent contrast or color scheme of the web page being displayed.
    [Edit #1]: Interestingly, as I was copying the information from about:support I noticed that it is affected as well.
    Any suggestions? Thanks so much, and I am sorry for the long-winded description. tl;dr look at the pictures.
    [http://i.imgur.com/vmLZ6.png selected items]
    [http://i.imgur.com/d8xsa.png example1]
    [http://i.imgur.com/2OE9J.png example2]
    [http://i.imgur.com/1lhvb.png example3]
    [http://i.imgur.com/UWOOp.png example4]

    It is always best to avoid making changes to the selected text colors.<br />
    Firefox uses an algorithm to check if the contrast is sufficient and will swap text and background colors if that test fails.<br />
    *http://mxr.mozilla.org/mozilla-central/source/layout/generic/nsTextFrameThebes.cpp#3349
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=1331845

  • The iPod "TAMI DUGARD's iPod" cannot be synced because there is not enough free space to hold all of the selected items (additional 146.5 MB required). this was from my ipod mini trying to sync and it wont let me sync so... could u help me i really needit

    I really need help because my ipod mini isnt working correctly my mom just gave it to me and The iPod “TAMI DUGARD’s iPod” cannot be synced because there is not enough free space to hold all of the selected items (additional 146.5 MB required). it says this. Over and over when i try to sync it too my itunes what does this mean and its a 4gb

    It means you try to sync an amount of content to your iPod Mini that exceeds for 4 GB, or the amount of space that is available on the iPod.  See this article for more details.
    How to sync music to your iPod when your library is bigger than your iPod storage space
    B-rock

  • How to attach files in the SMTP mail?

    Hi All
    Anyone know how to how to attach files into the mail configured
    with SMTP while changing the workstatus. The SMTP mail is working
    fine, but my requirement is to attach a file which is having static information
    like instructions for users or something like that.
    Please help me on this..
    My Version of BPC is MS 7.X
    Regards,
    Baijuchandran.B

    Have you seen this thread? Not an elegant solution, but it appears to work for some bizarre reason.
    https://community.bt.com/t5/Email/Email-won-t-accept-attachments-error-18-temporary-It-isn-t/td-p/14...

  • Save a attachment file in the shared folder of receiver using ABAP report

    Hi all
    Is it possible to save an attachment file in the folder of receiver's desktop using ABAP report?
    I am using the standard mail sending code to mail the excel file as an attachment.
    Consumer wants that file to be stored automatically in the folder of a shared drive he is using.
    Is it possible?

    You can do that via class CL_GUI_FRONTEND_SERVICES method gui_download. But this is not working in background. Reports running in background cant reach presentation servers.
    If you have XI/PI in place you can set up a scenario for that.

  • How to attach files to the thread we post in this forum?

    How to attach files to the thread we post in this forum?
    I’m wondering why there is no feature that allows attaching files from our hard drives! It is not practical to upload our file first in a certain web to provide it as a link in the post.
    Is there a way to attach our files directly from our hard drive to the post?
    Please, have a look on the screenshot below that shows a forum which includes all the very basic features!
    Thank you for the help
    Best
    Jamal

    Pierre,
    Just a guess on my part, but I would suspect non-image files in this case.
    As Ted points out, that WAS possible early on, and then the capbility to attach non-image files, was actually retained by a certain few forums, though not for long. This change was coincidental with a major spam attack, and at least one disgruntled user attempting to attach some rather nasty "stuff." I do ot know if those events prompted the change, as I was not part of the decision making group, that initiated the change.
    Though 95% of the files that I wish to attach, ARE image files, there are times, where a TXT file would be ideal, say for a crash log, or similar. Now, I can convert that TXT to a PNG, but then one has to work with pixel x pixel dimensions, and some files, like those crash logs, can be rather long.
    Personally, I find the loss of the Attach File (was via a button at the bottom-left of the editing screen) to be a sad comment on the actions of some, on these forums, but then that just reflects life outside of the forums.
    Hunt
    PS - I am glad that you found that little article useful Especially in the PS, PrPro, PrE and Encore forums, screen-caps can tell so very much about what is going on with a person's program, system or their Projects/Images.

  • How to find the selected item in alv grid or table control

    can any one tell me please
    how to find the selected item in alv grid or table control

    In table control, If you goto screen painter and goto table control properties ( f2 ), there is one check-box w/selColumn check that and give column name. Then add that column to your internal table.
    IN PAI
      LOOP AT it_tkhdr.
        FIELD it_tkhdr-sel_row
          MODULE tab_tkhdr_mark ON REQUEST.
      ENDLOOP.
    MODULE tab_tkhdr_mark INPUT.
      MODIFY it_tkhdr INDEX tc_tkhdr-current_line.
    ENDMODULE.                 " tab_tkhdr_mark  INPUT
    here it_TKHDR is internal table sel_row is field for selection
    After that, you can loop at it_tkhdr where sel_row is 'X' to get selected rows.
    regards,
    Gagan

  • How to check the selected items of a selectManyListbox in doDML of an EO ?

    Hello,
    I have a VO based on en EO. During the doDML(UPDATE) of that EO, I would like to check what items of a af:selectManyListbox have been selected.
    How could I get the checked items in the selectManyListbox (which belongs to the ViewController) in the doDML method of an EO (which belongs to the Model)?
    Many thanks

    Hello John,
    I know I cannot access the component directly. This is why I asked my question.
    The real case is rather complex and long to be copied and pasted here.
    Let me simplify it without being too generic.
    The VO is based on a hierarchical SQL query. All its EO attributes are transient. This VO is shown as a Tree in the page.
    Each node of the Tree has a checkBox. During commit (doDML() of the EO to be precise), for each checked node I need to access the selected items of a selectManyListbox in some proper way to perform further operations on the DB (no matter what now). The selectManyListbox is based on a second VO. As you may understand, the problem is that from the EO I don't have a direct access to the selectManyListbox. Also, as far as I know, the VO the selectManuListBox is based on does not have any informations about the selected elements, since the checkBox in the list cannot be associated to the VO. Basically I cannot know what elements have been choosen.
    I hope the problem is clear.

  • The plug-in for the selected item is not installed on your system

    Hello,
    When I want to build an application there is a "!" mark before the application and for  the Installer,  in the Project Explorer under Build Specification.
    When I ask for "explain warning" I got the message "The plug-in for the selected item is not installed on your system"
    Previously it worked well, whats happend?? (during my holyday's )
    Thanks for help, Huub

    Well, something obviously changed. Install any software and/or hardware recently? Using any hardware in your LabVIEW project? Could be the drivers for that hardware got corrupted. Try identifying what you're using and reinstall the drivers.

Maybe you are looking for

  • LOGDUMP utility, more than one filter at a time

    I need to search in a trailfile for a specific transaction and would like to search for an update statement to table XYZ. When I issue the following commands, it only uses the filter for the update statement: Logdump 115 >filter clear Logdump 116 >op

  • I can no longer add epubs or PDFs into iBooks

    I already have a few epubs and PDFs on my computer and wanted to add them to iTunes in order to get them onto my iPad. It used to be easy enough to do. Now it does nothing. I tried to add them via the menu, I tried dragging them as well. I have Maver

  • Verizon Can You Check My Order To Make Sure My Iphone 6 Is In Process? (No Response Yet?)

    I was online right at 3:00am but thanks to a employee discount bug with your site Verizon I could not pre-order until 4am. During checkout it advised a delivery date of 10/07/14 but now it is stating "Order Status Not Available"? Please help me Veriz

  • KM API : Creating External Link with Overwriting feature

    Hi, I am using KM API to create an external link on a KM folder. This is the code which I am using for it.     try       pathRID = RID.getRID(p_parent);       collection = (ICollection)p_ResourceFactory.getResource(pathRID, p_ResouceContext);       c

  • Queries

    I am using flex 3 and ColdFusion. I fill an ADG with an ArrayCollection from a RO call to my cfc. Works great. But my problem is that the query has 2 locations (North or South). So I have a combobox that has the 2 locations North or South. When one o