Regarding Versioning of Project Code

Hi,
We are facing one issue. Please try to provide some resolution for the same.
We deployed one .exp on Oracle BPM Server for Weblogic and then created new instances which have reached to certain interactive activity. Now, we increased the project version from 1.0 to 2.0 during deployment after modifying the code. Again, we created new instances for the latest version of the .exp. The issue we are facing is that the old instances are getting executed on the old version of the .exp instead of latest version of the .exp because of which we are getting exceptions but for new instances, if the same code is executed, the exceptions are not occurring. This is coming very frequently.
Please provide some resolution for the same so that the old instances can be executed on the latest version of the .exp
Thanks in advance,
Abhishek

This was answered in a thread just recently. I'll repeat it here for your reference:
If there is a minor version change, BPM will automatically use the new process version for in-flight instance. Minor version changes are noted when the version number changes something like 2.3.0 to 2.3.1
A major version change will be something like 2.3.1 to 2.4.0 or 2.3.1 to 3.0. BPM will continue using the old process for infligt instance and the new process for new instances. Note that BPM will force a major version change under the following conditions:
•Deleting an activity from a business process.
• Changing the type of an instance variable in a business process; the
change in the variable type may make existing values for business
process instances incompatible with the current type
• Changing business process activity types; for example, changing from an
interactive to an automatic activity type.
• Moving an activity from a Role to a different one.
These changes will NOT force a major version change.
• Adding a Role to a business process
• Deleting an empty Role (one with no activities in it) from a business
process
• Adding an activity to a business process
• Adding a Global or Grab activity to a Role in a business process for a
project
• Deleting a Global activity from a role in a business process
• Changing Process Business Language (PBL) business rules in a business
process activity
• Changing Conditions or Due Intervals for an existing business process
transition
• Adding any kind of transition to a business process
• Deleting a transition from a business process
• Adding an instance variable to a business process
• Deleting an instance variable from a business process
• Adding a variable to an argument mapping for a business process
• Deleting a variable from an argument mapping for a business process
• Changing the implementation type for a business process activity.
• Modifying a Screenflow (Adding to, deleting from or modifying its
flow or activities)
Don't forget that when you deploy a process, you can always force a major version change. This will ensure all in flight instance will continue working with the old process and screen-flows

