ATTRIBUTE_IDOC_METADEATA Error: File  to IDOC Java Mapping

I have done a Java Mapping from File to Idoc and I get the following error in sxmb_moni:
<SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
<SAP:Category>XIAdapter</SAP:Category>
<SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_IDOC_METADATA</SAP:Code>
<SAP:P1>I::000</SAP:P1>
<SAP:P2 />
<SAP:P3 />
<SAP:P4 />
<SAP:AdditionalText />
<SAP:ApplicationFaultMessage namespace="" />
<SAP:Stack>Fehler: I::000</SAP:Stack>
<SAP:Retry>M</SAP:Retry>
</SAP:Error>
The Idoc structure that I generate in my mapping makes no fullfil of the IDOC tags.
For example:
<IDOC BEGIN="1">
               <EDI_DC40 SEGMENT="1">
                    <TABNAM/>
                    <MANDT/>
                    <DOCNUM/>
                    <DOCREL/>
                    <STATUS/>
                    <DIRECT/>
                    <OUTMOD/>
                    <EXPRSS/>
                    <TEST/>
                    <IDCOTYP/>
                    <CIMTYP/>
                    <MESTYP/>
                    <MESCOD/>
                    <MESFCT/>
                    <STD/>
                    <STDVRS/>
                    <STDMES/>
                    <SNDPOR/>
                    <SNDPRT/>
                    <SNDPFC/>
                    <SNDPRN/>
                    <SNDSAD/>
                    <SNDLAD/>
                    <RCVPOR/>
                    <RCVPRT/>
                    <RCVPFC/>
                    <RCVPRN/>
                    <RCVSAD/>
                    <RCVLAD/>
                    <CREDAT/>
                    <CRETIM/>
                    <REFINT/>
                    <REFGRP/>
                    <REFMES/>
                    <ARCKEY/>
                    <SERIAL/>
               </EDI_DC40>
Should I complete these values in my mapping program?
Which values should I complete?
Thank You.

Antonio,
you can ignore whole EDIDC Segement make disabled in our mapping still it works . but the problem is not with this is our meta data chekc in IDX2 t/c code of XI box.
      it has some problem the strcuture you generate and R/3 accepts are not same their is mismatch in structure
Regards
Sreeram.G.Reddy
Message was edited by:
        Sreeram Reddy

