Trying to do a insert activity and fire a  skill buildmodal window  on butt

I am trying to do insert activity on my form..so for that button action type is ..submit form... withdatabase action as insert..
While i also need to execute a modal window trigger.. so then the button type action needs to be redirect to url ..
How can i get it accomplished on same button....
I also tried the following
made the button ..as redirect to url..
and wrote dynamic action ..
1 Plsql code .. insert into table_x (a,b.c) from (:a,:b,:c) page submit (:a,:b,:c)
but after i close the plsql cod e the page submit fields become a,b,c
and then this part of code donot exist
while the second dynamic aciton is on
modal window..
When i do this buttacion acction type is redirect to url..
I tried this method and it fails..
How can we        get a button to do .. Both submit a form for insert activity and also ...redirect a url to execute a skill builder modal window
Edited by: susf on Jun 22, 2012 7:15 PM

just got it sorted..it was issue of me adding :empno , etc in sumbit..
I should not be adding ':'...
page submit (:a,:b,:c)
it should have been page submit (a,b,c)
Edited by: susf on Jun 22, 2012 7:51 PM

Similar Messages

  • I have iPhone 3G with ios 4 but now i update new version and my phone is not working.it is not activating..when i tried it says please insert sim and try again..any one plez hepl.

    i have iPhone 3G with ios 4 but now i update new version and my phone is not working.it is not activating..when i tried it says please insert sim and try again..any one plez help

    Try this article if you haven't already
    This is the only possibility that came to my mind when reading about your issue:
    "If an iPhone, iPad, or iPod touch is not recognized in iTunes on Windows, the Apple Mobile Device Service (AMDS) may need to be restarted"

  • Trying to make a photo/video and narrative slide presentation in windows and show on apple tv

    I am trying to make a presentation in windows with photos/videos/narrative slides and show it on apple tv and also make a dvd. The apple tv does not seem to recognize anything except the original folder of pictures downloaded from the Iphone and Ipad even though I have checked other folders with powerpoint presentation to be shared with apple tv.
    Very frustruated after spending a lot of time on this!!
    Any help would be appreciated.
    Thanks,
    Allen

    I just want to know how to do this so it works.
    The most common methods to create a podcast are using QT 7 Pro or the GarageBand application. Your sample files look as though they may have been created using a QT 7 Pro (or similar app algorithm) by opening your JPEG in a player and then attaching the music to the to the end of image frame. The proper way to do this is to create a QT player with the JPEG image in it and then copy the content from the image player to the opened audio player using the "Add to Selection & Scale" Edit option to paste the image across all frames of the audio track.
    Here is an example of what I mean: Blow Me Away_modified.mov
    In this case I extracted both the audio and JPEG tracks and then re-sampled the audio track to get rid of the added empty audio frame and then added an externally re-scaled 826x638 version of your 1651x1275 internally scaled 827x638 display to reduce the file size from 10 MBs to 6.7 MBs.

  • Activating and deactivating expose switches the window

    Hi,
    I found that expose in Lion behaves weirdly.
    The steps to repro:
    Open 2-3 windows of Safari.
    Move one window to another desktop (so there are windows of the same app on multiple desktops).
    Activate Expose (with gesture).
    Deactivate Expose (with gesture).
    What I expected to see after these steps: the same desktop, application and window as it was originally at the step 1.
    What I actually see: the screen slides to another desktop and activates the window on it. Doing it again does it again in the opposite direction.
    Nobody at the Apple store could explain why it happens or provide any logical explantion.
    So what's a deal with it?
    Cheers.

    Hi
    U need to assign an OK-CODE to print icon in the toolbar, but if it's a standard one, it means to change a standard object.
    Then u should considere after activing it u need to implement the abap code to manage it
    Max

  • I am trying to allow inbound remote desktop and drive mapping in a windows environment and want to know if the following will wo

    access-list ICS-GTECH_access_in permit tcp host 10.2.6.200 eq 3389 host 192.168.130.5 eq 3389
    access-list ICS-GTECH_access_in permit udp host 10.2.6.200 eq netbios-ns host 192.168.130.5 eq netbios-ns
    access-list ICS-GTECH_access_in permit udp host 10.2.6.200 eq 139 host 192.168.130.5 eq 139
    access-list ICS-GTECH_access_in permit tcp host 10.2.6.200 eq www host 192.168.130.5 eq www
    access-list ICS-GTECH_access_in permit tcp host 10.2.6.200 eq https host 192.168.130.5 eq https

    No it won't work because your source ports are the same as your destination ports and most connections don't usually work like that ie. your source ports are random.
    In addition there is no mention of NAT rules although you may or may not need them depending on what you are doing currently.
    Also can't guarantee it would work in terms of the ports but a quick internet search is all you need for that.
    Jon

  • Record insertion problem and another question...

    I know I'm now php mysql expert so I am trying to use the
    insertion wizard and I can make the form and have it supposed to
    link to another page after its done inserting but when I run the
    page and fill in the details it inserts the record but does not
    goto the directed page and also shows the error:
    Warning: Cannot modify header information - headers already
    sent in C:\wamp\www\toursite\admin\users\add.php on line 56
    and on line 56 is:
    header(sprintf("Location: %s", $insertGoTo));
    Can anyone help me here?
    My second problem is not really a dreamweaver problem but it
    may be linked to it. Im using a server package called WAMP and
    pages that I can run will sometimes cause and error box to popup
    saying that Apache has caused error, the box that gives you the
    option of sending the report or not. Anyone know what the problem
    is here?
    If I have not given enough information to help please ask for
    more.
    Thanks
    Dan

    mondan wrote:
    > Warning: Cannot modify header information - headers
    already sent in
    > C:\wamp\www\toursite\admin\users\add.php on line 56
    > and on line 56 is:
    > header(sprintf("Location: %s", $insertGoTo));
    > Can anyone help me here?
    The headers already sent error is a common problem that
    baffles
    beginners. It's caused by some output being sent to the
    browser before a
    call to certain functions, such as header() or
    session_start(). You need
    to eliminate that output, and the problem will go away.
    Common causes of output are:
    * Blank space before the opening PHP tag
    * Blank space before the opening PHP tage or after the
    closing PHP tag
    of any include files
    * Use of echo or print anywhere before the call to the
    problem function
    * Error messages generated by PHP
    > Im using a server package called WAMP and pages that I
    can run will
    > sometimes cause and error box to popup saying that
    Apache has caused error, the
    > box that gives you the option of sending the report or
    not.
    None of the server packages are endorsed by PHP. Some are
    good, others
    not so good. It sounds as though you have a bad installation.
    Seek
    advice from the WAMP team or support forum if they have one.
    David Powers
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "Foundation PHP 5 for Flash" (friends of ED)
    http://foundationphp.com/

  • I am trying to activate my Droid and cannot get through to the techs.  I have been trying to get my phone activated since Saturday. It gives me the same error message. I have been told 3 times already to call back in the morning to try and activate it bec

    Can someone please help me?  I have been trying to get my phone activated since Saturday and Verizon keeps telling me that they cannot do it because their system is still was being updated or is down so to call in the morning becuase it should be up and running.  Is anyone else having this same problem?  I tried calling the for technical support all morning and it keeps giving a message that my request cannot be processed at this time.  Same thing happens when I try to contact them online.

    Dear Apple team,
    I recently bought an iphone3GS from USA and jail broke it. Since I heard the there are lots of disadvantages I thought to unlock it officially through the original owner (in copy). He assisted me and confirmed that he unlocked it with AT& T (See the attachment). According to the instructions I restored the phone. But it is not activating with “Activation server is currently not available, please try again or try with iTunes”
    When I try with iTunes , it says “you haven’t inserted a SIM” even though I insert the original AT&T SIM.
    My current location is Sri Lanka ,so don’t have any apple support.
    Please help me to be a good fan of apple.

  • HT1937 My Iphone 3GS has just restored and I completed the things on the Iphone and then it says no sim card activated and I tried everything it said if it does not work, but nothing seems to work.

    My Iphone 3GS has just restored and I completed the things on the Iphone and then it says no sim card activated and I tried everything it said if it does not work, but nothing seems to work?

    All iPhones require a SIM for activation.
    Insert a SIM in the iPhone.

  • ITunes RADIO is not working.  "iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again." Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so -  iTu

    iTunes RADIO is not working.
    “iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again.” Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so …
    iTunes STORE not “connectable” with my otherwise perfectly-working internet connection, viable, up and running for all other uses.
    Simply put, firstly, I can't connect to the internet when I click on Radio.  People are quite suspicious that this is Apple incompetence or your company's famous arrogance for this commonly-suffered problem that you won't or “can’t” fix.
    Read the many web comments and you won’t be pleased with yourselves: the suspicion is that if you ruin internet radio on iTunes, Apple will somehow make more money on music downloads, etc. Bull.
    Also, thirdly, my old playlist of 20 or so internet radio stations in the Ambient category STILL PLAYS !
    Then fourth, I installed the latest available version of QuickTime Player 7.app Version 7.6.6 but it didn’t solve the problem either. I had QuickTime Player.app Version 10.2, but substituted what Apple website said was the latest, LOWER NUMBERED QuickTime Player version of 7.6.6
    Fifth, I can't connect to iTunes store no matter what I do or what user group's advice I try. So I can’t buy or download anything from iTunes. Bad for business.
    Sixth, I updated to the latest version of iTunes but this weird problem remains. All suggested Apple fixes or user group fixes are useless. Where is Apple’s famous technical competency, vaunted customer support?, and user-friendly product reputation? Get it back, please.
    Solve this problem of yours ASAP for us, your numerous disgruntled, dissatisfied customers of iTunes. You can do better, should, and really –in all fairness- must.
    ===============================================================
    NOTE:  no password for iTunes exists in my Keychain. Is this a problem?
    Apple ACCOUNT ID, and iTunes ID password, works but not to access iTunes with my healthy internet connection.
    Apple store id It works via direct internet connetion but not through iTunes.  Very strange.
    ===============================================================
    FYI, Hardware Overview:
      Model Name:                       MacBook Pro
      Model Identifier:                 MacBookPro8,2
      Processor Name:               Intel Core i7
      Processor Speed:               2 GHz
      Number of Processors:    1
      Total Number of Cores:    4
      L2 Cache (per Core):         256 KB
      L3 Cache:                            6 MB
      Memory:                              16 GB
      Boot ROM Version:            MBP81.0047.B27
      SMC Version (system):      1.69f4
      Serial Number (system):   C0*******F8V
      Sudden Motion Sensor:
      State:   Disabled
    Intel 6 Series Chipset:
      Vendor: Intel
      Product:            6 Series Chipset
      Link Speed:       6 Gigabit
      Negotiated Link Speed:           6 Gigabit
      Description:      AHCI Version 1.30 Supported
    M4-CT512M4SSD2:
      Capacity:           512.11 GB (512,110,190,592 bytes)
      Model: M4-CT512M4SSD2                         
      Revision:           040H   
      Serial Number: 0000000012330912E75A
      Native Command Queuing:    Yes
      Queue Depth:   32
      Removable Media:        No
      Detachable Drive:        No
      BSD Name:         disk0
      Medium Type:      Solid State
      TRIM Support:     Yes
      Partition Map Type:     GPT (GUID Partition Table)
      S.M.A.R.T. status:         Verified
      Volumes:
    disk0s1:
      Capacity:           209.7 MB (209,715,200 bytes)
      BSD Name:         disk0s1
      Content:            EFI
    disk0s2:
      Capacity:           511.25 GB (511,250,432,000 bytes)
      BSD Name:         disk0s2
      Content:            Apple_CoreStorage
    Recovery HD:
      Capacity:           650 MB (650,002,432 bytes)
      BSD Name:         disk0s3
      Content:            Apple_Boot
      Volume UUID:   600737FB-7A29-3BAE-859E-CBFE2E90C39A
    <Edited by Host>

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • When trying to connect to the itunes store on my MacBook Pro, I get the following error message: "iTunes could not connect to the iTunes Store.  An unknown error occurred (-54) Make sure your network connection is active and try again."

    When trying to connect to the itunes store on my MacBook Pro, I get the following error message: "iTunes could not connect to the iTunes Store.  An unknown error occurred (-54) Make sure your network connection is active and try again."

    I've had the same problem for a month and yet I still cant get iTunes to work, I've heard different solutions but none have worked for me
    This may or may not work for you but its worth a try even though it didnt seem to work for me, Good Luck!
    Control Panel
    Internet Options
    Connections Tab
    Click LAN Settings
    Uncheck "Use A Proxy Server"

  • TS1814 I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to i

    I am trying to update my Iphone 3 and when i get to the activation step after a few minutes it shows a message that says " Your iPhone could not be activated because the activation server is temporarily unavailable. Try conenecting your iPhone to iTunes to activate it, or try again in a couple of minutes.
    If the problem persist, contact apple support at apple.com/support
    I been trying for a few times now and I keep getting the same message. How can i fix it? now my phone doesnt work.

    These are the steps mentioned in the article iPhone: Troubleshooting activation issues
    Perform the following steps if you receive one of the messages above:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to a known-good Wi-Fi network if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.

  • After the IOS7 update, i can no longer use my imessage and facetime. It says "waiting for activation" and tried to log in on my apple id but it turned out to connection error. Please help me guys! Thank you.

    After the IOS7 update, i can no longer use my imessage and facetime. It says "waiting for activation" and tried to log in on my apple id but it turned out to connection error. Please help me guys! Thank you.

    Have you tried to reboot your phone(hold home and lock button simutainiously)?

  • HT201407 iPhone 4 activation and restore errors. Tried everything and the phone still won't work

    Woke up this morning and looked at my phone. Found an error message saying "iPhone cannot make or recieve calls, please restore through iTunes". So before restoring it I checked the support website to see if there was anything else I could do before I had no other choice than to restore the phone. Followed everything, found the phone still wouldn't work or recieve signal. I restored the phone and now it wouldn't activate, so called Apple and explained to them. Tried everything I was told, (Call my network, original network provider of phone, restore again, try recovery mode, activating with a different SIM card, absolutely everything) and still the phone wont activate. Apple have bent over backwards for me to try solve this but have had no luck, so if anyone else has experienced this and had any luck fixing it can you please share any info with me as I'm now effectively stuck in a contract without a phone or an option to renew the phone or one to put my SIM card into. iTunes also thinks 6.1.3 is the latest software but I have seen users with 6.1.4
    The phone is an iPhone 4 16GB originally locked to Orange UK but has been working fine with a T-mobile UK SIM.
    I've spent a couple of hours looking on the Internet and had no luck at all so any replies would be greatly appreciated.
    Thanks.

    Are there any other errors that you are receiving? The exact error helps. You say it was locked to Orange, did they unlock the device? Or did you do something else to make the device work with the other SIM. There are a number of issues regarding activation, and many deal with trying to activate a device that has been locked to a carrier, hacked to work with another and then locked back when the device is updated. Would any of this pertain to you?

  • TS2756 I'm trying to connect my ipad2 to my phones wifi hotspot. my phone says hotspot is activated and it shows up as an option on my ipad but when i hit that on the ipad it shows a page with a list of things like ip address, domain, url. what do i do no

    I'm trying to connect my ipad2 to my phones wifi hotspot. my phone says hotspot is activated and it shows up as an option on my ipad but when i hit that on the ipad it shows a page with a list of things like ip address, domain, url. what do i do now?

    iOS: Understanding Personal Hotspot
    http://support.apple.com/kb/HT4517
    Use Bluetooth to tether your iPhone, iPod touch, or iPad
    http://www.macworld.com/article/1159258/bluetooth_tethering.html
    How to Connect an iPad to an iPhone Via Bluetooth Tethering
    http://techtips.salon.com/connect-ipad-iphone-via-bluetooth-tethering-25472.html
     Cheers, Tom

  • We have created two partitions in removable drive(USB). One of the partition is active and the other is hidden. We are trying to acess the hidden partition in Win PE 3.0 environment using WMI

    We have created two partitions in removable drive(USB). One of the partition is active and the other is hidden. We are trying to access the hidden partition in Win PE 3.0 environment using WMI. VBScript code snippet used to detect the partitions is given
    below:- 
    SetobjWMIService = GetObject("winmgmts:"_&
    "{impersonationLevel=impersonate}!\\"&
    strComputer & "\root\cimv2")
    SetcolDisks = objWMIService.ExecQuery
    Select * from Win32_LogicalDisk")
    It will return the partition which is active but fails to list the partition which is hidden. The same piece of code was supported on WinPE 2.0

    I am giving the complete code, may be you are able to understand better. We are using Win32_LogicalDisk to retrieves the complete information of all the drives (like C:, D:) including removable drives. 
    Function
    LocalDriveFound()
        strComputer =
    SetobjWMIService = GetObject("winmgmts:"_
    "{impersonationLevel=impersonate}!\\"&
    strComputer & "\root\cimv2")
    SetcolDisks = objWMIService.ExecQuery
    "Select * from Win32_LogicalDisk")
    ForEachDiskDrive
    IncolDisks
            DriveLetter = Left(DiskDrive.Name,1)
            DriveType = DiskDrive.DriveType
            VolumeName = DiskDrive.VolumeName
            WScript.echo Driveletter &
    "|"& Drivetype &
    "|"&VolumeName
    SelectCaseDriveType
    Case2 ,3  
    'Fixed or removable
    If(VolumeName=USBVolumeName)
    Then
    If(DriveLetter<>
    "Z")
    Then
                        ChangeDriveLetterWithMountvol DriveLetter,
    "Z"
    EndIf
                    bIsLocal=
    True
    EndIf 
    If(VolumeName=USBRootName)
    Then
    If(DriveLetter<>
    "Y")
    Then
                        ChangeDriveLetterWithMountvol DriveLetter,
    "Y"
    EndIf
                    bIsLocal=
    True
    EndIf 
    CaseElse
    EndSelect
    Next
    SetDrives =
    Nothing
    SetFileSystemObject =
    Nothing
    End
    Function

Maybe you are looking for

  • Need free good tutorial

    Hi I need a good tutorial about setting up flv playlist, with thumbnails, full screen button opltion and all thins in progressive download mode is there something like this for free? thanks

  • Win 8 and 8.1 - Acrobat X Pro - PDF Save (As) Full Screen Only

    When saving a file Adobe Acrobat X Pro on my WIN 8 (8.1) computer the save (save as) pop-up window ONLY goes to full screen mode. I have CS5.5 installed on my computer and no other Adobe programs are affected. I have uninstalled and reinstalled Acrob

  • Use iWeb '09 with Google Blog or Wordpress

    it's possible to use iWeb '09 with Google Blog or Wordpress? If it's possible, how? I'm still new to iWeb and blogging... Hope someone can help me with this...

  • Where to put basic properties?

    Hi all, I have a situation were I would like to have a set of properties accessible to the code outside the framework of servlets/ejbs (they are for some utility classes that need to be useful outside of the context of Weblogic) At the moment I am re

  • Displaying array sort swaps

    Hi there I have a working program that takes in the user input, puts it into an array and sorts it using two methods (bubble/selection) and prints them in ascending order. However I would like to compare the efficiency of both of these and at first I