Similar Messages

  • Project Code in recurring journal postings

    Hi All,
    Does anyone know whether SAP plans to include the option of using project codes on recurring journals in future versions as it's been flagged up a few times by our customers?
    Kind Regards,
    Matt

    Hi Matt,
    Based on the road map for the new version, I have not seen this detailed new feature. It might be include already. However, this is too detailed function. It is no document to prove up to now.
    Thanks,
    Gordon

  • Project code needs to be at least 20

    We have a suggestion of project code. Would it be possible for us to have at least 20 Characters instead of 8? 8 characters long for project code is really too short. Thanks.
    Regards,
    Yuka

    What system and iPhoto versions  are you using?  What is the file size of the original file in iPhoto. You wrothe 2 mg. Do you mean 2 MB?
    What are you trying to accomplish?
    OT

  • DRQ : add the "Project Code" column in the "Recurring Postings" function

    Hello,
    This is a DRQ about the Recurring Postings function.
    It concerns the "Recurring Postings" functionality (Menu "Financials --> Recurring Postings").
    Version : 2007A SP00 PL38
    Description of requirements :
    In the current version of SBO ( 2007A SP00 PL38 ) when we create some recurring postings, our customers need to specify the "project code" information for each line (in addition to the "Distribution Rules").
    Business needs:
    Some of our SAP B1 customers use the Project codes for "Cost Accounting" follow up. They need to specify the "Project Code" for each line in the Journal entries created in SBO. In the Recurring Postings, it is not possile to specify that kind of information in the current version of SBO!
    Current Workaround:
    As it is not possible to specify the "Project Code" for each line added in the Recurring Postings recorded as templates, our customers have to re-open each Journal entries created thanks to Recurring Postings execution and to manually add the "Project Code" for each line where it is missing.
    Proposed solution:
    The solution is simple : simply add the "Project Code" column in the Recurring Postings templates will allow the journal entries created to automatically get this information and will avoid the users to modify manually each journal entries generated with the "Recurring Postings" function.
    Kind Regards.
    Grégory

    The "project" field should also be available in the "Account Balance" grid.  Every journal entry has a project code so it makes no sense that you can not view, filter, or sort by this field.

  • Aging report - detailed needs invoice project code

    Dear All,
    Would it be possible for us to have project code (on A/R invoice header) on Aging report - detailed print layout? I found all fields in Aging report - detailed PLD are sys var. Is there a way for us to figure out which sys var is for project code of the invoice? Thanks a lot.
    Regards,
    Yuka

    Unfortunately you can't, you have to recreate it using crystal. In all SAP std reports you only able to show/print what it already shows.

  • Error while "Project Code Generation" in Entity service

    Hi SDN's,
    I have created an entity service which is the help documentaion of NWDS. After completion of all steps while generating project code i am getting an error called "AbstractStringBuffer not reachable"
    Can any body help me in solving this issue.
    Thanks in advance

    Hi Raju,
    it seems like you have a version problem, try to use jdk 1.4 or higher and try.
    Or go to
    Prefrences --> Java --> Installed JRE's here change the Jdk to the latest,compatable version
    Sometimes reinstallation also solves such problems.
    Award pts if help full
    Cheers
    Souza

  • How to Make Project Code as Mandatory

    Hi ! I Need Project code as mandatory in Po's and Sales Order in Row Level. How to Make that one. Also i have a issue with approved PO's. If some PO got approved is there any option to make amendment and resend for again approval.
    Thanks and Regards
    Kamal

    Hi Kamal.......
    Try this below SP for making project Code Mandatory........
    For Sales Order:
    If @object_type='17' and @transaction_type='A'
    BEGIN
    If Exists (Select T0.DocEntry from ORDR T0 Inner Join RDR1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.Project Is Null
    And T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Select @error = -1,
    @error_message = 'Please select Project'
    End
    End
    For Purchase Order:
    If @object_type='22' and @transaction_type='A'
    BEGIN
    If Exists (Select T0.DocEntry from OPOR T0 Inner Join POR1 T1
    On T0.DocEntry=T1.DocEntry
    Where T1.Project Is Null
    And T0.DocEntry = @list_of_cols_val_tab_del)
    BEGIN
    Select @error = -1,
    @error_message = 'Please select Project'
    End
    End
    If your PO is approved and you want to ammend it then your approver has to reject the PO first and it will come to you and then make edition and send it again......
    Regards,
    Rahul

  • Project code based  Sales Order and Purchase Order - Item wise Report

    Dear all,
    Scenario:
    We are doing business based on Projects.  So, for every Sales , Project code is created and Sales order is booked with Project code and subsequently Purchase Order is booked with Project code. (Note:Some cases, few items might not be purchased since stock is available.)
    We want report like
    SO Project code
    SO Posting date
    SO Sales Employee
    SO Customer Name
    SO Item code
    SO Quantity
    SO Unit price
    SO Row Total
    PO Project code
    PO Posting date
    PO Sales Employee
    PO Customer Name
    PO Item code
    PO Quantity
    PO Unit price
    PO Row Total
    *SO line item and PO line item for same project should be parallel , that is important and challenge (certain cases, item in SO might not be in PO, for such cases Blank field should appear for PO Item code.)
    Thanks in advance,
    Regards,
    Dwarak.

    Hi Dwarak.......
    Your Report is right but a small change you have to make Left join RDR1 with POR1........
    Try this.......
    SELECT T0.PrjCode, T1.Project, T0.PrjName, T1.DocNum, T1.DocDate, T1.CardName, T2.ItemCode, T2.Dscription, T2.Quantity, T2.Price, T2.LineTotal, T3.Project, T4.ItemCode, T4.Dscription, T4.Quantity, T4.Price, T4.LineTotal FROM OPRJ T0 INNER JOIN ORDR T1 ON T0.PrjCode = T1.Project INNER JOIN RDR1 T2 ON T1.DocEntry = T2.DocEntry LEFT JOIN OPOR T3 ON T0.PrjCode = T3.Project LEFT OUTER JOIN POR1 T4 ON T3.DocEntry = T4.DocEntry AND T2.ITEMCODE = T4.ITEMCODE INNER JOIN OITM T5 ON T2.ItemCode = T5.ItemCode WHERE T0.PrjCode ='[%0]' AND
    T5.ItmsGrpCod in ('108', '110') GROUP BY T0.PrjCode, T1.Project, T0.PrjName, T1.DocNum, T1.DocDate, T1.CardName, T2.ItemCode, T2.Dscription, T2.Quantity, T2.Price, T2.LineTotal, T3.Project, T4.ItemCode, T4.Dscription, T4.Quantity, T4.Price, T4.LineTotal
    Regards,
    Rahul

  • Project Code to be included in Depreciation run

    Hi Friends,
    Previously, the Cost Center was mandatory for all assets. Now, they want the depreciation to flow to either a cost center or to a project code. In accordance with the requirement, I had made Cost Center optional, along with Maintenance Order. Previously Cost Center was mandatory and Maintenance Order was not shown in the asset class master data configuration screen.
    Hi Friends,
    Find below the description of the issue faced.
    Previously, the Cost Center was mandatory for all assets. Now, the depreciation HAS to flow to either a cost center or to a project code. In accordance with the requirement, I had made Cost Center optional, along with Maintenance Order. Previously Cost Center was mandatory and Maintenance Order was not shown in the asset class master data configuration screen.
    Further, there was a validation which checked that each asset master had a Cost Center field filled in and a substitution which filled the Cost Center field with a default Cost Center. I have changed the validation to reflect that either a Cost Center or a Maintenance Order is filled in. I have modified the Substitution to reflect either a Cost Center or a Maintenance Order.
    Before the above changes were made, the Depreciation run was being executed without any error. After the above changes were made in the system, the Depreciation Run is ending with an error "Account 551100 requires an assignment to a CO object - Message no. KI235"
    Even prior to the error, the Default Account Assignment tab in the relevant Cost Element was empty.
    I have checked the Field Status Variant and Cost Center is only optional in that.
    Can you suggest any further config. settings that have to be changed? Two SAP Notes, ‘827363’ and ‘98778’ have suggested patches, which have already been applied to SAP.
    Regards,
    GV Shivakkumar

    Answered .thanks

  • Project code  wise aging

    dear   expert all
    parameter    from date  to to date , project code
      one of my client requriment  i have  need   project  code wise  aging report .
    send  me the query.

    Hi Zal....
    Very Good Afternoon.........
              The question was simple. Sinha was simply asking about the Project code wise aging report. If I'm not wrong then for every marketing document level, on header level as well as on row level the project code field is there with the help of which we can categorise the transactions. So if sinha is doing billing as per the project code then he can get the project code wise aging report.
    Even you can get the project code wise trial balance sheet also............
    Regards,
    Rahul

  • Profit center and project code report

    Hello all,
    My customer needs a report showing the profit centers and project codes that appear on AP and AR invoices.
    It would be something like:
    Project    Profit Center    Profit    Loss    Difference  
    and showing the totals for each different project.
    Is this possible?
    Thank you.
    Kind regards,
    Pedro Santos

    Hello Gordon,
    Yes, I think a query report is enough.
    What the customer wants is to control the profits/costs in each project.
    They will add the project code to every sales and purchase invoices and the profit centers.
    Then they need to see which profit centers are with more gain or loss inside the projects.
    Do you need more information?

  • How can i use the project code instead of project xml?

    hello
    i use the sessionbean+toplink structure,after i finish the o-r mapping by using the mapping work bench,i generate the project xml file,then in the "session.xml" file,i refer to the project xml,then i can use it from sessionbean.
    i hear that if i use the project code instead of project xml file,it will be more performant,is that true?
    otherwise,how can i use the project code instead of project xml file?i mean, in "session.xml", i can use the "<project-xml>" tag to refer to the project xml file,then in my session bean,i get the server session by read the "session.xml" file.but if i use the project code,how can i refer it from the "session.xml"?the examples that come with the toplink installation only tell me how can i use the project xml file within the session bean,it don't give me any clue about using the project code in the sesion bean,who can give me a step-by-step instruction and code snippet?
    thank you very much?

    There is a slight performance gain during session load at startup but there is no difference at runtime. The choice of which to use is dependent upon you build process. Whether it is easier to submit a new version of the class into the comile build process vs an XML file. In most cases it is just a preference of the development team.
    When you use the project-class you'll need to generate the source code and compile it into your system. Typically it is packaged with the persistent classes. You may need to configure your environment so that the class-loaders have access to these classes (same for the XML case).
    When using the project-class you simply replace the project-xml entry like this:
    <project-class>oracle.toplink.demos.employee.relational.EmployeeProject</project-class>
    The DTD for the session.xml file is found at <TOPLINK_HOME>\core\sessions_4_5.dtd. It is also in the documentation at:
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/toplink.903/b10064/a-sessio.htm#634246
    Doug Clarke
    Product Manager
    Oracle9iAS TopLink

  • Set value of project code to Reciept from production matrix.

    Hello Friends,
    I want to set value of project code to Reciept from production matrix after selecting Production order number.I have taken project code field in Production order header.That project code value i have to set  in Reciept from production. I got the Project code no by query but I cant set it to Reciept from production  Matrix project column.
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    this code give me an error
    "Item-Cant set value on item because the item cant get focus"
    Plz give me solution for this..
    Thanks & Regards,
       Swati

    Hello Swati,
    The cell should be foucsed before setting value for it. try this:
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Click()
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    Kind Regards
    -Yatsea

  • Project code mask problem

    Dear All,
    Presently we use project codes as " H.00.HXX.000.00.00.00.00 "
    Now we have created project upto series H.08.HXX.999.
    We are unable to create H.08.CXX.1000 or further.
    Now I tried to change the coding mask in the config by changing H.08.HXX.000 to H.08.HXX.0000 , but the system is not allowing the same.
    Please suggest me on this matter.
    Regards,
    Vishal

    Hi,
    Thanks for the reply.
    I think  what u have suggested is  right.
    But still I am  looking for possibility of the same.
    May be OSS note could of some help.
    Thanks again.
    Regards,
    Vishal

  • Freight - Marketing Documents Assign a Project Code

    Hi All,
    I have a customer that uses project codes and profit center functionality in SAP Business One. They flag transactions to record the relevant project codes and profit centers for extended reporting requirements. So far we have had no issues but we have encountered one lack in functionality which I can't seem to configure in SAP Business One. The issue is that we cannot assign a project code when recording additional charges / freight during a marekting document in SAP Business One. However you are able to assign a profit center? Is this a limitation of the product and if so will this be addressed in future versions? Does anybody know?
    Any feedback / ideas will be greatly appreciated!
    Thanks
    Andre Pienaar

    Hi
    Whole Marketing Document can be assigned to project, even freight is having separate  profit center.
    If u want to include more features in B1 pls post ur queries here:
    Forum: SAP Business One Product Development Collaboration:/community [original link is broken]
    Giri

Maybe you are looking for