Similar Messages

  • File to Idoc : Java Mapping

    Hi Experts,
    The scenario is file to idoc. In the file i'll be getting name,value pairs. For ex:
    Structure is
    MT
    ....Root(1..unbounded)
    ............Name
    ............Value
    File contains:
    Vishal....1
    Raj.........2
    RFC......10
    Rahul.....20
    Azhar....15 and so on..
    I need to loop through the file. When Name="RFC", I need to make an RFC call with Value as it's input. RFC returns 4 values which will be used for mapping.
    Then I need to continue looping through the file. On encountering a particular Name, I need to map corresponding Value to target field.
    For this, I should have 2 mappings. One to read the file and the other for mapping. I've never used RFC and Java mapping, Can someone provide me a link or a solution for this?
    Thanks,
    Vishal

    Hi,
    You can do this using a UDF.
    first let the source message contain first line and last line which you want to eliminate.
    change the context of the Value to MT ..
    start a for loop in UDF ignoring first & last line like
    for(int i = 1; i< input.length() - 1; i++)  // here i = 1 & not zero  & input length is -1 so that first & last field eliminates
           //carry on string operation to separate name & value on delimeter space
    String name = input<i>.subString(0,.... to the indexOf space);
    //similar for value also....
    now you have name & value
    check for name == 0052
    if(name == 0052)
      perform rfc lookup
    else

  • File Name in Java Map

    Hello,
    I want to add the time stamp in the file name in JAVA map.
    Actually we are directly writing the file on to the file system from Java map and also giving its output to other map.
    So we need when we write the file on the file system the file name should be ABC_timestamp.
    Can anyone help me how to do this in Java Map.
    Thanks and Regards
    Hemant

    Hi,
    >>>Actually we are directly writing the file on to the file system from Java map and also giving its output to other map.
    are you sure you want to do this?
    this is highly inadvisable as mappings do not support restarts and any error handling
    further more what if the mapping will crash but the file will be created?
    if you restart the mapping you will get a second file?
    I'd recomment not doing anything like that - maybe think about your scenario once more ?
    Regards,
    Michal Krawczyk

  • Accessing a File in a Java Mapping

    Hi,
    I am accessing one Random Access File through Java Mapping Program. This is working fine in Eclipse.
    But when I imported that jar file to IR, it is throwing FileNotFound Exception while trying to test through Interface Mapping.
    Actually it is not showing any error message but by research I understood that. Can any one please help me in this regard?
    One more thing, I used the same scenario for other interface. It is working fine.
    Please help me to chase this mistery.
    Thanks,
    Yogi.

    Hi,
    I think I am giving relative path only not direct path. I am just mentioning the path from my proj name. I am not specifying any local directories. For your Information, I am mentioning the path like below:
    "ProjectName/SomeName/File_Name.txt"
    Thanks,
    Yogi.

  • Reg: File to Idoc Hierarchial mapping

    Hi Experts,
    We have a scenario of flat file to idoc where in we have 4 segments(01 to 04)(with hierarchies) in source file to be mapped to idoc. We have followed Riaz blog    http://www.riyaz.net/blog/xipi-convert-flat-file-to-deeply-nested-xml-structures-using-only-graphical-mapping/.on mapping flat file to deeply nested structures . 
       We have encountered one unique issue in the intermediate level mapping where, when assigning hte id numbers, the instances of one segment are grouped together.  This is creating a problem. 
    Ex: in source str we have nodes in the order
    01
    02
    03
    04
    02
    03
    04 and so on..
    After the test of intermediate mapping, it shows teh follw sequence:
    01
    02
    02
    03
    03
    04..
    The node seq in the target str should have been similar to that of the source.. but here its not so.. 
    if i am using just one instance of 01 till 04 nodes.. the final xml str is created perfect.. Can any please let me know what could be the possible error??
    Or please let me know if there is any other simple procedure to finish this.
    Thanks in advance, awaiting your reply..
    Best Regards,
    Giri

    Hi,
    Please go through the following links..
    http://wiki.sdn.sap.com/wiki/display/XI/SampleJAVAMappingcodeusingPI7.1+API
    http://wiki.sdn.sap.com/wiki/display/XI/UsingPI7.1APIforJavamapping
    and also,
    http://help.sap.com/saphelp_nwpi71/helpdata/en/bd/c91241c738f423e10000000a155106/content.htm
    If u get any doubt u can post the problem....
    Babu

  • File to IDOC aggsales mapping doubt Urgnt

    Hello,
    Im working for a retail client and the requirement is the File to IDOC scenario where Im stuck up in the mapping.
    The inbound is a flat file of structure
    EDI_DC40
    E1WPU01
    E1WPU02
    E1WPU03
    E1WPU04
    The target IDOC structure is as follows
    WPUUMS01
    --IDOC
    EDIDC40
    E1WPU01
    E1WPU02
    E1WPU03
    E1WPU04
    The problem is with the target segment E1WPU03. This E1WPU03 is actually an optional one in the source inbound flatfile.
    So the source will be like this
    EDI_DC40
    E1WPU01
    E1WPU02
    E1WPU03
    E1WPU04
    E1WPU02
    E1WPU04
    E1WPU02
    E1WPU03
    E1WPU04
    So in the target I need to create the 03 segment if and only if it occurs in the source.
    I tired these following but didnt work for me.. what happens is The 03 segment which should come in the third 02 segment actually comes int he second one.
    any suggestions if this is possible in message mapping or should I go for an xslt
    I tried this one.
    SourceE1WPU03 >exists> if withoutelse>then "constant'> targetE1WPU03
    Thanks
    Prasanna

    > any suggestions if this is possible in message mapping or should I go for an xslt
    No, this is not possible with graphical mapping tool.
    You need to have a pre-mapping for this.
    I recommend Java mapping with SAX parser.
    you can easily change the input structure to:
    EDI_DC40
    -E1WPU01
    --E1WPU02
    ---E1WPU03
    E1WPU04
    --E1WPU02
    E1WPU04
    --E1WPU02
    ---E1WPU03
    E1WPU04

  • No suitable sender agreement error  (File -- XI -- IDOC R/3)

    Hi All,
    I am completeing teh 'File --> XI -->IDOC to R/3' scenario.
    Have manged to complete teh IR and ID config as per the various threads in SDN.
    I am using FCC in the Sender File adapter (which I assume will read the file data and convert to XML data). When this channel is activated, it gives me the error 'No suitable sender agreement found'.
    As per various posts in sdn, this scenaruio may not need sender agreement as XI is finally using IDOC adapter to send data to R/3.
    Am I correct in assuming that ??
    Could you help point any potential missing config.
    For your reference:
    The comm Channel used to read file data is using File adapter (marked as SENDER/NFS/FCC/Integration server)
    Appreciate your feedback.
    Thanks
    Shirin

    Hi,
    chk for ALE settings....
    Steps for ALE settings:-
    Steps for XI
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the R3 system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto IDX1.
         Create a new port.
         Give the port name.
         Give the client number for the R3 system.
         Select the created Rfc Destination.
    Step 3)
         Goto IDX2
         Create a new Meta data.
         Give the Idoc type.
         Select the created port.
    Steps for R3.
    Step 1)
         Goto SM59.
         Create new RFC destination of type 3(Abap connection).
         Give a suitable name and description.
         Give the Ip address of the XI system.
         Give the system number.
         Give the gateway host name and gateway service (3300 + system number).
         Go to the logon security tab.
         Give the lang, client, username and password.
         Test connection and remote logon.
    Step 2)
         Goto WE21.
         Create a port under transactional RFC.(R3->XI)
         Designate the RFC destination created in prev step.
    Step 3)
         Goto SALE.
         Basic settings->Logical Systems->Define logical system.
         Create two logical systems(one for XI and the other for R3)
         Basic settings->Logical Systems->Assign logical system.
         Assign the R3 logical system to respective client.
    Step 4)
         Goto WE20.
         Partner type LS.
         Create two partner profile(one for XI the other for R3).
         Give the outbound or inbound message type based on the direction.
    Step 5)
         Not mandatory.
         Goto BD64.
         Click on Create model view.
         Add message type.
    Step 6)
         Goto WE19
         Give the basic type and execute.
         fill in the required fields.
         Goto IDOC->edit control records.
         Give the following values.(Receiver port,partner no.,part type and sender Partner no. and type)
         Click outbound processing.
    Step 7)
         Go to SM58
         if there are any messages then there is some error in execution.
         Goto WE02.
         Check the status of the IDOC.
         Goto WE47.
         TO decode the status code.
    BD87 to check the status of IDOC.
    In case if not authorized then go to the target system and check in SU53, see for the missing object
    and assign it to the user.
    SAP r3
    sm59(status check)(no message)
    WE02(status check)
    WE05(status check)
    BD87(status check)
    Xi
    IDx5(Idoc check)
    SU53(authorization check)
    reward points if helpful...
    Prashant

  • File to IDOC. Mapping doubts...

    Hi XI Gurus..
    I'm doing a file to IDOC scenario.. I've a filed called Master Number and Sequence number..
    First I've to sort the file based on Master number. based on this sorted file I must sort the sequence numbers.
    For example:
    0011232      01
    0011232      00
    0011231      01
    0011232      01
    0011231      00
    after first sort
    0011232      01
    0011232      00
    0011232      01
    0011231      01
    0011231      00
    after second sort
    0011231      00
    0011231      01
    0011232      00
    0011232      01
    0011232      01
    Now in mapping I must create one IDOC for every set of Master number. In the IDOC a segment must repeat for every sequence number.. i.e For 0011231 there must 2  sequence segments i.e 00 and 01, and 0011232 also must have 2 sequence segments i.e 00 and 01

    hi,
    please try the following mapping,
    for creating the IDOC based on Message  Number
    message No-->removecontext->sort>spiltbyvalue(for value change)-->collapscontext---->EDIDD(IDOC TAB).
    to create the SEGMENT based on the Sequence number please try the following mapping.
    Sequence no-->removecontext---->sortbykey(key as messageNo)
    >formatbyexample(first queue is message no and second queue is sequence no)---->splitbyvalue(for  each value)-->segment(IDOCsegment).
    regards,
    navneet

  • File to IDOC: mesage mapping

    Hi!
    I am implementing File to Idoc scenario.
    I use in file a element "createdate". The same one does exist on Idoc side and hase type "xsd:string".
    Which type should have the element in data type?
    a) xsd:string
    b) xsd: date
    c) it does no matter
    Thank you!

    Hi!
    Thank you!
    Could you please explain why the option within message mapping "map the same structure..." is inactive in my case?
    Is that a bug?
    I am on SAP NetWeaver 7.0 SP 14 .
    Thank you!

  • Bulk file upload error: File to IDoc

    Dear all,
    I have a File -> XI -> IDoc scenario.
    The scenario is working fine for files with filesize 2 MB.
    But, when I upload a bulk file with filesize 23 MB, it is Struck in XI
    In the SXMB_MONI, I see the error flag in the "Outbound Status"
    The error message is "Message has error status on Outbound side".
    In the R/3 side, the IDoc segments have number of occurrences from 1 to 9999999999
    Is there any restriction in the size of the file we upload in SAP XI?
    Could anyone tell me the reason for the error and the possible solutions?
    Thanks in advance
    Kind regards,
    Thangesh

    Is there any restriction in the size of the file we upload in SAP XI?
    There is no theoretical limitation. Bcoz the size more depends upon th hardware configuration and tuning in XI.
    The 23MB file can easily be handled in XI.
    Could anyone tell me the reason for the error and the possible solutions?
    A probable reason would be the hardware configuration. U may check the XI tuning guide.
    Regards,
    Prateek

  • Error-file to Idoc

    Hi,
    I have created file to idoc scenario.
    I have done all the Design and  Configuration parts.
    But when executed the same scenario by placing input file on input folder.
    Its not picking the file and in sxmb_moni also it wont give any messages?!!
    What would be the problem....Can you help me out??!!
    Cheers.,
    Stallin

    Hi Stallin,
    Do you see any channels in the Adapter monitoring?
    It's look to me like a cache problem,
    Do you see the channel in SXI_CACHE?
    Have you try to perform CPA CACHE REFRESH?
    Try to read the following guide "How to Handle Caches in SAP XI 3.0" https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1a69ea11-0d01-0010-fa80-b47a79301290
    I think that one of the cache refresh in http://SERVER:PORT/rep -> Administartion will solve yor problem
    Best Regards
    Guza

  • File to Idoc Nodes mapping

    My sender File structure is like this..
    MT_Sender
    -Recordset 0 to Unbound
    --Header 1 to 1
    ---field1
    ---field2
    ---fieldx
    --GL_Account 0 to Unbound
    ---field1
    ---field2
    ---fieldx
    ---Cust_Item 0 to Unbound
    field1
    field2
    fieldx
    Curr_Item 0 to Unbound
    field1
    field2
    fieldx
    and I am mapping it to Idoc segments..
    Here my confusion is for Header segment in  Idoc I am mapping Header in my structure ..but it is giving mapping conversion error.
    I tried node to node and Recordset to node both are giving error.
    Can any one clear it NODE  level mapping to IDOC structute.
    ACC_document
      IDOC
       Begin
       NODE1
       NODE2
       NODE3
       NODEx
    Regards,
    Ramesh.

    ..Any inputs on it
    This info from sxmb_moni
    com.sap.aii.utilxi.misc.api.BaseRuntimeException: RuntimeException in Message-Mapping transformation: Cannot produce target element /ACC_DOCUMENT03/IDOC. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at
    com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:406) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMapp.....
    SXMB_MONI payload is
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_FI_SENDER xmlns:ns="Http://xyz.com">
    - <ns:Recordset xmlns:ns="Http://xyz.com">
    - <Header>
      <USERNAME>OBTE-MM</USERNAME>
      <COMP_CODE>2000</COMP_CODE>
      <DOC_DATE>20091015</DOC_DATE>
      <PSTNG_DATE>20091015</PSTNG_DATE>
      <DOC_TYPE>DR</DOC_TYPE>
      <REF_DOC_NO_LONG>7578</REF_DOC_NO_LONG>
      </Header>
    - <GL_account_item>
      <ITEMNO_ACC>0000000001</ITEMNO_ACC>
      <GL_ACCOUNT>0003101110</GL_ACCOUNT>
      <ACCT_TYPE>S</ACCT_TYPE>
      <DOC_TYPE>DR</DOC_TYPE>
      <COMP_CODE>2000</COMP_CODE>
      <FISC_YEAR>2009</FISC_YEAR>
      <PROFIT_CTR>0000002002</PROFIT_CTR>
      <DE_CRE_IND>H</DE_CRE_IND>
      </GL_account_item>
    - <Customer_Item>
      <ITEMNO_ACC>0000000002</ITEMNO_ACC>
      <CUSTOMER>0000000092</CUSTOMER>
      <COMP_CODE>2000</COMP_CODE>
      </Customer_Item>
    - <GL_Currency_Items>
      <ITEMNO_ACC>0000000001</ITEMNO_ACC>
      <CURR_TYPE>00</CURR_TYPE>
      <CURRENCY>INR</CURRENCY>
      <AMT_DOCCUR>6000</AMT_DOCCUR>
      </GL_Currency_Items>
      </ns:Recordset>
      </ns:MT_FI_SENDER>
    Regards,
    Ramesh.
    Edited by: Sreeramoju Ramesh on Oct 15, 2009 1:28 PM

  • File to idoc HRMD_A06 mapping

    Hi,
        My scnerio is to map file with an idoc. In my file I hav infotype 14 records. With following file structure.
    mesgtype
      item
         pernr
         begda
         endda
         lgart
         betrg
    I have taken this simple infotype instead of taking complex one's like actions. once I am through with this thn I will consider other infotypes.
    Idoc which I am using is very complicated HRMD_A06. There are many mandatory fieldin the idoc.
    Now during mapping I have mapped the above fields of file withe corressponding fields of idoc.
    And for For the E1PLOG E1PORIG E1PITYP segments I have provided following data :
    Plan Version ( 01 )
    Object Type (P- Person),
    Object ID (mapped with PERNR ),
    Operation (I - Insert Mode)
    But when I test the mapping I get the following error:
    :39:56 Start of test Mapping object MM_FILE2IDOC incomplete. Unable to continue execution
    Structure with min!=max without mapping
    16:39:56 End of test
    Kindly assist me with this scneario, if possible provide me the proper mapping details.
    Regards,
    Lokesh

    Hi,
    TABNAM, DIRECT, IDOCTYPE,CIMTYPE, MESTYPE, SNDPRT,SNDPOR, SNDPRN, RCVPRT,RCVPRN,RCVPOR are all mandatory fields.
    Map them with constants according to their type.
    Thanks,
    Sonalisa

  • Communication Channel Error : File to IDOC scenario

    Hi all,
    I am getting the below error in my CC monitoring for the channel, previously its good. Now its not getting process due to this error.
    Conversion of file content to XML failed at position 0: java.lang.Exception: ERROR converting document line no. 1 according to structure 'DTL':java.lang.Exception: Consistency error: field(s) missing - specify 'lastFieldsOptional' parameter to allow this
    Below are the Conversion Parameters:
    DTL.fieldNames : REC_CD,SYS_SOURCE_CD,ACC_DT,JE_NO,JE_SRL_NO,BUS_UNIT_CD,GEO,DEPT_ID,OPER_UNIT,PJT_ID,WRK_REQST_NO,OPEN_ITEM,PROCESS_CD,NATURAL_ACCT,FERC_ACCT,PRODUCT,AFFIL_BUS_UNIT_CD,RES_TYPE,REC_CATEGORY,DOLLAR_AMT_SIGN,DOLLAR_AMT,QTY_1,QTY,DESC,SECOND_DESC,BASE_CST_AMT_SIGN,BASE_CST_AMT,TRANS_DATE,EXH_NO,PO_NO,VENDOR_NO_7,STRS_REF_NO,STK_NO,STRM_NO,INV_TYPE,INV_NO,CUST_CD,PLAT_JE_REF_NO,VCH_NO,VCH_LINE_ITEM,AP_REF_NO,PO_LINE_NO,BILL_CTL_RPT_NO,VEH_NO,PAYT_RECVR_CODE,GLEX_SEQ_NO,PAYMT_TYPE_CODE,CHECK_NO,FILLER
    fixedLength: 1,3,10,4,5,5,2,10,8,15,15,15,4,10,6,6,5,5,5,1,19,1,15,30,30,1,18,10,10,10,10,5,6,3,8,6,8,13,8,4,1,4,17,10,1,4,1,18,13
    keyFieldValue: D
    Please help me in this..
    Regards,
    Srikanth.

    >
    srikanth vadlamani wrote:
    > Hi experts,
    > Communication Channel itself shows this error, still I did not placed the file in the FTP to process.
    > The error is not from RWB/MONI, it is from Communication channel monitoring, there I can see the red flag. If I am can process the file then its ok I can check with the data or my business people, but channel itself shows this error, need to fix, tomorrow they might place the file, it should process.Pls. help me how can I resolve this issue.
    >
    > regards,
    > Sri..
    In this case check SAP Note 830238.

  • Flat file to idoc MATMAS05 - mapping

    Hi,
    I want to create 2 Idocs from one recordset.
    Can any one tell me how do I map this Recordset to an Idoc?
    Example source and target IDOC structures:
    Source:-
       <Recordset>
          <SA010>
             <IDENTS>1234</IDENTS>
             <BEZ>Dummytxt</BEZ>
          </SA010>
          <SA088>
             <IDENTS>1234</IDENTS>
             <MARC1>010</ MARC1>
             <MARC2>020</MARC2>
          </SA088>
       </Recordset>
    Target:-
        <MATMAS05>
             <IDOC BEGIN="1">
                <E1MARAM SEGMENT="1">
                   <MATNR>1234</MATNR>
                   <E1MARCM SEGMENT="2">
                      <WERKS>010</WERKS>
                   </E1MARCM>
                </E1MARAM>
             </IDOC>
          </MATMAS05>
        <MATMAS05>
             <IDOC BEGIN="1">
                <E1MARAM SEGMENT="1">
                   <MATNR>1234</MATNR>
                   <E1MARCM SEGMENT="2">
                      <WERKS>020</WERKS>
                   </E1MARCM>
                </E1MARAM>
             </IDOC>
          </MATMAS05>
    Thanks and Regards,
    Eren

    Hello Varun,
    My flat structure:
    <Recordset>
    <b><SA010></b>
    <i><IDENTS>1234</IDENTS>
    <BEZ>Dummytxt</BEZ></i>
    <b></SA010></b>
    <b><SA088></b>
    <IDENTS>1234</IDENTS>
    <i><MARC1>010<>
    <MARC2>020</MARC2></i>
    <b></SA088></b>
    </Recordset>
    The MATNR field is <IDENTS>. I can pick the value from node <SA010> or <SA088>.
    Thanks

