WF item attributes for new workflow versions

Hi All,
I have a query regarding Item Attributes for a particular workflow.
Assuming that for a particular version there are say 100 Item_Attributes for a particular Workflow.
In case a new version is loaded and if the new version is having say 102 Item_Attributes then
2 additional attributes appear in WF_Item_Attributes table for that Item_Type.
What if in the new version the number of attributes gets reduced to say 95.
Will the number of attibutes for that particular Item_Type in WF_Item_Attributes will be 95???

workflow creates versions for the new workflows you create(for most of the activities though not all)
satish paul
Hi All,
I have a query regarding Item Attributes for a particular workflow.
Assuming that for a particular version there are say 100 Item_Attributes for a particular Workflow.
In case a new version is loaded and if the new version is having say 102 Item_Attributes then
2 additional attributes appear in WF_Item_Attributes table for that Item_Type.
What if in the new version the number of attributes gets reduced to say 95.
Will the number of attibutes for that particular Item_Type in WF_Item_Attributes will be 95???

Similar Messages

  • How to add new attribute for triggering workflow?

    Dear Expert,
    I want to create condition for triggering workflow.
    I am working on travel request workflow, using BUS2089.
    my requirement is to differentiate or make condition of triggering workflow based on trip activity type,
    but I can't find any attribute about trip activity type.
    how to add activity type to be available for create condition?
    thanks

    Hi,
      If am not wrong you are trying to raise event when ever there is a new travel request raised, so the BOR would be availbel in the workflow container to be more preciese it would be available in the event container, so you need to find out the right attribute in the BOR where the trip type is assigned and validate this in the start conditions i mean in the basic data of the workflow where you activate the event linkage.
    Regards
    Pavan

  • Change in Work item Text for Approval Workflow WS14000133

    Hi,
    I need to change the work item text for Shopping Cart Approval Workflow WS14000133.
    I have created an Attribute in Business Object BUS2121 and called the same attribute in work item text.
    In PFTC -> Redefine Work item text - > and i have defined the work item text as well called the attribute from the container.
    what  the problem over here is - when I am passing the attribute in the work item text in the task, I am unable to see the work item text with the Dynamic Attribute but I am able to see the work item alone (not with the Dynamic attribut)
    But when i debug the workflow from SWI1 then i can see the dynamic attribute in the Container of the workflow but nt in the approver's inbox in portal..
    Can you please tell me - that why is this a strange behaviour that i can see the Dynamic attributed created initially in the workflow container of the Business Object but nt in the Approvers inbox either in Backend nor in the front end...
    Thanks,

    Hi,
    Maybe this SAP note/KBA will help :
    1470761 - How to change the text of the SRM approval links in inbox or UWL
    Kind regards,
    Siobhan

  • Profit center actual line item report for new GL

    Hi,
    We are using New GL functionality. I have posted one document as follows
    One line item with PC P0101 (Debit side) and second line item without PC (Credit side)
    Second line item also inherited to PC P0101.
    When checking profit line actual item report at KE5Z only one line item profit center displaying (debit side ), inherited line profit center not displaying (Credit side).
    I would like to see the both line items at CO report. Can any one suggest which report I need to refer at CO?
    At FI GL report I can able to see the both line item profit centers report (FAGLL03)
    Thanks

    Hi
    I think you have already got the answer to your question....
    You should refer FAGLL03 / FGI3 reports and not Ke5Z.. KE5Z is for Classical PCA where as the inherited PC in the 2nd LIne item is a New GL Feature
    More over, you should not have used Classical and New GL PCA together... Refer Note 702854 and 826357 which explains this
    Br, Ajay M

  • Problem with Configurator - Cannot Update Item Attributes for a Config item

    Hi!
    We configured an item to reproduce the following feature of Oracle Configurator in our business case (Oracle Configurator Modeling Guide - 115czmod.pdf): «For example, if you have raw materials that are ordered by lengths, do not create an item for each length. Instead, define a single item for each raw material with an attribute: Length. Then capture the needed length from the end user by a numeric input or from a List of Options, and associate that input with the attribute.»
    However, after we run the AutoCreate Configuration Items program the item was created in the Item Master but no Attribute was updated with the user defined values (within OConfigurator).
    We associated Item Attributes to Propoerties and these are associated to Feature Options.
    we wish to have the Item Descriptive Element Values (Item Catalog)
    transferred from the Configurator run time, after we configure any item.
    This is because we are working with item dimensions, such as length and width.
    We need to define these dimensions during the Configurator run time and have them transferred into the final configuration so that we can use them later on manufacturing. We wish to display these dimensions on a job.
    Support said that "The descriptive element value for the configuration item is copied from the model. This process will not look at the properties in the configurator.
    You may consider using the custom hook for catalog descriptions to get the selected attributes from CZ to the descriptive elements for the config item. Please see Custom CTO Packages under Setup page 2-63 in CTO Process Guide for more details."
    I'm trying to implement the suggested solution.
    I've customized user_catalog_desc procedure on CTO_CUSTOM_CATALOG_DESC package to populate the item catalog values.
    I'm failing to find the descriptive element values defined on configuratior for a specific inventory item id.
    I have managed to found a relation between "p_params.p_item_id" given in procedure user_catalog_desc and
    the configurated item_id in order to update the catalog data on the CTO_CUSTOM_CATALOG_DESC package.
    This is what I've done:
    procedure user_catalog_desc (
    p_params IN CTO_CUSTOM_CATALOG_DESC.inparams,
    p_catalog_dtls IN OUT NOCOPY CTO_CUSTOM_CATALOG_DESC.catalog_dtls_tbl_type,
    x_return_status OUT NOCOPY VARCHAR2)
    is
    begin
    declare
    counter number;
    i number;
    l_value varchar2(30);
    begin
    -- Put your logic here in such a way that you populate p_catalog_dtls
    -- parameter. p_catalog_dtls is a array of records. The attributes of
    -- this record are cat_element_name and cat_element_value.
    -- viz. record (
    -- cat_element_name varchar2(30),
    -- cat_element_value varchar2(30)
    -- Example : p_catalog_dtls(1).cat_element_value := 'XYZ';
    -- IMPORTANT : DO NOT ALTER THE VALUE OF cat_element_name . Doing so will
    -- result in incorrect or inconsistent behaviour.
    -- Make sure you set the x_return_status variable to one of the following:
    -- FND_API.G_RET_STS_SUCCESS to indicate success
    -- FND_API.FND_API.G_RET_STS_ERROR to indicate failure with expected status
    -- FND_API.FND_API.G_RET_STS_UNEXP_ERROR to indicate failure with unexpected status
    select count(*) into counter from MTL_DESCR_ELEMENT_VALUES
    where inventory_item_id = p_params.p_item_id;
    for i in 1 .. counter loop
    select
    distinct to_char(nvl(cz.input_num_val,cz.item_num_val)) into l_value
    from OE_ORDER_LINES_V oe
    , oe_order_headers_all oeh
    , CZ_CONFIG_CONTENTS_V cz
    where oe.header_id = oeh.header_id
    and oeh.order_number in (
    select distinct oeh.order_number
    from OE_ORDER_LINES_V oe
    , oe_order_headers_v oeh
    where oe.header_id = oeh.header_id
    and oe.inventory_item_id = p_params.p_item_id)
    and cz.ps_node_name = p_catalog_dtls(i).cat_element_name
    and oe.config_header_id = cz.config_hdr_id
    and oe.config_header_id in (select distinct cz.config_hdr_id from CZ_CONFIG_CONTENTS_V cz)
    and cz.ps_node_name in (select element_name from MTL_DESCR_ELEMENT_VALUES where inventory_item_id = p_params.p_item_
    id);
    p_catalog_dtls(i).cat_element_value := l_value;
    end loop;
    x_return_status := FND_API.G_RET_STS_SUCCESS;
    end user_catalog_desc;
    end;
    Although the customization seam correct the AutoCreate Configuration Items process
    terminates with warning, and the catalog info is not updated as expected.
    Can anyone help me on this?
    Many thanks in advance.
    Paulo Santos

    How did you solve this issue? During my testing I found there to be no link to the order lines when I was within this program. Therefore I am having issues getting the configuration information to populate the catalog. Is there a link and I just was doing it wrong? Thanks for any help!
    Thanks,
    Angela

  • N73 - date for new software version

    Please see below the date for the next update. This came from their Director of Customer Care:
    "With regards to your recent enquiry concerning software availability for your product code 0539101 for UK Country Variant I can confirm that at present you already have the latest software version available. New software version for your product should be available no later than Friday the 8th December in both our Nokia service points and Nokia Software Updater."

    goodie...
    for all those complaining about no Country Variant fw editions, just hang on 2 more weeks and have a merry xmas

  • Small runtime engine for newer labview versions?

    A few times in the past I have created simple LabVIEW standalone executibles.  I did this in 8.6 and used the runtime engine minimal installer instead of the full version.  This resulted in an installation package size of 30-35 Meg.  
    I agin need to create a simple executible but have not seen a minimum runtime installer for any LabVIEW version since 8.6 
    Are there any minimal runtimes for other versions? 
    The default 2014 runtime is 264 Meg!!!  It is hard to explain to a customer why a simple "Hello World" program requires a 200+ Meg download.
    Solved!
    Go to Solution.

    Jack Dunaway has documented a way of segmenting the run time engine, basically only including the pieces of it you need.
    https://connect.wirebirdlabs.com/knowledgebase/articles/172999-segmenting-the-run-time-engine
    And here is an idea exchange item on it.
    http://forums.ni.com/t5/LabVIEW-Idea-Exchange/Segment-the-LabVIEW-Run-Time-Engine-RTE-to-ONLY-Necess...
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • No line item Extractor for New Ledger?

    Hi,
    we are currently converting our current ledger to the New ledger from SAP.
    now it seems that there are only Totals Extractors as in
    0FI_GL_10 and 3FI_GL_xx_TT.
    so no Line item extractor.
    is it possible to create such an extractor (like with a Special ledger?).
    regs
    rogier

    I was able to create a datasource using an SAP Infoset.
    1. Create an infoset for only table FAGLFLEXA (tcode SQ02) in source system. Make sure you check the box for 'no automatic text recognition' to avoid generating text fields. include all fields from the table.
    2. Go to RSO2 and create a datasource using the infoset.. Save your datasource without generating the generic delta. Ignore warnings for currency fields and save. Your currency will still be extracted.
    3. Go to your created data source in RSO2 and create Generic Delta. I used Timestamp field with 1800 for the upper limit setting. This should create a generic delta datasource.

  • For new itunes version, how transfert Iphones content to Itunes

    Hi Guys,
    I try to import my whole stuff buy in Itunes store before upgrade the Itunes version.
    Someone can help me because I don't know how I can transfert the shops stuff in
    my Itunes application before upgrading the Itunes version...
    Sorry for my bad english and many thanks in advance.

    Here's how to transfer your content from your device to your computer

  • Best Practice for New Doc Version?

    I'm a RH novice who needs to create a V1.1 doc based on the
    V1.0 source topics, TOC, and images. I'm using RH HTML X5. What is
    my best practice? The previous author left a unclear doc suggesting
    something like the following:
    Copy the current V1.xpj, V1.hhc, and V1.hhp files and rename
    them as V1.1.xpj, V1.1.hhc, and V1.1hhp
    Place the renamed files in the V1 root directory and open the
    V1.1.xpj file.
    Create and edit new content
    Not understanding RH too well, this seemed reasonable. It
    appears what he is suggesting will bring everything forward in a
    new project, but leave the V1 structure intact. I tried this, and
    it seemed to be working but I was confused by RH also making
    changes to the OLD V1.cpd and V1.pss (I don't know that those files
    are).
    So, apparently the copied files contain references to at
    least the old cpd and pss files (and maybe others). I'm concerned
    that continuing down this path will corrupt V1 and leave me
    mis-matched conventions. Some files being V1, and some being V1.1.
    Is there a how-to somewhere that can help me create a new
    version and not muddy up the old? Do any X5 gurus remember how they
    did this?
    Thanks in advance,
    Keith

    Peter,
    Hopefully you'll see this. I tried you suggestion. Opened the
    old file and renamed the project. About 10 links came up broken
    that weren't broken before. Any ideas why this would happen. I
    didn't make any changes other than the rename.
    Thanks,
    Keith

  • Default Item group for new Items

    Hi all
    When i create an item, SAP default Itemgroup is Fixed Aset (in field Item group), now i want to change this default. Can i do this? Hep me, please.
    Thank you

    Hi Le,
    You can't have a default group of your own, however you can do that by using formatted search. For example you want a group, Finished Goods as your default. Use following query
    Select '104'
    Note that 104 is the numeric code of that particular group "Finished Goods" that might be different in your system.
    Link this query to items group field through formatted search and set its refresher based on item code, now your default group would be Finished Goods or whatever you want to have.
    Regards,
    /Siddiq

  • Does the Previous Folders 1.1.1 add-on no longer work for newer Firefox versions?

    I asked this question once before (eight months ago) but never got an answer, and no one else seemed to be having the problem. I was accustomed to using this add-on, called Previous Folders:
    https://addons.mozilla.org/en-US/firefox/addon/previous-folders/
    but ever since Firefox Version 22.0 (approximately eight months ago), it has no longer worked. Its function is to remember the last 20 locations that you have saved to, and keep them in the address bar drop-down list for easy access.
    I just re-installed Windows 7 (I was having some other problems), and I thought that perhaps it (the add-on) might work again after the re-installation... but it seems that it still does not. If anyone knows anything, or if anyone is also having this problem (it seems that very few people use this add-on or even know about it), any help would be appreciated.

    The '''maxVersion''' coded in the install.rdf file of that extension shows Firefox '''14.0'''. So there's a good chance that its not really compatible any longer, as Firefox 22 had changes to the Download Manager code.

  • DreamWeaver Plug-in for New DreamWeaver Versions?

    Will Oracle be updating its InterMedia plug-in for DreamWeaver versions 3 and 4 any time soon?
    Thanks very much,
    Ron Sweet
    Solid Solutions Inc.
    [email protected]

    Yes, we are going to support Dreamweaver UltraDev version 1 and version 4.
    Version 1 of the Oracle interMedia Extension
    for Macromedia UltraDev is available for
    both the Windows NT/2000 and the Macintosh
    platforms. It supports the development of
    Web applications in both the JSP and ASP
    (with either JavaScript/or VBScript) models.
    This extension should also work with
    UltraDev 4.
    We are going to submit the extension shortly
    to Macromedia in order to get an approval.
    You should be able to download the extension
    from OTN as well as the Macromedia Web site
    when it becomes available.

  • Change ATO item attributes

    Hello All,
    I'm trying to change item attributes for an ATO Configuration item.
    According to the following link, these are Hard Coded item attributes:
    http://docs.oracle.com/cd/E18727_01/doc.121/e13692/T426454T426680.htm
    Is there anyway to change one of these fields, so the new configured item will be created with a different item attribute, without changing the package?
    Thanks,
    Tomer.

    Hi,
    It needs customization. But why do you want to change them? If we understand the requirement I believe I can give a try to explain.
    regards

  • Can not present customized item attribute.

    I created new customized item attribute and new item type. On the items area, I chose to present the new customized item attribute.
    After submit a new item, I can see the new customized attribute under edit mode, however, I can not see it under view mode. There's blank line instead.
    Any advice? Thanks!

    It could be a problem with caching. Turn off caching on the page and see if that solves the problem. There may be a problem with the way that caching is configured on your site - if that's the case, you should contact Oracle Support for help.
    There are also a number of patches available for the initial 9.0.2 release - although I couldn't reproduce your problem, it might have been related to an earlier bug affecting 9.0.2. The patches are available from Metalink. I strongly recommend moving to 9.0.2.6 as quickly as possible - you can register for the 9.0.2.6 upgrade at http://portalcenter.oracle.com/upgrades.
    Regards,
    Jerry
    PortalPM

Maybe you are looking for

  • Download Error in my Creative Cloud Apps Folder

    In my Adobe Creative Cloud "Apps" folder I'm getting the following message: Download error. Unable to reach Adobe servers. Please check your internet connectivity, firewall settings, and then try again. (400) Any ideas on what's going on?

  • How to count row in a channel with VB

    Hello every body, First, I'm quite new in VB script and I hope you will excuse me if the question seems stupid. I have several columns with an undefined number of row (for each file; the number of row will be different). As I want to automate the pro

  • Want to Display Sales Orders

    I want to create a Web Dynpro that will display Sales Order Information. Not sure what I want to use as my selection criteria yet. Perhaps Partners, or Customer Numbers. Does anyone have any suggestions? Like, some good Class Methods I can use in a S

  • Keyboard strokes not "keeping up"

    Hello, My wife's iBook 1.2GHz is about 2.5 years old and has experienced few problems so far. However, she is noticing now that when she is typing, it takes awhile for the key strokes to be accepted. So for instance she will type a sentence, but it w

  • OAS and NT service Packs

    I have been trying to get 8i, OAS 4.0.8, and developer server 6.0 running on the same NT box. Have found a document on Metalink that says OAS 4.0.8 is only supported with NT service pack 5. Does anyone know if it works under service pack 6? I find it