How do you check if the attachment Link Bean is going to return "None" or .

Hi to All,
What attribute could i check if the attachmentLinkBean is going to return "Attachment List" or None?
I've checked the TEXT_ATTR but it always return "Attachment List" no matter what. Hope to hear
some opinion on this. Thanks in advance!
Greg

Greg,
I am not sure you can get at that directly. However if what you want to do is determine if there are any attachments for the record, then you can setup a VO with bind parameters querying APPLSYS.FND_ATTACHED_DOCUMENTS passing the ENTITY_NAME, PK1_VALUE ... PK5_VALUE for that record and if you get zero records in the query, it was "NONE", otherwise you have attachments.
Hope this helps.
Kristofer

Similar Messages

  • Using PL/SQL Block how do you check if the character string value is aA-zZ

    I have a pl/sql block that I prompt the user for password and I load the string into an array and interrogate each index(entry) to see if it is "aA-zZ".
    How can I check if the value entered is Alpha.
    I need to do the same for number and Special character. Please advise. Thanks

    Thanks to All of you. The desired solution to verify complex password that enforces desired security policies. An example that I am using is the following:
    IF NOT (regexp_like(sz_complex_pw,'[[:digit:]]') AND regexp_like(sz_complex_pw,'[[:alpha:]]') AND regexp_like(sz_complex_pw,'[[:punct:]]') AND regexp_like(sz_complex_pw,'[[:upper:]]'))
    THEN
    --dbms_output.put_line('Password is not complex...');
    RAISE sz_err_pw_complex; -- Complex Password is not compliant
    END IF;
    DBMS_OUTPUT.PUT_LINE('Complex Password is in Compliance...');
    EXCEPTION
    This was helpful to me and I trust others will find helpful.
    Edited by: yakub21 on Oct 16, 2010 9:05 PM

  • How do you check if the input is empty?

    Hello,
    I am asked to write a program which gets as input in the command line a number of strings, and is to print out the first of these string.
    but if the input is empty it must print our an error message.
    how do i check if the input is empty?
    i guessed
    public static void main (String[] args){
         if (args == null)
         ........but thats wrong.
    Thanks,
    iris

    If no arguments were passed, it means that there are zero arguments entered. So the args array will have a length of zero.

  • How do you check if the replacement phone is a refurb or new one ?

    Hi Guys
    Can anyone tell me what does the Facotry code 70 stands for ? because I am getting a replacement phone and I see that the Serial number starts with 70.
    when I checked in the below site.. its not giving me any information about whether refurbished or new one ?
    http://www.chipmunk.nl/cgi-fast/applemodel.cgi
    this is the serial they gave me....70116***A4S
    BUt I am not able to find out the waranty status or anything about this phone.. Do I need to activate it first.. so that it gets reflected in Apple site and then I get details ??
    My Earlier phone serial starts with 79 (this is manufacutred in china) am curious to know what does the factory code "70" stands for... hope this is not for refurbished.

    As I said, you walk in and put an ultimatum to them and they will happily give you your money back. But they can't do anything about the ETF and won't try. That's for you to sort out with the carrier
    And even if they refuse, you go ahead and try that consumer complaint. You aren't likely to get very far on that route. Because the first thing the Apple lawyers will do is ask for the paperwork from your appointment so they can see where you signed the bit about "I understand and accept the terms of service". They can't be held accountable for you signing something you didn't bother to read. But you can be held to the terms, which include the sources for replacements and the possibility of receiving a refurbished product. So again, the best you might get is your money back from Apple. But you will still be out the money from the carrier if you are under contract.
    And yes it will most likely be your money and not a new phone. Why? Because Apple has millions of customers they don't need a douche acting one like you so they will happily pay you back your money and send you on your way.

  • How do you check the existance of a file in Linux?

    Hi,
    How do you check to see if a file in certain directory exists?
    I'm trying something like.
    if [ "ls fhs_jwesha_2.log" ]; then echo Here; else echo Not Here.;fibut I know that's not the right command.
    Anybody?

    Assuming from command line:
    [user@myhost /]$ [ -f /etc/passwd ] && echo "here" || echo "not here"
    here
    [user@myhost /]$ [ -f /etc/no_file ] && echo "here" || echo "not here"
    not hereFor a script, try:
    if [ -f /etc/passwd ]; then echo "here" ; else echo "not here" ; fi-troy
    http://troysunix.blogspot.com

  • How do you print an email attachment and not the email itself. please.

    how do you print an email attachment and not the email itself.  please.
    This question was solved.
    View Solution.

    Hi there, if there is text in the body of the email it will print automatically when sent to an ePrint email address. The only way to just have the attachment print is for there to be no text in the email body.
    Hope that helps answer your question.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.  I want to link to a spot on the same page.

    How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.  I want to link to a spot on the same page.

    How do you do anchors - the three ways listed did not work.  I am using the jQuery mobile template 11.
    You have aroused my curiousity, what are three ways listed that do not work? At risk of being labeled as an ignoramus, could you also tell me where to get the other 10 templates?
    I usually give an element an ID and use that in my link as in
    <a href="#mySpot">Go to my spot</a>
    <div id="mySpot">
    </div>

  • How I can check on the existence of a client ActiveX, so that if there is no download begins?

           
    How
    I can check on
    the existence of a client
    ActiveX, so that
    if there is no download begins?
    example:
    I want tocheck for:
    EditDocumentButton = new ActiveXObject "SharePoint.OpenDocuments.2");
    if (EditDocumentButton) {
    EditDocumentButton.EditDocument (strDocument);
    and ifthere is nowarning andlaunch aURLto startthe
    download
    as is?
    thanks

    Hello,
    This control is defined in the OWSSUPP.dll file, a dynamic-link library (DLL) that is installed in the %ProgramFiles%\Microsoft Office\Office14\ directory on the client computer during Microsoft Office Setup. (Read
    full article on MSDN)
    Based on my understanding this below link can help you to open file if activex is not found.
    http://blog.scosby.com/post/2011/08/22/Remotely-Opening-Office-Files-From-SharePoint-2010.aspx
    Now to detect the activex please look this code:
    http://www.andrewshough.com/sharepoint/multiple-office-version-support-in-sharepoint-services-3-0/
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How do you make ps6 the default program

    how do you make ps6 the default program

    I will let you know if works.  Thanks    BobC
    Date: Fri, 27 Sep 2013 11:17:43 -0700
    From: [email protected]
    To: [email protected]
    Subject: How do you make ps6 the default program
        Re: How do you make ps6 the default program
        created by gener7 in Photoshop General Discussion - View the full discussion
    Right-click on that saved image's thumbnail in Windows to bring up a menu.
    Select "Open with..." and from that "Choose default program"
    A box will open up with a list of Programs to  choose from. Photoshop CS6 64 bit should be in that list.
    Make sure "Always use the selected program to open this type of file" is checked.
    If you do not see it in the list, click the Browse button in this box and it will show folders in the Program Files directory. Double click "Adobe" then Photoshop CS6 (64-bit), then select Photoshop.exe and click "Open". It should add it to the list.
    Click OK and when you double-click on your saved file, it should open in Photoshop.
    Let me know if that worked for you or if you have other questions.
    Gene
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5719659#5719659
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5719659#5719659
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5719659#5719659. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop General Discussion by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How do you check Memory Speed on ICD

    Hi everyone
    I am new to the forums and I am also a soon to be first time mac owner(Receiving my 20" ICD this week) .
    I am buying the imac with an extra 1gig DIMM installed, non-apple memory.
    Now the reseller assures me that the 3rd party memory that he'll be using is compatible with the imac.
    I'm assuming that if there are no issues at start-up then the memory is compatible, but I would like to know how can I check that the memory is running at 667 mhz and that he did not install 533 mhz memory.
    So how can I check that the memory is running at 667?
    Thank you in advance
    20" Imac ICD     1.5ghz memory

    Ah, I think I'm reading that you may be concerned about a potentially counterfeit SO-DIMM. That's one reason to buy direct from a reliable seller such as Apple or Crucial. I'm not sure the memory utility Memtest will verify the DIMM's speed, but it will verify whether or not the SO-DIMM is working properly. That might include a speed calculation, and possibly you can email the Memtest author to find out.

  • TS4425 How do you agree to the latest iCloud Terms of Service if you don't have an iOS device only a Mac computer and an Apple TV with an iCloud account?

    How do you agree to the latest iCloud Terms of Service if you don't have an iOS device only a Mac computer and an Apple TV with an iCloud account?

    Part 2
    Thanks for the feedback Skhorchid.  Glad it worked for you too.
    A bit later I discovered that Photo Stream was not working on my Windows 7 PC either.  If I opened the iCloud control panel and put a check in the box to turn on Photo Stream, and then closed and reopened the control panel, the check mark was gone again.  Also, nothing happened when I clicked on the options button beside the Photo Stream check box.  I already had version 2 of the iCloud control panel so I could not upgrade further. 
    I ended up uninstalling the iCloud control panel, rebooting, downloading a fresh copy from Apple, and reinstalling it.  This worked and I now have photo stream working on my Windows 7 system as well.

  • How can you check a different iCloud account in safari in an iPad?

    How can you check a different iCloud account in safari in an iPad?

    As currently designed, you cannot. Once iCloud detects you are on mobile Safari, it switches you to the iPad screen.
    If you had another browser that would allow you to pretend you were a desktop Safari client, ie8 or 9, or Firefox, that might work.
    But, Puffin and Opera mini don't work.
    Gary

  • How can I print only the attachment without the email content

    How can I print only the attachment without the email content. Every time I send to print, It prints the email itself with the attachment- can I cancel that?

    Hello Riklama,
    When you first open the attachment (e.g. on your phone) than you can mail only that attachment. Works fine with my husbands blackberry.
    Elsy

  • How do I change the color of font in a fillable form in Adobe Reader? How can I check if the writer of the document has given permission to edit color and not just add text?

    How do I change the color of font in a fillable form in Adobe Reader? How can I check if the writer of the document has given permission to edit color and not just add text? Please help! I'm technologically challenged.

    Most forms (99% or more) are created for simple text input, where you cannot change anything.
    The creator of the form could allow Rich Text input (which allows you to change font, text size, color, etc.), but frankly I have never seen such a form, and I wouldn't know how they look.  But I'm sure they would show some kind of controls to alter the text appearance.

  • How can you turn off the braille setting on an iPhone 4s, once on it won't let you slide the phone into use mode to change the settings or do anything?

    How can you turn off the braille setting on an iPhone 4s, once on it won't let you slide the phone into use mode to change the settings or do anything?

    An alternate method is Accessibility Settings when connected to iTunes. You should be able to turn it off there. I would also check out some of the answers listed to the right of this post and see if they can help.

Maybe you are looking for

  • Datasource does not appear on the console, intermittent problem

    I am using Weblogic 9.2 MP3 I've created an Oracle DataSource and successfully targeted it to a Managed Server. When I click on it in the console and navigate to the "Monitoring" tab, it would sometimes appear in the "Test DataSource" table and somet

  • Create a pamphlet in page layout mode.

    This will be a 32-page pamphlet to be printed on standard American letter size paper and bound on the short side.  How do I set up for this project?

  • Repository patch in 10.1.2.2?

    Hi I would like to know if the patch 10.1.2.2 only is a patch on the client side or if I need to patch the repository as well. Best regards Marika

  • From numbers to contacts(addressbook)?

    hi, is there a possibility to transfert adresses from an excell or numbers file towards the Apple app contacts (or adresse book),dépends on the translation in your language!

  • Possible to hit enter on table cell & retrieve data without selecting line?

    Hi All, We're using ECC6.  I  I have a situation where the user wants to be able to hit a cell in a table which will then fire a report and pass the contents of that cell to the report.  So far I have been only able to get this working when the row i