Maybe you are looking for

  • Cannot open iPhoto after upgrading to Yosemite

    Since upgrading to Yosemite, I am unable to open iPhoto.  When I click on it a message appears saying  'this version of iPhoto is incompatible with Yosemite', and directs me to the App store to upgrade.  I then get message saying that 'the product yo

  • Just Doesn't Work

    I've had my Macbook for a 2 months now and ever since then I have not been able to open the Imovie application. Every time I try to open it I get the same message. The application iMovie quit unexpectedly. Click Relaunch to launch the application aga

  • Produce smartform output in word doc

    I want to get my smartform output in a word doc instead of PDF. I've gone thorough the previous threads for the same thing but couldn't find any exact solution. can anyone tell me how this is to be done? <promise removed by moderator> Moderator messa

  • Help tune this monster query please

    Hi, I have a query that runs for a long time. Its a system generated query but I need to improve its performance. I have enough indexes on the tables. Here is the query, its explain plan and the tkprof: The QUERY SELECT FD.FORM_ID, FD.FIELD_NAME, FD.

  • What differences if we kill SMON or we kill  PMON Back ground processes ??

    Hello i am little bit confused.Please help me out... If we kill PMON---->Instance crashed---->Alert log content LGWR (ospid: 9764960): terminating the instance due to error 472 Instance terminated by LGWR, pid = 9764960 If we kill SMON---->Instance c