Is there a way to execute a proecdure in multiple lines in sqlplus

Is there a way to execute a procedure in multiple lines in sqlplus
this is what appears in my text file. It is not wrapped
exec UNREGISTER2(p_ChannelType=>:p_ChannelType,-
p_User_ID=>:p_User_ID,-
p_CallerID=>:p_CallerID,-
p_DDINo=>:v_ddi_no,-
:p_Return);
of course the above cannot be executed
thanks

Declare
  Result Number;
  p_result Number;
Begin
result := p_pck.f_funct  ( P_para1 => p_result,
                                  p_para2 => 'XX',
                                  p_para3 => 'wser',
                                  p_para4 => 'yyyy',
                                  p_para5 => 'Y'
End;
Result To hold Value Return By The Function
p_result Is Out para From Function f_unct which Is written inside pck p_pck

Similar Messages

  • Is there any way to execute process chain from the portal?

    Hello,
    Is there any way to execute process chain from the portal? I dont want to link process chain with any of report. I want to have a button in some of portal folders. User presses the button and it executes the process chain.
    I was thinking about to create a fake planning cube, aggregation level and planning function. I call FM within the Fox planning function that runs the process chain. But it should be done within the report.
    Any ideas?
    Thanks a lot in advance!

    Hi.
    I want to have a button in some of portal folders
    You mean that you want to use some link in EP ?
    Regards.

  • Is there any way to add PO no and  corresponding line item of PO in VL32N?

    Hello,
    The scenario is, we have created the IBD and deleted one of the line item and saved it.
    We went to VL32N and added the missing line item to IBD but PO number and corresponding item number of PO field of newly added line items are grayed out. We are not able to add PO number in VL32N screen.
    Is there any way to add PO number and corresponding line item of PO in VL32N screen of IBD? Our client does not want to create new IBD for same PO. He wants to add the line item in same IBD.
    Thanks,
    Milind
    Edited by: Csaba Szommer on Aug 27, 2011 4:52 PM

    Hello,
    This thread is pending since long time. No body has answered my question. Can any body suggest me?
    Thanks
    Milind

  • Is there any way to change the security on multiple pdfs without having to open each pdf in acrobat ?

    Hi all
    Is there any way to change the security on multiple pdfs without having to open each pdf in acrobat ?

    Hi Gilad
    Thanks for the reply
    I'm not sure how to create an action I have Acrobat Pro 8.
    My company would love if I could make it as a batch file or some exe so that each file doesn't have to be opened in Acrobat

  • Is there a way to reuse a region in multiple pages?

    Is there a way to reuse a region in multiple pages?
    For future maintenance, it would be easier to make changes in just one region. Maintaining multiple copies of a region is more work and eventually someone will forget to change one of the regions.
    Thank you.

    Hi wolfv
    Create your region on page 0 and then conditionally set the display of the region for specific pages in you application only.
    Under the region's "condition type" attribute select " Current page is Contained within Expression 1 (comma delimited list of pages)" and in Expression 1 put 1,2,4,6,99 etc or what ever pages you want it to appear on.
    This works especially well for tree regions.
    regards
    Paul P

  • Is there a way to reduce the size between the lines in when creating a form in FormsCentral so that you can fit more lines on a page?

    Is there a way to reduce the size between the lines in when creating a form in FormsCentral so that you can fit more lines on a page?

    In the Folders Tab, right click on  folder  then click Reveal in Explorer. This will open an Explorer window with the folder selected.  In Explorer you can right click > Properties or navigate to whatever you want to measure.

  • Is there a way to apply Time Remapping to multiple clips simultaneously?

    Is there a way to apply Time Remapping to multiple clips simultaneously? I'd like to uniformly speed up and slow down two different clips that are playing in a picture-in-picture setup. I’m hoping there’s a more elegant way to sync them up than just editing their Time Remapping functions individually (I already tried using an Adjustment Layer. It didn’t work).

    you can try nesting the two clips together, then control the time remapping of the nest.

  • Is there any way to upload Tariff Code (with multiple XML files) from application server?

    Hi All,
    Is there any way to upload Tariff Code (with multiple XML files) from application server?. Its urgent.
    Regards,
    Jatin

    Hi Jatin,
    Yes, of course you can upload multiple files for tariff codes.
    This can be done by the below path:-
    SAP GTS Cockpit(tcode-/sapsll/menu_legal)-->Customs Management-->Classification-->Classification Master Data-->Upload Tariff Code Numbers from XML file(tocde- /SAPSLL/LLNS_UPL101).
    In the above area after browsing and choosing the first file, please select multiple check box to choose more files as well. Then you can further select your application server and upload all those files in one go.
    PS:- Although, we have an option to upload multiple such files but actually we should avoid multiple file uploads due to various reasons. Hence, please take utmost care during such procedure.
    Regards,
    Aman

  • Is there any way to watermark or add a copyright line to photos in iPhoto?

    Is there any way to watermark or add a copyright line to photos in iPhoto?

    It can be done in Aperture or with an app like these
    Impression
    iWatermark
    There are others. Search on Macupdate.

  • Deployed Package Execution - Is there a way to execute a package a host has remotely through the client?

    If I have an Program/Package deployed to clients so they can manually run it as needed, is there a way I can remote execute that package on the targeted machine locally (but programattically) instead of having to interface with the SCCM server? 
    Like, through a WMI class or something?  Thanks.

    Well, Roger's client center is open source, so you can always download his code and look at how he's doing it.
    The SDK has a complete section on Software Dist:
    http://msdn.microsoft.com/en-us/library/cc143006.aspx
    Ultimately, everything is done using WMI so initiating WMI functions remotely is quite easy.
    This should get you started also:
    http://wbracken.wordpress.com/2009/10/13/vbscript-run-optional-sccm-advertisements/
    Jason | http://blog.configmgrftw.com

  • Is there any way to execute a custom script after JPA created tables?

    Hi
    I am looking for a way to execute some scripts right after JPA created the tables. I want the script to be executed once and not every time my application start.
    I though maybe Toplink has some extensions for this.
    Thanks.

    In general the auto-generated DDL is more for rapid prototyping, than production. If you have got to the point of defining your own DDL extensions, you may be better off outputting the auto-generated DDL to a file, and using ant or some other tool to define the schema including your extensions.
    You could do it using EclipseLink as well using a SessionCustomizer (which is an event class set in your persistence.xml). The SessionCustomizer is executed before the DDL is generated however, so you would need to remove the DDL properties from your persistence.xml and generate the DDL using an EclipseLink SchemaManager (SchemaManager.replaceDefaultTables(true, true)).
    James : http://www.eclipselink.org

  • Is there a way of selecting all files within multiple folders?

    Let's say I have a folder called 'text books' and within that folder I have 100 more folders named by author.  Inside the folders are .txt files of their work.  Is there any way I can select all the .txt docs and paste them in one big folder?  In other words, is there a way of removing all the sub-folders and putting all the .txt files together in one place?
    regards
    Rob

    Thanks Niel.  Worked a treat!  Took me a short while to figure out how to get it to run in the directory I wanted it to (as the file was also on NAS)  as I have never used AppleSript before.
    So, for posterity, and if anyone else is interested in trying to do this, here is my final script:
    set pa to "/Volumes/Public/etc - whatever your path is"
    set aspa to POSIX file pa
    set tpa to "/Volumes/Public/ directory you are moving them to"
    set as2pa to POSIX file tpa
    tell application "Finder"
      move every file of entire contents of folder aspa to folder as2pa
    end tell

  • Is there any way to change user operations on multiple tracks at once?

    I have a complex project (99 tracks, dozens of menus and scripts). I need to make one version of this DVD for the end client (teenagers at health clinics) who will be forced to view it in a specified way, and another version for educators (staff at the clinics) who will be allowed to fast-forward and have access to a menu from which they can jump to different points in the DVD.
    I have different menus to serve as "first play" for these different versions so that I can easily switch between versions when burning disc images, and I have set up GPRMs to make navigation different for the two versions automatically. My problem now is that I want to disable forward scan, next program, root menu, and title menu for the client version. As far as I can tell, I have to do that independently for every single track and menu. Bleah. This is especially annoying since the DVD is still in development, so I am continuing to change small things and will need to keep both versions up to date as I do.
    Is there any way to select multiple tracks/menus and change user operations on all of them? Or any other work-around or script that could do it? I thought this would be a perfect task for the automator, but I'm not very familiar with that application and don't know how (or if it's possible) to create new actions other than the ones that are available.
    Any ideas?
    thanks!
    Julie

    Thanks. But the disc inspector only appears to let me change things like where the title menu button takes you, not detailed user operations. I have pretty much given up on this being anything other than a giant hassle, but if anybody knows whether a script could do this, I would be eternally grateful.

  • Is there a way to fix faded color and ghost lines on Iphone?

    The screen on my phone is showing faded colors and when there is white text a ghost line appears. Is there a way to fix this? or is my phone just dying?

    your phone screen is dying. you need a repair. If your in warranty just contact apple but if not get a repair shop to fix it. their is no workarounds for this.

  • Is there a way to find Jdev version from command line.

    Hi All,
    Good Day. We have an application that launches jdeveloper xslt mapper. We set up classpaths and launch it. However we need to support all versions of jdev - 10.1.2, 10.1.3, 10.1.4. Is there a way to determine the jdev version I am using at runtime and set appropriate class path and launch. For now we let the user to decide. We are desperate to auto detect the version...Help plz
    -Confused

    Hi All,
    Good Day. We have an application that launches jdeveloper xslt mapper. We set up classpaths and launch it. However we need to support all versions of jdev - 10.1.2, 10.1.3, 10.1.4. Is there a way to determine the jdev version I am using at runtime and set appropriate class path and launch. For now we let the user to decide. We are desperate to auto detect the version...Help plz
    -Confused

Maybe you are looking for

  • 2013 Macbook Air Sound Issues

    Alright so I've had my 2013, 13" i7 8GB/512GB Macbook Air for around 2 months. A while back I began encountering issues where the system's sound would just stop working. This issue applies to outputting through headphones and the built in speaker. I

  • How to deploy content of webdynpro- src- mimes via JDI ?

    Hello, maybe anyone has overcome this problem already. I am developing a webdynpro application using JDI scenario 2+ (dev in track). The application has a xml ini file and some pictures in the src->mimes->Components folder. When I build and deploy th

  • Apple Mails connection to the Internet

    Sometimes I get an email with a link in it to connect to the internet. I am using Apple Mail. It connects to Internet Explorer 5 which we all know doesn't work too good anymore. How/where do I change the Apple Mail preference to connect to the intern

  • + button is not present

    Hello, I have exchange 2013 and EXchange Online in hybrid mode.  When i go to EAC 2013 --> recipients --> resources the "+" button is not present. So i cant create room mailboxes any ideas? help

  • Keynote presenter tools -- limited view to next slide only

    I can't seem to be able to see all potential slides available in the presentation tools for Keynote. As opposed to ppt, where you can see all the available slides and move around dynamically as needed during an organic presentation, keynote is only a