Not able to see output

Dear all,
In the following procedure, i am not able to see output, if i done this by hardcoding values then working fine. while testing i got the error is :"no data found"
could anyone help me to overcome this problem. iam using 11g.
create or replace Procedure SP_GET
p_CompanyCode IN VARCHAR2,
p_PolicyNo IN VARCHAR2,
p_resultset OUT TYPES.cursortype
AS
AgentNo VARCHAR2(9);
Clientno VARCHAR2(10);
Agentname CHAR(60);
begin
OPEN p_resultset FOR
SELECT MWAGTN into AgentNo FROM ext_lsp_CASMWAGT WHERE MWCO = '''|||p_CompanyCode|||''' And
MWPOLN = '''|||p_PolicyNo|||''' and
Exists (SELECT MCCSTA FROM ext_LSP_CASCNTRM WHERE MCCO= '''|||p_CompanyCode|||''' And MCCNTR = '''|||p_PolicyNo|||''');
IF AgentNo IS NOT NULL THEN
SELECT CRCLTN into Clientno FROM ext_lsp_CMSUSREL
WHERE CRCO= '''|||p_CompanyCode|||''' And CRALPH = 'AGT' And CRCTL1 = AgentNo;
END IF;
SELECT CMNAME into Agentname FROM ext_lsp_CMSCLNTM WHERE CMCLTN = Clientno ;
dbms_output.put_line(AgentNo||Agentname||Clientno);
end;

Your procedure looks completely incorrect. It has lot of unnecessory code in it. Tell us what is your objective. What do you want SP_GET to do.
OPEN p_resultset FOR
SELECT MWAGTN into AgentNo FROM ext_lsp_CASMWAGT WHERE MWCO = '''|||p_CompanyCode|||''' And You are opening a cursor and at the same time you are selecting the value into a variable. That is wrong. And you don't have to enclose variables with single quotes in the where clause.
All the SELECT statement in your procedure can be combined into a single statement like this
select a.mwagtn as agentno
     , c.crcltn as clientno
     , d.cmname as agentname
  from ext_lsp_casmwagt a
  join ext_lsp_cascntrm b
    on a.mwco   = b.mcco
   and a.mwpoln = b.mccntr
  left
  join ext_lsp_cmsusrel c
    on c.crctl1 = a.mwagtn
   and c.crco   = a.mwco
   and c.cralph = 'AGT'
  join ext_lsp_cmsclntm d
    on d.cmcltn = c.crcltn
where mwco   = p_companycode
   and mwpoln = p_policyno;

