Setting DateFormat when we update in SalesForce DB

Hi,
I want to set DateFormat before updating the date in
SalesForce Database. I am able to update the date if i select the
date/month which is greater than 9. Means If i select the date
10/10/2007 ([MM/DD/YYYY or DD/MM/YYYY format]) its
updating/inserting the data in SalesForce DB. if i select date
9/10/2007 it is not updateing why because In SalesForce DB it will
accept date/month in two digit format --> 09/10/2007 or
05/08/2007 but not 9/10/2007 or 5/8/2007. Is there any solutions to
set the dateformat using ActionScript before updating/Inserting the
date in SalesForce Database.
Thanks in advance

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by JDev Team ():
Hi,
I need to know some more details to know exactly why the field is not appearing.
1. Is this an attribute that was included in your EO when you first created it, or one that you added later?
ARCHANA : This attribute was not included later. It was there when I first created it because it is the "Code" which is the primary key.
2. Is this attribute in the View Object your JSP insert page is based on?
ARCHANA: Yes, It is there in the View Object.
3. Is the View Object your JSP insert page is based on made up of one EO, or is it based on more than one EO?
ARCHANA : The View Object is based on one EO only.
4. In your JSP, you can try adding the following code to see if the attribute field will get displayed:
<jsp:useBean id="RowEditor" class="oracle.jbo.html.databeans.EditCurrentRecord" scope="request">
<%
RowEditor.initialize(application, session , request, response, out, "theModule.theView");
RowEditor.setTargetUrl("theView_SubmitInsertForm.jsp");
RowEditor.createNewRow();
RowEditor.setReleaseApplicationResources(true);
RowEditor.setDisplayAttributes("Attr1,Attr2...");
(enter the names of the attributes you want displayed in the setDisplayAttributes method.
Laura<HR></BLOCKQUOTE>
Actually my JSP has exactly the same code as u have sent. I have included "Code" in my setDisplayAttributes() method also. The label for this attribute appears but adjacent to it there is no text control to type the data when I insert data.
Please explain.
null

Similar Messages

  • Face Time was unavailable, even in SETTING= PHONE, when I updated to the new network settings.

    Face Time was unavailable, FACE TIME switch is not even showing in SETTING=>PHONE, when I updated to the new network settings.

    There is no way to consolidate iTunes accounts.
    Setting up an iPhone has never required creation of a new Apple ID.
    You've apparently purchased content with both Apple ID's.  Sign into the device with the correct Apple ID and sync the content.

  • HT1386 When i connect my iPhone to iTunes, it says i have to set up my iPhone, and wont allow me to sync any media i have already purchased on it. My phone is not new, so I dont understand? This all came about when i updated the iOS 6 software.

    When i connect my iPhone to iTunes, it says i have to set up my iPhone, and wont allow me to sync any media i have already purchased on it. My phone is not new, so I dont understand? This all came about when i updated the iOS 6 software. I have tried to re-set up my phone but it makes no difference and deletes everything off my phone.

    bubblesblom wrote:
    Okay, so my friends think it is funny to change the passcode on my iPhone.
    Maybe you should get new friends.
    I'm not sure that recovery mode works when you have to trust the computer, but did you try it?
    If you can't update or restore your iOS device - Apple Support
    If that won't work, perhaps you can use Find my iPhone from a computer in your iCloud.com account to erase the device.
    iCloud: Erase your device - Apple Support
    This has nothing to do with the Find my iPhone app being installed on the phone, but you do have to have Find my iPhone activated in the iCloud settings on the phone.

  • HT1277 Mail on my Mac computer does not update when I update my mail on my phone and iPad.  Can anyone help me with this?  Is there a setting I need to check?

    Mail on my Mac computer does not update when I update my mail on my iPhone and iPad. Can anyone help me with this?  Is there a setting that I need to check?

    All that you had to do was to sign into the old account in order to update those apps. What I mean is that you just needed to sign into that account in the store settings like I described and that should have worked. You didnt need to enter the credit card information again - you justed needed to use the old ID and password.
    Anyway, I think the good news is that if everything else is OK with the new account, just download iBooks with the new ID - it's a free app so its not like you have to pay for it again. I'm not sure what the other App is that you are talking about - but if it is the Apple Store App - that is free as well.
    Try this anyway, when you try to update iBooks, just use the old password if the old ID still pops up.
    Did you try signing into the store settings with your new ID and see what happens with the updates then?

  • I had to change my Apple ID. However, it won't change in my phone. I changed it in setting, but when it comes to downloading updates for apps or music, it won't update from my old Apple ID.

    However, it won't change in my phone. I changed it in setting, but when it comes to downloading updates for apps or music, it won't update from my old Apple ID. For instance, I had to change my apple ID from (for instance, "[email protected]") to something else ("[email protected]"). I changed it in settings to the new one, but when I go to update apps, my phone is still connected to "[email protected]"
    What should I do?

    In the Finder do a Get Info on one of those files & the folder it's in, report what it says for privileges.
    Oh, did you maybe change your short username/Home Folder's name?

  • When I receive calls I always get the option to remind me later, but only certain times I get the option to respond with text.  Is there a setting I need to update to always get this option?

    When I receive calls I always get the option to remind me later, but only certain times I get the option to respond with text.  Is there a setting I need to update to always get this option?  Also i can't use location reminders.  Is this because my calendar is in Outlook?

    The only known way to make it work on an external drive is by first installing Windows onto an internal drive, then cloning the install to an external Thunderbolt drive. Thunderbolt is seen as an extension of the internal bus, so Windows doesn't see it as an external device.

  • Trigger setting value when updating

    I need to have a row-level trigger set a value only when an update parameter is not specified in the query. The following trigger doesn't work as expected in SQL Developer - :new.prj_sync_modified_by seems to be the prior value in the row. I need to have :new.prj_sync_modified_by set to 0 whever an update does not specify a value for the prj_sync_modified_by column.
    CREATE OR REPLACE TRIGGER "MQSR"."TR_PROJECT_IU"
    before insert or update
    on PROJECT
    referencing old as old new as new
    for each row
    begin
    if inserting then
    :new.prj_sync_created_dt := sysdate;
    if :new.prj_sync_created_by is null then
    :new.prj_sync_created_by := 0;
    end if;
    end if;
    :new.prj_sync_modified_dt := sysdate;
    if :new.prj_sync_modified_by is null then
    :new.prj_sync_modified_by := 0;
    end if;
    end TR_PROJECT_IU;
    ALTER TRIGGER "MQSR"."TR_PROJECT_IU" ENABLE;
    Thanks in advance,
    Dave

    Thanks. I found the right syntax for the update part:
    if not updating('prj_sync_modified_by') then
    :new.prj_sync_modified_by := 0;
    end if;
    I need to overwrite the prior prj_sync_modified_by value with 0 if no value is specified (not just at row initialization). Between setting a column default and the above (for inserts), I think I'm set.
    Message was edited by:
    user625389

  • When I updated by iphone with IOS7, my calendar entries did not follow the icloud.  I am only showing pre set calendar entries for the year?

    When I updated by iphone with IOS7, my calendar entries did not follow the icloud.  I am only showing pre set calendar entries for the year and lost all other calendar entrie and it will not take any new entries.  They show up in my outlook, but not on my iphone, which they did before I updated my software to the new i0s7

    Before syncing, select each calendar on your Mac and back it up by going to File>Export>Export.  If anything goes missing, you can use these to restore your calendars.
    Have you tried simply force closing the calendar app on your iPhone?  To do this, double-tap the home button, locate the calendar app, then swipe up on the image above the app icloud to close it and tap the home bottom.  Then test your calendar again.

  • I no longer see the URL of any website so can't copy and past URLs into any emails, etc. Is there some setting to make URLs visible? when I updated, the URLs disappeared. I'm on a MacBook.

    When I updated to the latest version of Firefox, the URLs disappeared so they are no longer visible at the top of the Firefox page. I can enter sites, but I can't copy and past the URLs anymore. Why can't I see the http://... info anymore? Is there some setting I changed or what might be the problem?
    thanks.
    TVDoc

    Try this:
    Click on the orange Firefox tab > Highlight Options > click Navigation Toolbar.

  • No badge alert on setting icon when the new ios update is released

    Hi all,
    I use iphone 5. I found that a badge is not shown on the setting icon when a new ios update is released. Only way letting me know that there is an update is manual check update, i.e. go to setting->general->software update. I think, normally, the badge should present automatically on the setting icon everytime the update is released. Does anyone find this problem? How to solve this?
    Thanks,

    I have the exact same problem. Been searching Google for answers but have found none :-(
    I upgraded from an iPhone 4s to 5 recently. I had the Settings badge show up right after I got the phone, but after I got home and did a restore from backup to get my 4s stuff over to the 5, then no more badge notification.
    I can't find any settings anywhere to help with this.
    Anybody got any suggestions/thoughts/fixes/etc?

  • I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired

    I have i phone 4s i there is problem of wifi my wifi is not working when i go to the wifi there is no working on off when i update it as a 6.1 ios on that time again it was good but after 2 days again the same problem i am too tired and i also reset network setting but nothing gonna be worked

    Sounds like the device was dropped at some point and damaged as a result.
    Take it to Apple for evaluation and a replacement.

  • Dear Apple Support,  Good day to you. This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..  After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to resto

    Dear Apple Support,
    Good day to you.
    This is to report the problem i encountered when i updated my Ipad mini to the new IOS 8.1..
    After the update my Ipad restart and after that it appears a picture that need to connect to itunes and need  to restore. So i connect it to itunes and wait to restore my ipad mini because it is not opening.
    After restoring it my ipad is now opening and it is like new that i need to set up again.
    I set up again until i reach the apple id and password.
    I put my below apple ID and password to unlock my ipad but it didn't work. The message i receive is "the apple ID cannot be used to unlock this Ipad.
    What will I do? Please help.
    Thank you
    Sent from my iPhone
    Begin forwarded message:
    From: Apple <[email protected]***>
    Date: October 9, 2013 at 11:53:53 PM GMT+4
    To: ****
    Subject: Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini 
    Dear Leslie J.,
    Your Apple ID was used to sign in to iCloud and iMessage on an iPad mini named “Leslie Joye's iPad”.
    If you have not recently set up an iPad with your Apple ID, then you should change your Apple ID password. Learn more.
    Apple Support
    <Email Edited By Host>

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • HT2292 hello i'm facing  problem  i downloaded iTunes version 11 32bit  and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my interne

    Hello i'm facing  problem  i downloaded itunes version 11 32bit for windows 7 and after i installing the set up when i opened the iTunes a massages  occur saying i tunes could not connect to iTunes store an unknown error occurred (-3212) even  though my internet is on

    Try this...
    Triple click anywhere in the line below to select it and press Ctrl+C to copy it.
    cmd /k netsh winsock reset
    Press the WinLogoKey+R to open the run dialog, then Ctrl+V to paste, then press enter/return.
    You should get something similar to this:
    Reboot the computer and the problem should be resolved.
    If it doesn't work then perhaps a full tear down and rebuild of iTunes will fix things. See Troubleshooting issues with iTunes for Windows updates for details.
    tt2

  • My husband bought an iPad 2.  I have a Mac.  ITunes is in my name but I have turned sharing on.  When we updated to OS5 we lost all the free apps that he downloaded in his user name.  Is there no way to update using my iTunes without losing his software.

    My husband bought an iPad 2.  I have a Mac.  ITunes is in my name but I have turned sharing on.  When we updated to OS5 we lost all the free apps that he downloaded in his user name.  Is there no way to update using my iTunes without losing his software.  He is frustrated using the iPad because he never knows whether to use his user name or my user name.

    Apps are only tied to one account... You can set up two iTunes accounts on your computer, however, and let his iPad sync to his account. If he has never backed up his apps to a computer, however, he will have to redownload all the apps. Afterwards, he can backup to iCloud instead of your computer.
    http://support.apple.com/kb/ht1495

  • Hi can you please help me to fix my iPhone 5 when I update it to the iOS 6.1.2 my carrier signal indicator states searching all the time please help me what to do

    HiHi can you please help me to fix my iPhone 5 when I update it to the iOS 6.1.2 my carrier signal indicator states searching all the time please help me what to do

    Hi Samantha,
    Are you aware that if you restore your ipad that you will lose all data from your ipad and very difficult to get it back unless you had previously made a back-up of your data on itunes or in the cloud. and that would be on the computer you set those up on. (There are some independent apps out there that might help restore data but I don't have any experience with them...)
    Also, I think if you restore on another computer you're supposed to have administrator rights and have the latest itunes update. And I think if you sync (if restoring is considered syncing with another computer, you'll be locked out of your computer or a new one.)
    I don't know if there is a way for you to safely eject your ipad from your mom's laptop and find another way, but please read this
    http://support.apple.com/kb/ts1275
    Also, I suggest you start a new post and title it something like First, stuck on update and now on Restore on another computer. Please HELP! And then tell the story of your problem that you originally included and your follow-up efforts to restore given a suggestion on previous post (though I think you SHOULD AVOID RSTORE if you can.) And refer them to your original post
    https://discussions.apple.com/message/22050045?ac_cid=tw123456#22050045
    Hope this helps and if you can get back to your ios before the upgrade, stay with it. I hope it all works out for you.
    FYI - If it's a new or refurb bought within the past year you might be able to have it replaced by Apple.

Maybe you are looking for

  • Stuck on a white screen!

    Well, I'm currently posting from my phone right now seeing how my PC is having some problems. As I said, I'm on my phone so I can't be to discriptive on the problem. I just got this new PC. Its an HP, 23 inch, 2311x PC. I was using it for about two d

  • How to get one menu bar in acrobat 9

    Hi Guys, I am new to acrobat 9. Earlier I have used acrobat 7. From few days using acrobat 9. And facing some problem. The problem is if I open 'N' number of files in acrobat 9, then menu bars also coming seperatly. But if I open same files in acroba

  • Using rowid in ref cursor

    Hi, I want to use rowid for updating the rows in the ref cursor. My code looks like below: DECLARE emp_refcursor SYS_REFCURSOR; emp_rec employee%ROWTYPE; l_run_id NUMBER; lv_sql_stmt VARCHAR2(4000) := 'SELECT a.* FROM employee a where a.run_id = :l_r

  • Webforms calling MS Word

    Can a 9i form call MS Word/Excel on a client PC without the need of using a third party JAVA-COM bridge jacob.jar and jacob.dll on jinitiator? The current recommendation is to use include jacob.dll in jinitiator/bin. As we have several clients workin

  • Can I use dynamic select list in task form?

    Hi If I need to chage text input in task form to select list which dynamic from some database, Can I do it? If I can, how to do its ? Thanks User520932