How to open Attachment to a workitem in edit mode ?

Hi all,
How to open Attachment to a workitem in edit mode ?
Example if I attach a FI doc by binding BO BKPF to Attach_objects .. How can I open the attached FI doc in edit mode .
Regards,
Naval bhatt.

if I attach a FI doc by binding BO BKPF to Attach_objects
As Per my understanding that you created a FI DOC by using the BO BKPF , now you want to attach this instance of the BO to the  &_ATTACH_OBJECTS&.......
If this is the case than you should know about the BO SOFM which is used to attach the BO to the Workflow..
First go through the BO SOFM in SWO1.
Secondly for passing the Key fields for the BO SOFM you need to refer to the table SOFM in SE11.
Note: The BO name and the table name both are same SOFM.

Similar Messages

  • How to open attachment on email sent from windows

    how to open attachment sent on e mail from windows onto macbook

    Control-click on the attachment.  You should see these options.  Decide how you wish to save the attachment from the choices presented.

  • How to open attachment in mail

    I am new to Mac. I have been receiving .wmv attachments with some e-mails and do not know how to open them. I double click the icon and just get a bunch of "code" or whatever it is. Is there a way to open these attachments?

    Hello froesgirl:
    Welcome to Apple discussions.
    The other posters are correct. As a bit of background, Microsoft stopped supporting WMV for Macs sometime ago (apparently they have started again, as I just learned). However, they did provide a free link to Flip4Mac that allows WMV files to play in Quicktime.
    This link will give you two options:
    http://www.microsoft.com/mac/products/flip4mac.mspx
    I use Flip4Mac myself and it works very well.
    Barry

  • How to add URLs in apage without using edit mode

    Hello everybody.
    We have Portal 9.0.4.1 under Solaris, and we are just beggining using it :-)
    We created a section for links (to urls) in the home page of each user. We would like our users to add links to their most used pages (for example, metalink.oracle.com), but we do not want them to enter in edit mode, we would like some functionallity like the "add portlet" in the customize option.
    Any help will be very apreciated.
    Thanks in advance.
    Lisandro

    The example is generic and not hardcoded to any region on the page ... but has the same "warning" that Mark mentioned about this example not working in future versions if Oracle changes the URL structure:
    The Add Item example shows how to create a new item type ...adding an item of this type to any region allows you to add content to that region
    The Edit Item example show how to show a edit link or icon next to the item in view mode.
    Add Item
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    This code sample shows how to create an item allows the content contributor to add items to the page group/page/region that the sample item is placed in.
    If you want your content contributor to add items to multiple regions on a page, add the sample item to all regions that you wish to expose this functionality in.
    Step 1: Create a PL/SQL procedure
    Create the following procedure:
    Create or Replace Procedure <schema>.ADDITEM_URL
    p_itemid IN VARCHAR2,
    p_pageid IN VARCHAR2,
    p_siteid IN VARCHAR2)
    as
    v_url varchar2(2000);
    v_region varchar2(2000);
    v_looplink varchar2(2000);
    v_host varchar2(2000);
    begin
    select folder_region_id into v_region
    from portal.wwsbr_all_items
    where id = p_itemid and
    caid = p_siteid;
    if instr(portal.wwctx_api.get_host, ':') = 0 then
    v_host := portal.wwctx_api.get_host;
    else
    v_host := substr(portal.wwctx_api.get_host,
    1,
    (instr(portal.wwctx_api.get_host, ':')-1))
    || '%3A'
    || substr(portal.wwctx_api.get_host,
    (instr(portal.wwctx_api.get_host, ':')+1));
    end if;
    v_looplink := 'http%3A%2F%2F'
    || v_host
    || '%2Fportal%2Fpage%3F_pageid%3D'
    || p_siteid
    || '%2C'
    || p_pageid
    || '%26_dad%3D'
    || portal.wwctx_api.get_dad_name
    || '%26_schema%3D'
    || portal.wwctx_api.get_product_schema
    || '&p_containerpageid='
    || p_pageid;
    v_url := portal.wwctx_api.get_base_url
    || 'portal.wwv_additem.selectitemtype?'
    || 'p_cornerid=' || p_pageid
    || '&p_siteid=' || p_siteid
    || '&p_regionid=' || v_region
    || '&p_looplink=' || v_looplink;
    htp.p('<a href="' || v_url || "><img src="/images/additem.gif"</a>');
    exception
    when others then
    htp.p('error');
    end;
    Once the procedure has been created, grant EXECUTE permission to PUBLIC.
    Step 2: Create a custom item type
    This custom item type will be associated with the PL/SQL procedure created above. Placing an item of this type on a page will give the content contributor something to click on while the page is in view mode to call the add item wizard.
    Go to the Procedures tab of the new item type and associate with PL/SQL procedure.
    Ensure the “Display Procedure Results With Item” checkbox is checked.
    Step 3: Add item of type “Add_Item” to a page.
    1.     Configure the Page Group to allow items of your new type to be added
    2.     Add an item of type “add_item” to your page.
    3.     For the region containing your new item, in the properties, ensure the “Associated Functions” attribute is in the Displayed Attributes list.
    Edit Item
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    This code sample draws an Edit icon for content contributors to click on while the page is in view mode to edit the item with the default Edit Item wizard.
    Step 1: Create a PL/SQL procedure
    Create or Replace Procedure <schema>.EDITITEM_URL
    p_itemid IN VARCHAR2,
    p_pageid IN VARCHAR2,
    p_siteid IN VARCHAR2)
    as
    v_looplink varchar2(2000);
    v_url varchar2(2000);
    v_subtype varchar2(2000);
    v_itemtype varchar2(2000);
    v_catid varchar2(2000);
    v_catcaid varchar2(2000);
    v_parentid varchar2(2000);
    v_host varchar2(2000);
    begin
    select subtype
    ,itemtype
    ,category_id
    ,category_caid
    ,parent_item_id
    into v_subtype
    ,v_itemtype
    ,v_catid
    ,v_catcaid
    ,v_parentid
    from portal.wwsbr_all_items
    where id = p_itemid and
    caid = p_siteid;
    if instr(portal.wwctx_api.get_host, ':') = 0 then
    v_host := portal.wwctx_api.get_host;
    else
    v_host := substr(portal.wwctx_api.get_host,
    1,
    (instr(portal.wwctx_api.get_host, ':')-1))
    || '%3A'
    || substr(portal.wwctx_api.get_host,
    (instr(portal.wwctx_api.get_host, ':')+1));
    end if;
    v_looplink := 'http%3A%2F%2F'
    || v_host
    || '%2Fportal%2Fpage%3F_pageid%3D'
    || p_siteid
    || '%2C'
    || p_pageid
    || '%26_dad%3D'
    || portal.wwctx_api.get_dad_name
    || '%26_schema%3D'
    || portal.wwctx_api.get_product_schema
    || '&p_containerpageid='
    || p_pageid;
    v_url := portal.wwctx_api.get_base_url
    || 'portal.wwv_edit_tab.edititem?'
    || 'p_thingid=' || p_itemid
    || '&p_cornerid=' || p_pageid
    || '&p_siteid=' || p_siteid
    || '&p_subtype=' || v_subtype
    || '&p_itemtype=' || v_itemtype
    || '&p_topicid=' || v_catid
    || '&p_topicsiteid=' || v_catcaid
    || '&p_cornerlinkid='
    || '&p_parentid=' || v_parentid
    || '&p_action=update'
    || '&p_currcornerid=' || p_pageid
    || '&p_language='
    || portal.wwctx_api.get_nls_language
    || '&p_looplink=' || v_looplink;
    htp.p('<a href="' || v_url || "><img src="/images/ed-item.gif"</a>');
    exception
    when others then
    null;
    end;
    Step 2: Associate Procedure with Item Types
    For every item type that you wish to supply an edit icon to show while the page is in view mode, call the EDITITEM_URL procedure created in the step above.
    Step 3: Show Associated Function attribute
    In order for the procedure associated with the item type to execute, you must ensure the region properties are set on the Style/Attributes tab have the Associated Function listed as one of the Displayed Attributes.

  • How to open an URL from Forms in blocking mode?

    Can anyone tell me if it is possible to open a website from within forms in blocking mode? The reason why I have to use blocking mode is that the user has to take some action in the website and has to end that session explicitly with a button on the website. After that, a file is written on the server that is needed for further action. Without that file the process can't go on.
    I use Forms (32-bits) versie 10.1.2.0.2.

    Thanks for your answer.
    Your suggestion is only possible with a timer-trigger (correct me if I'm wrong). And that's the point.... The time the user can act in the website is unlimited. So, how to set up a timer-trigger? Another work around is to make a process that works at some time and searches for the files on the server. But that's not what we want to do.
    Does anyone have another idea?

  • How to open a database object for view/edit using a command (v. 3.2.20.09)

    How can I open a database object for view or edit using a command in Oracle SQL Deveveloper?
    I find browsing or search for object in a large database to be slow and too cumbersome.

    Shift-F4 (pop-up descrribe) on a table name in the worksheet will let you view table details, but there is no quick edit.
    You can use filters on the object browser to reduce the number of visible objects.

  • How to open a photo from iPhoto and edit in photoshopelements 12?

    How do I open a photo to edit in photoshop elements 12 from iPhoto?

    I figured it out....  when you open preferences in iPhoto, advanced, select your external editor, you have to go to PSE12 support files and open the PSE12 editor from that window.  When you do that it works perfectly....

  • How to open pdf in acrobat reader in read mode by default?

    Thanks for your quick feedbacks.

    PDL,
    Am getting the Error "No form is open in the Acrobat viewer" while trying to instantiate fields list inside the form via an AcroForms object. The problematic code snippet is given below
    iPDDoc->Open("PDFFileName")
    iAVDoc->AttachDispatch(PDDoc->OpenAVDoc("PDFFileName")), true);
    ipFormApp->CreateDispatch("AFormAut.App", &OleExc)
    i pFields = new IFields(pFormApp->GetFields());
    The GetFields method is giving error in Acrobat 9 but its working fine in Acrobat 7 and 8.
    Since the AV layer methods are working fine in Acrobat 7 and 8, please let me know why they are not working in Acrobat 9 and if there is any workaround.
    Also, if I use only PD Layer methods, can I access the form fields inside the PDF?

  • EAS is crashing when trying to open a 2GB ASO outline in edit mode

    Hi,
           We have EAS 11.1.2.2. and when we tried to edit an ASO outline which is 2GB in size crashes the EAS server, Everytime we have to re-start the server to bring it back. The xmx is 2048 and xms is 512 for the EAS server.
    Can anyone tell us how to solve this problem.
    Thanks,

    There seems to be a bug in EAS when opening large outlines.  If you look in the tmp directory "C:\Oracle\Middleware\user_projects\epmsystem1\tmp" on my machine you will see that every 5-6 min a copy of the otl file with a randomly generated name gets created.  Something is timing out and EAS trys again with a newly numbered random otl file name - this goes on till you cancel.  The files get left in there forever.
    The solution should be to increase a timeout setting someplace but I have not been able to find it and previous appeals here and on network54 have not yielded any results.
    There is a  work-around however.  Make your outline faster to open.  If the ESSCMDQ utility does not work, try putting the otl file on an ssd drive.  If you do not have one you can try a memory mapped IO trick:  copy the outline someplace.  Then try to open the original again - it will most likely now be sitting in memory and will open up fast enough not to generate the timeout problem.
    Of course delete the copy at some point.
    I also make it a practice to periodically clear out the abandoned junk in the tmp directory - the op system will not allow you to delete any file still in use so just del * (boy does that sound dangerous but it works).
    Now if someone has a better way I would love to know it.

  • How to view NEF (RAW) photos when in editing mode for PSE 9

    When I want to open a NEF photo to edit, all I cannot see the actual photo.  I have to go into another program to view the photos so that I can determine which file name I want to open and edit.

    In the editor, go to Help >Updates and see if it updates camera raw for you.

  • How to maintain the Goods reciepent field in edit mode while SHC creation

    Hi Experts,
    Can any one suggest me a solution, this is the requirement in SRM 5.0 version classic.
    Business wants to keep the Goods recipent field in edit mode instead of in grey mode, so that User can edit and assign someone at the time of creation of shopping cart.
    This is because If i raise a shopping cart i will be goods recpient by default, but business does not want that they want to edit  and assign a person at the time of creation of shopping cart .
    Can it be possible in the standard template.
    If so what has to be done. Please suggest !!!
    Regards
    Srujan.K

    Hi
    Srujan:- while creating a cart you might get a list of good recipient right so you can assign whoever you wish to be a good recipient right. while creatiing a cart good recipient was determined and partner functions are created for good recipient. do you want to edit them again.
    Can we change Goods Recipient after shopping cart is ordered
    nagaraj:- in old srm it helps but srm 550 say no
    http://help.sap.com/saphelp_srm50/helpdata/en/84/a7e3389870c05ce10000000a114084/content.htm
    we can not make default good recipient
    for eg srujan create a cart by default naga become a good recipient . that is old. this requester attribute dont work for dual purpose.
    it uses sfor only on behalf of only
    br
    muthu

  • How to open hidden field in PO

    Hi,
    How to open hidden field info record as edit mode and delete. initially we used info records now we are not using info records, some of the po's already captured info record numbers now when we try to close this PO its hitting error message info record doent exist. when i see in table i can find record number but actually this record was deleted now how to put back hidden field to edit mode and delete this info record.
    Thanks in advance.

    Hi,
    If the PO was created against that Info record you cannot just open up the field and delete the Info record reference. There is integration between the two records and if you look at the previous POs on a non-deleted info record you will see the link that way too.
    So you cannot break the link like this.
    Surely you didn't physically delete the info records? They should have been flagged as deleted and if that was not enough then they should have been archived (in which case you shouldn't be getting this mnessage).
    Have you tried changing the message from an error to a warning (or nothing)? I doubt if this will work for the same reasons as above but it would be worth trying first.
    Steve B

  • How to open *.pdf files in BOXI r2 inbox

    I am scheduling as  *.pdf file for deski report.After scheduling i am getting *.pdf in my inbox.if the report is deski or webi we can use FC_REPORT_ENGINE or WI_REPORT_ENGINE to open the report's using java code.In same way how to open *.PDF file in Inbox?
    Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM
    Edited by: ramkishore kishore on Nov 7, 2008 8:31 AM

    Hi Ram,
    Following information might help you to resolve the issue.
    After logging into Desktop Intelligence, you may be presented with a message stating:
    u201CYou have received 1 document from users"
    Examining the Inbox from within the Desktop Intelligence client shows no objects visible in your Inbox.
    The object in your Inbox is in a format other than Desktop Intelligence format such as, PDF, XLS or other format. Therefore the object is not recognized by the Desktop Intelligence client inbox browser.
    Log in to Info View or the Central Management Console, browse to your Inbox and verify the file name and format that has been sent to your Inbox. The object may be saved, copied, moved or deleted as necessary.
    Regards,
    Sarbhjeet Kaur

  • Vertical scroll in edit mode and Open a complete row in edit mode

    Any help would be greatly appreciated , if someone can share their knowledge/experience on the following two items ..
    1. Can you please help on how to implement vertical movement in  data grid (Using the up and down arrows to move from an editable cell in one row to the same column in the previous/next row) just like using tab to move in the same row, from one editable cell to the next? Please note we are able to implement the user navigation in editable mode in  one   single row and the user tabs from left to right and the cells  render in edit mode without issues.We are trying to implement this in a vertical fashion to have the  datagrid cell rendered in edit mode from one column  in one row to the same column in the next row ..We are tryinng to simulate the same user feel when a user navigates in Excel sheet.
    2.       Is there a way to open a cell in Flex datagrid edit mode by default? I understand that the itemrenderer for that column could be a text input but I don’t always want that cell to be in an edit mode. When the user comes to the screen, it needs to be in an edit mode just as a visual indicator that it can be edited. Once the user finishes editing, the cell can use the default itemrenderer. In other words, how do we fire an edit event on a cell when it is rendered for the first time by default? In nut shell how do you open all fields in the entire row  in edit mode  (rather opening one cell at a time it in edit mode as the user tabs from left to right ) 

    Can anyone help answering the question we have ? Any pointers would be greatly appreciated

  • Issue with opening the Outline in Edit mode

    Hello Gurus,
    I am opening a huge outline in the Edit mode on EAS Console & it's giving me an error "not enough memory to perform this operation", while I am able to open the other small outlines on EAS Console/Same server in the edit mode.
    Is this to do with freeing up Java memory. Will restart of EAS service work in this issue & free up Java memory?
    Thanks in advance.

    Hi RishiI've had problems with opening up the outline in edit mode before. Haven't come across this error no, and I can't find anything on the knowledge base. Try this though...- Check at the Analytic server level for Locks and Locked Objects. If there are any get rid.- "Update Mode" in the Spreadsheet Add-In will cause similar problems by locking data blocks.- All else fails! Reboot serverIf it's something else drop me a line back. I'll be interested to hear whats causing the problem.TaMark

Maybe you are looking for

  • Show/Hide conditional text at a book level

    I am using TCS2 on Windows XP. FM 9.0 p250 I have several files as part of a large FM book. Each file has the same text conditional tags. Can I, at a book level, set my conditions to show/hide, etc. and then update the book? So far, I only know how t

  • Blocking a materila for particular valuation type

    We have a requiremenet where the user need to block the materila for  a particular valuation type ,like if a mterila is maintained for different valuation types and he want to block the materila for one valuation type and system shouldnt allow to cre

  • Imp-0067 when importing on different plattform

    i've 2 systems: A: windows2000, oracle 9.2.0.1.0 B: tru64, oracle 9.2.0.1.0 i exported a user and its tables from host A and transfered the exp-file to host B using binary-ftp. when i launch the imp command on host B i get this error message. Import

  • JTable and Postgres Database

    Hi there Is it possible to use JDBC to connect to a postgres database and then display the output in a JTable? IF anybody can give me some pointers on how to do this...please shout.. any web-sites to look at?

  • BAPI Needed of uploading document in already existing Dispute Case

    Hi,   I need BAPI for  uploading document in already existing Dispute Case... Thanks, Ajit