Equipment selection in QA32

How can we have equipment selection in QA32 for calibration lots, Can we bring equipment field in Dynamic Selection functionality in QA32.
QE51N t code have the functionality of equipment wise selection for calibration lots. But Usage Decision and Certificate printing cannot be done through QE51N.
Please let me know, if anyone bought equipment filed in selection window of QA32. If not can we add equipment field inside Dynamic Selection tab.
Thanks
Vineeth

QE51N t code have the functionality of equipment wise selection for calibration lots. But Usage Decision and Certificate printing cannot be done through QE51N.?
Hi,
Check QE51N screen , both the function UD, Certif printing are possible w.r.t Equipment selection
In tool bar goto Environment>Insp processing>certif creation
For UD in QE51N , execute system displays list of Inspection lot for ur selection, now just select the Inspection lot no and right clik to selct UD , system directs to QA11. Check and revert back.

Similar Messages

  • Equipment Selection/Setup Help

    I'm helping someone setup a network in their new office and want to see if my equipment selection is correct.  The products of the Small Business suite seemed to meet our needs as best I could tell. There is a dizzying array of products to choose from. I did my best.
    Here are the requirements:
    1. Need a Wireless AP to handle a Guest connection to Internet only and an employee connection to corp network services and Internet.
    2. They have two buildings with a multimode fiber link between them.
    3. Each building will have security camera's using PoE.
    4. Remote Access to all VLANS in the buildings (except Guest)
       a. PCAnywhere to Security PC on VLAN30
       b. File services on VLAN20
    5. All VLANS need internet access.  I guess the Mgmt VLAN40 wouldn't need it.
    I planned on purchasing the following:
    WAP561 for Wireless - Wanted both 2.4GHz and 5GHz frequencies
    SF300-24P switch - 1 for each building w/ a 1000Base-SX module MGBSX1 for fiber link
    RV320 Router/VPN
    My first design attempt was to create the following VLANS on all devices
    1 - Default VLAN, Native VLAN - Nothing will use this
    10 - Guest, WAP Only, NO hardwired connections
    20 - Corp, WAP and Wired
    30 - Security, Wired Only at this point
    40 - Mgmt, WAP and Wired
    Trunks carrying All VLANS will be used for the AP<->Switch1,
    Router<->Switch1 and Switch1<->Switch2 connections.
    I'm most concerned with the Router/VPN setup.
    Before we decided on adding VPN to the project I was thinking this would not be difficult to do. Turn off Inter-VLAN routing, setup a DHCP pool for each VLAN and everyone stays out of each others way. But then I opened my big mouth and asked if they wanted remote access.
    So, what VPN setup would allow us to get to all the VLANS? Would PPTP work best? Is Inter-VLAN routing required? If I turn on Inter-VLAN routing would that mean that Guests could get to the other VLANS? Will an access list allow me to prevent Guests from crossing over?
    Any glaring issues anyone sees?
    Thanks.
    Mark

    Hi Mark, admittingly I'm not familiar with the new RV320 router or the new WAP's. However, I can affirm that the basic set up should work as expected and you correctly identified the remote access is the hitch.
    On the previous RV routers PPTP would be the easiest to get on to the network. The real question is, the remote connection what resource does it need access to? Surely not a guest network. In the past, if you wanted PPTP to intervlan communicate you would need the PPTP to connect in to one of the defined subnets and have the intervlan routing enabled.
    This provides a different scenario. Meaning this would require access lists on the switch ports for the ingress traffic to be blocked from accessing undesired resources. I'm not sure if the RV320 supports inter-vlan ACL, I know it was introduced on the RV220w but that can be another idea to combat this concept.
    So I think the consideration for now is, who needs access to what as a remote connection?
    -Tom
    Please mark answered for helpful posts

  • How can you change a drop down menu's selection in a case statement?

    Hi,
    I am trying to an array finding vi. This VI will take an existing xml file and after the user has selected his/her equipment, input, output, and frequency it will put all of those options into a string and search the xml file for that exact array name and display it on an output screen. The problem I am having is that my input and outputs selection needs to be a little different depending upon the equipment selected. I thought that I could use a case statement to change the input and output selectable options, but I have run into many snags with it. For one everytime I place a new Input and Output drop down menu in the case statement it wants to place a new one in the front panel (I only want one input and output not three I have two inputs and outputs hidden right now). I believe I am using the case statement wrong... Can anyone help change my input and output selectable options depending upon the equipment selected. Attached is my xml file, Array Find.vi (the original one), and Array Find_Test.vi (this is the one I am trying to modify).
    Thanks,
    dlovell
    Solved!
    Go to Solution.
    Attachments:
    Find Array.zip ‏126 KB

    Hi dlovell,
    There are 2 key things I'd recommend for the code - using property nodes to edit the strings in the combo boxes.  Something like the following snippet:
    Also, check your CPU in task manager when running the code.  It will eat a whole core of your machine (25% quad core, 50% dual, 100% single) - that is because you are running the while loop and polling the control as fast as Windows will allow you to.  Using Event Structures is a much more efficient way of working in this example.
    Check out the MOD attached 
    Regards,
    Peter D
    Attachments:
    MOD_Find Array.vi ‏28 KB

  • How to default date values in Selection Screen

    Hi everyone,
    I would like to display the 1st day of the previous month into the I_GSTRP-LOW field and the last day of the current month into the I_GSTRP-HIGH field.
    For example, this in the 5th month of the year (May), therefore, in the selection screen it should appear like this:
    Basic Date: <u>01.04.2006</u>    to   <u>31.05.2006</u>
    How do i do it?
    *& SELECTION-SCREEN                                                    *
    SELECTION-SCREEN BEGIN OF BLOCK 1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS:
      I_AUFNR FOR AFIH-AUFNR,                           "ORDER NUMBER
      I_GSTRP FOR AFKO-GSTRP,                           "BASIC DATE
      I_BUDAT FOR AUFM-BUDAT,                           "POSTING DATE
      I_IWERK FOR AFIH-IWERK DEFAULT '6010' OBLIGATORY, "PLANNING PLANT
      I_ARBPL FOR CRHD-ARBPL,                           "WORK CENTER
      I_ERNAM FOR AUFK-ERNAM,                           "CREATED BY
      I_MATNR FOR RESB-MATNR,                           "MATERIAL
      I_KTEXT FOR AUFK-KTEXT.                           "EQUIPMENT
    SELECTION-SCREEN END OF BLOCK 1.

    Here is the code to populate default values,as per your requirement.
    data : V_date type sy-datum,
           v_month(2) type c,
           v_low_value(8) type c,
           v_high_value(8) type c,
           v_month1(2) type n,
            V_NO_OF_DAYS type T009B-BUTAG,
           v_curr_month type T009B-BUMON,
           v_curr_year  type T009B-BDATJ.
           select-options : i_gstrp for sy-datum.
    initialization.      
    v_date = sy-datum.
    v_month1 = v_date+4(2) - 1.
    write v_month1 to v_month.
    concatenate v_date+0(4)
    v_month
    '01'
    into v_low_value.
    I_GSTRP-LOW = v_low_value.
    v_curr_month = sy-datum+4(2).
    v_curr_year  = sy-datum+0(4).
    CALL FUNCTION 'NUMBER_OF_DAYS_PER_MONTH_GET'
      EXPORTING
        par_month       = v_curr_month
        par_year        = v_curr_year
    IMPORTING
       PAR_DAYS        = V_NO_OF_DAYS
    concatenate sy-datum+0(6)
    V_NO_OF_DAYS
    into v_high_value.
    I_GSTRP-HIGH = v_high_value.
    I_GSTRP-sign = 'I'.
    I_GSTRP-OPTION = 'EQ'.
    APPEND I_GSTRP.
    regards
    srikanth

  • Equipmentwise Item codes for mutliple selection

    In IB03, do we have option for multiple equipment selection. We wants to have detail for all equipment in a plant in single report.
    Also confirm, can we have single report for all BOM type i.e to have report for equipment with equipment/material BOM type.
    Thanks
    DON

    Hi,
    You cant get the BOM for multiple equipment in SAP standard report.
    You have to do the modificationin in Transaction code CS15 report.Copy the CS15 programe and develop a new report for multifple equipments.Either you can download the IH01 structure and can get the BOM for the required material
    AR
    Edited by: Amit  Rana on Mar 14, 2010 1:39 PM

  • How to add user defined functions in Menu bar of a Selection Screen?

    Hi,
    Can anybody please suggest me that how can I add user defined functions in the menu bar of a Selection Screen?
    Regards
    s@k

    Dear Amit,
    I am referring to the standard SAP program: RIEQUI20.
    On the initial screen, there are 3 tabs.
    Code:
    SELECTION-SCREEN BEGIN OF TABBED BLOCK tab FOR 25 LINES.
    SELECTION-SCREEN TAB (20) tab1 USER-COMMAND ucomm1
                         DEFAULT SCREEN 001.
    SELECTION-SCREEN TAB (20) tab2 USER-COMMAND ucomm2
                         DEFAULT SCREEN 002.
    SELECTION-SCREEN TAB (20) tab3 USER-COMMAND ucomm2
                         DEFAULT SCREEN 003.
    SELECTION-SCREEN END OF BLOCK tab.
    AT SELECTION-SCREEN.
      CLEAR gv_okcode.
      gv_okcode = sy-ucomm.
      CLEAR sy-ucomm.
      CASE gv_okcode.
        WHEN 'IH08'.
          CALL TRANSACTION 'IH08'. "Equipment Selection
        WHEN 'IW29'.
          CALL TRANSACTION 'IW29'. "Notification Selection
        WHEN 'IW39'.
          CALL TRANSACTION 'IW39'. "Order List Selection
        WHEN OTHERS.
      ENDCASE.
    *   Check date:                                         
      IF NOT datuv IS INITIAL                            
      AND NOT datub IS INITIAL.                         
        IF datub >= datuv.                              
        ELSE.                                           
          MESSAGE e884(ih) WITH datuv datub.            
        ENDIF.                                           
      ENDIF.                                             
      IF variant IS INITIAL AND
         dy_vari IS INITIAL.
        PERFORM get_default_variant_f14 USING variant.
      ENDIF.
      PERFORM variant_existence_f14 USING variant.
      IF datuv IS INITIAL.
        datuv = sy-datum.
      ENDIF.
      IF datub IS INITIAL.
        datub = sy-datum.
      ENDIF.
      IF sy-ucomm = 'ADDR'.
        PERFORM adress_sel_f01 USING 'EQUIR'.
      ENDIF.
      PERFORM check_parnr_f76.
    *  AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      STATICS: l_slset TYPE sy-slset.
    *--- Set initial variant
      PERFORM variant_init_f14 USING 'INST' 'INST' 'INST' 'RIEQUI20'.
      IF variant IS INITIAL AND
         dy_vari IS INITIAL AND
        gv_variant_flag IS INITIAL.
        PERFORM get_default_variant_f14 USING variant.
        gv_variant_flag = 'X'.
      ENDIF.
    *--- Set Icon for adress-button
      PERFORM set_icon_f01 USING dy_adrfl ad_icon text-ad0 text-ad1.
    *--- get classification data from select option
    *--- (if new variant or if called via submit or F3)
      IF ( l_slset NE sy-slset ) OR
         ( s_comw[] IS NOT INITIAL AND gt_clsd_comw[] IS INITIAL ).
        l_slset = sy-slset.
        gv_class_old = dy_class.
        gv_klart_old = dy_klart.
        PERFORM copy_selopt_comw_f79 TABLES gt_clsd_comw s_comw.
        PERFORM class_search_init_f77 USING 'EQUI'.
      ENDIF.
    *--- set Icon for classification
      LOOP AT gt_clsd_comw TRANSPORTING NO FIELDS          
                          WHERE atcod > '0'.               
        EXIT.                                              
      ENDLOOP.                                             
      IF sy-subrc IS INITIAL.
        gv_comw_flag = 'X'.
      ELSE.
        CLEAR gv_comw_flag.
      ENDIF.
      PERFORM set_icon_f01 USING gv_comw_flag cl_icon text-cl0 text-cl1.
      CALL METHOD cl_uid_cust=>selection_screen_output.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR variant.
      PERFORM variant_inputhelp_f14 USING variant 'RIEQUI20'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR dy_parnr.
      PERFORM f4_for_parnr_f76.
    AT SELECTION-SCREEN ON BLOCK clse.
      IF dy_class NE gv_class_old
        OR dy_klart NE gv_klart_old.
        gv_class_old = dy_class.
        gv_klart_old = dy_klart.
        CLEAR gv_comw_flag.
        REFRESH gt_clsd_comw.
        REFRESH s_comw.
      ENDIF.
      PERFORM class_exist_f77 USING dy_klart dy_class 'DY_CLASS'.
      IF sy-ucomm = 'COMW'.
        CALL FUNCTION 'IHCLSD_VALUATION_POPUP'
          EXPORTING
            i_klart               = dy_klart
            i_class               = dy_class
            i_language            = sy-langu
            i_key_date            = sy-datum
            i_also_subclasses     = dy_subcl
          TABLES
            ct_comw               = gt_clsd_comw
          EXCEPTIONS
            exc_no_class          = 1
            exc_klart_not_allowed = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    *--- fill classification data in select option
        PERFORM copy_comw_selopt_f79 TABLES gt_clsd_comw s_comw.
      ENDIF.
      IF sy-ucomm = 'ONLI'.
        sscrfields-ucomm = sy-ucomm.
      ENDIF.
    Regards
    s@k
    Edited by: siemens.a.k on Jan 15, 2010 10:10 AM

  • What is the proces flow for calibration equipement management

    Hello,
    Please can some explain the Process flow for the equipment management?
    We want to schdule the order for the calibration equipement.
    Gaurav

    Please follow the following prcoess flow
    IA05- Create General Task list(Enter inspection point :300,operation,inspection charactertics to the operation,usage)
    IP01-Create plan( Use maintenace startegy of plant,enter equipment, select general task list for plan the equipment,enter call horizon,planning cycle schduling period)
    IP42-Schedule the plan Schedule the plan for the quantity with frequency defined in the plan.Which schdule the according to the schdule date.Schedule date generates pm order for the plan on due date.
    IW33-Display order.
    QE51-Calibration result recording for equipment- Gives status for result i.e ok or not ok.
    QA11-Lot usage decision
    IW41-Confirmation for the order.
    You can refer the sap librabary for detailed process.
    Regards,
    Sunil Patil

  • Report to pull next call date for all equipment

    Hello,
    Is there a report in SAP to get all the next call date for all of our equipment within our company?
    Thanks

    hi
    in IP24 use the multiple selection to select all the equipment and in the selection screen under maintenance dates select maintenance status as W/ and execute system will display the next planned date for the equipment selected -But with all the call object which are on hold
    regards
    thyagarajan

  • Equipment partner function report

    Hi,
    The users maintain the partner function using Personnel no from HCM module and assign it to the equipment master.
    Whenever the equipment/Fleet is transferred to different location, its FL is dismantlled and new FL is Installed and correspondingly the Partner function is changed. Over a period of such transfer, business wants to view the period of the employee(partner) who operated it and the dates range indicating "From date" to "To date"....I checked in Equipment usage list, Multiple equipment selection  using T-code IE07 and IH08, but I am not getting the total record of all the partner who were driving this vehicle with the range of the period...
    Please explain and guide me. how to achieve this business need...

    Thanks Riyaj,
    I tried. It seems to work....The only query remains is the Changed date in the table IHPA against the respective Equipment Object Number...The Created date and the change date/Time remains same in the table against a particular record of Equipment object number and Partner combination. When we change the partner record, the change date field has to get changed and the date of change should be updated...Can you explain me the reason ?
    Also I see the deletion mark in the table against few records...If we just change the partner without deleting, wil the record not get updated..Could you give me the reason behind so...
    I use table PA0001 for partner details since we use the Employee data record which is flowing from HCM module.....
    I am planning to writea  query combining 3 tables EQUI, IHPA and PA0001...
    IE000000000002120051     PE          IEQ     2239          26.10.2010     15:37:02     SPL-03     26.10.2010     15:37:02     SPL-03     X          
    IE000000000002120051     PE     2     IEQ     7778          04.01.2011     09:50:54     MU-PMM-01     04.01.2011     09:50:54     MU-PMM-01               
    IE000000000002120081     PE          IEQ     3          26.10.2010     15:55:09     SPL-03     26.10.2010     15:55:09     SPL-03               
    IE000000000002120185     PE          IEQ     2239          29.11.2010     15:39:38     MU-PMM-01     29.11.2010     15:39:38     MU-PMM-01     X          
    IE000000000002120185     PE     1     IEQ     7778          04.01.2011     09:49:34     MU-PMM-01     04.01.2011     09:49:34     MU-PMM-01     X          
    IE000000000002120185     PE     2     IEQ     2239          04.01.2011     09:51:35     MU-PMM-01     04.01.2011     09:51:35     MU-PMM-01               
    IE000000000002120186     PE          IEQ     3          27.11.2010     15:30:16     MU-PMM-01     27.11.2010     15:30:16     MU-PMM-01

  • Equipment and material

    Dear all
    I am not sure but I am posting this thread under MM area
    I am facing one problem with Equipment .
    The Equipment is belonging from plant A & the material which I entered in Equipment in under <b>serial data</b> belong from plant B .
    I want system have to issue the Error massage if I entered the material which belong from different plant.
    Can it is possible by doing any customisation setting .
    Best luck to all
    Regards
    Nitin

    hi nithin
    here is the procedure
    activate the serial no tab for equiment category S
    while creating the equipement select the required material you want to assing
    then you have to specify the stock information, if it is not matching with the material you have to change the material.
    Note: if you don't enter the stock information then the equipment will be save under material number of different plant.
    Another alternative is in construction type enter the material, then make in customizing that material and construction type to be similar.
    regards
    thyagarajan

  • SAP PM T codes IH01 & IH03 default selection change

    Hi,
    Can anyone tell me how can I change default selected parameters of transaction codes IH01 & IH03 without variant option?
    E.g. I want to have checked or selected Installed equipment selection option of IH01 or IH03.
    I do not want to use variant for this.
    Regards,
    Kedar

    Hi Kedar,
    As earlier suggested, variant option is a solid part for selection variant.
    Let me tell you some info if you about to change SAP_TCODE_IH01 variants?
    All reporting transaction will have a standard variant which starts with SAP... if you about to do any changes, it will affect globally. So normally clients prefer to keep this variant as blank. So any kind of users can use this variant to get datas.
    Also they will maintain additional global variant, which you create by keeping \ in front of the varint name. They will create varint with respect to their requirement.
    Highly recommeded is to keep the Stnadard variant globally and create new variant for different purpose.
    - Pithan

  • Testing equipment.

    hi
    iam haveing MIC and actived the test equipment check box in the mic also,and haveing  inspetion methed with document , sampling procedure. but pl tell me in  group wise    inspectionplan ,how to assinge the test equimpment for each mic.
    regrds
    Baswaraj

    Hi
    1.In MIC if you have ticked " test equipment" then you have to put test equipment in the task list only.
    Go to char level of the task list->select MIC->click on General data->reference>test equipment--->select PRT from here.
    2.Prior to above step>for PRT to be attached>click on PRT>click on OK>screen will appear "New PRTs-->select
    either 1.Material : if equipment is FHMI type material(PRT)
               2. Equipment :If PRT is created as Equipment Master.
               3.Document:if PRT is created as CV01n document.
    Now select the Appropriate PRT and add to PRT bank like 010 or 020 or 030 etc.
    Now from here follow step 1.
    I hope this will help
    Regards
    Sujit

  • No quants exist for posting changes. Creating TOu00B4s in LU04.

    When creating transfer orders in LU04, we get an error message "No quants exist for posting changes'. We are using batch managed and serialized materials. Using QM interface, so, inspection lots are created at Goods Receipt. When QM team "accepts" batch materials during inspection lot, there is no problem, but when "accepts" serialized materials, the system creates posting changes notices but can not create transfer orders sending the message before described. This is because after receiving the serialized materials, we receive one piece at a time in order to create one inspection lot for every serial number. But when we put away the materials, we put them away in the same bin. so, system assigns one quant and one inspection lot to the bin, updating the last one every time we put away one serial number. When system tries to look for the inspection lot number selected in QA32, is not finding it in the bin at WM level because the bin only contains the last inspection lot that was put it away.
    With batch managed numbers there is no problem since SAP divides the bin in different quants with the correspondent batches assigning an inspection lot to each quant.
    Is there any alternative to solve the issue with the serialized materials? We are using SAP ECC 6.0.
    Thanks for any help.

    Hi,
    The reason why we put away serialized materials into the same bin is because materials are physically small and they fit more than one in each bin. The warehouse is structured in this way and we plan to use it like that because it wouldn´t be feasible to create one bin for each serialized material. Is there any other way to manage this situation?
    Thanks in advance.

  • Xslt problem call-template

    Hi,
    I have a problem with call-template. I have passed some parameter with call-template tag and used that parameter in the conditional check tag <xsl:if> i am getting the error. Can any body tell how to use this? I actuall want to dynamically pass the tag name as the parameter and check the attribute value of the tag passed in the if condition and then i want to person some action. How can i do it?
    Here is the call-template code:
    <xsl:call-template name="selected-unselected">
    <xsl:with-param name="currentTag">motor-carrier</xsl:with-param>
    </xsl:call-template>
    Here is the template definition:
    <xsl:template name="selected-unselected">
         <xsl:param name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./{$currentTag}/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./{$currentTag}/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>
    Here is the sample xml code:
    <motor-carrier selected="true"/>
    <motor-truck selected="false"/>
    <sched-mobile-equip selected="false"/>
    Here instead of writing the condition check for every tag i want to write it once and dynamically pass the tag name as parameter to the template. If the attribute of the tag has value true then one message should be displayed otherwise a different message should be displayed.

    Hi,
    I have a problem with call-template. I have passed
    sed some parameter with call-template tag and used
    that parameter in the conditional check tag <xsl:if>
    i am getting the error. Can any body tell how to use
    this? I actuall want to dynamically pass the tag name
    as the parameter and check the attribute value of the
    tag passed in the if condition and then i want to
    person some action. How can i do it?
    Here is the call-template code:
    <xsl:call-template name="selected-unselected">
    <xsl:with-param
    ram name="currentTag">motor-carrier</xsl:with-param>
    </xsl:call-template>
    Here is the template definition:
    <xsl:template name="selected-unselected">
    <xsl:param
    m name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./{$currentTag}/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./{$currentTag}/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>
    Here is the sample xml code:
    <motor-carrier selected="true"/>
    <motor-truck selected="false"/>
    <sched-mobile-equip selected="false"/>
    Here instead of writing the condition check for every
    tag i want to write it once and dynamically pass the
    tag name as parameter to the template. If the
    attribute of the tag has value true then one message
    should be displayed otherwise a different message
    should be displayed.try this:
    <xsl:template name="selected-unselected">
         <xsl:paramm name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./*[name()=$currentTag]/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./*[name()=$currentTag]/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>

  • Xsl:import and xsl:call-template errors for xslt in mediator (ORAMED-03601)

    Hello,
    I decided for performance issues with bpel execution to use a mediator instead.
    In my requester i have a mediator that justs recieves an xml message, uses an xsl transformation (version 2) on that message and then sends it to the EBS.
    The xsl file that's works correctly when used in a bpel process has both <xsl:import..../>and <xsl:call_template.../> tags.
    When i tried and used the same xsl in the mediator i get an ORAMED-03601 error:
    ORAMED-03601:[Invalid transformer configuration]Unable to create transformer. It could be because of transformation file or configuration issues. Reason : "xsl/Xform_PriceListListABMReqMsg_to_PriceListEBMReqMsg.xsl"Possible Fix:Check log file for any exceptions and contact Oracle Support Services for further help
    It works correctly again if i comment/remove all the imports and call-template and incorporate them in the xsl file itself.
    Do anyone know if there are some limitations using xsl in a mediator instead of a bpel?

    Hi,
    I have a problem with call-template. I have passed
    sed some parameter with call-template tag and used
    that parameter in the conditional check tag <xsl:if>
    i am getting the error. Can any body tell how to use
    this? I actuall want to dynamically pass the tag name
    as the parameter and check the attribute value of the
    tag passed in the if condition and then i want to
    person some action. How can i do it?
    Here is the call-template code:
    <xsl:call-template name="selected-unselected">
    <xsl:with-param
    ram name="currentTag">motor-carrier</xsl:with-param>
    </xsl:call-template>
    Here is the template definition:
    <xsl:template name="selected-unselected">
    <xsl:param
    m name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./{$currentTag}/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./{$currentTag}/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>
    Here is the sample xml code:
    <motor-carrier selected="true"/>
    <motor-truck selected="false"/>
    <sched-mobile-equip selected="false"/>
    Here instead of writing the condition check for every
    tag i want to write it once and dynamically pass the
    tag name as parameter to the template. If the
    attribute of the tag has value true then one message
    should be displayed otherwise a different message
    should be displayed.try this:
    <xsl:template name="selected-unselected">
         <xsl:paramm name="currentTag">Quick-Quote</xsl:param>
         <xsl:if test="./*[name()=$currentTag]/@selected='true'">
              <xsl:text>checked</xsl:text>
         </xsl:if>
         <xsl:if test="./*[name()=$currentTag]/@selected='false'">
              <xsl:text>Unchecked</xsl:text>
         </xsl:if>
    </xsl:template>

Maybe you are looking for