Post-mapping process error

I have built all of my process in v9.0.2.62.3 except for once the row is loaded into my staging table, I want to delete this row from the source. I was trying to use the post-mapping process to call a procedure that would perform the deletion. However, I can not get the post-mapping process to work.
The manual states to add a post-mapping process operator to a mapping:
Drop a Post-Mapping Process operator onto the Mapping Editor canvas.
Select the appropriate procedure from the selection list. This were I select a procedure called drop_ind with one input parameter, v_ind_id, of type number.
Connect the output attribute of a source operator to the INOUTGRP1 of the Post-Mapping Process operator.
This is where things start to go wrong with the manual. There is no INOUTGRP1, but only an INPUTS. If I try and attach the target column to the INPUTS, I get an API8009 cannot add attributes to POSTMAPPING INPUTS error. So I attach my target column directly to the input parameter
Rename the operator:
This goes well enough.
Then I try and validate, and I get the following message wehn I try to generate the mapping :
Code cannot be generated.
Specify another operating mode or see validation messages for details.
When I validate I get :VLD-2451 Illegal connection to POSTMAPPING. details = Illegal connection to POSTMAPPING.
Obviously, I am doing something wrong, but what?

Matthew,
First a question, what are you trying to add to the post mapping process? The ID of the single row that is processed?
In that case, you will have to rethink the strategy. What happens in a post map process (and the rest of the map) is the following:
1) execute any pre mapping processes
2) execute the main body of the mapping (this is you diagram excluding pre and post mapping processes)
3) execute the post mapping process
This means that the post mapping process will be run whenever the rest of the mapping is complete.
So to do what you want, you can use the post mapping process but you would add a marker to every inserted record and then in the post map procedure delete all the ones that have this marker in the target from the source.
In that case you would need any parameters from your map into the procedure and you should be all set.
Hope this helps,
Jean-Pierre

