Hi... I am facing a proble in my report........

When i run the query.... in the report  error (MULTI VALUE)is displaying. My data base is ORACLE 9i. What is multi value error ? Why it comes ? How can i resolve this issue..?
Plz let me the solution of this issue
Thanks for help...

Ravi,
Here is the detailed explanation from WebI help on the #multivalue problem:
The #MULTIVALUE error occurs when a formula that returns multiple values is placed in a single report cell.
If the detail object contains multiple values for each value of the dimension, the cell shows #MULTIVALUE.
Looking at this from an SQL perspective, if you have a primary key set on a table and you try to insert a new row and it rejects due to PK violation, then #multivalue is along those same lines.  The way to debug is to look at the data you are trying to display minus any measure or metric and you should then see the duplicate that is causing the multi value error.
Thanks,
John

Similar Messages

  • We are facing error while executing Bex report.

    Hi Gurus:
    We are facing error while executing Bex report.
    Messge :                                                                          
    u201CQuery 0: Runtime error program state check for conversation 05284411 / CP  with parallel processing via RFC
    Message no. DBMAN428u201D
    The query is based upon Multiprovider (based upon 2 basic cubes).
    Both cubes are partitioned by   info object 0CALMONTH, (valid range - 01.2005 - 012.2010).
    Those cubes are not containing any non-cumulative key figures and Service package level for  SAP NetWeaver BI 7.0 is  u2018SAPKW70012u2019.
    I have checked those cubes in RSRV and carry out following steps:
    "All Elementary Tests -> Transaction Data" and execute the repair "Consistency of the Time Dimension for an Info Cube"
    I have found system inconsistency like u201CRecord with the DIMID 2 contains non-fitting time characteristics u201C
    Detail ERROR:
    Record with the DIMID 2 contains non-fitting time characteristics
    Message no. RSCV053Diagnosis
    The data record of the time dimension table with the described DIMID contains values for time characteristics that do not fit together.
    I have found the u2018 Note 1130450 - Query displays error DBMAN 284; RSRV: Time dimension checku2019  for this but still not sure this will work or not .
    I tested this in dev server , didn't feel useful.
    Could you please let us know what to correct this error.
    Anwser will be rewared.
    Regards,

    >
    Surendra Pande wrote:
    > Anwser will be rewared.
    > Regards,
    Go read the RULES of these forums.

  • I have just now upgraded to OBIEE 11.1.1.7.0. The applications seems to be stable. But I am facing few issues with the reports and dashboard.

    Hi All,
    Dashboard Items - Customize Column & Section width in css files,
    i am facing the same problem for Reports and Dashboards after upgrade the obiee 11.1.1.6.5 to 11.1.1.7.0,
    please can any one help on this
    i have seen the below blood by Dev,
    he have't give more details about the solution , can any one help ? thanks inAdvance

    Hi Guys,
    I am sure that a WIDTH tag has to be added in some +.css+ file but I am not sure which one. I have OBIEE 11.1.1.7.0 (Simple Install)
    I came accross two very informative url's.
    URL 1 > This post tells about customizing the prompt.
    http://obiee10grevisited.blogspot.in/2012/02/customizing-dashboard-prompts.html
    URL 2> This post describes how to edit the look and feel of the Subject Area container.
    http://obiee1000.blogspot.in/2012/03/customize-subject-area-container-obiee.html
    In a similar way, I feel that the section or column (Dashboard items) can be customized i.e. we can fixed the width, height, border, color etc etc...
    I would really appreciate any suggestions/advice in this regards.
    Thanks
    Dev

  • Facing Issue with Stock Ageing report

    In Blocked Stock Ageing report Output, I am facing following issues
    1. Stock is correct but once we include the "Reason For Movement" then the aging is getting wrong  and in some cases value is coming Negative.
    2. In some cases "Reason For Movement" is coming in ‘#’, but this is a mandatory field. Hence cannot be blank.
    Note:
    1. Overall stock is coming correct.
    2. Reason Movement chat. is in free char
    3. Report is based 0IC_C03.

    Hi Nadeem,
    Reason for Movement is loading from  what attribute?  check in RSRV for that attribute.
    RSRV-->All Elementary Tests ->Master Data ->Compare Size of P-, Q- with X- and Y- Tables respectively .
    If it has any error then  correct that error in RSRV. It  will solve your problem.
    Regards,
    Rajesh

  • I am facing performance issue in a report due to addition of occurs clause

    Hi,
    I am facing performance in one program. I think while declaring internal table used OCCURS 100 but records are populating 470840 no of records.
    again in 2nd internal table declared OCCURS 10 but records are entering 18 no of records.
    I guess because of this program is taking nearly 30 mins time and not getting correct out put.
    I am not sure weather this is the reason.
    So any one can give proper suggestion to improve the performance of the program
    in the internal table t_dels_tvpod  showing the no of records in debugging = 470840 * 9(80)
    in the internal table lt_dels_tvpod  showing the no of records in debugging = 18 * 9(80)
    I have shown the part of the program code.
    Program code
    DATA:   BEGIN OF t_dels_tvpod OCCURS 100,
              vbeln LIKE tvpod-vbeln,     
              posnr LIKE tvpod-posnr,     
              lfimg_diff LIKE tvpod-lfimg_diff,
              calcu LIKE tvpod-calcu,
              podmg LIKE tvpod-podmg,
              uecha LIKE lips-uecha,      
              pstyv LIKE lips-pstyv,      
              xchar LIKE lips-xchar,      
              grund LIKE tvpod-grund,                          
            END OF t_dels_tvpod,
    DATA: l_tabix LIKE sy-tabix,
            lt_dels_tvpod LIKE t_dels_tvpod OCCURS 10 WITH HEADER LINE,
            ls_dels_tvpod LIKE t_dels_tvpod.
    SELECT vbeln INTO TABLE lt_dels_tvpod FROM likp
             FOR ALL ENTRIES IN t_dels_tvpod
             WHERE vbeln = t_dels_tvpod-vbeln
             AND   erdat IN s_erdat
             AND   bldat IN s_bldat
             AND   podat IN s_podat
             AND   ernam IN s_ernam
             AND   kunnr IN s_kunnr
             AND   vkorg IN s_vkorg
             AND   vstel IN s_vstel
             AND   lfart NOT IN r_del_types_exclude.
    Waiting for quick response.
    Best regards,
    BDP

    You should declare your structure with TYPES statement and with  this type declare internal table.
    Example:
    types: begin of ty_itb,
               budat type budat,
               matnr type matnr,
               end of ty_itab.
    data: itab type standard table of ty_itb,
            wa_itab like line of itab.  (work area of itab)
    Since both occurs and header line statements are obsolete.
    change the below select query as follows can improve the performence
    if not IN t_dels_tvpod[] is initial. (always check this, if you are using For all entries statement)
    SELECT vbeln lfart INTO TABLE lt_dels_tvpod FROM likp
    FOR ALL ENTRIES IN t_dels_tvpod
    WHERE vbeln = t_dels_tvpod-vbeln
    AND erdat IN s_erdat
    AND bldat IN s_bldat
    AND podat IN s_podat
    AND ernam IN s_ernam
    AND kunnr IN s_kunnr
    AND vkorg IN s_vkorg
    AND vstel IN s_vstel.
    endif.
    delete  lt_dels_tvpod where lfart not in r_del_types_exclude.

  • Facing problem while creating a report on the value of a UDM in oem gc

    Hi,
    I have created a report in OEM grid control. I have selected a host for this. And I have selected an UDM from the metric list. The report works fine shows the correct graph in the report.
    The problem is that along with the value from the respective udm , I am also getting the values from other metrics.
    Between, I also noticed that the metric I selected is not highlighted when visited next time to the report edit page. I guess this could be the cause but dont know how to fix it. May be I am wrong, If any other issues or suggestions to my problem , Please Advise.
    Thanks in advance.

    It is 10.2.0.5. I guess it is a bug but where to check for confirmation.
    Thanks.
    Edited by: Kuldip on Jul 22, 2010 11:15 PM

  • Facing problem in "Add to Report" in Database expert in Crystal Reports

    Hi,
    I am using Crystal Reports XI R2 Service Pack 3 with Visual Studio 12.0 and Oracle Server as the Data source.
    I am trying to add an SP to the crystal report. When i select the SP and click the Add (>) button, it is not getting moved to the selected Tables list. This problem is seen only for a particular SP. If i select any other SP for the same report, it gets added. The SP is getting executed successfully in DB.
    Please let me know the probable cause for this issue.
    Regards,
    Swaminathan K

    For an Oracle stored procedure to work with Crystal it needs an "in out" parameter that is a RefCursor.  I believe that Crystal doesn't show stored procs that don't have that type of parameter.  You should also check security on the stored proc and make sure that the user id that your report uses has access to view and run the stored proc.
    -Dell

  • Rep-0756 problem facing while opening the report in 10g

    Hi,
    I am facing problem while opening RDF in oracle 10g.
    I follow the next steps.
    1. Open the RDF in 10g.
    2. Open the PLL in report builder and compile that PLL and save in same path where report located.
    3. reattach the library with RDF.
    4. Close the RDF
    5. Reopen the RDF and facing the error.
    6. REP-0756- unable to open attached............
    7. I set the report_path in Registry also where PLL exists
    Please give me the solution for this problem
    Waiting for quick reply.
    ashok

    Thank you fs,
    I am also facing the similar issue in reports 10g, I am keeping the .pll file in my local machine say c:\me\reports\xyz.pll. When I am opening this pll, I am getting the error REP-0756 though the path 'c:\me\reports\' is added to the REPORTS_PATH. Your suggestion resolved the issue.
    Many thanks,
    Lokesh.

  • Problem with Validation in Struts

    Dear All,
    I am facing a proble with validation in struts.
    I have got this code in my action class
    //Initial Code...
    ArrayList branches=new ArrayList();
    branches.add("B01", "Main Branch");
    branches.add("B02", "Second Branch");
    branches.add("B03", "Third Branch");
    DynaValidatorForm memberForm=(DynaValidatorForm)form;
    memberForm.set(branches);
    //Finalizing code.....This form is getting validated in validation.xml.
    This action is being forwarded to folllowing JSP.
    //Initial Code...
            <tr>
                <td align="right"><strong>Branch Name </strong></td>
                <td> </td>
                <td align="left">
                    <html:select property="branid">
                        <html:optionsCollection name="memberForm" property="branches" value="key" label="value"/>
                    </html:select>
                </td>
            </tr>
    //Later code...I have action mapping as..
            <action path="/member/save" input="member.page" name="memberForm" validate="true"
            scope="request" type="com.mlm.action.MemberAction" parameter="action">
                <forward name="success" path="/show.do?action=member" redirect="true"/>
            </action>Now, the problem is that when the form doesn't pass the validation then it gives an exception that..
    Can't find collection 'branches' in bean

    sauanu wrote:
    Ok, now I am giving full code of my module...
    Form-bean
    <form-beans>
    <form-bean name="memberForm" type="org.apache.struts.validator.DynaValidatorForm">
    <form-property name="id" type="java.lang.String"/>
    <form-property name="membname" type="java.lang.String"/>
    <form-property name="address" type="java.lang.String"/>
    <form-property name="branid" type="java.lang.String"/>
    <form-property name="branches" type="java.util.ArrayList"/>
    </form-bean>
    </form-beans>Validation is being done for all fileds except "branches". Validation type is "requried"
    My Jsp....
    <html:form action="/member/save?action=save">
    <html:hidden property="id"/>
    <tr>
    <td align="right"><strong>Member Name </strong></td>
    <td> </td>
    <td align="left">
    <html:text property="membname"/>
    </td>
    </tr>
    <tr>
    <td align="right"><strong>Address</strong></td>
    <td> </td>
    <td align="left">
    <html:text property="address"/>
    </td>
    </tr>
    <tr>
    <td align="right"><strong>Branch Name </strong></td>
    <td> </td>
    <td align="left">
    <html:select property="branid">
    <html:optionsCollection name="memberForm" property="branches" />
    </html:select>
    </td>
    </tr>
    <tr>
    <td align="right">
    <html:submit/>
    </td>
    <b><td>   </td></b>
    <td>
    <html:button value="Cancel" onclick="javascript:history.go(-1)" property="cancel"/>
    </td>
    </tr>
    </html:form>This is the code..
    I tried to find out the problem and I found that.. when the form does not pass the validation its input page gets displayed..
    Now, when the input is getting displayed.. "branches" field of the form contains null???Why?
    Edited by: sauanu on ?? ??????, ???? ??:?? ?????????Forget,about Validations.
    Who is forwarding the control to this JSP page or view ??
    Is it Action method code which metioned earlier doing it ??
    Or some other Action is involved if it is some other action please intialize Values of branches component in the respective action.
    Also,
    Also,
    ArrayList branches=new ArrayList();
    branches.add("B01", "Main Branch");
    branches.add("B02", "Second Branch");
    branches.add("B03", "Third Branch"); I believe you need to get a good understanding of Java Collection classes aswell.
    You can add things as entities in the above case lets create a simple java bean named Option.
    public class Option implements Serializable{
        private String label;
        private String value;
        public void setValue(String value){this.value = value;};
        public String getValue(){return this.value;}
        public void setLabel(String label){this.label = label;}
        public String getLabel(){return this.label;}
    } and inside the action which is forwarding to the respective view
    ArrayList branches=new ArrayList();
    Option option = new Option();
    option.setValue("B01");
    option.setLabel("Main Branch");
    branches.add(option);
    option = new Option();
    option.setValue("B02");
    option.setLabel("Second Branch");
    branches.add(option);
    option = new Option();
    option.setValue("B03");
    option.setLabel("Third Branch");
    branches.add(option);
          <html:select property="branid">
                   <html:options name="memberForm" collection="branches"   value="value" label="label" />
           </html:select>and one more thing is is that after the validation if it is not validated it'd be sent back to input page which destorys the request therefore try making scope of "memberForm" to session in your action mappings and check.
    Hope this might help :)
    REGARDS,
    RaHuL

  • 11.5.10 ROI를 통해 INTRANSIT SHIPMENT(INTER-ORG TRANSFER)를 처리하는 방법

    제품: Applications
    작성날짜 : 2006-05-30
    11.5.10 ROI를 통해 INTRANSIT SHIPMENT(INTER-ORG TRANSFER)를 처리하는 방법
    ===============================================================
    PURPOSE
    11.5.10 Receiving Open Interface를 통해 Lot / Serial Controlled Items을 Intransit Shipment (Inter-org transfer) 처리하는 방법을 기술함.
    Explanation
    11.5.10에서는 ROI를 통해 Inter-Org Transfers를 지원합니다.
    . RECEIVE transaction
    . DELIVER to Inventory Transaction
    Solution
    ========
    - Receiving Open Interface (ROI)를 통해서 2 inventory organizations
    사이의 Inter-Organization Transfer를 수행한다.
    - Direct Receipt Routing으로 RECEIVE 와 DELIVER transaction을 동시에
    수행한다.
    <1> the sample script has been tested for a Lot and Serial
    Controlled Item.
    The script will load records into the tables
    RCV_HEADERS_INTERFACE,
    RCV_TRANSACTIONS_INTERFACE,
    MTL_TRANSACTIONS_LOTS_INTERFACE
    MTL_SERIAL_NUMBERS_INTERFACE
    * If the item is only a standard item, only the records into
    RCV_HEADERS_INTERFACE and RCV_TRANSACTIONS_INTERFACE tables
    have to be created.
    <2> Setup
    1) Inventory Setup/Organizations/Shipping Networks
    - From Sending Organization M1 to Destination Organization D2
    - Transfer Type=Intransit
    - Receipt Routing=Direct
    2) Item 'Lot-Serial-Controlled-1' is a lot and serial controlled
    Item in sending and Destination Organization
    <3> Create manual "Intransit Shipment"
    Inventory / Transactions/ Inter Organization transfer
    - From Org= M1, To Org= D2
    - Shipment: 'ROI-Lot-Serial-1'
    - Item= Lot-Serial-Controlled-1
    - Lot=S00226
    - From Subinventory=Stores
    - To Subinventory=Staging1
    - Quantity=10
    - Start Serial Number=SM1_00001
    - End Serial Number=SM1_00010
    <4> data collection for RCV_TRANSACTIONS_INTERFACE table
    - Select * from RCV_SHIPMENT_HEADERS
    where SHIPMENT_NUM like '&Shipment_Num';
    - Select * from RCV_SHIPMENT_LINES
    where SHIPMENT_HEADER_ID=&Shipment_Header_id;
    - Select * from RCV_LOTS_SUPPLY
    where SHIPMENT_LINE_ID=&Shipment_Line_id;
    - Select * from RCV_SERIAL_SUPPLY
    where SHIPMENT_LINE_ID=&Shipment_Line_id;
    <5> RECEIVE/ DELIVER to INVENTORY Transaction for INTER-ORG
    TRANSFER SHIPMENT
    - Direct DELIVER Receipt
    - LOT_NUM=S00226 and serial numbers SM1_00001 to SM1_00002
    Insert
    - RCV_HEADERS_INTERFACE with SHIPMENT_NUM='ROI-Lot-Serial-1',
    VALIDATION_FLAG='Y'
    - RCV_TRANSACTIONS_INTERFACE with TRANSACTION_TYPE='RECEIVE',
    AUTO_TRANSACT_CODE='DELIVER' , DESTINATION_TYPE_CODE='INVENTORY'
    RECEIPT_SOURCE_CODE='INVENTORY', SOURCE_DOCUMENT_CODE='INVENTORY'
    VALIDATION_FLAG='Y'
    - MTL_TRANSACTIONS_LOTS_INTERFACE with quantity=2, lot number S00226
    - MTL_TRANSACTIONS_SERIAL_INTERFACE with FM_SERIAL_NUMBER='SM1_00001'
    and TO_SERIAL_NUMBER='SM1_00002'
    INSERT INTO RCV_HEADERS_INTERFACE
    (HEADER_INTERFACE_ID,
    GROUP_ID,
    PROCESSING_STATUS_CODE,
    RECEIPT_SOURCE_CODE,
    TRANSACTION_TYPE,
    AUTO_TRANSACT_CODE,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    LAST_UPDATE_LOGIN,
    CREATION_DATE,
    CREATED_BY,
    SHIPMENT_NUM,
    SHIP_TO_ORGANIZATION_ID,
    EXPECTED_RECEIPT_DATE,
    VALIDATION_FLAG
    VALUES
    (rcv_headers_interface_s.nextval , --Header_Interface_Id
    rcv_interface_groups_s.nextval, --Group_Id
    'PENDING', --Processing_Status_Code
    'INVENTORY', --Receipt_Source_Code
    'NEW', --Transaction_Type
    'DELIVER', --Auto_Transact_Code
    SYSDATE, --Last_Update_Date
    0, --Last_Updated_By
    0, --Last_Update_Login
    SYSDATE, --Creation_Date
    0, --Created_By
    'ROI-Lot-Serial-1', --Shipment_Num
    210, --Ship_To_Organization_Id,
    SYSDATE, --Expected_Receipt_Date
    'Y' --Validation_Flag
    INSERT INTO RCV_TRANSACTIONS_INTERFACE
    (INTERFACE_TRANSACTION_ID,
    GROUP_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    TRANSACTION_TYPE,
    TRANSACTION_DATE,
    PROCESSING_STATUS_CODE,
    PROCESSING_MODE_CODE,
    TRANSACTION_STATUS_CODE,
    QUANTITY,
    UNIT_OF_MEASURE,
    INTERFACE_SOURCE_CODE,
    ITEM_ID,
    EMPLOYEE_ID,
    AUTO_TRANSACT_CODE,
    SHIPMENT_HEADER_ID,
    SHIPMENT_LINE_ID,
    RECEIPT_SOURCE_CODE,
    TO_ORGANIZATION_ID,
    SOURCE_DOCUMENT_CODE,
    DESTINATION_TYPE_CODE,
    SUBINVENTORY,
    SHIPMENT_NUM,
    EXPECTED_RECEIPT_DATE,
    HEADER_INTERFACE_ID,
    VALIDATION_FLAG
    VALUES
    ( rcv_transactions_interface_s.nextval, --
    INTERFACE_TRANSACTION_ID
    rcv_interface_groups_s.currval, --GROUP_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'RECEIVE', --TRANSACTION_TYPE
    SYSDATE, --TRANSACTION_DATE
    'PENDING', --PROCESSING_STATUS_CODE
    'BATCH', --PROCESSING_MODE_CODE
    'PENDING', --TRANSACTION_STATUS_CODE
    2, --QUANTITY
    'Each', --UNIT_OF_MEASURE
    'RCV', --INTERFACE_SOURCE_CODE
    169845, --ITEM_ID
    13706, --EMPLOYEE_ID
    'DELIVER', --AUTO_TRANSACT_CODE
    233534, --SHIPMENT_HEADER_ID
    246486, --SHIPMENT_LINE_ID
    'INVENTORY', --RECEIPT_SOURCE_CODE
    210, --TO_ORGANIZATION_ID
    'INVENTORY', --SOURCE_DOCUMENT_CODE
    'INVENTORY', --DESTINATION_TYPE_CODE
    'Staging1', --SUBINVENTORY
    'ROI-Lot-Serial-1', --SHIPMENT_NUM
    SYSDATE, --EXPECTED_RECEIPT_DATE,
    rcv_headers_interface_s.currval, --HEADER_INTERFACE_ID
    'Y' --VALIDATION_FLAG
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE
    ( TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    SERIAL_TRANSACTION_TEMP_ID,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID
    VALUES
    ( MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,--
    TRANSACTION_INTERFACE_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'S00226', --LOT_NUMBER
    2, --TRANSACTION_QUANTITY
    2, --PRIMARY_QUANTITY
    MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL, --
    SERIAL_TRANSACTION_TEMP_ID
    'RCV', --PRODUCT_CODE
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL --
    PRODUCT_TRANSACTION_ID
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE
    ( TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID)
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.CURRVAL,--
    TRANSACTION_INTERFACE_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'SM1_00001', --FM_SERIAL_NUMBER
    'SM1_00002', --TO_SERIAL_NUMBER
    'RCV', --PRODUCT_CODE
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL --
    PRODUCT_TRANSACTION_ID
    Commit;
    <6> In Purchasing Responsibility, Change to receiving organization
    - run the Receiving Transaction Processor for the given group_id
    used in RHI and RTI (GROUP_ID=25168)
    <7> check a data
    Navigate to Receiving / Receiving Transactions Summary form
    - For Shipment Number ROI-Lot-Serial-1, Receipt Number 5012
    has Receive and Deliver transactions.
    Reference Documents
    Note#336924.1
    글 수정:
    heeyeol2

    I Think Rajesh is Good inspite of Merlin.
    Can u send me your mail i'd.
    Actually I'm Facing Some Proble In Receipt Header.
    As the period in GL and Inventory is open till march-07 and i'm doing transaction today.
    After this also application is throughing a error.
    APP-PO-14230
    I Can't Send u the Screen Short hear.
    Please Help Me.
    Bachan

  • Tax code ZT does not appear in any G/L account item

    Hi Gurus
    Iam facing a proble while releasing the billing document to accounting. Following error is coming up
    'Tax code ZT does not appear in any G/L account item'.
    FTXP setting for the tax code appears find as it is tagged to the correct GL account, but somehow the posting is not happeing.
    Can you please help me out with this as Iam stuck and the testing has stopped.
    Thanks
    Ruchi

    Hello,
    please check the note 400766:
    a) Consistency checks                                                 
    In FI, the system checks whether there is a revenue line for each  tax line. In the reverse case, for each revenue line containing a certain tax indicator there must be a tax line with this indicator.                           
    If the first requirement is not met, the system issues error FF753. In many cases, you can solve the problem with Note 112609 
    by adjusting the level number in the pricing procedure in such a way that the system copies the tax indicators correctly into the 
    revenue lines.                                                   
    If the two tax conditions refer to one revenue condition, the requirement cannot be met if the taxes have different tax indicators. In this case, you must use the tax trigger condition in accordance with note 26646.    
    Best regards,
    Ivano.

  • Java stack not starting in a PI 7.1 instance

    Hi experts,
    We are facing a probling while starting a PI 7.1 instance. the Java stack is not getting up. It is coming up to the phase 'starting apps' and failing from there. We had recently updated the support pack of the instance from 6 to 7. But the instance was running fine for around 12 hours after the application. Now, suddenly we seem to have got this issue. PF below the applications log. Request you to please check this and suggest what the problem might be. thanks in advance.
    applications log
    <!LOGHEADERSTART/>
    <!HELPManual modification of the header may cause parsing problem!/>
    <!LOGGINGVERSIONhttp://1.5.7.1006/>
    <!NAMEhttp://./log/applications_00.log/>
    <!PATTERNhttp://applications_00.log/>
    <!FORMATTERhttp://com.sap.tc.logging.ListFormatter/>
    <!ENCODINGUTF8/>
    <!FILESET0, 5, 10485760/>
    <!PREVIOUSFILEhttp://applications_00.4.log/>
    <!NEXTFILEhttp://applications_00.1.log/>
    <!LOGHEADEREND/>
    #1.5 #001D090E4BBE000400000003000038E2007915DA69909431#1234724420487#/Applications/DI/SDIC##com.sap.di.sdic.state.store.migration.support.SystemCopyInfo#######System 27##0#0#Info#1#com.sap.di.sdic.state.store.migration.support.SystemCopyInfo#Plain###SystemCopy folder not found under the system global folder /usr/sap/P7R/SYS/global.#
    #1.5 #001D090E4BBE000400000004000038E2007915DA69909431#1234724420529#/Applications/DI/SDIC##com.sap.di.sdic.srv.java.SDICServiceFrame#######System 27##0#0#Info#1#com.sap.di.sdic.srv.java.SDICServiceFrame#Plain###Successfully started SDIC service.#
    #1.5 #001D090E4BBE002900000000000038E2007915DA69A84A81#1234724438423#/Applications/ExchangeInfrastructure/Security##com.sap.aii.security.SecurityServiceFrame.SecurityServiceFrame.getServiceProperties()#######System 26##0#0#Info#1#com.sap.aii.security.SecurityServiceFrame#Java###QUEUE_CONNECTION_FACTORY: , ERROR_QUEUE: , QUEUE: , JARM_PREFIX: , JARM_USER: , JARM_ENABLED: , CLEAN_INTERVAL: .#7#jmsfactory/default/QueueConnectionFactory#jmsqueues/default/MessageSecurityErrorQueue#jmsqueues/default/MessageSecurityQueue#XI:Security:#XISecurityUser#false#12#
    #1.5 #001D090E4BBE002900000001000038E2007915DA69A84A81#1234724438423#/Applications/ExchangeInfrastructure/Security##com.sap.aii.security.SecurityServiceFrame.SecurityServiceFrame.getServiceProperties()#######System 26##0#0#Info#1#com.sap.aii.security.SecurityServiceFrame#Java###PROTECTION_DOMAIN: .#1#sap.com/com.sap.aii.adapter.soap.app#
    #1.5 #001D090E4BBE003600000000000038E2007915DA69A8DB09#1234724439825#/Applications/ExchangeInfrastructure##com.sap.aii.utilxi.sld.XIIntegrationServer#J2EE_GUEST#13#####Application 23##0#0#Error#1#com.sap.aii.utilxi.sld.XIIntegrationServer#Java###Failed to create access client for SLD, central app server set to null
    Thrown:
    com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable)
    at com.sap.lcr.api.cimclient.HttpRequestSender.newClientException(HttpRequestSender.java:710)
    at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:599)
    at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:345)
    at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:200)
    at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:148)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:445)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:749)
    at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:982)
    at com.sap.aii.utilxi.sld.SldProxy.getInstances(SldProxy.java:380)
    at com.sap.aii.utilxi.sld.SldProxy.getCentralAppServerHost(SldProxy.java:609)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.provideCentralAppServerHost(XIIntegrationServer.java:641)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.constructSldInstanceName(XIIntegrationServer.java:424)
    at com.sap.aii.utilxi.sld.XISubSystem.getSldInstanceName(XISubSystem.java:1004)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.getSldInstanceName(XIIntegrationServer.java:672)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:114)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:142)
    at com.sap.aii.af.lib.sld.impl.SLDAccessor.getISData(SLDAccessor.java:248)
    at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getISData(SLDAccessImpl.java:47)
    at com.sap.aii.adapter.xi.ms.SLDReader.fire(SLDReader.java:79)
    at com.sap.aii.adapter.xi.ms.SLDReader.run(SLDReader.java:182)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    #1.5 #001D090E4BBE003600000002000038E2007915DA69A8DB09#1234724439880#/Applications/ExchangeInfrastructure##com.sap.aii.utilxi.sld.XIIntegrationServer#J2EE_GUEST#13#####Application 23##0#0#Error#1#com.sap.aii.utilxi.sld.XIIntegrationServer#Java###Failed to create access client for SLD, central app server set to null
    Thrown:
    com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable)
    at com.sap.lcr.api.cimclient.HttpRequestSender.newClientException(HttpRequestSender.java:710)
    at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:599)
    at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:345)
    at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:200)
    at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:148)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:445)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:749)
    at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:982)
    at com.sap.aii.utilxi.sld.SldProxy.getInstances(SldProxy.java:380)
    at com.sap.aii.utilxi.sld.SldProxy.getCentralAppServerHost(SldProxy.java:609)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.provideCentralAppServerHost(XIIntegrationServer.java:641)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.constructSldInstanceName(XIIntegrationServer.java:424)
    at com.sap.aii.utilxi.sld.XISubSystem.getSldInstanceName(XISubSystem.java:1004)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.getSldInstanceName(XIIntegrationServer.java:672)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.readFromSld(XIIntegrationServer.java:229)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:120)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:142)
    at com.sap.aii.af.lib.sld.impl.SLDAccessor.getISData(SLDAccessor.java:248)
    at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getISData(SLDAccessImpl.java:47)
    at com.sap.aii.adapter.xi.ms.SLDReader.fire(SLDReader.java:79)
    at com.sap.aii.adapter.xi.ms.SLDReader.run(SLDReader.java:182)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    #1.5 #001D090E4BBE003600000004000038E2007915DA69A8DB09#1234724439991#/Applications/ExchangeInfrastructure##com.sap.aii.utilxi.sld.XIIntegrationServer#J2EE_GUEST#13#####Application 23##0#0#Error#1#com.sap.aii.utilxi.sld.XIIntegrationServer#Java###Failed to create access client for SLD, central app server set to null
    Thrown:
    com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 503 (Service Unavailable)
    at com.sap.lcr.api.cimclient.HttpRequestSender.newClientException(HttpRequestSender.java:710)
    at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:599)
    at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:345)
    at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:200)
    at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:148)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:445)
    at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:749)
    at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:982)
    at com.sap.aii.utilxi.sld.SldProxy.getInstances(SldProxy.java:380)
    at com.sap.aii.utilxi.sld.SldProxy.getCentralAppServerHost(SldProxy.java:609)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.provideCentralAppServerHost(XIIntegrationServer.java:641)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.constructSldInstanceName(XIIntegrationServer.java:424)
    at com.sap.aii.utilxi.sld.XISubSystem.getSldInstanceName(XISubSystem.java:1004)
    at com.sap.aii.utilxi.sld.XIIntegrationServer.getSldInstanceName(XIIntegrationServer.java:672)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:124)
    at com.sap.aii.utilxi.sld.XIEntityInSld.syncFromSld(XIEntityInSld.java:142)
    at com.sap.aii.af.lib.sld.impl.SLDAccessor.getISData(SLDAccessor.java:248)
    at com.sap.aii.af.lib.sld.impl.SLDAccessImpl.getISData(SLDAccessImpl.java:47)
    at com.sap.aii.adapter.xi.ms.SLDReader.fire(SLDReader.java:79)
    at com.sap.aii.adapter.xi.ms.SLDReader.run(SLDReader.java:182)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    #1.5 #001D090E4BBE002900000005000038E2007915DA69A96F79#1234724440265#/Applications/ExchangeInfrastructure/AdapterFramework/Services/ADAPTER##com.sap.aii.adapter.mail.service.XIMailAdapter.init(Channel,XIMailAdapterManager)#######System 26##0#0#Error#1#com.sap.aii.adapter.mail.service.XIMailAdapter#Java### failed to initialize the channel #2#:file_file:mail_receiver#com.sap.aii.af.sdk.xi.util.URI$MalformedURIException: invalid port number: imailchn.satyam.com#
    #1.5 #001D090E4BBE00010000000100003AC0007915DA69909FE9#1234724476269#/Applications/DI/SDIC##com.sap.di.sdic.state.store.migration.support.SystemCopyInfo#######System 11##0#0#Info#1#com.sap.di.sdic.state.store.migration.support.SystemCopyInfo#Plain###SystemCopy folder not found under the system global folder /usr/sap/P7R/SYS/global.#
    #1.5 #001D090E4BBE00010000000200003AC0007915DA69909FE9#1234724476301#/Applications/DI/SDIC##com.sap.di.sdic.srv.java.SDICServiceFrame#######System 11##0#0#Info#1#com.sap.di.sdic.srv.java.SDICServiceFrame#Plain###Successfully started SDIC service.#
    #1.5 #001D090E4BBE00090000000200003AC0007915DA69A80049#1234724490690#/Applications/ExchangeInfrastructure/Security##com.sap.aii.security.SecurityServiceFrame.SecurityServiceFrame.getServiceProperties()#######System 34##0#0#Info#1#com.sap.aii.security.SecurityServiceFrame#Java###QUEUE_CONNECTION_FACTORY: , ERROR_QUEUE: , QUEUE: , JARM_PREFIX: , JARM_USER: , JARM_ENABLED: , CLEAN_INTERVAL: .#7#jmsfactory/default/QueueConnectionFactory#jmsqueues/default/MessageSecurityErrorQueue#jmsqueues/default/MessageSecurityQueue#XI:Security:#XISecurityUser#false#12#
    #1.5 #001D090E4BBE00090000000300003AC0007915DA69A80049#1234724490690#/Applications/ExchangeInfrastructure/Security##com.sap.aii.security.SecurityServiceFrame.SecurityServiceFrame.getServiceProperties()#######System 34##0#0#Info#1#com.sap.aii.security.SecurityServiceFrame#Java###PROTECTION_DOMAIN: .#1#sap.com/com.sap.aii.adapter.soap.app#
    #1.5 #001D090E4BBE00360000000000003AC0007915DA69A890D1#1234724491588#/Applications/ExchangeInfrastructure##com.sap.aii.utilxi.sld.XIIntegrationServer#J2EE_GUEST#13#####Application 43##0#0#Error#1#com.sap.aii.utilxi.sld.XIIntegrationServer#Java###Failed to create access client for SLD, central app server set to null
    Regards,
    Basker

    27##0#0#Info#1#com.sap.di.sdic.state.store.migration.support.SystemCopyInfo#Plain###SystemCopy folder not found under the system global folder /usr/sap/P7R/SYS/global.#
    Is that folder existing?
    Markus

  • SOAP TO JDBC scenario: calling stored procedure which will return the value

    Hi
    I have Soap To Jdbc scenario in which I am going to call the Stored Procedure at target side which will be executed and it is going to return the result set .
    Result contains following values.
    return code as ( 0 Or 1) and also specific exception message if its return code as 1.
    Could you suggest me the way by which I can handled this return code and send it back to the Sap PI system then the same thing is directed the to SMTP server for sending mail to consern person.
    Regards
    Kumar

    The OUT parameters of stored procedure will be returned as response. Where exactly are you facing the proble? Here is a complete walkthourgh
    /people/luis.melgar/blog/2008/05/13/synchronous-soap-to-jdbc--end-to-end-walkthrough
    In your case, you don't want response at sender. Instead you want to mail it. For this you may use BPM to design your scenario with following steps
    Receive (to receive data from sender)
    Send Sync (to stored procedure and get response)
    Send Async (to mail receiver)
    Regards,
    Prateek

  • J_1IRG23D is not updating with Correct Excise DED Value,

    Hi Friends,
    I am  new to the Excise duty , facing a proble in CIN -While doing MIGO, the Excise Calculation are coming correct values          i(.e 10% ),but in the tables it was not updated correctly (J_1IRG23D)   only one entry is showing wrong ,the other entries in the table are correct.
    In table -J_1IEXCDTL  the EXBED it was with correct value 10% of Base value
    But In table -J_1IRG23D  the  EXBED It was updated  with 0.006% on the base value .its gives wrong value
    Kindly help in this issue.
    Regards
    Siva

    Hi Siva,
    J1IG is to create depot excise invoice.
    you can update J-1IRG23D table in two ways-
    MIGO > Create Rg23D
    OR MIGO > No excise entry and then create RG23D entry via J1IG.
    For more information on the same please gothrough  -
    http://help.sap.com/erp2005_ehp_06/helpdata/en/09/ebf138cdd78a4be10000000a114084/frameset.htm
    Regards,
    Brinda

  • Balancing field "profit center" line item 001 not filled

    Dear Gurus,
    I am trying to post an vendor invoice in fb60 , but i am getting the above error message.
    The g/l account involved in the transaction is related to purchase price variance.
    Can somebody help me what could be the problem.
    Cheers
    Balaji

    The same issuse what i have faced at the time of document spliting n case of miro with debit note
    pls go through the following examples waht  i have implemented
    SOLUTION:BY MAINTAIN SPLIT RULE THIS IS SOLVED AS FOOLOWS
    PATH:SPROSPA REF IMGFAGLBUSINEE TRANSACTION--DOCUMENT SPLITINGEXTENDED DOCUMENT SPLITING-
    DEFINE SPLITING RULE
    METHOD :   SPLITING METHOD: TRANSACTION :BUSINESS TRANSACTION: VARIANT  :  VARIANT
    Z000000012 PRIL SPLIT          0000      UNSPECIFIED PosTING    Z002    Vendor Invoice/Document/Credit Memo
    BY SELECTING THE ABOVE1 AND DOUBLE CLICK ON ITEM CATEGORYS TO BE EDITED.THERE ACTUALLY CATEGORY MAINTAIEND FOR
    TDS VENODR LIKE THAT BUT WE FACED THE PROBLE WITH ARTICLE AND PROFIT CENETRE.THERE WE HAVE MAINTAINED CATEGORY
    FOR ARTICLE LIKE

Maybe you are looking for

  • Differences between Convensional interfaces and XI interfaces

    Differences between Convensional interfaces and XI interfaces

  • Mass change of Distribution Channel

    Hi, I want to update Distribution channel field as 10 for all Finished material.... is there any way to upload those materials at a time... i cant do it using LSMW upload.... and i tried using MASS, that is also not possible... Regards smitha

  • Best photo printer for home use

    My HP 3180 does not agree with the iMac, and I'm finished fighting it. I need a printer/scanner, hopefully under $200, and the most important function for me is photo printing. Speed is not a priority. Just really good photo quality. I've read Epson

  • Flash Builder J2EE Tomcat question

    I've been looking around the documentations on how to configure Flash Builder to work with Tomcat using BlazeDS and have gotten different answers from different places. A few places have mentioned to used the LifeCycle Data Service option, while a fe

  • InDesign CS5.5 freezes when creating an idml file

    Good Day All, I have been using inDesign since it started and have never come across this problem. I have a file that I intially created in CS4, converted to CS5 and now CS5.5. I have been trying to convert it to an IDML file and EVERYTIME it hangs a