Similar Messages

  • Not able to see output file

    Hi All,
    this is regarding oracle apps, whenever i submit the concurrent program and tries to see the output, output tries to open in new window and closed automatically.
    not able to view the output, need to go at UNIX Box and then from there i can see output.
    i am using
    internet explorer 8.0
    R12 instance.
    Kindly let me know if you need any other information.

    Hi;
    Did you try from different machine and different OS&Browser?
    Please see below and check your settings
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Regard
    Helios

  • Soap - Xi - Bapi (different)(not able to see output)

    hello
    Firstly thank to Tuhin & Venkataramanan
    In reference to my early question dated  Posted: Dec 15, 2006 7:59 AM
    /people/community.user/blog/2006/10/24/exposing-bapi-as-web-services-through-sap-xi
    --  web service request to XI ,than XI call a BAPI  ,and the output of BAPI is sent back to web service responce.--  I am using Altova XML Spy to send a web service request ,& getting responce.I had done all configuration in IR, ID.
    As i send a request,through Altova XML spy ,and getting a responce to.  but in responce
    the BAPI Output Data is absent ,only element tags shows zero,
    ex-- <customer salary> <b>0</b> </customer salary>
    it should have some value i.e.  like 2300 ,which BAPI is giving 
    <u><b>Every thing is working</b> </u>In <b>Itegration monitering-> adapter (RFC)  status green</b>
    the massage is---
    BAPI name is -- <b>BAPI_AR_ACC_GETPERIODBALANCES</b>
    Text
    BAPI_Cchannel Receiver channel 'BAPI_Cchannel' for party '', service 'account2service' (internal name 'RfcClient[BAPI_Cchannel]')
    Client data: {jco.client.lang=EN, jco.client.snc_mode=0, jco.client.client=800, jco.client.passwd=******, jco.webas.ignore_jdsr_error=1, jco.client.user=guest, jco.client.sysnr=00, jco.client.ashost=192.168.100.21}
    Repository data: {jco.client.lang=EN, jco.client.snc_mode=0, jco.client.client=800, jco.client.passwd=******, jco.webas.ignore_jdsr_error=1, jco.client.user=guest, jco.client.sysnr=00, jco.client.ashost=192.168.100.21}
    Current pool size: 0, max pool size : 1
    RFC_HISTORY
    - OK: 2006-12-20 10:06:09 IST: Message processed for interface BAPI_AR_ACC_GETPERIODBALANCES
    - OK: 2006-12-19 22:37:20 IST: Message processed for interface BAPI_AR_ACC_GETPERIODBALANCES
    In <b>SXMB_MONI staus flag is processed succesfully</b>
    there in payload ,the out put is there but with the same empty tag ,which i am getting in
    as responce in Altova xml spy, as described earlier
    there is no mapping exception
    <b>I am not able to locate the error</b>
    Might be some different mapping required for BAPI Responce to WEBservice responce or else.
    Thanks & Regards
    Ashutosh

    Hi,
    Try to execute that BAPI in R3 first.
    If u r passing input from XI to BAPI in R3 some number input fields should be preceeded by zeros(means from ur soap request message).
    eg if ur vendor no is 169 then u should preceed it with 7 zeroz as vendor no. ia a 10 digit no.
    eg 0000000169.
    In ur bapi if u r passing any no. then preceed it with required zeros(it is required if u r passing data from XI but not in case of R3 BAPI execution).
    Then test ur response message in ur response mapping.
    Thanks.
    And then check

  • Not able to see Data in Xcelsius 2008

    Hi everyone,
    My question is I am not able to see data in Xcelsius spreadsheet although I am able to connect to SAP BW and also able to see and select query but when I select Cross Tab Data in output Values it is not displaying in Xcelsius spreadsheet
    System Info
    Xcelsius 2008 Enterprise Trial Version SP 3.0
    SAP BW 7.1 SP 6 ABAP and JAVA
    Any help would be appreciated

    Hi Rashid,
    When you are using the BW conenction in Xcelsius you will not see any data in the spreadsheet at design time or at preview time.
    To see the data you need to go SAP > Publish, then SAP > Launch to test the dashboard in the NetWeaver Portal as that is the only place where the data can be viewed.
    Regards
    Matt

  • Not able to see the generated chart image

    I'm using Oracle 6i Reports and Oracle 9i dtabase to generate a report with graphs embedded. I'm able to view the tables populated with exact values but cannot see the graph. The chart image and html generated are placed correctly in the directory pointed to cahedir, but yet I'm not able to see the image. Can you tell me how to congifure the Html output from the server. The server is introducing a base tag pointing to a different location. Can I change the location.

    HI
    It is still not showing image. Messsage coming is "Right Click Here to Download Pictures. To help protect your privacy. Outlook prevented automatic download to this picture from the internet."
    Thanks & Regards,
    Ravi Grover

  • Cisco 877w - Apple devices not able to see wired apple TV

    Hello All,
    Can anyone point me to a doc or forum discussion on how to setup the wireless interface to forward multicast packets?  Basically I cant get the ipads etc.. to see the AppleTV to control it.  I connected an AP and it works fine so its got to be something with the way the router handles the packets from teh integrated wireless interface.  I've been searching the forum for about 1hr and haven't founf anything other than a breif mention of broadcast forwarding and multicast setup.
    Has anyone got anything more complrehensive I can read?
    Thanks
    David

    Hello David,
    Thank you for contacting the Sales Acceleration Center (SAC) regarding your recent inquiry, Case Number
    Case Description:
    Cisco 877w - Apple devices not able to see wired apple TV
    Case Solution:
    The Bonjour service uses multicast to advertise your Home Sharing enabled device to the local network. In my case the Cisco 877W I was using had a Layer 3 enabled BVI (Bridged Virtual Interface) to which the Wireless Dot11Radio interface was not fowarding multicast packets properly.
    First of all, obtain the Multicast groups your wireless adapter is configured for (on Windows open a command prompt and run the below command):
    The result will give you an output as per below, we are interested in the multicast address directly after the 224.0.0.252 address 239.255.255.250:
    Then we need to enable multicast routing on the router, connect to your router and enter config terminal mode:
    Next we will configure IGMP v3 and add the relevant Wireless interface on your router to the correct multicast address group:
    Next perform the same config your BVI interface:
    Once complete save your changes and confirm both interfaces have been added to the multicast groups using the command sh ip igmp group:
    You now need to reload your router and restart iTunes and then attempt to connect to Home Sharing from your Apple TV.
    Other commands that I used to troubleshoot with were:
    debug ip mpacket - Multicast Packet Debugging
    debug ip mroute - Debug Multicast Routing
    sh ip mroute - Show IP Multicast Routes
    By default the Cisco implementation of a Dot11Radio interface and a BVI interface don't appear to forward multicast packets between each other. Seems odd to me as they're both in the same L2 bridging group..anyway.
    I am going to close the case for this specific inquiry on my side. If you need moere information Please feel free to reach out to me or any member of the SAC team if we can be of any further assistance or if you have any other related questions in the future. We strive to provide you with excellent service. We value your input and look forward to serving you moving forward.

  • Not able to see Print Preview of Purchase Order.

    Dear All ,
                                                                       I m not able to see  the Print preview of Purchase Order , as the P.O is well release , but as i m click on Print Preview , an info displays in task bar , -> "  Error in OPEN_FORM for document 4501472103
    Message no. ME142
    Procedure
    Report the error to your system administrator.
    I request you to pl help how to fix this problem.
    Rgds,
    sap11

    thanx for your support , here i need to know one thing that i had gone to MN06 to display the cond. record , here for the output type i m using in P.O
    Given below different key comb. are maintained for same p.o , but as p.o was created then in message tab the first combination of fax was displayed and for this combi when clicking on print preview the message came for " Error in open _form " .
    1) P doc type / P. org./ Vendor =  Medium = 2 ( fax) / Date / time = 1 , is maintained
    2) P Doc. Type / P.org / Pgrp  =  Medium = 1 / date/ time = 1 is maintained.
    3)  P Doc. Type / P.org =         Medium = 1 / date/ time = 1 is maintained
    4)P org.                        =         Medium = 1 / date/ time = 3 is maintained
    Here my querry is that as medium = 1 ( print output ) is also maintain then why Other comb, were not triggered , why only Comb. for medium -=2 ( fax ) was trigered , and after that as i changed the medium to 1 , i m able to see print preview , why ?
    why i m not able to see p prwe for medium 2 ?
    Thanx n rgds,
    sap11

  • I am trying to communicat​e with third party instrument via usb but I dont know how to do it even in Ni-max I am not able to see usb port symbol in Devices and Interface section.

    hello,
    I am tring to communicate my Powersupply which is not from Ni via USB cable ,but I am not able to see my connection or usb symbole in Ni-max .
    first time I am using this will you please guide me,and is there any driver i need to download for that?here I put one attachment regarding to this.
    Thanks in advance.
    Solved!
    Go to Solution.
    Attachments:
    usb is not detected.png ‏182 KB

    ya I know that,
    thats y i asked you that y it is so because i am not able to see that usb port here i can see that much only.
    thats y i got confused.
    and I can see my hameg connection in my control panel and also in device manager.
    http://www.hameg.com/drivers.0.html?&no_cache=1
    this is website for hameg driver in that product select  hmp4040 than hmp4000 list will open in that i have download third one in which plug and play is given.
    or here i send my vi it might be helpful.
    Attachments:
    hmp4040 Output DC Volts.vi ‏17 KB

  • On RZ04 (I am not able to see my spool work process in the list...)

    Hi Friends,
    I am using ECC6. I have defined 7 (4 dialog, 2 background, 1 spool) work processes on dialog instance.
    Now I am trying to define operation mode using rz04. But when I define the number of dialog and background work porcess according to day time or night time. I am not able to see my spool work process in the list. It looks like:
    OP Mode______________Dia______BP______BPA______Spo______Upd______Up2______Enq______Sum
    B30_AS_Day____________4______3________________________________________________________7
    B30_AS_Night___________3______4________________________________________________________7
    Please ignore the underline ( It is just for formatting the output).
    Please tell me how can I resolve this issue.
    Thanks

    Hi Tiago,
    Yes, I have set the rdisp/wp_no_spo on the instance profile and restarted the instance after update.
    Now, I check the value of rdisp/wp_no_spo in RZ11.
    It shows like:
    Dift value______   0
    ProfileVal______    1
    Current value____   1
    So, Plesae tell me how to resolve this issue.
    Thanks & Regards
    Ajay Saini

  • I am not able to see the new drive

    I have a Sun Blade 2500 with SUN 5.9 OS installed.I have on hard disk drive in it and now i attached another drive in this system but i am not able to see the new drive when i run the below command
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    Specify disk (enter its number): Specify disk (enter its number):
    ==============================================
    Although i can see two drives in the output of below command:
    bash-2.05# iostat -E |grep Size
    Size: 73.40GB <73400057856 bytes>
    Size: 73.40GB <73400057856 bytes>
    Size: 0.00GB <0 bytes>
    Edited by: 842294 on Apr 6, 2011 4:40 AM

    Resolved
    bash-2.05# cfgadm -c configure c0
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    1. c0t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@1,0
    Specify disk (enter its number): Specify disk (enter its number):

  • Not able to see the data in the report

    Hi All
          In my cube i am having data.But when i am running the report ,i am not able to see the data.
        The error its throwing is -No Applicable data found.
        what could be the problem,please provide me the idea to solve the problem.
    Thanks&regards
    syam prasad dasari

    HI,
    See that any restrictions are there in the report(Filters)....Give the same restrictions in Listcube and see if you are getting data or not.....
    Thanks

  • Not able to see data in the qualifier table of the main tbl , Data Manager

    Hi,
    I have an issue of not able to see the data of two qualified table after populating them.
    It is in mdm-5.5 ps4.
    When populating data first time ,it shows up in those two table slots in the right side of the Data Manager.
    However subsequently it does not show up in those slots , only by right click on the table and selecting "View/edit", the window pops up where those data shows up.
    However unlike other qualified tables the data does not showup automatically for these two tables.
    Appreciate any suggestion or feedback on this.
    regards,
    -reo

    You may have checked the Filter Check Box next to the Qualified Lookup cell in Data Manager, when the current table is the Main Table.
    You use the Filter Checkbox to limit the qualified table records by the current search selections.
    Secondly, you have see if there are any Qualified Links to the main table record you are viewing.
    If not, create the Qualified links in Data manager, for the main table record and the Qualified Table Record.
    Once this is done, you will see the Display fields of the Qualified table for which the links exists for the given main table record.
    Message was edited by:
            Adhappan Thiagarajan

  • Not able to see data in Pivot table

    Hi,
    I have a issue with pivot table i have a column which displays values 0 and 1 and another column called month when i am placing this month column as a section and values column as a measure i am not seeing any values means i can see the month as header but instead showing 0 or 1 its showing blank columns. previously i created similar kind of table it worked but at that time values column data type is number this time its char. can anybody help me out how i can see the data in the pivot table. i already tried converting this column to number but still i am not able to see data in that values column.
    Thanks

    Hi copter,
    Place the month column in rows and value column in measure section and check if results are coming.If still it doesnt come i suppose you dint apply aggregation rules to value column.In pivot view click values column and aggregate by /select min or max or either server complex and check your results.
    (I suppose your aggregation rules is default)....Correct this one and you can place it in sections as per your requirement.
    Cheers,
    KK

  • Not able to see data in 0FIGL_V30 & 0FIGL_V31

    Hi,
    I've activated / installed standard business content for EpH3 i.e Mutltiprovider 0FIGL_M30 and entire data flow which includes reports and virtual providers 0FIGL_V30 & 0FIGL_V31.
    I'm able to see data in cubes where above virtual providers read data from. here is the link from help.sap.com
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/6b/fdc62d9e0b444cb14b7f424d9f9cb7/frameset.htm
    Issue is i'm not able to see data in Virtual providers 0FIGL_V30 & 0FIGL_V31 and hence in reports.
    Can anyone advice please. thanks
    SD

    Hi All,
    Yes I've checked data in underlying cubes.
    Mulitprovider is fine.
    I've added Master Data for both 0GL_ACCTP  and 0ACCESSTP
    RFC connection is fine.
    No DTP & Transformation since this is Virtual Provider based on Functional Module.
    However when I debug FM for 0FIGL_V30 & 0FIGL_V31 - I see no data and thought there might be master data issue b/w 0GL_ACCOUNT & 0GLACCEXT but MD is fine.
    It just not pulling data.
    Is there some setting I'm missing?
    FM's used for Virtual Providers are
    0FIGL_V30  - RS_BCT_FIGL_SREP_DATA_GET_V30
    0FIGL_V31 - RS_BCT_FIGL_SREP_DATA_GET_V31
    SD

  • Not able to see hierarchial org structure by clicking on Expand this branch

    Dear experts,
    I am currently using the Online data extraction via sap for Nakisa Integration with SAP Landscape.
    I have completed the configuration of Nakisa with the help of configuration guide and administrator guide - After completing administrator steps the org chart is visible - When i navigate to the org structure i can see the org unit under the org structure root that i configured as an administrator in the general settings section.
    When i click the + sign ie on expand this branch i am not able to see all teh org units under the displayed branch.
    Can you please guide me regarding how one can view the org structure below the selected branch when i click on expand this branch section.
    Manager Personnel Id is not maintained for this org unit - Should the user clicking on the expand this branch be the manager of the org unit to see the org structure.
    Regards
    HKishan

    Dear Luke,
    I am not able to see that navigation icons within an org chart box - The org unit that is displayed on clicking the orgchart does have branches in SAP but i am not able to see these navigation icons that lead me to these branches.
    Is there any specific step that needs to be done to see these branches.
    By the way what is the log file you are refering to is it the "PresentationResources.xml " or is it any other log file.
    Regards
    Hkishan