Similar Messages

  • Post Mapping Process Execution

    Hi,
    I have a post mapping process for a mapping.
    The post mapping process gets executed even when the mapping results in an error.
    I wanted to know is there any parameter that needs to be set so that post mapping process would be executed only on successful execution of mapping.
    The parameter "Post Mapping Process Run Condition" is set to On Success.
    Also my Mapping performs Set based Operation
    Thanx in advance,
    Sourabh

    Hello Kishan,
    The only way to archieve this currently is to create a super-procedure that calls all your stored procedures in sequence, and use the super-procedure with the post mapping operator.
    Regards, Hans Henrik

  • Multiple POST-MAPPING Processes Code Generation BUG

    We are testing OWB 10gR2, and we were very happy to see that there is option to include more than one postmapping operator.
    The idea is to create mapping with two post-mapping operators and that:
    - one procedure is executed in case of 'Post-Mapping Process Run Condition' = ON ERROR
    - and other procedure in case of 'Post-Mapping Process Run Condition' = ON SUCCESS.
    But, after implementation of this case, we were dissapointed. We discover that neither procedure is executed.. ?!?!
    After analyzing generated code in 'finalize' method there is code like this:
    IF NOT get_abort THEN
    IF get_abort THEN
         BEGIN
    As you can see this condition will never bee true ?!?
    Doe's anyone have same problem?

    1) If you have somehow got multiple post-mappings working, I would consider that to be buggy behaviour that you cannot depend on for future releases or upgrades. As such, building a solution that depends on this has risk.
    2) You could always build a user-defined custom transformation that takes a list of tables to truncate and does so. Something like (untested, uncompiled, seat-of-the-pants written right here example to get you started):
    create or replace procedure trunc_tables(tablist varchar2)
    is
    local_tablist varchar2(2000) := tablist;
    this_Table varchar2(30);
    nextindex number := 1;
    begin
    nextindex := instr(local_tablist,',');
    while nextindex != 0 loop
    this_table := substr(local_tablist,1,nextindex-1);
    execute immediate 'truncate table '||this_Table;
    local_tablist := substr(local_tablist,nextindex+1);
    nextindex := instr(local_tablist,',');
    end loop;
    -- if no trailing semicolon there is still one table left
    if length(local_tablist) > 0 then
    execute immediate 'truncate table '||local_tablist;
    end if;
    end;
    You could then reference this in your post-mapping procedure with a call to trunc_Tables('table1,table2,table3'), and could re-use this code across all mapping that need it.
    Of course, if you have a lot of mapping-specific stuff to do then you might need to build custom transformations for each mapping that need to do different things as part of their post-process.
    Mike

  • POSTING JOURNALS PROCESS ERROR:GL_ACCOUNT_HIERARCHIES_U1 UNIQUE CONSTRAINT

    제품 : FIN_GL
    작성날짜 : 2003-11-18
    POSTING JOURNALS PROCESS ERROR:GL_ACCOUNT_HIERARCHIES_U1 UNIQUE CONSTRAINT Violated
    ========================================================================
    PURPOSE
    ==================
    GL Posting 시 발생하는 문제를 좀 더 손쉽게 파악하여 해결 할 수 있도록 한다.
    Problem Description
    GL Posting 시 다음과 같은 error 가 발생하였다.
    SHRD0114: Executing Pro*C statement Insert into gl_account_h...
    GL_PROPABLE_DUPLICATE_RANGES: APP-00001 cannot find message name
    GL_PROPABLE_DUPLICATE_RANGES
    SHRD0043: ERROR: ORA-00001: unique constraint (GL.
    GL_ACCOUNT_HIERARCHIES_U1) violated
    Workaround
    N/A
    Solution Description
    1. 다음 문장을 수행한다.
    SELECT DISTINCT
    fvh1.parent_flex_value "Segment w/Overlapping Children",
    SUBSTR(fvh1.child_flex_value_low,1,30) "Overlapping Child Low Value",
    SUBSTR(fvh1.child_flex_value_high,1,30) "Overlapping Child High Value",
    SUBSTR(fvh2.child_flex_value_low,1,30) "Overlapped By Child Low Value",
    SUBSTR(fvh2.child_flex_value_high,1,30) "Overlapped By Child High Value"
    FROM FND_FLEX_VALUE_HIERARCHIES fvh1, FND_FLEX_VALUE_HIERARCHIES fvh2
    WHERE fvh1.parent_flex_value = fvh2.parent_flex_value
    AND fvh1.flex_value_set_id = (select flex_value_set_id
    from fnd_flex_value_sets
    where flex_value_set_name = '&Value_Set_Name')
    AND fvh1.rowid != fvh2.rowid
    AND fvh1.flex_value_set_id = fvh2.flex_value_set_id
    AND NVL(fvh2.CHILD_FLEX_VALUE_LOW,'X') <= NVL(fvh1.CHILD_FLEX_VALUE_HIGH,'X')
    AND NVL(fvh2.CHILD_FLEX_VALUE_HIGH,'X') >= NVL(fvh1.CHILD_FLEX_VALUE_LOW,'X')
    2. 다음과 같은 output 이 나올 것이다.
    EXAMPLE OF OUTPUT
    Enter value for value_set_name: VALUE_SET_ACCOUNT
    old 11: where flex_value_set_name = '&Value_S)
    new 11: where flex_value_set_name = 'VALUE_SE)
    Segment w/Overlapping Children
    Overlapping Child Low Value Overlapping Child High Value
    Overlapped By Child Low Value Overlapped By Child High Value
    1000
    6000 6000
    5000 6000
    1000
    5000 6000
    6000 6000
    3. 위의 output에 대한 설명은 다음과 같다.
    고객이 GL Application에서 Setup->Financials->Flexfields->Key->Value화면을 열어 다음과 같은 작업을 하였다.
    Entered values:
    1000 defined as:
    * parent
    * child ranges:
    From To Include
    6000 6000 Child values only
    3000 3000 Parent values only
    3000 defined as:
    * parent
    * child ranges:
    From To Include
    2000 2000 Child values only
    4000 4000 Child values only
    5000 6000 Child values only
    The hierarchy structure is like this:
    1000
    _________|___________
    6000 3000
    ____|______________
    2000 4000 5000 6000
    위에서 볼수 있듯이 6000 이라는 value 가 중복이 되고 있고 그 사항이 제일 처음에 수행한 script의 output 에 overlapping child ranges 로 나타나고 있는 것이다.
    4. 정정하는 step
    4.1 Setup->Financials-> Flexfields-> Key->Values. 로 가서 화면을 open한다.
    4.2 COA 를 Query 한다.
    4.3 Overlapping 된 child ranges 를 찾아서 정정한다.
    Reference Documents
    Note 118130.1

    You can use the debug script $GL_TOP/patch/115/sql/glxacovl.sql, to isolate overlapping child ranges within summary account rollup groups.

  • Post-Installation Process Error (Template Base)

    Hi Experts,
    I try to run template base post-installation process in client 100, we never run post installation process in client 001 (Which is recommended before making the client copy), while doing template base post-installation process failed (got error) at PIPostInstallProcess step 7 u201CAdd Installed Product2u201D I move further and then it failed at step 19 (u201CConfigure the Role of the Integration Serviceu201D) and 20 (Register Queues) same process. It failed at number of process, so what I did I move to manual post-installation process but I stuck in the step were we need to import exchange_profile.xml because I can not see this file at sap\BX0\SYS\global, is this file being deleted by template base post-installation if yes then how to recover it?
    Without this file i can not complete the manual post installation process...:-(
    With Regards
    Sunil

    i think we do not need exchange_profile.xml file in 7.0 post-installation. ok i skip that step in post-installation now when i created LCRSAPRFC_BX0 in Visual Admin services->JCo RFCProvider and try to start it, it is throwing an Error.
    I am using user "PI_JCO_RFC" has respective role assign to it.
    I am not sure whether i am providing correct value to these filed or not
    Gateway Host
    Gateway Service
    Application server host
    System Number
    Client
    can somebody send me detail about these fields
    With Regards
    Sunil

  • Problems with pre-mapping process operator in owb 9i

    Hi,
    I was trying to use the pre-mapping process operator in owb 9i. Problem is that the manual does not specify how the inputs need to be connected to this operator.
    Following is what I went through -
    I created a mapping table operator and a mapping dimension operator and connected these two. Then i created a pre-mapping process operator selecting the LTRIM function. Further I connected one of the table attributes to this pre-mapping operator as input and connected the output of this pre-mapping operator to the appropriate dimension operator attribute.
    On performing Validate, following error message was flashed -
    VLD-2451 : Illegal connection to pre-mapping process operator
    I am trying to learn how to use OWB 9i from the manual. So my interpretation of the use of the pre-mapping process operator may be wrong.
    In any case kindly help,
    Thanks,
    Saju

    Pre-mapping process is use to perform some operations preceding to mapping operation itself.
    For example, if your mapping is designed to incrementally append data to table for the definite time interval (witch is a parameter of the map operation) you might want to perform the table data cleanup for that period. That will allow for reload data number of time.
    In this case you have to define the procedure witch perform cleanup and than include the call to that procedure as a pre-mapping process.
    Other examples of pre- and post mapping process is disabling referential integrity before loading and re-enabling them after loading.
    Anyway, OWB documentation has clear definition for pre- and post-mapping processes.

  • Problems with pre-mapping process in owb 9i

    Hi,
    I was trying to use the pre-mapping process operator in owb 9i. Problem is that the manual does not specify how the inputs need to be connected to this operator.
    Following is what I went through -
    I created a mapping table operator and a mapping dimension operator and connected these two. Then i created a pre-mapping process operator selecting the LTRIM function. Further I connected one of the table attributes to this pre-mapping operator as input and connected the output of this pre-mapping operator to the appropriate dimension operator attribute.
    On performing Validate, following error message was flashed -
    VLD-2451 : Illegal connection to pre-mapping process operator
    I am trying to learn how to use OWB 9i from the manual. So my interpretation of the use of the pre-mapping process operator may be wrong.
    In any case kindly help,
    Thanks,
    Saju

    Hi,
    Essentially the pre (and post) mapping processes are executed before and after the mapping logic. These are separate procedures in the generated package and are "stand alone" from the main package procedure holding the actual mapping diagram.
    If you want to use LTRIM, there are 2 supported ways:
    1) use an expression, this means you feed the column you want to do the expression on into the expression operator, open the code editor and select from the transformations (or type ltrim......) and then link the result to the target object
    2) use a transformation operator, choose ltrim from the Oracle library and connect the operator as I stated in use case 1
    We do not encourage you to use a filter to do transformations, it is better to use the operators that are intended for transformations.
    Thanks,
    Jean-Pierre

  • Post mapping for Reject records!!

    hi
    I would like to capture all the rejected records when I am loading the fact table. I know I can get this information from WB_RT_ERRORS and WB_RT_ERROR_SOURCES. But, what I would like to do is to have Post mapping process which and the action set to "on error", I would like to capture all the reject records into a flat file. Is there a way I can identify reject in the post mapping process other than referring to WB_RT_ERRORS and WB_RT_ERROR_SOURCES in runtime.Because this is what client is requesting for , Any help on this would be greatly appreciated.
    Please mark me directly also since I do not get emails sometimes through the distribution list.
    Thanks in Anticipation,
    Balaji

    Reposting the response from M.Van Der Wiel:
    2 comments:
    - Ideally, you would explicitly capture the errors, and insert those into a separate table. This would enable you to run the mapping in set-based mode (traditionally this means: no error logging) for optimal performance, and you still get the errors. This does mean you would have
    to explicitly design what may go wrong, so you should know what your data looks like. Your flat file could then be created out of the explicit error records, which is probably a bit easier (and faster) than to go from the WB_RT_ERRORS.
    - The mapping errors out once the maximum number of errors is reached (as passed at runtime; is defaulted by the configuration setting). Anything in between 0 and the maximum number of errors will result in a status warning.
    To do what you want to do, you could indeed use the post mapping process, but perhaps you want to design a separate mapping to write the errors to a file, and use a process flow (with conditional sequencing) to run the second mapping (only if the first one fails or results in a warning). This may be a nicer solution than to write the code manually and implement it as a standalone post-mapping process.
    Finally, notice that WB_RT_ERRORS and the like are not tables you should directly query (they will change in the future). Rather you should use the ALL_RT_<something> views to access the same information. Going forward, as the customer desires to migrate to a later release, it is
    more likely that their customizations still work.
    Thanks,
    Mark.
    PS.
    Another possiblity - if the errors violate a key constraint - would be to configure the mapping target with the constraints parameter set to false and redirect the error records to a error table (this can be done in the mapping configuration - sources and targets section). This configuration will disable the constraints during the load and re-enable them after the load, putting the offending records in the error table. You can then download the records from the error table into a flat file in a separate mapping or in a post-mapping process.
    Regards:
    Igor

  • POST MAPPING TO ACCESS RUN TIME  REPO

    Hi all,
    In my mapping , I have a post mapping process wherein, I want to identify the execution status of the mapping wherein the mapping name is passed as a parameter to the following query
    SELECT
    C.RTA_STATUS,     C.RTA_SELECT
    FROM ALL_RT_AUDIT_MAP_RUNS A ,WB_RT_AUDIT C
    WHERE A.MAP_NAME=v_mapping_name
    AND A.MAP_RUN_ID = (SELECT MAX (B.MAP_RUN_ID) FROM ALL_RT_AUDIT_MAP_RUNS B WHERE B.MAP_NAME=v_mapping_name) and A.EXECUTION_AUDIT_ID = C.RTE_ID
    But I am not able to get the result in to my variables..This is very urgent can anybody please help me..
    Thanks in Advance.
    Thanks & Regards
    Azgar

    Sumana, the post-map process will run no matter what, so you can just test the current status to determine what to do.
    For example, I have a standard post-mapping procedure that logs execution details to an audit schema that centralizes collection of execution stats for all processes run in our warehouse. It goes something like this:
    procedure finalize (p_process_id in number,
    p_process_name in varchar2)
    is
    l_status varchar2(20);
    l_numread number := 0;
    l_numInserted number := 0;
    l_numUpdated number := 0;
    l_numMerged number := 0;
    l_owb_audit_id number := 0;
    l_owb_status number := 0;
    sqlStmt varchar2(2000) :=
    'begin '||
    ' :1 := '||p_process_name||'.get_selected; '||
    ' :2 := '||p_process_name||'.get_inserted; '||
    ' :3 := '||p_process_name||'.get_updated; '||
    ' :4 := '||p_process_name||'.get_merged; '||
    ' :5 := '||p_process_name||'.get_runtime_audit_id; '||
    ' :6 := '||p_process_name||'.get_status; '||
    ' end;';
    begin
    -- we use dynamic SQL to return required audit field values.
    -- This allows us to alter which values we need at a later date
    -- without impacting the deployed mappings.
    -- M.B.
    execute immediate sqlStmt
    using out l_numread, out l_numInserted, out l_numUpdated,
    out l_numMerged, out l_owb_audit_id, out l_owb_status;
    -- map OWB status values to our internal codes.
    if l_owb_status = 2 then
    l_status := 'ERROR';
    elsif l_owb_status = 1 then
    l_status := 'WARNING';
    else
    l_status := 'SUCCESS';
    end if;
    -- and end the process in the audit tables
    erscntl_audit_log_pkg.process_end(p_process_id,
    1,
    l_status,
    null,
    l_numRead,
    null,
    l_numInserted,
    l_numUpdated,
    l_numMerged,
    null,
    null,
    null,
    null,
    null,
    null,
    null,
    l_owb_audit_id);
    end;
    You can see where I am translating the status for my purposes, but you could use this to test the status instead.
    the process_name input variable is established by a standard constant in our mappings which is set with a value of get_model_name so that a change to a mapping name is automatically updated internally in the call to the pre- and post-mapping procedures;
    Cheers,
    Mike

  • Problem using pre-mapping process operator in owb 9i

    Hi,
    I was trying to use the pre-mapping process operator in owb 9i. Problem is that the manual does not specify how the inputs need to be connected to this operator. Following is what I went through -
    I created a mapping table operator and a mapping dimension operator and connected these two. Then i created a pre-mapping process operator selecting the LTRIM function. Further I connected one of the table attributes to this pre-mapping operator as input and connected the output of this pre-mapping operator to the appropriate dimension operator attribute. On performing Validate, following error message was flashed -
    VLD-2451 : Illegal connection to pre-mapping process operator
    I am trying to learn how to use OWB 9i from the manual. So my interpretation of the use of the pre-mapping process operator may be wrong.
    In any case kindly help,
    Thanks
    Saju

    Pre-mapping process is use to perform some operations preceding to mapping operation itself.
    For example, if your mapping is designed to incrementally append data to table for the definite time interval (witch is a parameter of the map operation) you might want to perform the table data cleanup for that period. That will allow for reload data number of time.
    In this case you have to define the procedure witch perform cleanup and than include the call to that procedure as a pre-mapping process.
    Other examples of pre- and post mapping process is disabling referential integrity before loading and re-enabling them after loading.
    Anyway, OWB documentation has clear definition for pre- and post-mapping processes.

  • XML Publisher post-processing error 'java.io.FileNotFoundException'

    Hi,
    We are getting following XML Publisher post-processing error while running XML Publisher report.
    It was working earlier but suddenly its erroring out.
    [9/07/10 9:00:17 PM] [OPPServiceThread1] Post-processing request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Executing post-processing actions for request 559655.
    [9/07/10 9:00:18 PM] [39177:RT559655] Starting XML Publisher post-processing action.
    [9/07/10 9:00:18 PM] [39177:RT559655]
    Template code: XXHPOXPRRFLR
    Template app: XXH
    Language: en
    Territory: 00
    Output type: PDF
    [9/07/10 9:00:18 PM] [UNEXPECTED] [39177:RT559655] java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:274)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:173)
    [9/07/10 9:00:18 PM] [39177:RT559655] Completed post-processing actions for request 559655.
    Please help me out to resolve this issue.
    Thanks & Regards,
    Sagarika

    Hi,
    java.io.FileNotFoundException: /apps/oracle/DEV/inst/apps/DEV_hlt439erplap001/logs/appl/conc/out/o559655.out (No such file or directory)Most probably this file is not created (since no changes have been done recently, so definitely it is not a permission issue), and if there are any log files generate at the client side it should help in investigating the issue.
    Thanks,
    Hussein

  • Compiler Process error in Message Mapping

    Hi all,
    I have recently installed an XI system.
    First time when i create simple message mapping, it was showing compilation process error.
    Please tell me what needs to be done so that message mapping works well. It is really urgent.
    Thank you all.
    Regards,
    Kavan Shah

    hi
    check the HDD space on your XI server machine
    try checking the java path on your XI machine
    if this will not work contact the SAP via an OSS note
    As this is a new XI server it probably means it
    was incorrectly installed
    Note:please reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • Error handling in post-mapping (10gR2)

    Hi all,
    I raised an application error in a procedure executed in post-mapping with :
    raise_application_error (-20001, varMessage) ;
    but when it raised the mapping is not marked on error and there is nothing in the mapping execution details displayed in the audit browser about the error.
    Is there a way to make the mapping failed in case of problem in a post-mapping procedure ? The raise_application_error seems work in OWB 10.1.0.4 but not in OWB 10.2.0.2.
    Thanks
    Regards
    Matthias

    Hum .... it fact the raise_application_error works and marks the mapping failed....
    My exception was catched by another procedure ...

  • Generate Flexfield and Mapping Information Process errors out

    Hi,
    The Generate Flexfield and Mapping Information process errors out with the following msg:
    **Starts**19-OCT-2009 13:55:02
    ORACLE error 6501 in FDPSTP
    Cause: FDPSTP failed due to ORA-06501: PL/SQL: program error
    ORA-06512: at "APPS.FND_FLEX_DSC_API", line 1626
    ORA-06501: PL/SQL: program error
    ORA-06512: at "APPS.FND_FLEX_DSC_API", line 925
    ORA-01403: no data foun
    I have created the element set with all the elements added one at a time into the element set.
    Any idea on what could be the issue ?

    Pl see if the steps in MOS Doc 453184.1 (ORA-01403 and ORA-06512 at HXC_CREATE_FLEX_MAPPINGS and FND_FLEX_DSC_API on Runnning hxcmprn.sql) can help
    HTH
    Srini

  • Error when using the template installer MI post installation process

    Hi all,
    I am busy to configure the Netweaver Administrator in order to create setup packages for mobile devices. This is a WAS 6.40 ABAP JAVA instance with mobile infrastructure.
    I have installed the netweaver SR1 and upgraded abap and java to SPS18 afterwards.
    Afterwards I used the template installer, I executed:  MI post installation process.
    But when I did this an error message occured on the following node:
    step ID 8 registering RFC connection.
    Error message:
    Element
    'SAPConfigLib.<SID>.Unclassified.set_Server_Service':!BrokerImport.import_of_element_failed!!BrokerImport.Fehler!com.sap.tc.lm.ctc.cul.cpi.exceptions.CPIBaseException:
    <--Localization failed:
    ResourceBundle='com.sap.tc.lm.ctc.cul.cpi.CPIResourceBundle',
    ID='com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION', Arguments:
    []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key
    com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION:com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceWriter.writeElement!BrokerImport.LINE!179-:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.86
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.serviceimpl.importservice.CULConfigurationImport.importConfiguration.89
    -:com.sap.tc.lm.ctc.ccl.templateinstaller.StepExecuter.run.41 Element 'SAPConfigLib.<SID>.Unclassified.set_Server_Service':Error during executing Java Reflection:JCO.Client not connected in repository call
    Here after I followed manual: MI25 SPS18 inst newtech.pdf for configuring the NWA.
    I checked the complete manual, but still the error message occurs, when I am using the template installer.
    There is one more thing.
    When I go to the NWA, to the Mobile Infrastructure node, allmost all subnodes give me the following error:
    (For instance on hierarchy grouping:)
    Failed to get hierarchy group elements from middleware. Reason: Could not connect to middleware.
    Does this error message relate to the other error message?
    Please give me advise/hints/directions to solve this problem....
    Your help will be appreciated!
    Best regards,
    Jacco Raymakers

    I got error during use of template installer in NWA. It is MI post installation in N/w2004s SP09
    Error message:
    Element
    'SAPConfigLib.<SID>.Unclassified.set_Server_Service':!BrokerImport.import_of_element_failed!!BrokerImport.Fehler!com.sap.tc.lm.ctc.cul.cpi.exceptions.CPIBaseException:
    <--Localization failed:
    ResourceBundle='com.sap.tc.lm.ctc.cul.cpi.CPIResourceBundle',
    ID='com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION', Arguments:
    []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key
    com.sap.tc.lm.ctc.cul.cpi.BaseException_BASE_EXCEPTION:com.sap.tc.lm.ctc.provider.javaServiceProvider.JavaServiceWriter.writeElement!BrokerImport.LINE!179-:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.86
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.broker.BrokerImport.importElement.128
    -:com.sap.tc.lm.ctc.cul.serviceimpl.importservice.CULConfigurationImport.importConfiguration.89
    -:com.sap.tc.lm.ctc.ccl.templateinstaller.StepExecuter.run.41 Element 'SAPConfigLib.<SID>.Unclassified.set_Server_Service':Error during executing Java Reflection:JCO.Client not connected in repository call
    Please help me the resolve this.

Maybe you are looking for

  • IPhone 4 Voice Memos not working/saving

    Hi there, I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to vi

  • Service Tax

    Hi , Pls Guru's help Service Tax Receivable & Payable – The Client wants to have a Service Tax Control Account that would be automatically populated for the particular bill / Invoice on the day of Vendor Payment and Customer Receipt. a.     Example –

  • How to stop jobs after a system copy

    Hi All, After doing a system copy from the Production system to some test system, all the jobs that are supposed to be triggered in the production server will also trigger in the test system which is not good. For example, If we have a payroll runnin

  • Download mountain lion on replaced hard drive

    I need to download mountain lion on a replaced hard drive. how can I do this?

  • PCR Error

    Hi we have been struggling with errors in Web Dynpro PCRs. When we correct one error we are getting another error after that.. rightnow we have the following error. The initial exception that caused the request to fail, was:    com.sap.engine.service