Customization of spec type is possible?

Between PLM4P customization and extensibility capabilities, I know that he can do much, but it is probably a stretch.

Is it possible to take a type of specification, such as materials and a new "base type" out of it? Where hardware specifications type would remain the same, and the new type derived from spec keep all the features for hardware specifications, but having its own name, icon, etc. ? This would be similar to subclassing of 9 Agile.

If not, is it possible to make Visual changes, based on a value in a specification? For example, if I open a material specifications file with a classification of the CBA, the icon in the header of the object is icon plug normal matter; But if the classification is XYZ, then it would display a different icon in the header of the object.

Thank you

Brendon,

This cannot be supported out of the box. However, it can be a fairly simple problem and easy to solve, so I recommend you submit a service request with support. We will assess and target for a future version.

Thank you

M

Tags: Oracle Applications

Similar Questions

  • Gateway requirements customize advanced door Type

    Hello, I'm in trouble with R-Gateway... first of all I haven't found a Board of R-gateway to post my question, sorry

    I started to adopt the "DOORS linking example" as follows:

    -added a LabVIEW project as a document with [Covers: DesignReq], PAST.

    -Adding attributes to DOORS connecting example Req-tag (which must be used instead of the Type of the object) and Req - No (which should be used instead of ReqID)

    Now 3 documents in R-Bridge configuration: DTH of DOORS, DOORS SDS and LabVIEW project

    -changed the type object Type SDS = requirement and requirement ID = ReqID Req-flag = "O" with ID = Req - No. requirement, PASSED

    -changed the type DRS of object Type = requirement and requirement ID = ReqID Req-flag = "O" with requirement ID = Req - No, FAILURE (DTH requirement status from "covered" to "not covered" Note: the DOORS objects are related with links "refers to")

    Try narrowing... pedal return

    -changed the type DRS of object Type = obligation to Req-Flag = "O", SUCCESS

    -changed the type DRS of requirement ID = ReqID = Req - No ID requirement, FAILURE: coverage lost again.

    I can't understand the problem. Hoping there is someone out there who is familiar with the bridge R I look forward to hearing from you soon =)

    Thanks in advance

    RZM

    RZM,

    If I understand your message, I think that what you have to do is add an extra attribute to the Req - no requirement and specify its id as the label. Then you can use $l (it's an L) to display the label instead of $i to view the identifier. Please see the screenshot below:

    With this configuration, your graphical view will look something like this:

    Simply remove the "ID: $i and label:"and all that appears is SRS - x.

  • This script type is possible, or already existing?

    Hello. So, I wanted to import an image raster specifically SNES, DIRECTLY in Illustrator, each pixel of the frame of a square of vector conversion. Now I can manually recreate an image rasterized in this way, but that takes forever. I didn't want to use the livetrace or agitation with alterations during Assembly of the squares of vector is accurate. Each pixel is a fixed information, well in the picture, also probably the smallest units of Visual information might be right on converted. A square is a square, it does not shape change. It seems not difficult for the computer to read the image and simply reproduce it into squares of vector with the appropriate controls.


    Unfortunately, I have not found any kind of existing script that carries out this mission and methods I see touted in youtube videos on the subject are inaccurate and require alterations. I want each block as a distinct form as well. I prefer to use manual reproduction, but it's a lot of time and I shouldn't have to re-do a working group.

    Is the kind of script I'm looking for something that already exists, or even possible? Reproduction based on each pixel cube would be the easiest way to convert any Raster image directly in a vector format, without having to be traced and a new made, if smooth lines are not your desire. I'm using CS5 passing.

    Thank you very much. I appreciate the knowledge and insight.

    have you tried mosaics?

    1. place your Raster Image

    2. navigate to the object-> create object mosaic... in the number of tiles enter the number of pixels in your image, in this example, it will be 18 x 18.

    3. you'll end up with a separate room for each pixel

  • This type of possible to query (select with based correspondence stop lines)

    I'm trying to write a SQL query and suspect it is impossible. Or at least, I cannot not mentally grasp, despite various stabs with subqueries. I simplified it by changing the metaphor here a bit.

    Let's say I have a truck in a city (say, Chicago). There are several roads leading out of town, with routes, we will label according to the compass points (N, NE, SW, etc.) Each truck can carry only one shipment. It starts along his route, and as soon as it comes to a city in need of his expedition, he stops.

    Yes, one cooked, but it is similar to my problem.

    Here is a table:

    TABLE: truck_routes
    scenario (integer - possible scenarios)
    Route (NE, SW, etc - 8 cardinal points)
    destination (towns along this road)
    sequence_number (order in which should go to the cities)

    So if I have a truck in Chicago, I can tell

    SELECT the road, sequence_number, destination
    OF truck_routes
    Scenario WHERE = 10 (or other)
    ORDER BY road_out, sequence_number;

    And I would get a report like this:

    SE 1 Gary
    SE 2 Valparaiso
    SE 3 Plymouth
    SE 4 Warsaw
    NO 1 Michigan City
    2 Kalamazoo
    ONLY 3 Grand Rapids
    DO 4 Cadillac
    ONLY 5 Traverse City

    So far so good. I have another table with a list of cities that must be the subject of the expedition:

    TABLE: cities
    scenario (integer - possible scenarios)
    Route (NE, SW, etc - 8 cardinal points)
    destination (same keys as in truck_routes)

    for example:

    10 Valparaiso SE
    Warsaw SE 10
    10 DON'T Cadillac
    10 DON'T cross City

    Now... the delicate part... How do rewrite the query above so that after a truck hit a city in need of a shipment (in this case), it stops? In other words, I want a report (for all channels) of which cities the truck stops to- and such that mentioned, it stops at the first one she performed. I don't want to see lines beyond that. If the report is as follows:

    SE 1 Gary
    SE 2 Valparaiso
    NO 1 Michigan City
    2 Kalamazoo
    ONLY 3 Grand Rapids
    DO 4 Cadillac

    Gary arises because it does not require a delivery. Valparaiso (road SE, sequence_number 2) arises because he takes delivery. The rest of the Southeast route does not appear. Same thing for the road DON'T.

    There are scenarios where I actually want to stop at the city just before the place of delivery, etc. and of course in the real world, that it's more complicated, but I think that if I could get this working model I could flesh out in a real-world application.

    Certainly I can code something in PL/SQL for this do, or do it in the logic of the application - but I wonder if there is a way to do it in a single SQL statement? I suspect there is something that could be built with subqueries and sorting, but... I can't reach him quite ;-)
    WITH report AS(
        SELECT 'SE' route, '1' seq_num, 'Gary' dest  FROM DUAL UNION ALL
        SELECT 'SE' route, '2' seq_num, 'Valparaiso' dest FROM DUAL UNION ALL
        SELECT 'SE' route, '3' seq_num, 'Plymouth' dest FROM DUAL UNION ALL
        SELECT 'SE' route, '4' seq_num, 'Warsaw' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '1' seq_num, 'Michigan City' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '2' seq_num, 'Kalamazoo' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '3' seq_num, 'Grand Rapids' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '4' seq_num, 'Cadillac' dest FROM DUAL UNION ALL
        SELECT 'NE' route, '5' seq_num, 'Traverse City' dest FROM DUAL
    ),
    cities AS (
        SELECT '10' scenario, 'SE' route, 'Valparaiso' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'SE' route, 'Warsaw' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'NE' route, 'Cadillac' city FROM DUAL UNION ALL
        SELECT '10' scenario, 'NE' route, 'Traverse City' city FROM DUAL
    ),
    need_a_shipment AS (
          SELECT r.*
              , CASE WHEN EXISTS( SELECT 'Y' FROM cities c WHERE c.route = r.route AND c.city = r.dest )
                     THEN 'Y'
                     ELSE 'N'
                END need_a_shipment
        FROM report r
    )
    
    SELECT  route
          , seq_num
          , dest
          , need_a_shipment
    
    FROM need_a_shipment n
    WHERE seq_num <= (  SELECT MIN(seq_num) FROM need_a_shipment
                        WHERE route = n.route AND need_a_shipment = 'Y' )
    ORDER BY route DESC, seq_num
    ;
    
    ROUTE SEQ_NUM DEST          NEED_A_SHIPMENT
    ----- ------- ------------- ---------------
    SE    1       Gary          N
    SE    2       Valparaiso    Y
    NE    1       Michigan City N
    NE    2       Kalamazoo     N
    NE    3       Grand Rapids  N
    NE    4       Cadillac      Y
    
  • Made Spec Print-&gt; is possible to exclude the expanded internal Specs of BOM

    Hello

    It has been noticed that when we print specifications for formulas and include the extended BOM that the plug output stage are included in the Nomenclature expanded.  We have a demand for it remove technical copy, keeping all other information.  Thought I would check with the forum before I started skinning the XSL on mine.  All of the recommendations of the best method to do this?  Thank you.  -Beckie

    Outputs internal should not appear in the extended Nomenclature.   Only of the outputs intermediate external must be indicated.    If you see internal consume step outputs you've probably discovered a bug.

  • Specifications of customization Manager

    Hello

    How orchestrator can I get a list of the "customization specifications Manager" as "Get-OSCustomizatonSpec" in PowerShell?

    Thank you

    Hello

    Here's a code example

    var vc = VcPlugin.allSdkConnections[0]; // this simply gets the first vCenter; if needed, modify it to match your use case
    var csm = vc.customizationSpecManager;  // get customization spec manager
    var specinfos = csm.info;               // get all customization specs as array of VcCustomizationSpecInfo objects
    for each (var spec in specinfos) {
        // print the name and the type of customization spec
        System.log("Found spec: " + spec.name + " of type: " + spec.type);
    }
    
  • manage pending customization

    Hi, I would like to know if it is possible to change or remove a customization in waiting. Is it mandatory to start the virtual machine and wait until the customization applies or is it possible to change before application it? Is it possible to remove it when customization is still pending?

    Thanks in advance.

    Hello

    As far as I understand your request, it seems you want to make changes in the customization of comments once the API clone starts processing the customization and before the end in fact. It is not possible to do. Once you have submitted the spec of customization to the Clone API, there is no way once cannot modify the same when the virtual machine is powered ON. After the connection, all customizations take effect and applied to the virtual machine.

    I would like to know your case of use here to try to make this change.

  • Type of interface VI

    In file attached to control 'Spec Type' all fields are null. How can I change to type what I want (for example some of the field I want to be a 'cluster of error', some "Instrument handle"). In other words, how to change 'Spec Type' in 'Type Spec 2 "? For all the advice, that I would be really grateful.

    First of all, you must disconnect the controls and indicators going in the call based on reference node.  That's why you found the broken between the call of Ref node and the open VI.  Who has been connected to the top under a specific VI, but the type specifier was changed when a different control has been wired.

    Then, if you want an another VI, right-click on the control of front panel for the type specifier, select class VI, browse and go find the Subvi you want.  The call made by the current reference node to match the connector model. Then go and rewire your controls and indicators for the connector model.

  • When I try to get on IE or Chrome or any web show I get a message saying 'Paint' cannot open this type of file

    I have windows turns on, but when I try to access a browser it has a message for me that "Painting" cannot open this type of file... Even when I try to get on a web view... Even some of my icons resemble small paint pads. Really weird and I make a living on my PC so I don't know what to do. I tried to recover, and he said the same thing... When I go on FB it says I need to update my browsers and it wont let me update all the. I can't really do anything without this message coming... Now, I just got a message from windows Security Center that will not start security... It has to do with a bitmap file

    Looks like you have somehow your file types of website related ('open with') the Paint program.  I couldn't begin to guess how this happened, but here's how to fix this:

    Use the search box to find and open the settings to "Default programs", then scroll down and click "Choose default app settings.  Which opens the control panel 7-style old instead.  Click on your browser in the list, and then click "Set as default" for re - include all types of possible files that the browser again.

  • Customization Wizard - invalid installation package

    I have big problems with the wizard of customization on OS X. I managed to use with Acrobat DC but whenever I try to use it with CD player I get "invalid installation package" some pkg install I choose. I got a version of the distribution, with the permission of you, Adobe, distribute, AcroRdrDC_1500920069_MUI. This version doesent help either. There is no even created custwiz.log. I checked all the features of installers by Manuel installs. When you use personalization wiz, I could do it on own BONES, clean the VM. Tried the new version of the wizard himself. In addition, the version mentioned above I tried offline, universal installer as well as English for OS X 10.10. Please advice and or point me to a valid installer.

    THX

    /Jens

    Unlike the Windows version of the Adobe Customization Wizard DC, the Mac version of the Adobe Customization Wizard DC consumes no packets of Acrobat Reader DC for customization.  It is always possible to add these customizations via the creation of PLIST files.

  • Not able to get the value of the type defined in the other program

    Hi all

    I have create a type in a single package spec (Globally), now I'm using the same type in another package. Simply I'm calling the first package and try to store the value in the Type and use the same type in the second package.

    But I'm not able to get the value

    Type declaration

    Declared in package Spec
    
    TYPE t_aa_derive_tbl_type IS TABLE OF xxxx%ROWTYPE;
       t_aa_derive t_aa_derive_tbl_type;
    

    Package 1

    Package1. PROCEDURE name(
    some parameters);
    is
    Cursor
    c1 is Select * from dual;
    
    begin
          OPEN c_aa_derive;
            FETCH c_aa_derive
            BULK COLLECT INTO t_aa_derive;
            CLOSE c_aa_derive;
           
         END get_aa_derive;
    

    In my second package

    I'll call you

    Package1. PROCEDURE name(
    some parameters);
    
    and then i am trying to
    
    for i in 1 .. package1.t_aa_derive.COUNT
      LOOP
    
    ....
    
    ....
    ...
    
    end loop;
    

    I can not entered the loop for some reason any.

    Could someone guide me if anything I missed.

    See you soon,.

    San

    And what did you like refcursor c_aa_derive in the call to package1.name? Is it returns all rows? If this isn't the case, COUNT will be 0.

    SY.

  • Where to find information OR when you make the customizations

    Hello friends,

    I am writing a small default customization code the type of conversion according to the contract being created in the ORGANIZATIONAL unit. For contracts created in Italy OR, I failed the conversion type to "rate Spot of Israel' instead of 'Corporate rate' which is used for all the other OUs.

    However, the field: OKS_HEADER. AUTHORING_ORG_ID returns null when I start to create a new contract. The default value is 'Corporate rate' rather than 'Spot rate of Italy.

    Someone can tell me where the org_id or the set_of_books_id are stored and how do I get it back? Here's the sql code, I write:

    = select decode(:OKS_HEADER.) AUTHORING_ORG_ID, 125, 'Italian Spot', 'Corporate') of double

    Thank you.

    Hi SK,

    I think you are badly understand something as it is perfectly simple to derive the org_id UO current (or indeed appoint but id is easier) within a personalization. Sandeep and I have answers above are in fact the same: ${ps.org_id} returns the current value of the option of profile MO: operational unit.

    There are two options of profile, I think you're confused: MO: MO and operational unit: default working unit. The number one key and one to which we refer, is the first of them which, at the level of responsibility, determines the ORGANIZATIONAL unit in which your users are working at any given time. I am aware that the situation is more complex in R12 but I'm still in 11.5.10 - world you didn't mention what version you have.

    I used the syntax I suggested above on several different projects to apply customizations to one or several selected UO among those available, and it works very well.

    Kind regards
    Jon

  • Field Type of Scorecard OTL not listed is not in email Notification

    Hello

    I customized the page scorecard OTL to include information of the project name, task name, task Date, start and end Date of job, also I made customization for the Type field to retrieve data from different sources. I created a function of database for the customization of the Type & included call to this function in jdeveloper.

    Once a sheet is submitted, a manager gets notification by email. I need to display the project name, task name and Type fields in this notification. Type field is not failing in the notification. There is no problem with the project name and the name of the task.

    No idea how can be achieved? What a change I have to do in the HXCEMP workflow which is called?

    Any help is greatly appreciated.

    Best regards

    HXCEMP workflow is not responsible for the details of scorecard view in the notification. It passes just to the appropriate approver.
    You have configured the layout of Notification as well (with start time entry)? You must have similar changes to presentation of the Notification.

    RAMU

  • The cases have become music records

    How to refer to a file in a folder of music, or a regular data folder.  For some reason any many important issues change type.  I need to change their return!

    I agree with tent a restore of the system if possible since you specify the number of records affected. If it was just that you can navigate to the folder, arrange, properties, customize, and what type of file you want in the drop-down list select all items. Microsoft® Security MVP, 2004-2010

  • Need help with a script

    Hey people. I've been using the script below and it works very well when you do 1 VM. When I try and make several virtual machines, he made the copy of model first for all virtual machines and eventually making customization for only the last in the list. What I need is to know how to fix this, so that the script generates 1 VM at once, including the customization and power on, and then continues in #2, 3, etc.

    Thanks to Mark and Lucd for the original script

    ##########################################################

    #

    # Mark Jones 23/02/2012

    # Version 3

    #

    ##########################################################

    Game-PowerCLIConfiguration - ignore InvalidCertificateAction - confirm: $false

    $vcenter = Read-Host "enter the name of Vcenter.

    $csvimport = Read-Host "Enter CSV filename (with extension fullname)"

    $username = read-host "enter your username admin area for customization.

    $pass = Read-Host - AsSecureString "Enter your password"

    $adminpass = Read-Host - AsSecureString "Local admin password"

    #convert chain

    $pass = [System.Runtime.InteropServices.Marshal]: SecureStringToBSTR ($pass)

    $pass = [System.Runtime.InteropServices.Marshal]: name ($pass)

    $adminpass = [System.Runtime.InteropServices.Marshal]: SecureStringToBSTR ($adminpass)

    $adminpass = [System.Runtime.InteropServices.Marshal]: name ($adminpass)

    SE connect-VIServer $vcenter

    $vmlist = import-CSV $csvimport

    {foreach ($item in $vmlist)

    # I love draw my variables

    $basevm = $item.template

    $datastore = $item.datastore

    $vmhost = $item.vmhost

    $custspec = $item.custspec

    $vmname = $item.vmname

    $ipaddr = $item.ipaddress

    $subnet = $item.subnet

    $gateway = $item.gateway

    $pdns = $item.pdns

    $sdns = $item.sdns

    $vlan = $item.vlan

    $location = $item.location

    #Clone models

    $tasks += (new-VM-name $vmname - model $basevm - $location - $datastore - VMHost Datastore $vmhost - RunAsync location)

    }

    Write-Host "Waiting for Copies at the end.

    #Wait for all taksks in the list of tasks before proceeding

    Waiting-task-task $tasks

    {foreach ($item in $vmlist)

    $datastore = $item.datastore

    $custspec = $item.custspec

    $ipaddr = $item.ipaddress

    $subnet = $item.subnet

    $gateway = $item.gateway

    $pdns = $item.pdns

    $sdns = $item.sdns

    # $vlan = $item.vlan

    $hd = [int] $item.ddrive * 1024 * 1024

    $hd2 = [int] $item.edrive * 1024 * 1024

    $hd3 = [int] $item.fdrive * 1024 * 1024

    $vmname = $item.vmname

    $cpu = $item.cpu

    $mem = [int] $item.mem * 1024

    customization #set spec

    New-OSCustomizationSpec-spec $custspec - name $vmname - type persistent

    Game-OSCustomizationSpec-spec $vmname - $adminpass - $username - DomainPassword $pass DomainUsername AdminPassword - confirm: $false

    Get-OSCustomizationSpec $vmname | Get-OSCustomizationNicMapping | Game-OSCustomizationNicMapping - IpMode UseStaticIp - IpAddress SubnetMask - $subnet - $gateway - Dns $pdns passerelle_par_defaut, $sdns $ipaddr

    Network #Set label

    # Get - VM - name $vmname | Get-NetworkAdapter | Together-NetworkAdapter - NetworkName $vlan - confirm: $false | Out-Null

    #set vm

    Set-VM - $vmname OSCustomizationSpec - $vmname - $cpu NumCpu VM - MemoryMB $mem - confirm: $false

    #Create D windows player

    If {($hd)

    New-disk-hard - VM $vmname CapacityKB - $hd - ThinProvisioned: $true - confirm: $false

    }

    #Create E windows player

    If {($hd2)

    New-disk-hard - VM $vmname CapacityKB - $hd2 - confirm: $false

    }

    #Create F windows disk

    If {($hd3)

    New-disk-hard - VM $vmname CapacityKB - $hd3 - confirm: $false

    }

    #Remove Cust Spec

    Delete OSCustomizationSpec - CustomizationSpec $vmname - confirm: $false

    }

    {foreach ($item in $vmlist)

    $vmname = $item.vmname

    #Start VM

    Start-VM - $vmname VM - confirm: $false - RunAsync

    }

    Disconnect-VIServer $vcenter - confirm: $false

    Try to replace this

    $tasks += (new-VM-name $vmname - model $basevm - $location - $datastore - VMHost Datastore $vmhost - RunAsync location)

    with

    $tasks = @(nouvelle-VM-nom $vmname-modèle $basevm-emplacement $location Datastore-$datastore-VMHost $vmhost-RunAsync)

    The error came from the fact that there is now only 1 task generated by the New - VM and the variable $tasks we not defined as an array in the script.

    You can use the addition on a table, but not on a simple variable.

    With the @ (...) construction, we have the only object in an array with 1 element.

Maybe you are looking for

  • Toshiba 32L4333DG freeze after DTV tuning

    Hello everyone, My first time here. I really need help with my Toshiba 32L4333DG TV.It completelly freeze after any DTV channels tuning/upgrades to date. Made to another owner the same TV?Y at - it any suggestion of support from Toshiba? Thanks in ad

  • How to set the keyboard Viewer in a language other than the main keyboard?

    is it possible to set the keyboard to the screen the viewer into another language (German) than the main (English) keyboard as an easy way to use the keyboard Viewer to make the German characters and umlauts while typing with the keyboard layout Engl

  • How config SRP547W to APPENDIX M support

    How config SRP547W to APPENDIX M support

  • Deletion of saved web pages blackBerry Smartphones

    I recently recorded a webpage on my Storm, resulting in a yellow icon small 'globe' appearing at the top of my home page, immediately below the date and time, with the number '1 '. I can't find out how to remove this, so that I can get rid of the ico

  • Windows media player cannot connect to the internet

    He will not play some native titles to a hard drive, as it wants to update the licenses, but he proposes to update by downloading the components but then said it was impossible to connect to the internet.   My computer is internet and everything work