Oracle report runs correctly via report builder but call report via form with parameters skips one of the plsql formula

Hello everybody,
I created a oracle report i.e Bank Book having banks transactions receipts and payments and opening balance w.e.f 01-jul-2014. parameters are bank code, from_date and to_date. opening balance calculates (return ope from table bankinfo +total receipts-total payments). reports runs correctly via report builder. balances are ok. but the problem is when i run this report via oracle form opening balance return only ope from table bankinfo and skips total receipts-total payments.....
i dont think so why this happend at all. some body help me...
thanks
Abdul Salam

Hi ,
This community is to discuss Oracle Application Server specific issues, you can post this query in for better response:
Oracle Reports (MOSC)
Regards,
Prakash.

Similar Messages

  • Suddenly today I am unable to view my Google Calendar via Firefox. But I can view it with Internet Explorer. What gives?

    Suddenly today I am unable to view my Google Calendar via Firefox. But I can view it with Internet Explorer. What gives?

    I have tried deleting all cookies and cache several times, but nothing works. I can open Google calendar but when I click on any entry I just get a blank box. If I try to make a new event entry nothing happens. Everything works fine in Internet Explorer.
    I am really getting tired of constant problems with Firefox. Every week I have something that doesn't work. One time it's downloading videos, the next week music or email, now Google calendar. I am about ready to give up Firefox forever.

  • My i pod touch was erased in the find my ipod app this has set my i pod where i cant do a thing but see a black screen with a rotating circle in the middle of the screen. i tryed to restore and itdosent download actual file to the i touch

    my i pod touch was erased in the find my ipod app this has set my i pod where i cant do a thing but see a black screen with a rotating circle in the middle of the screen. i tryed to restore and itdosent download actual file to the i touch and i cant do a thing with it please help me fix this and if thereis a way with out lossing my data would be great but however it can be done please let me know asap thank u.

    Take it to an Apple Store and they may take care of it for you.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101
     In Memory of Steve Jobs 

  • Hi! I've just downloaded my PDF file but when I open it with adobe reader for iPhone, the toolbar do

    Hi! I've just downloaded my PDF file but when I open it with adobe reader for iPhone, the toolbar doesn't show! Can please anybody tell me why?

    Hi Elena, you have to tap on screen of iPhone, toolbar will just slide in.
    -Charu

  • Report data shows up in Builder but not when run on web

    I have a report that pulls up the data just fine when run in Builder but when I run it on the web, it shows up, no errors, with no data...just blank.
    I am using a global temp table to do this.
    Any ideas on what might cause this to happen?
    Thank you for ANY suggestions!!
    --KWien                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Are you sure you are using all the parameters (that work in Builder) in the URL?
    Gicu

  • Report runs OK through concurrent program, but not when called through URL

    We have a custom 6i report developed that works successfully 100% of the time when run through a concurrent program.
    We are now attempting to integrate this into an OAF application. To do this, we build the necessary call to the reports server by reading different profile options, etc and come up with a URL like this:
    http://ebsd777.xxxxx.com:8000/dev60cgi/rwcgi60?d777_APPS+report=XXMFG_ESPEC_REPORT.rdf+P_SPEC_ID=43+DESFORMAT=PDF
    This report works 90% of the time when called like this, but the other 10%, we get the following error:
    "Error: The requested URL was not found, or cannot be served at this time.
    Incorrect usage."
    Trying to find what the differences are between the reports that work and those that don't - found that reports which fail seem to extend out further to the right than the reports that do work. But, these reports still fit on standard letter paper in landscape format - as we can verify through the concurrent program call.
    Is there some sort of report server setting or parameter which we can change to get this to work when called through the reports server URL?
    Any thoughts would be appreciated!
    Thanks,
    Craig

    Hi,
    Please post the application release along with the database version and OS.
    But when i call the same program through the pl/sql executable of another concurrent program , it does not print the pdf output by defaultHow do you call the program? What is the value of the number of copies profile option?
    Please see if these docs help.
    Note: 757901.1 - How To Restrict The Number Of Copies To 1?
    Note: 729117.1 - How To Specify the Number of Copies to Print by Report?
    Thanks,
    Hussein

  • VBScript Runs Correctly From Command Prompt, But Not From SQL Server Agent Job

    I'm trying to run this script on my local machine to do some post-batch cleanup and it doesn't run correctly from the scheduled job (or when I invoke the job).
    Here's the script in question:
    Option Explicit
    Const filePath = "C:\Documents and Settings\jmunn\My Documents\Visual Studio 2008\Logs\"
    Const holdDays = 6
    main
    Sub Main()
    ClearArchive
    End Sub
    Sub ClearArchive()
    Dim fso 'As Scripting.FileSystemObject
    Dim fld 'As Scripting.Folder
    Dim f 'As Scripting.File
    Dim delLogName, delLogOut, delCtr
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set fld = fso.GetFolder(filePath)
    delLogName = filePath & "Nightly Backup - Backup Logs Deleted" & ".txt"
    Set delLogOut = fso.CreateTextFile(delLogName, True)
    delLogOut.WriteLine(delLogName)
    delLogOut.WriteLine("")
    delLogOut.WriteLine("-- The following log files were deleted on " & DateValue(Now()) & " at " & TimeValue(Now()))
    delLogOut.WriteLine("")
    delCtr = 0
    For Each f In fld.Files
    If Left(f.Name, 48) = "Nightly Backup - SQL Server Databases_Subplan_1_" And Right(LCase(f.Name), 4) = ".txt" Then
    If DateDiff("d", f.DateCreated, Date()) > holdDays Then
    delLogOut.WriteLine(f.Name)
    fso.DeleteFile f, True
    delCtr = delCtr + 1
    End If
    End If
    Next
    If delCtr = 0 Then
    delLogOut.WriteLine("No log files were deleted this run...")
    End If
    Set fld = Nothing
    Set fso = Nothing
    delLogOut.Close
    End Sub
    If I put the script in its own file and run it from the command prompt, it runs just fine. If the script runs from the SQL Server Agent job, the for-loop will delete the files correctly, but the filenames
    do not get written to the deletion log file and the counter does not get incremented, so according to the job log, nothing was deleted. Why does the script run differently from each invocation? It can't be a permission thing, the service that logs in has full
    access to the directory and the files do get deleted. Any ideas out there?
    Between this and other outstanding issues, I'm quickly losing faith in SQL Server.  >=o(
    Thanks in advance for your thoughts!
    John
    Version Info:
    Microsoft SQL Server Management Studio      10.0.2531.0
    Microsoft Analysis Services Client Tools      10.0.1600.22
    Microsoft Data Access Components (MDAC)      3.85.1132
    Microsoft MSXML      2.6 3.0 4.0 5.0 6.0
    Microsoft Internet Explorer      8.0.6001.18702
    Microsoft .NET Framework      2.0.50727.3603
    Operating System      5.1.2600
    "A bus station is where a bus stops. A train station is where a train stops. On my desk I have a workstation..."

    Hi
    jrmunn
    i am trying to execute VB script to refresh my excel files.. using Vbscript file through SQL Agent job step.
    i have copied VBscript in a file with the extension RefreshExcel.vbs kept in C:\RefreshExcel.vbs
    Below is the script used inside the file (RefreshExcel.vbs)
    //---Script code-----------------------------------------------------------------
    Dim objXL, objWB
    Dim FileLocation, FileName
    On Error Resume Next
    'lgnConn = 1
    FileLocation = "F:\Reports\Reports"
    Set objXL = CreateObject("Excel.Application")
    objXL.DisplayAlerts = False
    FileName = "ReportFile1.xlsx"
    'MsgBox (FileLocation & "/" & FileName)
    Set objWB = objXL.Workbooks.Open(FileLocation & "/" & FileName)
    objWB.EnableConnections
    objXL.CalculateUntilAsyncQueriesDone
    objWB.RefreshAll
    objXL.CalculateUntilAsyncQueriesDone
    objWB.RefreshAll
    objXL.CalculateUntilAsyncQueriesDone
    objWB.Save
    objWB.Close
    Set objWS = Nothing
    Set objWB = Nothing
    objXL.Quit
    Set objXL = Nothing
    'MsgBox ("Refresh Completed")
    ---------------------------------------------------------------------------------------------------//Script complete
    Now when i am trying to call this script file in SQL agent job step (as you mentioned )
    as Type -cmdExec(OperatingSystem)
    cscript "C:\RefreshExcel.vbs"
    Issue: job step executed succesfully ,,but without performing any refresh on the excel. So i am not understandig what is going wrong. the same script file work when i am calling it through a batch file (window scheuler task). But it doesnt support
    to run the file "when user is not logged in"
    that is why  i want to refresh my excel file through sql agent ,which can be scheduled to any time and cab be run as SQL agent credentials.
    Can you please help me on this ...i have tried all the option but nothing working .. found hope by seeing your solution.
    Thanks in advance.
    Please help me. :-(

  • FRM-41214 unable to run report from forms with parameters

    Hi all,
    I am unable to run a report from forms if I pass parameters. Report is running fine in reports builder and in url if I access the report straightly.
    I used set_report_object_property to pass the parameters.
    Any clues to solve this problem?
    Priya

    Hi Jeneesh,
    Code is below:
    myreport1 :=find_report_object('MYREP');
    reportdata := Get_Parameter_List('reportsdata');
    IF NOT Id_Null(reportdata) THEN
    Destroy_Parameter_List( reportdata );
    END IF;
    reportdata := Create_Parameter_List('reportsdata');
    Add_Parameter(reportdata, 'account_number', TEXT_PARAMETER, :parameter.account_number);
         /* Setting the properties into Report Object */
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESTYPE, CACHE);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESFORMAT, 'htmlcss');
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_SERVER,vc_reportserver);
                   SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_FILENAME, 'C:\priya\forms\EmcySummary.jsp');
              SET_REPORT_OBJECT_PROPERTY(myreport1,REPORT_OTHER,'account_number='|| :parameter.account_number);
         /* Value of v_rep identifies the report that is currently running either locally or on a remote report server */
         vrep := RUN_REPORT_OBJECT(myreport1,reportdata);
    /* Checking for Report Server is started or not, if not throw an exception else proceed */
         if vrep = vrep||'_0'then
         raise form_trigger_failure;
    end if;
         vjob_id := substr(vrep,length(vc_reportserver)+2,length(vrep));
         vrep_status := REPORT_OBJECT_STATUS(vrep);
         /* Checking the status of the report */
         WHILE vrep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    vrep_status := report_object_status(vrep);
    END LOOP;
    /* When the report status is successful then report is generated in Web */
         IF vrep_status = 'FINISHED' THEN
         --     COPY_REPORT_OBJECT_OUTPUT(vrep,v_tempstorage);
              WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
         END IF;
    ---Any clues?

  • I purchased songs via my iPhone but lost it when syncing with itunes. How do I get them back?

    Hi everyone,
    I'm sure this happened to some of you before but I'm not sure what I'm doing wrong.
    I purchased music direct via my iPhone but when I synced with iTunes some of my albums were missing. What is also weird is that the digital booklets have synced but I can't find the songs. How do I get them back?
    I know that Apple has a policy to not downloading twice but I honestly don't know what I'm doing wrong. I'm not all that confident either so would really appreciate the help.
    Cheers.

    See Here for
    iTunes Customer Service Contact
    http://www.apple.com/support/itunes/contact.html

  • Can I build a interactive log-in form with Edge and Export Raw code to edit?

    Hey Everyone,
    I love adobe edge, but I'm still getting used to it. It's very easy to use, but I ran into an issue. I am redesigning a webpage for a client and need to build a log-in page and re-design the site. The site is a Dashboard that will be on an ipad and computer. What I need to do is take my design and design a template for them to use. They require HTML4 and up with some coding (not a fan of coding, I am strictly a designer, and before you guys critize about why I took the job when I don't know coding, it's a side project they are having me do for them while the main design project is being evaluated and I'm on contract so I don't have a choice, still would like to learn how to achieve what I need) but I still want to maintain the animation I have planned for the log in, very simple nothing special. Basically what I want is when you log in and click in the "text" box the background image will go from the clear image to the blur image.
    What I've done so far,
    I built the log-in page as a test to see if it would work (didn't take long since I saved as a PSD and imporated the files). I've attached an imagw to show a visual of what I am trying to do. The animation works fgreat for what i need, but now I want the box I click in to be writtable inside and work with the animation. I can't seem to figure out how to make the box's I created typable to type in for a "Username" and "Password" in other word interative. I used the boxes provided in edge because they are HTML boxes, but I want them to become text boxes to enter the Username and Password (It doesn't have to be perfect just enough for me to type in to pass off to the programmers). I know you can make edge interative with muse and what not and I was hoping to achieve what I want for them so I can export it and pass it off to the programmers. Is there a way to add this in Edge? If not, I know you can export to Dreamweaver and  when I import the file to Dreamweaver I just see a grey box with the file I created (.oma I think) from Edge but not the content unless I "Preview it" in a browser.
    So is there a way to build what I want in edge without resorting to dreamweaver? If so and there is code to input can you guys provide step by step on how to put it in the program? And is there a way to export the project so I can pass the RAW code to the programmers to do there thing? Lastly, is there a way to incorporate Jquery mobile to Edge? For the Dashboard can I build the same thing in Edge? Example what will be in there are things like charts, Calendars, Dates, Etc, Etc.  If I need to resort to building it in dreamweaver I can provide the code for you guys to alter to change for what I need. Like I said I'm not a big fan of coding and a little stranger to it. I just know the basics and the fact I haven't touched dreamweaver since CS4 makes it even harder to use. Some tools I like are gone such as AP divs. However i like the new elements you can inject into the program such as the Jquery stuff, but for the simplist things I want to do such as moving them left or right or centering them is a different story.
    Please Help!
    Thanks!

    if you search on the forum you can find useful posts about creating a form in edge
    Zaxist

  • My issue is not a particular add-on, but not been able to find out which one has the royan hourse in it, every morning it scans throuth all the site visited the day before and send the information somewhere!

    I first started thinking my all Forum passwords was stolen because all the link as mark as read, so I change my passwords but the problem persisted, so I installed a packet sniffer to see is was a problem of my password been taken as I changed them.. but I could not see that.... BUT as I watch the packets I notice al the domain links of the sites I visited the day before (100's) passing through.., I try testing again but only appends one a day (the first time, maybe twice a day) I open Firefox (3.6 - 3.6.13), how can I pin point the bad add-on? I remove the one I thought were the bad ones (a have 40 or so installed) with no luck, I ran Firefox in save mode and the problem went away!!.. Please help.. One of the add-on from the Firefox Add-on site is snooping on you users..

    Two thoughts:
    (1)     It is possible that your Adobe software was the result of belonging to a now-discontinued Adobe Print Service Provider program where for a certain annual membership fee, print service providers were provided with (a) both a Windows and Macintosh license to the Adobe print-oriented software products (such as InDesign, Illustrator, Photoshop, and Acrobat) and (b) special direct product support as well as the ability to put your name on Adobe's website as a member of this program. The program ended over a year ago if I remember correctly.
    (2)     You may wish to contact Adobe Customer Support (not Technical Support) and see if they can track down any and all licenses associated with your company. If you have the names of the former employees who worked with this software, it would be helpful. Likewise, if you were a member of the discontinued Adobe Print Service Provider program, you may have some options for upgrading/updating the software you have.
    Unfortunately, you cannot get any more definitive information about your situation on these forums.
    Good luck.
              - Dov

  • TS1398 hi my ipad is connected to my wifi but it keeps coming up with safari could not open the page because the server stopped responding its saying this know matter what i try to open what am i doing worng please help

    my ipad will not load any pages an after about 10 mins comes up with safari could not open the page because the server stopped responding but iam conected to wifi please help as i have been trying for 2 days now and is doing my head in

    Does the iPod connect to other networks OK?
    Do other devices now connect and work OK?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on the router
    - Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    - Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Just got new iphone 4s. trying to edit photo but screen is black and with a "constrain" bar at the bottom of my screen, can't clear it or get back to photos

    Just got new iphone 4s. Trying to edit photo but screen is black and with "constraint" bar at the bottom.  I am unable to clear the black screen or get back to photo gallery.  Help!

    - Exactly what are you doing? You saying you are trying to syn it to new comnputer. When yuo sync it to a new computer iTunes will erase the iPod and replace its contents with what is i the iTunes library of the new computer.

  • I tried to upgrade from cs6 to cc, some programs have been successfully upgraded but some not. Problem with PS. Here is the problem: FATAL: Payload 'Camera Profiles Installer 9.0.0.6 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_d

    Hello, I'v been using Adobe creative suite for a real long time and this week end I upgraded to CC. Most of the applications have been installed. Unfortunately I'm not able to install Photoshop and After Effect. Here is the problem:
    FATAL: Payload 'Camera Profiles Installer 9.0.0.6 {539AEF15-3A2B-4A31-A587-7E90F7D9C700}' information not found in Media_db
    Anyone has a solution for me?

    I have recently started having this problem in PSE8. The Adobe workaround
    did work, but I don't fancy having to re register each time I use it.
    What I have discovered is that it's nothing to do with the image metadata as it occurs before any image is opened.
    It SEEMS to only occur if you use file/open with to open an image in the editor - IE start PSE with that command.
    If you close elements down, and start it using programs/PSE/Elements (or your desktop shortcut) - the panorama feature magically works.
    Each time I've opened the editor 'automatically' using image/open with, it seems to create the problem.
    Hope this helps

  • Discoverer report runs okay in test system but very slow in live

    Hi all
    My Discoverer report takes about 5 minutes to run in the test environment. The same report (absolutely the same SQL in the custom folder in the admin edition and the same conditions and sort in the Desktop edition) takes at least 45 mins to run in live.
    Has anyone faced a problem like this? How can I speed up my report in the live environment? I am using Discoverer version 4.1.48.06.00
    Thanks in advance!
    Regards
    Aruna

    Hey Aruna.
    Are you sure the 2 environments are exactly the same (ie: one recently copied to the other)? Reason I'm asking is that if one has many more records, or one has an index, etc. then that would, of course, cause a difference.
    What about the time when you're running it? Is the production environment an Apps environment and they're running batch jobs, updating shipping info in the last week of the month, etc?
    I would first of all see if the environments are the same by trying something as simple as running the query in TOAD or SQL Navigator or SQL Developer in both environments and then seeing if there's the same difference. If not, then move on to the Discoverer side of things.
    If they're still different, then are the Disco environments the same? Have you turned query prediction, etc. off in DEV but not in PROD?
    Is the DEV box a hot damn new UNIX box with all the good stuff like oodles of memory, multi-processors, etc? And is the PROD box a Commodore 64? Okay, just kidding on the last test, but you get the idea.
    Start at the same relative time (ie: morning). Start TOAD, etc. and see the speed difference there. Then move on to Disco and see the speed difference.
    Russ

Maybe you are looking for

  • FAQ - SAP Solution Manager for VARs

    You can find further technical questions around configuration & functionalities in a comprehensive FAQ to SAP Solution Manager for VARs. This FAQ covers questions and answers around:     > SAP Solution Manager, enterprise edition     > SAP Solution M

  • Erratic file naming. Why doesn't this work?

    The Finder allows certain names for files and folders sometimes, but then doesn't allow them at other times. What's happenig? Here's an example. I created a folder with this name: "National Geog> Africa (4 parts, 1hr each)" with no problem. Later I w

  • Console crash when viewing all Incidents etc.

    On one of our systems when any user views "All Open Incidents", or any view that has a large number of work items, or attempts to search for a large number of work items the console crashes.  The error logs are as follows: OperationsManger log Log Na

  • Being able to see hebrew language on ipod

    Hi I live in NY and i am jewish i i recently put in my ITUNE Library some jewish Music with Hebrew Titles on the Library i am able to see the Hebrew fonts because my Windows supports Hebrew but once i sync it to my IPOD i don't see the hebrew fonts a

  • Missing Plug-ins in Logic Pro x

    My logic program says that i am missing plug-ins and its not letting me create any new tracks. any help?