How To Directly Add Attachments to E-Business Suite Entities Without Using The Managed Attachments Window

How To Directly Add Attachments to E-Business Suite Entities Without Using The Managed Attachments Window? any option?

user11016624 wrote:
How To Directly Add Attachments to E-Business Suite Entities Without Using The Managed Attachments Window? any option?
Please see:
http://www.oraclebusinessapps.com/2008/04/28/load-pdf-file-attachment-using-api/
http://www.oracleerpappsguide.com/2011/04/attachment-in-oracle-application.html
http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_ATTACHED_DOCUMENTS_PKG&c_owner=APPS&c_type=PACKAGE
Thanks,
Hussein

Similar Messages

  • How can i add my outlook email to my ipad without useing the Exchange Service?

    Please help me in this, How can i add my outlook email to my ipad without useing the Exchange Service?

    I'm afraid you've posted in the wrong place. This is a technical forum around a particular product called 'SharePoint'. This does talk to Exchange and Outlook in places but we don't specialised in either of those. You should have a look for one of the
    generic Outlook support forums or contact your IT department if it's a work related account.

  • How do I transfer itunes music to my iphone 4 without using the restore from this backup function?

    How do I transfer itunes music to my iphone 4 without using the restore from this backup function?  I cannot use the back up function as have been advised that therer are bugs in it and restoring it back to my phone will bring the bugs with it and phone will be back to apple again as will start playing up again.  But I need the music.  Whn I plug it in laptop and go to itunes icon it gives me 2 options:  Set up as new iphone? OR Restore from backup.
    Do I pick set up as new phone?  I dont know as the guy at the genius bar told me there would be an option asking if i want to sync itunes only...but there isn't.

    Set up as New and then... Re-Sync your Content from iTunes.
    SYNCING with iTunes
    See here  >  http://support.apple.com/kb/HT1386
    From Here  >  http://www.apple.com/support/iphone/syncing/

  • How do i re-download system preference onto my computer without using the snowlepord disc, how do i re-download system preference onto my computer without using the snowlepord disc

    how do i re-download system preference onto my computer without using the snowlepord disc, how do i re-download system preference onto my computer without using the snowlepord disc

    Do you mean the System Preferenes application?
    If so, you should be able to restore it from your backups.
    If you don't have backups:
    If your Mac came with Snow Leopard, call AppleCare.  They'll send a replacement set of discs for a nominal fee.
    If it didn't, you can still get the Retail Snow Leopard discs for $30.
    Then get a good external HD (or Time Capsule) and start making regular backups.  Hard drives fail;  other things go wrong;  and laptops get lost or stolen.  Without good backups, you risk losing all your data.
    You might want to review the Time Machine Tutorial, and perhaps browse Time Machine - Frequently Asked Questions.

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • How do you add calculation columns to a table Region by using the Footer?

    I have a requirement to add some aggregate metrics at the bottom of my "tableRegion". The "TotalValue" property value for the table is not going to work for me since I the data I'm calculating is more complicated then doing a simple "sum".
    My first try (simple test case) was to use "OATableFooterBean". However, when it tries to find the table bean, it comes back as "null":
    if (empDetails != null) {
    OATableFooterBean tblFooter =(OATableFooterBean) empDetails.getFooter();
    if (tblFooter != null) {
    tblFooter.setAttributeValue("EmployeeName", "Merit Inc Target/Budget");
    I'm guessing it is due to not defining a "footer" region for my "table" region. When I click on the "Table" region, then due "New", I dot see "Region" listed as an option. So my question is how do I add a region "footer" to my "table" region? Once I have that, I'm sure it will solve the "null" exception I'm seeing for trying to get the table footer in the above code.
    Thanks

    Hi,
    For this create a transient attribute in the VO.
    Perform your required logic on this new transient attribute.
    Now create a footer region and create a styledtext and assign this transient attribute.
    Regards
    Sridhar

  • If i have downloaded ( different ) apps in two iphones how can i add new apps in either of them without losing the older ones?

    i have two iphones 3g one at 4.1 and other at 3.1.3.....i have downloaded through itunes 30 apps in one and 55 different apps in other .......now how can i add 10 more apps in either of them without losing the previous apps .....if i don't have the previous apps downloaded now in my laptop..................?

    You can download the Apps on other devices by logging into the App Store with the ID you downloaded the App with

  • How do I transfer bookmarks from one computer to another without using the sync feature?

    I have used the Belkin transfer cable which did not transfer the bookmarks. I can't find them on my C Drive. I'd like to transfer them manually using a thumb drive but can't without locating the file with the bookmarks.
    Firefox and its bookmarks are on the original computer. At this time I can't use the synch function, but must manually transfer the bookmarks. How do I recognize in the files and copy on an external device and then transfer

    Ctrl+Shift+B will open the show all bookmarks window
    and on the top of that it has an import/export menu using this you can export all your bookmarks into a file either as html or as a json
    you can then do the reverse on another PC
    does that help?

  • How do I add a signature/watermark to my pictures without using Digimark?

    I want to add my name on my pictures but I don't need to track them or follow them. If someone edits my name out oh well. I just want it for when I put it on the internet or give it to my friends and family.

    Crafting Actions Package UPDATED Aug 14, 2012 Changed AspectRatioSelection Plug-in script added Path support.
    Contains
    Action Actions Palette Tips.txt
    Action Creation Guidelines.txt
    Action Dealing with Image Size.txt
    Action Enhanced via Scripted Photoshop Functions.txt
    CraftedActions.atn Sample Action set includes an example Watermarking action
    Sample Actions.txt Photoshop CraftedActions set saved as a text file.
    12 Scripts for actions
    Example
    Download

  • In iTunes 12, how do you add an existing playlist to a device without using sync or manually dragging the playlist to the device?

    Is this a deeply-buried function, or does it not exist as an option in the latest version of iTunes? Or am I missing something obvious and easy?

    Hey HalSF,
    iTunes allows you to sync music with your devices in several different ways, including by playlist. See the iPhone user manual for how to -
    manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf
    Specifically page 19.
    Thanks for using Apple Support Communities.
    Be well,
    Brett L 

  • HT1473 how do I add digital movies to my Itunes account, without copying the disk to my itunes media folder

    have marked to not copy in advanced options, but still copies files.

    Not sure what you mean.
    Plug it in and sync it.

  • How to reset a forgotten password on an ipod touch without using the computer it was synced to?

    My friend has this ipod touch 4gen and she no longer has the laptop itunes was on. So she sent me on a mission to reset the ipod she has now forgotten the password to. When i plug it into my computer it says "itunes cannot connect while device is locked. please unlock" or something like that. uhm... only problem is the reason why im plugging it in is to RESET THE **** THING BECAUSE SHE FORGOT THE PASSWORD. im obviously frustrated. So seriously, there has to be some way to get this thing to reset without putting in the password that no one knows into it. Help? im not a computer tech in the first place.

    You have to restore it.
    If you cannot then:
    iOS: Unable to update or restore

  • How to disconnect a call in os 7.0.2 without using the wake/sleep button in lock screen which was possible in earlier versions.

    i have no other option since my lock button is not working.

    Yep, this is a change Apple made with iOS 7.0.
    Express your displeasure here:
    http://www.apple.com/feedback/iphone.html

  • How do I add an objectclass to existing LDAP server entry using an ldif file?

    I am trying to fix an LDAP server that has been operating with schema check off. I need to add an objectclass to the groups so that some attributes that have been added to the groups will be "legal." From the documentation, the changetype: modify will allow the changing/adding of attributes that are already a part of the schema objects that define the entry. It does not look like I can add an objectclass with the modify operation.
    If this is the case, then how do I add an objectclass to an existing entry? Using the GUI is not possible since the directory server in question is not being managed with an admin server. Please tell me that I do not have to delete the groups and import them again with an LDIF file that has the new objectclass added.
    Kent

    See this post:
    http://softwareforum.sun.com/servlet/ProcessRequest?RHIVEID=181&RPAGEID=135&HOID=50B500000008000000636B0000&USEARCHCONTEXT_CATEGORY_0=_21_%24_7_&USEARCHCONTEXT_CATEGORY_S=0&UCATEGORY_0=_21_%24_7_&UCATEGORY_S=0

  • How can i add videos,movies and tv shows episodes to my ipod nano?I want to know whether i can directly add them through my pc or not without downloading them from i tunes store?

    how can i add videos,movies and tv shows episodes to my ipod nano?I want to know whether i can directly add them through my pc or not without downloading them from i tunes store?

    Yes, you can add your own videos to iTunes, then sync them to your nano, subject to supported max resolution limit and file type.  The specs for the 7th gen nano says (I don't know which nano model you have), Video Format Support
    "H.264 video: 720 by 576 pixels, 30 frames per second; Baseline, Main, and High-Profile level 3.0 with AAC-LC audio up to 256 Kbps; 48kHz; stereo audio in .m4v, .mp4, and .mov file formats
    MPEG-4 video: up to 2.5 Mbps, 720 by 576 pixels, 30 frames per second; Simple Profile with AAC-LC audio up to 256 Kbps; 48kHz; stereo audio in .m4v, .mp4, and .mov file formats"
    http://www.apple.com/ipod-nano/specs.html
    (earlier nanos have lower max resolution limits)
    So, "HD" video is too high resolution, so iTunes will not sync such videos to the iPod (although they play in iTunes).  If you are asking how to set up iTunes to sync videos in general (regardless of source), please post back.

Maybe you are looking for

  • Safari Quits Unexpectedly as soon as I click to open it! Please Help

    So I forgot the password to my computer that you need to allow your computer to update. I read in my manual that I needed to insert a disk I received with my Mac in order to reset it. So I followed the instructions, reseted my password, and updated m

  • How to encode 16bpp grey images in Jpeg2000?

    Hi all. First excuse me for my bad English. I have a problem encoding JPEG2000 images. I have an image in a short array and I want to encode and seve it in a jpeg2000 file. I do the next: (iw) is the JPEG2000 image writer. SampleModel model = RasterF

  • Open Directory & Firewall: How to prevent hack attacks

    With my current Open Directory configuration user accounts get disabled as soon as 12 login attempts fail. Now the problem is the following: there are periodic attacks trying to hack user accounts. They do this by trying typical user names and common

  • Question on HttpServletRequest object

    If I have a request object (say r), am I able to remove a parameter from that object and replace it in a servet? I am trying to take a double value from a form (not a problem) and pass it into a servlet. What I want to do is in the servlet, run some

  • Material With Different Makes

    Guys , The client where our Implementation is going on , has material like motors , pumps etc. of different makes like Siemens, Kirloskar etc. in his stock. What I would like to know , should we maintain Material Master  for different makes. If I do