BPM schedule problem

Hello,
we have a configured BPM process which also uses JDBC request to external DB. The JDBC adapter initiates the running of BPM process.
We need to run BPM at a fixed time (f.e. - at 24.00). But we can only set a periodic interval for JDBC adapter in XI .
How can we define a specific trigger time for our BPM?
Thank You.

Hi Igor,
you need to create a job that trigegrs your BPM:
/people/siva.maranani/blog/2005/05/22/schedule-your-bpm
Regards Mario

Similar Messages

  • Production Orders: Scheduling Problem

    Hello
    I have a scheduling problem.  I want the system to calculate the production order dates.
    I have maintained the following
    1.      Work Center:  A formula to calculate the duration.  I have marked the u201Crelevant to finite indicatoru201D in the Capacity Header Tab.  I have also maintained the available capacity as 24 Hrs.
    2.     Routing:  I have maintained the values for the standard value keys
    3.     SPRO:  In scheduling parameters for the order type, I have marked u201CGenerate cap requirementsu201D and u201CSchedulingu201D;  In the production scheduling profile, I have marked u201CSchedule orderu201D (on release) & u201CFinite Schedulingu201D (Availability check).
    But the production order is not getting scheduled & the start & end times are the same.  I get the error u201CNo req/capacity exists or not relevant for finite schedulingu201D.
    Can anyone guide me as to what I am missing?
    Best regards
    Tom

    Dear Tom,
    Please check following;
    1. Your operation contol key; whether it allows scheduling.
    2. scheduling parameters for production order on OPU3: Please select proper combination of plant and order type and tick scheduling and generate capacity requts indicators in detailed scheduling tab.
    Please revert back if problem persist.
    Best Regards
    Uday

  • Scheduling problem in LSMW for Sales Order

    I am doing LSMW for Sales Order using the BAPI method.
    I am able to upload the item details along with their quantities also but the problem that I am now facing is the scheduling problem.I am unable to schedule the item quantities, only the last quantity passed is taken as the final quantity and the consolidated quantity is also getting ignored.
    I am using E1BPSCHDL structure, in this structure I am mapping Itm_number , req_date and req_qty(scheduled qty).....
    in the structure E1BPSCHDLX, the same fields are mapped as 'X'.
    in the structure E1BPSDITM, I am mapping the item info along with the consolidated qty(TARGET_QTY), but this is getting ignored and the last scheduled qty is taken as the final consolidated qty and the rest scheduled qty data is getting rejected.
    Please do help... I dont know why this problem is coming... tried n number of alternatives but of no hope... do try to help me
    with regards,
    Daya.

    Check the format of your date and check the format expected.
    sometimes you can have diff like YYYYMMDD, MM.DD.YYYY,...
    Look at the converted data.
    Hope this helps,
    Erwan

  • RFC to XI scheduling problem

    Hello,
    I send delivery from R\3 to FTP.
    In the R\3 system the  deliveries number create consequential,
    Delivery number 1003 came before delivery number 1004 and so on  (not always serial, for example 998, 1003, 1004, 1017 and so on)
    To XI system the deliveries came in the wrong order (for example 1017, 1003, 1004, 998 and so on).
    Do you have any idea about this problem?
    Thanking you in advance
    Elad

    Hi,
    You can do ABAP program to handle this type of problem.. and schedule that program also..
    Or you can have ABAP porxy to handle ..
    See below links
    ABAP Program back ground scheduling issue.
    Schedule Module program in Background with Dynamic Input values ?
    Schedule Jobs with multiple steps via ABAP Program
    /people/claudio.ciardelli2/blog/2005/09/01/launching-an-apd-analysis-process-from-an-abap-program
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy - ABAP Proxy
    /people/siva.maranani/blog/2005/04/03/abap-server-proxies
    /people/vijaya.kumari2/blog/2006/01/26/how-do-you-activate-abap-proxies
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    http://help.sap.com/saphelp_nw2004s/helpdata/en/48/d5a1fe5f317a4e8e35801ed2c88246/frameset.htm
    /people/sravya.talanki2/blog/2005/08/23/sender-xi-ftp-adapter-with-regular-path-expression-150-abap
    /people/siva.maranani/blog/2005/05/22/schedule-your-bpm
    Regards
    Chilla..

  • JOB Scheduling problem

    Hi All,
    My problem is the next:
    I would like to call two functions, in one function module, but I cannot schedule the second job after the first. I wrote the code, use the parameter PREDJOB_CHECKSTAT of JOB_CLOSE, but when the mother function called two jobs started immediately and paralell. What is worng in the following code?
    Thanks /and points :)/ for your help!
    Tamas
          L_JOBNAME = 'REQUEST_COPY'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME
            IMPORTING
              JOBCOUNT = L_JOBCOUNT.
          SUBMIT RSSEM_REQUEST_COPY
                       WITH RNR = I_RNR
                       WITH S_CUBE = LS_CUBES-SOURCE_CUBE
                       WITH T_CUBE = LS_CUBES-TARGET_CUBE
                       USER SY-UNAME VIA JOB L_JOBNAME NUMBER L_JOBCOUNT
                       AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT
              JOBNAME   = L_JOBNAME
              STRTIMMED = 'X'.
          L_JOBNAME2 = 'REQUEST_CLOSE'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME2
            IMPORTING
              JOBCOUNT = L_JOBCOUNT2.
         SUBMIT Z_REQUEST_CLOSE_ZSD_P25
                   USER SY-UNAME VIA JOB L_JOBNAME2 NUMBER L_JOBCOUNT2
                   AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT2
              JOBNAME   = L_JOBNAME2
              STRTIMMED = 'X'
              PREDJOB_CHECKSTAT = 'X'
              PRED_JOBCOUNT = L_JOBCOUNT
              PRED_JOBNAME = L_JOBNAME.

    Hi Thomas,
    Thanks for all helps, I found the solution!
    Inserted a select from the Job Status Table into th second job definition.
    Thanks for the ideas!
    Tamás
    The finally code is the the following:
          L_JOBNAME = 'REQUEST_COPY'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME
            IMPORTING
              JOBCOUNT = L_JOBCOUNT.
          SUBMIT RSSEM_REQUEST_COPY
                       WITH RNR = I_RNR
                       WITH S_CUBE = LS_CUBES-SOURCE_CUBE
                       WITH T_CUBE = LS_CUBES-TARGET_CUBE
                       USER SY-UNAME VIA JOB L_JOBNAME NUMBER L_JOBCOUNT
                       AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT  = L_JOBCOUNT
              JOBNAME   = L_JOBNAME
              STRTIMMED = 'X'.
          L_JOBNAME2 = 'REQUEST_CLOSE'.
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              JOBNAME  = L_JOBNAME2
            IMPORTING
              JOBCOUNT = L_JOBCOUNT2.
          DO.
            SELECT SINGLE STATUS FROM TBTCO INTO L_STATUS
              WHERE JOBNAME = L_JOBNAME
              AND JOBCOUNT = L_JOBCOUNT.
            IF L_STATUS = 'F'.
              EXIT.
            ELSE.
              WAIT UP TO 1 SECONDS.
            ENDIF.
          ENDDO.
          SUBMIT Z_REQUEST_CLOSE_ZSD_P25
                    USER SY-UNAME VIA JOB L_JOBNAME2 NUMBER L_JOBCOUNT2
                    AND RETURN.
          CALL FUNCTION 'JOB_CLOSE'
            EXPORTING
              JOBCOUNT          = L_JOBCOUNT2
              JOBNAME           = L_JOBNAME2
              STRTIMMED         = 'X'
              PREDJOB_CHECKSTAT = 'X'
              PRED_JOBCOUNT     = L_JOBCOUNT
              PRED_JOBNAME      = L_JOBNAME.

  • Background job scheduling problem in APO

    Hi fellow SDNers,
    i am going through this peculiar problem of background job scheduling:
    scenario is like , i have an CSV (excel file) in aplication server which would load data into the infosource, which i have scheduled to run in backhround (in infopackage) ,after event is triggered (option in scheduling tab of infopackage...THE SCHEDULING OPTIONS)
    now everything seems to be fine.. but the data is not getting loaded...?? could u lease help me out..how to load data from excel file (in background), after an event gets triggered.
    thanks in advance,
    Rohan

    hi Alexander,
    i am triggering the event from BP_EVENT_RAISE FM in APO  by passing the  event id... this would automaitically raise the event...just like sm64
    Thanks
    Rohan

  • Scheduling problem with delivery date in purch.req and requirement date

    Dear all,
    I have the problem, that the calculated delivery date in the purchase requisition does not correspond with the requiement date of the production or planned order.
    I would like to use planned delivery times in the material master.
    Example:
    Planned delivery time: 20 days
    Todays date 01.10
    Case 1)
    Requiement date of planned order 10.10
    Case 2)
    Requiement date of planned order 20.09
    This situation can happen in our envirnoment, as the engineering process still continues after start of production. In this case I would like to have the following result:
    Case 1)
    Delivery date is 10.10 minus the goods receipt time
    Case 2)
    Delivery date is day of MRP or one or two days more
    I made the setting that dates in the past are not allowed. This solves my first smal problem. I tried to set the scheduling margin key but these settings do not help me, as they are relevant for all materials. I need of course individual planned delivery dates per material.
    So, I want to change the standart MRP procedure that in the case of the "wished requirement date" not the calculated date is beeing taken, but the "wished date". Usually you receive an exeption for this case and you would need t solve this manually. But this we dont want to do.
    Can s.o. please help me? Thank you all very much, I really dont know what to do in this case.
    With best regards,
    Bjoern

    The question cannot be answerd by SAP standart as I see. We will go through a workaround.

  • Background Scheduling Problem

    Hi everyone,
    I am getting problem in the BEx reporting.After loading the new data in the respective data targets, it is not reflecting in the BEx Analyzer. I have created the process chain, and loading is done in the background scheduling. I can see the updated request time and date in Monitor. It is showing that data is updated successfuly in the data targets.
    But when I execute the report after 2hrs, It will reflect in the query and it will show the latest updated records.
    If anybody knows the reason why it takes time to reflect in query, please give me some outputs.
    Thanks,
    Pandey

    Hi Manoranjan,
    If your data target is ODS, you can find the updated records for reporting only after activation. If it is InfoCube there could be some processs defined after dataload like create index,Stats and rollup if aggregate are present. may be this could be the reason...
    Hope this helps..
    Best Regards,
    DMK
    *Assign points if it serves your purpose...

  • Scheduling Problem for uploading Data from Flat file to SAP

    Hi guys,
    I am facing a weared problem in uploading some leave records in z table. The code is working fine if we run it through se38 after selecting the file from a shared location from production server which has all the access rights.
    This folder lies in the \usr folder of SAP Production.
    I have kept all the Flat files in the shared path "
    Tis-mum-iz-s1\migration\SAP-INT\leave\" ...
    To give u exact directory structure..
    Tis-mum-iz-s1 is the Server Name
    usr is the SAP System folder used for uploads and downloads
    usr |
    ...-> Migration |
                      -> SAP-INT |
                                 -> leave -> (Flat Files)
    Migration folder is shared with all rights.
    Obviously, we cannot give shared drive as the variant in the scheduler.
    So i use the system path i.e. \usr\sap\tmp\migration\sap-int\leave\ as the variant.
    All my other download programs are working fine with this path as a variant...
    But my this particular upload program does not work with this path....
    I am giving u my code...
    TATA INTERACTIVE SYSTEMS (A Division of TATA INDUSTRIES LIMITED)
    REPORT      :  ZMIGRATE_ZLEAVE
    DESCRIPTION :  To Upload the Leave data. (ZLEAVE)
    CREATED BY  :  Abhishek Bachhawat
    CREATED ON  :  01.09.2005
    CONSULTANT  :  ANAND
    REPORT  ZMIGRATE_ZLEAVE.
    TABLES: ZLEAVE.
    data: begin of wtab,
              MANDT(3),
              ZLVID(8),
              PERNR(8),
              ZSTDT(8),
              ZENDT(8),
              ZDAYS(4),
              AEDAT(8),
              ERDAT(8),
          end of wtab,
          itab like WTAB occurs 0 WITH HEADER LINE.
    data: temp like zleave occurs 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK file
                   WITH FRAME TITLE text-005.
    parameters: file like rlgrap-filename Obligatory.
    Concatenate File SY-DATUM '_Leave.txt' into File.
    SELECTION-SCREEN END OF BLOCK file.
    at SELECTION-SCREEN ON VALUE-REQUEST FOR file .
      CALL FUNCTION 'WS_FILENAME_GET'
        IMPORTING
          FILENAME = file.
      IF SY-SUBRC <> 0.
      ENDIF.
    start-of-selection.
      if file ne space.
        CALL FUNCTION 'WS_UPLOAD'
          EXPORTING
            FILENAME = FILE
            FILETYPE = 'DAT'
          TABLES
            DATA_TAB = ITAB.
      else.
        message e000(zps) with 'Specify a file'.
      endif.
      SORT ITAB BY ZLVID.
      LOOP AT ITAB.
        REFRESH TEMP.
        CLEAR TEMP.
        TEMP-MANDT = sy-mandt.
        TEMP-ERDAT = SY-DATUM.
        TEMP-ZLVID = ITAB-ZLVID.
        TEMP-PERNR = ITAB-PERNR.
        TEMP-ZSTDT = ITAB-ZSTDT.
        TEMP-ZENDT = ITAB-ZENDT.
        TEMP-ZDAYS = ITAB-ZDAYS.
        TEMP-AEDAT = ITAB-AEDAT.
        TEMP-ERDAT = ITAB-ERDAT.
        APPEND TEMP.
        SELECT SINGLE *
               FROM   ZLEAVE
               WHERE  ZLVID = TEMP-ZLVID
               AND    PERNR = TEMP-PERNR.
        IF SY-SUBRC = 0.
          UPDATE ZLEAVE SET ZSTDT = TEMP-ZSTDT
                            ZENDT = TEMP-ZENDT
                            ZDAYS = TEMP-ZDAYS
                            AEDAT = TEMP-AEDAT
                            ERDAT = TEMP-ERDAT
                 WHERE ZLVID = TEMP-ZLVID
                 AND   PERNR = TEMP-PERNR.
        ELSE.
          INSERT ZLEAVE FROM TABLE TEMP.
          COMMIT WORK.
        ENDIF.
      ENDLOOP.

    Hi,
    open dataset file for input in text mode.
    check sy-subrc = 0.
    while sy-subrc = 0.
      read dataset file into wa.
      if sy-subrc = 0.
      append wa to itab.
      else.
        exit.
      endif.
    endwhile.
    close dataset file.
    regards
    Siggi
    PS: check also the F1-help for open, read and close statements!

  • BPM BpmPatternCollectTime problem

    Hi,
    I've been trying to get the example pattern BpmPatternCollectTime from SAP to work on PI 7.1. This pattern waits for messages and collects them into one message. I've checked my BPM against the SAP BPM and the only difference is that I'm using XSLT mapping in the Transformation step. Is this causing the problem ?
    I've checked all the blogs I could find, searched for SDN messages, checked SXI_CACHE etc. to no avail.
    Scenario is: I'm sending multiple IDOCS from SAP HR system via PFAL, each has 200 persons in them.
    I map the IDOCs to the target format (XML) and collect them in the BPM and send to file adapter.
    Problem is I only get the first IDOC contents in target message, and the rest are missing.
    When I look at the BPM workflow log, Container tab, I can see that there are 3 messages in the MESSAGE_IN entry. I can open them and see the contents fine. This leads me to believe that my Correlation is working ok.
    Also in the Block step the COLLECTMESSAGELIST contains 3 entries as it should.
    Correlation says:
    <CorrelationKey Version="001"><ID>SAP HR</ID></CorrelationKey>
    Where 'SAP HR' is the content of the correlation XPath query I defined.
    MESSAGES_OUT in the BPM workflow log contain the same 3 messages.
    TRACE in the BPM workflow log shows that the mapping of the Transformation step executed ok. Transformation step Operations Mapping is using an XSLT mapping that is copying the input to output as is.
    When the BPM is finished the target message only contains the first IDOC data.
    How can I get the rest of the data to append to the target message ?
    Kind Regards,
    Jari Pakarinen

    Hi,
    Using this mapping XSLT I was able to get the BPM working:
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns="http://xxxx.com/xxx" xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
      <xsl:template match="/">
        <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
          <ns0:Message1>
            <xsl:copy-of select="*"/>
          </ns0:Message1>
        </ns0:Messages>
      </xsl:template>
    </xsl:stylesheet>
    This means you have to wrap the mapping inside
    <ns0:Messages><ns0:Message></ns0:Message1></ns0:Messages>
    tags. This took a while to find out.
    Jari

  • BPM 11g: problem initiate task from API

    Hi all,
    First of all, i have deployed a BPM process and his initiator task is a human task implementation. Then the user can click on it in teh workspace and they are redirect to my J2EE aplication, in wich i want throw a new instance of my process when the user complete the form data.
    I'm do know how to implement it, and i trying two ways:
    one: initiate a process instance with oracle.bpm.service. package the the server give me this error:
    http://kr.forums.oracle.com/forums/thread.jspa?messageID=9244238
    java.io.InvalidClassException: oracle.bpel.services.workflow.verification.impl.WorkflowContext; local class incompatible: stream classdesc serialVersionUID = 3642712178109525089, local class serialVersionUID = 1
    two: initiate a new task programmatically, is it wright? a new task of my human initiator task from java is that i need for create a BPM Process? i don't know, becouse i get this other error:
    http://download.oracle.com/docs/cd/E15523_01/integration.1111/e10224/bp_worklistcust.htm#CIHEAFBB
    WSM-09004 Component auditing cannot be initialized
    any ideas? thank you very much in advance, and sorry for my poor english.

    I hope you have got the solution for this problem.
    will you please share the solution. as I am also facing the same...
    Thanks

  • BPM Worklist Problem After Setting Frontend Host and Port

    Hi all,
    I was following the EDG for SOA 11.1.1.5 and was encountering a problem with the BPM Worklist after setting the Frontend Host and Port. We have a topology that includes a load balancer that terminates SSL, two OHS instances, and two SOA instances on separate VMs. When BPM Worklist was loading, it was calling webservices internally through the load balancer, but WebLogic was expecting them as http://. It was not able to resolve the HTTPS port that was being sent from the load balancer through the 80 to 443 redirect.
    What the current EDG does not tell you, is that you have to also turn on "Enable Weblogic Plug-In" for WebLogic to use the OHS plug-in. I did it at the domain level, as all traffic will go through the load balancer. This essentially tells WebLogic that all URLs are https://
    Here is an exerpt from the SOA.out log file:
    <Sep 8, 2011 9:32:06 PM PDT> <Error> <oracle.soa.services.workflow.worklist> <BEA-000000> <<.> Service error.
    Internal Error; Service error occurs in IdentityService in method lookupUser.
    Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services
    ORABPEL-10585
    Service error.
    Internal Error; Service error occurs in IdentityService in method lookupUser.
    Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services
    Caused By: javax.xml.soap.SOAPException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html; charset=UTF-8
    What it is also missing, is that you should also set the SOA Infrastructure ServerURL mbean for the load balancer, to match the frontend host and port. Do this through Fusion Middleware Contol. Otherwise, you could encounter URL mismatches.
    I hope this helps someone else.
    I've asked Oracle to add this to the EDG for SOA. It's in the IDM guide, but not in any other EDGs.

    Thanks Josh. It helped me infact in 11.1.1.4 Enable Weblogic Plug-In is not required. But 11.1.1.5 I thing it is mandatory. Oracle should have a clear documentaion.

  • Sync/Async BPM scenario : Problem at Integration Process..!!

    Hi All,
    I am doing Sync/Async BPM scenario.
    start ->Receive(Request)> Transformation(Responsemap)>Send(SendtoR/3)->Send(Send Response) ---> stop.
    When Iam trying to Activate, Integration process giving errors as
    Source parameter AA_Payment_Req | http://XXXXXXXXX.com/SAP_PI/DirectSales/Payment not set  Target parameter AA_Payment_Response | http://XXXXXXX.com/SAP_PI/DirectSales/Payment not set
    Warning: Container element Response is defined but is neither initialized nor used.
    But I am using them in the BPM. The same kind of scenario is working for another interface which is already running in production. When I tried to check that interface it is showing only Warning message as Container element Response is defined but is neither initialized nor used.
    I tried deleting and creating again and still it is showing the same error.
    Can anyone please suggest what might be the problem.
    Regards
    Deepthi

    Hi,
    could you pls let me know how its solved, while i am trying the same i am also getting the same problem..
    could you pls explain bit more on this.
    Thanks,
    Venkat.

  • BPM giving problem in Merging and Splitting

    Hi Gurus,
    Im trying to BPM scenarios,
    First i tried to Merging Two message and send to one receiver system. In that both Sender and Receiver communication channel are wokring fine.. all are showing green light.. and the files also got processed from sender side but i cant get result  the output side. i checked my abstract interfaces , interfacing mapping and Container variables in IP everthing is right.. Even  this is not 1:N or N:1 mapping , all message types are having occurance of 1:1 only. when i checked using SXMB_moni... there my two sender are succesfully sending the messages and ip getting the message.. after IP should act as a sender right. that msg not there... what would be the problem... even correlation also correct using the common filed's xpath i was combing the msg. In IP im getting the Yellow color warnin like correlating not used in sender step but no error. but i activated the correlation in sender  step and assigned the xpath of the common field.
    After that i tried to do splitting same problem occuring.. no message in receiver side.. i double checked my abstract interfaces, inbound , outbound interfaces, interface mapping and container variable everthing was assigned properly. In IP Only a blue color waring i getting like receiver determination initialized but not used but no error , but when i checked the interface determination it was fine.. i created receiver type local variabled with multiline . this is not 1;N or N;1 mapping... a simple mapping
    Please help me experts,
    Regards,
    Balaji

    Hiii experts ,
    Please help me.. i have tried many times.. still the same problem exits...
    source msg type having 5 elemtn.. first 2 element mapped first target msg type and remaining fields mapped to receiver 2 target msg type.
    IP step are configured as below
    Container Variables: send,recv1, recv2, 2 receiver type msg for receiver determination (Receiver1, Receiver2) both are multilined.
    Receiver step : sender msg type (sender abs interface type)
    Transformation : Has the interface mapping and one source msg and 2 target msg
    In fork
    Branch1:
    receiver determination1 :receiver msgtype (recv1) and  the multiline element (receiver1) type of receiver.
    sender1 step: receiver msg type (recv1) and Receiver from-> Receiver List : Receiver->Receiver1
    Branch2:
    receiver determination2 :receiver msgtype (recv2) and  the multiline element (receiver2) type of receiver.
    sender2: step.. receiver msg type (recv2) and Receiver from-> Receiver List : Receiver->Receiver2.
    But msg going to IP.. after that IP not start to send msg...
    Please tell me.. what im doing wrong here?
    Regards,
    Balaji

  • BPM Cache Problem

    Hi All,
    I hav created a Business process. when i modified that process, it is not getting reflected in the SXI_CACHE. No matter how many times i activated it, it is not getting modified. i tried for around two hours and restarted the server again as the last alternative. I had refreshed the cache even with the mode 'full' which din't result in the expected outcome.
    Any suggestions about this as i don't want spend two more hours next time.
    Thnx
    Anil.

    Hi guys,
    I had done the samething which u ppl were mentioning for two hours. but my problem is that the BPM is taking the previous version itself.And i din't know how to enable BPM to consider the latest version.And now, my problem got solved.
    In the Integration directory, i deleted my integration process(say MyXXXBPM) and created a new integration process with the same name(MyXXXBPM) and imported the same process. It is taking the latest version now.
    Anyways.......Thnx guys
    Anil.

Maybe you are looking for