Maybe you are looking for

  • Need help with installation

    I recently received a laptop from school to access my online classes.  When I tried to use Adobe Reader I received the following message:  Adobe Reader 9.1 has encountered a problem and needs to close.  Sorry for the inconvenience.  I tried tech supp

  • Open iWork files in Numbers on my iPad

    Hi, How can I open a Numbers spreadsheet that I created in Numbers on my iMac and shared for private use with iWork, in Numbers on my iPad? When I click on the link in the email message "You've shared the following file ...", Safari on my iPad opens

  • How I fixed lost airtunes and lost shared library

    It happened to me over and over again. Sometimes it helped to restart AirPort Express, sometimes it didn't. Sometimes it helped to remove the preferences of iTunes, sometimes it didn't. What helped me this time (and this was the fastest solution so f

  • Version 4.6c Cross Company Code Incoming payment to lockbox.

    In version 4.6c I am trying to find out the correct IMG configuration for processing incoming payments to a lockbox when multiple companies are using one company for banking.  Here is what I have done so far: Here are the company codes:  2100 has hou

  • How to make a reference of Webdynpro DC in EJB/J2EE DC application

    Hi All I have a scenario wherein I have a Webdynpro DC which provides Connection services to all other Webdynpro DC application. Now ,I am trying to access this Webdynpro application(ConnectionManager Java class) in a EJB/J2EE DC project. I have expo