Reg: Plz Help me.. Not Getting output

Hi all,
I created a rdf using oracle 10g report for below query
SELECT EMPNO,ENAME,DEPTNO,SAL,MGR FROM EMP
I Registered above created rdf in oracle apps with output format as xml
when i ran the report using concurrent request, i am getting below output.
<G_EMP>
* <EMPLOYEE>*
* <EMPNO>1</EMPNO>*
* <ENAME>ALEX</ENAME>*
* </EMPLOYEE>*
* <EMPLOYEE>*
* <EMPNO>2</EMPNO>*
* <ENAME>RAGHU</ENAME>*
* </EMPLOYEE>*
<EMPLOYEE>
* <EMPNO>3</EMPNO>*
* <ENAME>GURU</ENAME>*
* </EMPLOYEE>*
* </G_EMP>*
NOTE:
I am not getting for rest of column in above query (ie. DEPTNO,SAL,MGR) but when i ran that rdf in oracle 10g report all column in above query are displaying..
How to resolve this. Its urgent .. Plz help me.

Hi,
Please refer to this thread and see if it helps.
XML report disply XML code instead of report out put
XML report disply XML code instead of report out put.
Regards,
Hussein

Similar Messages

  • Plz Help:Idoc not getting posted

    In my requirement some of the idocs are not getting posted.The error message is "Balance not zero".Idoc type is "INVOIC01".In my requirement they told to look into the standard sap pgm"SAPLMRMC" in that FM MRM_AMOUNT_COMPARISON.Please give me suggestions to proceed.

    Hi Hema,
    Please check the invoice data that your are trying to send. From the error it seems that the IDoc is failing the data validations that must be placed in the program/FM that is used to generate/post the IDoc.
    Regards,
    Ashwinee

  • Iam not getting output for inner join where condition

    the condition i have give
    TYPES:BEGIN OF TY_TAB,
          WERKS TYPE WERKS_D,
          LGORT TYPE LGORT_D,
          LGOBE TYPE LGOBE,
          NAME1 TYPE NAME1,
          END OF TY_TAB.
    DATA WA_TAB TYPE TY_TAB.
    DATA IT_TAB TYPE TABLE OF TY_TAB.
    SELECT  T001L~WERKS
            T001L~LGORT
            T001L~LGOBE
            T001W~NAME1
            INTO TABLE IT_TAB FROM T001L INNER JOIN T001W ON T001LWERKS = T001WWERKS
           WHERE  T001L~WERKS = 'amjt' and
               T001L~WERKS = 'bimi' and
               T001L~WERKS = 'biml'.
    LOOP AT IT_TAB INTO WA_TAB.
      WRITE: / WA_TAB-WERKS,WA_TAB-LGORT,WA_TAB-LGOBE,WA_TAB-NAME1.
      ENDLOOP.
    iam not getting output for this

    Well, re-read carefully your code
    WHERE T001L~WERKS = 'amjt' and
    T001L~WERKS = 'bimi' and
    T001L~WERKS = 'biml'
    - WERKS cannot be simultaneously equal to three different values, replace AND with OR ([Boolean algebra|http://en.wikipedia.org/wiki/Boolean_algebra])
    - WERKS domain does not allow lowercase, so use uppercase ([Creating Domains|http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21edf2446011d189700000e8322d00/frameset.htm])
    Regards,
    Raymond

  • Urgent!! PL/SQL web service can not get output param in BPEL

    OC4J 10.1.2 generate PL/SQL web service can not get output param can not get output param in BPEL when call a pl/sql webservice.
    wsdl as follow:
    <types>
    <schema targetNamespace="http://db.func.getqf/COMMON.xsd" xmlns:tns="http://db.func.getqf/COMMON.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <complexType name="db_func_getqf_COMMONUser_getqf_Out">
    <all>
    <element name="pnqfysOut" type="xsd:decimal"/>
    <element name="pnzqfOut" type="xsd:decimal"/>
    </all>
    </complexType>
    </schema>
    </types>
    <message name="getqfOutput">
    <part name="return" type="xsd1:db_func_getqf_COMMONUser_getqf_Out"/>
    </message>

    the wsdl which generate by OC4J is as follows:
    <?xml version="1.0" ?>
    - <definitions name="COMMON" targetNamespace="http://db.func.getqf/COMMON.wsdl" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://db.func.getqf/COMMON.wsdl" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd1="http://db.func.getqf/COMMON.xsd">
    <documentation>WSDL for Service: COMMON, generated by Oracle WSDL toolkit (version: 1.1)</documentation>
    - <types>
    - <schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://db.func.getqf/COMMON.xsd" xmlns:tns="http://db.func.getqf/COMMON.xsd" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <complexType name="db_func_getqf_COMMONUser_getqf_Out">
    - <all>
    <element name="pnqfysOut" type="xsd:decimal" />
    <element name="pnzqfOut" type="xsd:decimal" />
    </all>
    </complexType>
    </schema>
    </types>
    - <message name="getqfOutput">
    <part name="return" type="xsd1:db_func_getqf_COMMONUser_getqf_Out" />
    </message>
    - <message name="getqfInput">
    <part name="param0" type="xsd:string" />
    </message>
    - <portType name="COMMONPortType">
    - <operation name="getqf">
    <input message="tns:getqfInput" />
    <output message="tns:getqfOutput" />
    </operation>
    </portType>
    - <binding name="COMMONBinding" type="tns:COMMONPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    - <operation name="getqf">
    <soap:operation soapAction="urn:db-func-getqf-COMMON/getqf" />
    - <input>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:db-func-getqf-COMMON" />
    </input>
    - <output>
    <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:db-func-getqf-COMMON" />
    </output>
    </operation>
    </binding>
    - <service name="COMMON">
    - <port name="COMMONPort" binding="tns:COMMONBinding">
    <soap:address location="http://localhost:9700/plsqlgetqf/getqf" />
    </port>
    </service>
    </definitions>

  • Plz help me to get Projects for Practice

    hi,
         I am vijay recently completed SAP In SD module.Plz help me to get projects for practice

    if you want to put am image into a game use this code:
    try {
    Image Img = Image.createImage("/your.png");
    catch(Exception e) {
    You have to have a try/catch statment to check for errors.
    You can have animated png with sprites.
    If you have a picture thats 32x32 put the next frame into it 32x64 and continue like that.
    I added a link to a good guide to make game in J2ME
    http://www.microjava.com/articles/techtalk/midp2_games?PageNo=1

  • Plz help me to get the document UIT 250 in IS-U area...

    Hi all,
    Can any body plz help me to get the document UIT 250 in IS-U area...
    Appreciate ur help..
    Regards,
    Raja

    String line1="27-03-2006";
    SimpleDateFormat dfInput = new new SimpleDateFormat("EEE MMM d HH:mm:ss zzz yyyy");
    Date dateBegin = dfInput.parse(line1.trim()); By the way, I feel there is some mismatch...

  • I am not able to on my personal hotspot plz help me I get a msg when I click on set up personal hotspot is contact ur carrier

    Plz help me how to on personal hotspot

    Sounds like you need to contact your carrier. Most likely because the hotspot feature needs to be carrier supported and included in your plan for you to use it.

  • Not getting output undr billing details and item details in printng invoice

    In form interface under import tab i have declared 1 value i.e. IM_FS_KNA1 type KNA1 I have not declared anything except this in form interface.
    In Global Definitions under Global Data tab:
    IM_T_KNA1     TYPE TABLE OF     KNA1
    IM_FS_VBRK     TYPE     VBRK
    IM_FS_VBRP     TYPE     VBRP
    W_TOTAL     TYPE     VBRP-NETWR
    IM_T_VBRK     TYPE TABLE OF     VBRK
    IM_T_VBRP     TYPE TABLE OF     VBRP
    under Currency/ Quant Fields
    IM_FS_VBRP-NETWR     IM_FS_VBRK-WAERK     C CURR
    In Billin Window, there is a loop from IM_T_VBRK INTO IM_FS_VBRK where KUNAG = IM_FS_KUNNR
    In main window, i've created a table for displaying item details
    I'm only getting data of Customer in Customer Details window after using driver program. I've checked the entries in the table but for those inputs i'm not getting the desired output..
    Following is the code that i'm using for driver program:
    *& Report  ZPRINTINVOICE2
    REPORT  ZPRINTINVOICE2.
    TABLES:
      kna1,
      vbrk,
      vbrp.
    PARAMETERS :
      p_kunnr LIKE vbrk-kunag,
      p_vbeln LIKE vbrk-vbeln.
    DATA :
      /1BCDWB/SF00000214 TYPE rs38l_fnam.             " Name of the Function Module
    DATA :  t_vbrk LIKE
    STANDARD TABLE
          OF vbrk.
    DATA:  t_vbrp LIKE
    STANDARD TABLE
          OF vbrp.
    DATA :
      fs_kna1 TYPE kna1,                           " Holds Customer Details
      fs_vbrk LIKE LINE OF t_vbrk,         " Holds BillingDoc Header Details
      fs_vbrp LIKE LINE OF t_vbrp.         " Holds BillingDoc Item Details
    START-OF-SELECTION.
      SELECT SINGLE *
               FROM kna1
               INTO fs_kna1
              WHERE kunnr EQ p_kunnr.
       SELECT *
        FROM vbrk
        INTO TABLE t_vbrk
       WHERE kunag EQ p_kunnr
         AND vbeln EQ p_vbeln.
       SELECT *
        FROM vbrp
        INTO TABLE t_vbrp
         FOR ALL ENTRIES IN t_vbrk
       WHERE vbeln = t_vbrk-vbeln.
       CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                   = 'ZTRYINVOICE2'
        IMPORTING
          fm_name                    = /1BCDWB/SF00000214
        EXCEPTIONS
          no_form                     = 1
          no_function_module = 2
          OTHERS                   = 3.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
       CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       = fs_kna1
          im_t_vbrk        = t_vbrk
          im_t_vbrp        = t_vbrp
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    plz help......

    Hi Neha,
    Modify your CALL FUNCTION /1BCDWB/SF00000214 like below :
    CALL FUNCTION /1BCDWB/SF00000214
        EXPORTING
          im_fs_kna1       =  im_fs_kna1
        TABLES
          im_t_vbrk        = im_t_vbrk
          im_t_vbrp        = im_t_vbrp 
        EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc  0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    At Smarforms > Form Interface > Import :
    im_fs_kna1.
    At Smarforms > Form Interface > Tables :
    im_t_vbrk , im_t_vbrp
    BR
    Dep

  • Plz help me, no display output during boot up of 715 workstation

    now i have a HP 715 model workstation,today, conneted hp monitor..but can't display output during system boot up so i tried  solve this problem,1)changed battery2)removed HDD after reboot system and press ESC key    => now can't use Keyboard..not working key board3)Press Tap key.. Just i think, this problem is system configulation problem. not monitor problem..so i found internet website..but now i can not change configulation who know this problem.plz help me  

    one question in html submit the reslut stored jdbc that value shows barchartAll your base are belong to us!
    You know, while I understand that English isn't your first language (neither is it mine) and there's no need to be perfect: if you can't write an understandable post yourself, consider asking someone to do it for you.

  • Restrict user could not get output of conc request more than one

    Hi all,
    I actually have one scenario that I want to delete or purge concurrent requests after getting view output. Please tell me how it is possible to purge request , Its simple means to prohibit the user to
    see out 2nd time.
    "I have one option that May be I use personalization , when user click on view output button , after populating file
    code delete request from concurrent request table."
    Thanks

    user9275313 wrote:
    Hi Sirini,
    We have its solution already, when user click on view output then this directly go to printer, user can not view output, But I prevent here user he can click only one time against one request, the second time when he click of that button either it goes disable or that request purg in first click from the table.
    ThanksThere are several obvious issues that come to mind -
    1. If the user cannot view the output but can only print it, then the only way he/she can verify that it is the correct output is after printing it - seems to be a possible waste of paper.
    2. What if the printer jams (or runs out of ink etc etc) when printing the output ? What is the option to print a second time ?
    HTH
    Srini

  • I was having i5 nd its back up stored.nw i got 5s nd den i updated my itunes.For the first tym i connected to itunes.i selcetd it as old device nd it restored my photos which was on old i5.bt i lost my ol d photos of new iphone.plz help me to get dem back

    plz help me dat hw can i get my new photos back which were on new iphone..bcoz dey were nt backed up..as i connected it for d first time through itunes..
    all my preveious photos has been restored..and new one r no more..plz help me..dere were 1000 photos n it

    hi i had the same problem today when i updated my itunes to latest version. however, i have just found my songs in the 'itunes media' folder. this was accessed through 'my music'  then keep clicking through until you find itunes media and all my library songs were in there and i then just added these files to my library and all were restored however, i have lost all my playlists but at least my 700 songs are back. very dissapointed with apple that they have let this happen with their latest update, the previous version was miles better than this one . hope you find them. stevo

  • I erased my Data on my phone by mistake what I didn't want to.plz help me to get my data back

    Plz help me

    Hey Chris,
    Unfortunately the ringer does not work - which causes the speaker to not work when it's switched on to ring mode, unless I'm on bluetooth. It has recently stopped working and I've had this phone for 2 years.

  • Please help, Ps4 not getting a signal....

    I'm not getting a signal on my tv for my ps4. The blue light flashes for a minute then turns solid white. I borrowed the system from my brother. Apparently he said it was messing up before i got it. He said it was working then he switched tv's to watch a movie on a bigger tv. After watching the movie he switched back to the original tv and thats when it lost signal. Sorry if it sounds confusing, im new to this so any help would be greatly appreciated, thanks in advance.

    When you switch tv's, you need to reset your video settings. Follow the following instructions to get into safe mode, and choose the change resolution option https://support.us.playstation.com/app/answers/detail/a_id/5044/related/1/session/L2F2LzEvdGltZS8xNDM4OTM0ODQ0L3NpZC8ycDNnRWl0bQ%3D%3D

  • Reg: 0PUR_C01 - Update Rule - Not Getting Installed

    Dear friends
    I am trying to activate MM Cube (0PUR_C01)
    But when collecting dependent objects for 0PUR_C01 with data flow before option, Once collection over, system throws the following message
    1.             Object 0DB87SIC1 (InfoObject,IOBJ) could not be collected for object 0PUR_C01 (InfoCube,CUBE)
    2.     Object 0DBGUDUNS (InfoObject,IOBJ) could not be collected for object 0PUR_C01 (InfoCube,CUBE)
    3.     Object '0DB87SIC1' (IOBJ) of type 'InfoObject' is not available in version 'D'     
    4.     Object '0DBGUDUNS' (IOBJ) of type 'InfoObject' is not available in version 'D'     
    And also, I could able to see the following long text error message.
    1.     You have collected objects in the BI Metadata Repository. Associated objects for object 0PUR_C01 of type InfoCube, CUBE have also been collected. Object 0DB87SIC1 of type InfoObject,IOBJ was among these objects
    2.     However, this object 0DB87SIC1 of type InfoObject,IOBJ is not available in the metadata repository
    3.     If this error occurs while you are installing BI Content, an error may have occurred during the delivery. Inform SAP. In all other cases, check that the object has not been deleted by another user during collection.
    I tried to install those collected objects, the cube alone gets installed and visible in workbench. Update Rules are not getting installed. Even after,I have collected the update rule separately and tried to install lot of times, no luck for me
    eventhough the job has been successful
    If anybody came across this type errors, Please guide me to solve that
    Points will be awarded for the right answers.
    Regards
    Raju Saravanan

    hi raju
    1. Object 0DB87SIC1 (InfoObject,IOBJ) could not be collected for object 0PUR_C01 (InfoCube,CUBE)
    2. Object 0DBGUDUNS (InfoObject,IOBJ) could not be collected for object 0PUR_C01 (InfoCube,CUBE)
    3. Object '0DB87SIC1' (IOBJ) of type 'InfoObject' is not available in version 'D'
    4. Object '0DBGUDUNS' (IOBJ) of type 'InfoObject' is not available in version 'D'
    u just ignore this errors and install. this wont affect.
    u just try again colllecting the cube and collect it "befroe and after"
    u wld get the update rules for the following datasources
    2LIS_02_ITM
    2LIS_02_S012
    2LIS_02_SCL
    Regards
    Dina

  • Plz help me to get : drkorean.sql script

    Can any one please help me to get following script. My migration is withheld becuase of this script.
    drkorean.sql

    Are you looking for help on EBS? there is different division for that.
    are you looking for the script.. drkorean.sql --> *$ORACLE_HOME/ctx/sample/script/drkorean.sql* ?
    check this link as well
    http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=3&ved=0CC4QFjAC&url=http%3A%2F%2Fgavinsoorma.com%2Fwp-content%2Fuploads%2F2009%2F07%2F10g-post-upgrade-steps_app_database.doc&ei=NyjiTv2hCqOJsQLgh9WJBg&usg=AFQjCNGnjWnEMU_19Ow0rPsFz1NoXt__dQ&sig2=kAoxmc6TTtE6P1afx-RUxQ
    Edited by: CKPT on Dec 9, 2011 8:57 PM

Maybe you are looking for