Setting Profile Value as default in Task List Initial Screen Profile Field

I have created a profile for enabling Network Graphic view for operation relationship in PM task list. Whenever i want to create task list i have to enter profile in initial screen to activate Network Graphic view. Can this profile be set as default, i mean whenever i create task list, profile field be filled automatically with predefined value instead of entering profile every time ?

Yes, you can default this Profile name by use of PIDs
Not at a system right now - can anyone help with the PID name??
PeteA

Similar Messages

  • No profile with entry tool for task list QP01

    Hi all,
    I am trying to upload Inspection Plan through LSMW. When I reach the Create batch Input step, I encounter an error saying No profile with entry tool for task list Q 141 2 in session 5_INSP_PLAN. How do I fix this?
    Please help

    Solution is to check on config for Inspection Planning for QM.
    SPRO > QM > Quality Planning > Inspection Planning > Maintain Profile for Default Values (OQ84)
    Entry tool must be checked and Profile field in LSMW must correspond with Inspection Plan Profile

  • Set country value to default

    Hi All,
            In my identification page there is a input field for country, I want to set the country to default value. The code for input field is as given below.
    <crmic:inputField
        disabled    ="<%=Search->GET_I_Country( )%>"
        id          ="Country"
        value       = "//Search/Country"
        maxlength   = "3"
        showHelp    = "TRUE"
            width       = "100%"
    />
    How can i set this value to default value but it also possible to change the value and do the search.
    With advance Thanks & Regards,
    Sujith

    Hi Sujith,
        You are in the ICWebClient 5.0.. i guess. If you want initializate a attribute you should give the value in method DO_INITATTRIBUTES of implementation class of your view..  C*IMPL
    Regards.
    Manuel

  • Value not found in allowed list of options for field...

    Hi,
    I'm using RIDC on UCM 11g in order to checkin contents.
    UCM hosts different projects.
    I've the following problem: if somebody (from a different project) insert a new Information Field (e.g. xAnnoPubblicazione) of type Integer - Option List - Select List Validated and it does not make a default value for this field, when I perform checkin using RIDC, it fails with the error:
    "oracle.stellent.ridc.protocol.ServiceException: Content item 'UCMRE010132' was not successfully checked in. Value not found in allowed list of options for field 'xAnnoPubblicazione'.
    How can I solve this issue? what's the recommended way?
    Thank you very much.
    Best regards,
    S.

    In the database language, you have created a NON NULL column and you are trying to insert a record with NULL value to the column. Of course, it cannot work.
    There are three options:
    - do not declare the field as NON NULL (that is, you option list has to contain 'blank' as a possible value)
    - provide the value on insert
    - provide the default value

  • Setting Current Values as Default in Stand-Alone Application ?

    Hi
    I have a stand-alone application using LabVIEW run-time and I want the user to be able to make the choice if he wants to retain the default values or modify them ? I know you can't use the invoke node and set the current values to default because that works only in EDIT mode. I saw some postings where there was a talk about using configuration VIs. I am not sure how to use them. Also is there some other way I can accomplish this ?
    Thanks
    Sridhar
    P.S: I use LabVIEW 7.0
    Kudos always welcome for helpful posts

    I would use a configuration file to hold default values for my controls. When the vi starts, prompt the user to select default values or to modify. You can use a two button dialog to do this. Wire the output to a case structure. If the user selects default, read the config file and use the values to set your controls values. If the user selects modify, call a subvi that gives the user an interface to modify the values. You can start with the old default values. This subvi would have a loop, waiting for the user to press either a cancel button or a change button. If the user makes changes and presses the change button, exit the loop and write these new values to the config file. If cancel is selected, exit the loop and do not write to the config file. Upon returning to the main, read the config file and set the control values accordingly. You can even go a step further and create a "factory default" file. This file would be read only. The user can be given a choice to select this file in case he made changes and saved them to the config file, and the new changes were all screwed up.
    Config files are nothing more than a file containing keys which represents controls, and the data values for those controls. There are examples located at \examples\file\config.llb.
    - tbob
    Inventor of the WORM Global

  • Assembly and Task list : storage location defaulted from task list

    Hi all,
    Can anyone tell me the different steps (with details) required in master data (assembly, task list,...)  to get the 'storage location' filled by default in the general maintenance task list : how assembly is used in that process?
    Thanks,
    P.

    Hi Pete,
    In the component overview for a given operation,  when assigning a component : further on the right, there is a storage location field.
    Pete.

  • How do I set Google as the default search engine in the URL search field (now have Yahoo)?

    I'd like Firefox to use Google as the default search engine for the URL search field, instead of Yahoo as I currently have. I've tried to find a place to reset this in Preferences but can't find a solution. Would be very grateful for any advice. Imagine it's simple.
    NB: I'm talking of the left search field, not the right search engine one where it's easy enough to define.

    You can reset the prefs general.useragent.override and keyword.URL on the about:config page.<br />
    See http://kb.mozillazine.org/about%3Aconfig
    <blockquote>general.useragent.override<br />
    Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.8) Gecko/20100722 YFF35 Firefox/3.6.8 FBSMTWB<br />
    <br />
    keyword.URL<br />
    http://www.fastbrowsersearch.com/results/results.aspx?s=NAUS&v=19&tid={E2BE0628-2C04-81B6-D310-88BC17CD51D4}&q=</blockquote>
    See these pages and threads about Fast Browser Search (FBSMTWB in the user agent, Help > About).
    *http://www.fastbrowsersearch.com/FBS_Toolbar/Help/helpUninstalling.aspx
    *http://www.pccybertek.com/2009/05/remove-fast-browser-search
    *[/tiki-view_forum_thread.php?forumId=1&comments_parentId=264720]
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=1430845

  • Setting null values vs Default or initial values in the Database?

    i am working on a system and i have set any field that might optional as Allow Null,, but this is causing me a lot of troubles especially when i am querying the data or perfoming some calculations from the database. So is it valid if i changed all the Allow null field to have initial values an restricting null values to be inserted into them, so example, to set the initial values for an integer to be 0 and string to be empty?

    Hi,
    You can implement business logic on db side or on app side.
    Advantage and disadvantage of implementation business logic on DB side.
    Advantages:
    1.Don't require app server software version changes/compilations (Java, C, C++, C#...)
    2.Stored procedures are stored directly in the db.
    3.DBA can manage and optimize the stored procedures in flexible way; it'll be transparent for app server because the same remaining interface.
    4.Avoidance of network traffic - the stored procedures can run directly within DB engine.
    5.Encapsulation of business logic as API in the database.
    6.Reports can be implemented like PL/SQL functions that return table data type. The functions can be called from application side - sort of API.
    Disadvantages:
    1.DB vendor specific, but when dealing with the same databases (for example Oracle) it's not relevant.
    2.Require DB skills to write the procedures correctly: it will require time for a pure java/c/c++/c# programmer to understand the DB code and to write it in optimal (from db point of view) way.
    3.If it's too complex business logic - the db side implementation can become too complex.
    To overcome issue with null(s) please use NVL function.
    Example:
    drop table  TEST_TABLE;
    create table TEST_TABLE(parameter varchar2(20), val number(10, 2));
    insert into TEST_TABLE values ('A', 23.245);
    insert into TEST_TABLE values ('B', null);
    insert into TEST_TABLE values ('C', 123);
    insert into TEST_TABLE values ('D', null);
    select avg(nvl(val, 0)) from TEST_TABLE;Hope this will help.
    Best Regards,
    http://dba-star.blogspot.com/

  • Setting multiple values for query prompt: In List...

    Dear All,
    I have used "Radio Button" component which has labels like A, B and C. If user selects A then Radio button save 10 as its value on Excel and which being used in queries prompts. If user select B then Radio button save 20 on Excel at Destination cell and all queries use this for prompt value. But when user select C which is the for both values 10 and 20. No queries executed successfully, values are in String and I tried following values for C in excel
    "10,20"
    10,20
      '10,20'
    10;20
    '10','20'
    10 20
    But when I execute this query at Dashboard Query Panel and selects both 10 and 20 as Inputs since I'm using In List operator then the query executes perfectly. See below the query:
    SELECT   Table__1."0CALMONTH",   SUM(Table__1."0INV_QTY"),   SUM(Table__1."0NETVAL_INV"),   Table__1."0DOC_CURRCY" FROM   "SD_C_ZSDIC"."PUBLIC"."IC_ZSDIC"  Table__1 WHERE   (    Table__1."0CALDAY"  BETWEEN  {d '2014-01-01'}  AND  {d '2014-06-13'}    AND    Table__1."0ACCNT_GRP"  =  'ZLOC'    AND    Table__1."0COMP_CODE"  =  '1000'    AND    Table__1."0MATERIAL__0DIVISION"  IN  ('10','20')    AND    Table__1."0CALMONTH"  <>  0    AND    Table__1."REFERENCE_DATE"  =  {d '2014-06-13'}   ) GROUP BY   1,    4 HAVING   SUM(Table__1."0INV_QTY")  <>  0 ORDER BY   1
    1. In which format I should save value of C, so that I can have '10','20' for the query prompts value?
    2. Am I missing something or my format of C values at Excel sheet is not correct on?
    I will appreciate your reply in this regard.
    Many thanks!!!
    Tariq Ashraf

    put the output of C
    in 2 cell
    for eg
    C1=10
    C2=20
    and map the 0MATERIAL__0DIVISION(prompt) to cell C1 and C2
    NOTE
    we have to write  formula in C1 and C2
    C1 = if radiobutton=b then 20 else 10.
    C2 = if radiobutton=c then 20 else ""
    map both cell c1 and c2 to the list prompt
    it will work

  • Setting current values as default.

    Hi there !
    I got a VI that is suspend when called.
    I make the right settings, and then I run the VI (settings are written
    trough GPIB to a HP4145A)
    It would be nice if I can make a checkbox or something, when this box is
    checked, that all the current settings are set as default. So when I
    call the VI next time, I got the previous setting. I've searched LabVIEW
    help and menu's, but didn't find a thing.
    Anybody suggestions, tips, ???

    You can save the settings in a file and load them again, if you need.
    Kristof Poppe schrieb:
    > Hi there !
    >
    > I got a VI that is suspend when called.
    > I make the right settings, and then I run the VI (settings are written
    > trough GPIB to a HP4145A)
    > It would be nice if I can make a checkbox or something, when this box is
    > checked, that all the current settings are set as default. So when I
    > call the VI next time, I got the previous setting. I've searched LabVIEW
    > help and menu's, but didn't find a thing.
    > Anybody suggestions, tips, ???
    Ingenieurbüro Mencke & Tegtmeyer
    Laubbreite 21
    D-31789 Hameln
    Tel. 0 51 51 / 96 33 68
    Fax 0 51 51 / 96 33 69
    e-Mail: [email protected]

  • Plant maintenance - Default value for task list

    Dear All ,
    I am new to the forum, Can any one throw some light on where do I do customizing settings , so that I will get a pop up window asking to change workcentre while I assign a Task list to an order.
    Sorry if this is a silly question.
    Thanks in advance

    Hi,
    You can define this at the following IMG path:
    >Plant maintenance & customer service -Maintenance & service Processing -Maintenance and service orders -Functions and settings for order types -Default value for task list data and profile assignment                                                                               
    It is also possible for each user to maintain their own settings. This can be done using the following menu:                                                                               
    Transaction IW31/32: Extras   > Settings   > Default values
    -Paul

  • Error while creating configurable task list

    Dear Expert,
    I am trying to create configurable task list for equipments and I want to use this task list for preventive maintenance cycle. In following steps I will tell you what i did in the process.
    Step1:- Characteristic is created and different values are assigned to this.
    Step2:- Class with class type 300 is created, characteristic is assigned to this class
    Step3:- Equipments are created and class created in above steps is assigned to them and character values are set for them
    Step4:- General maintenance task list created
    Step5:- Configuration profile for task list with same class is created
    now while creating the object assignment in the task list operation, in the dependency basic data I am getting error ' No source code entered'. Please guide me what data do I need to enter in this basic data and where I am doing wrong.
    I try to follow the previous discussion regarding the same topic, but unable to create this object dependency assignment.
    Thanx in advance, for your help.
    Regards,
    Parag

    Hi Parag,
    See this document.Configurable Tasklist
    I hope you will be able to connect and correct your process accordingly.
    Step3 here (CU01) is related to your issue.
    You are expected to give a code shown like that in the Editor above Assignments  in the Tasklist Extras menu (Takes to CU01)
    Jogeswara Rao K

  • Automatic inclusion of a task list in a Maintenance Order

    I have created some general maintenance task list. When I want to include some operations from the task list in a work order,
    the complete list is included. Is not possible to select some operations to be included?
    Thanks

    Hi,
    you can have selection of operations while integrating tasklist into order through customizing. The node is Plant Maintenance and Customer Service-> Maintenance and Service Processing->Maintenance and Service Orders-> Functions and Settings for Order Types->Default Values for Task List Data and Profile Assignments. In this screen flag the operselection for the given ordertype and plant.

  • Significance of renumbering in task lists  in spro

    Significance of renumbering in default values in defining default values for task list data and profile assignments.
    Edited by: Pallavi Kakoti on Jun 27, 2011 2:40 PM

    Hi,
    You defined task list and this task list having 5 operations
    10 - Inspection
    20 - Change Oil
    30 - Check Engine
    40 - Adjust engine volves
    50 - Washing
    Now when you create maintenance/service order in that you want to call this task list but you want only operation 10,30,50
    So when you select these three operation and click on copy then this numbers can rearranged as 10,20,30 in order operation tab.
    Kapil

  • Populate repeating table based on task list - Need the experts out there!!!!

    Ok I will try to explain this as best as I can.
    What I have:
    task list (out of the box, with 1 calculated field)
    form library (customized using infopath)
    ....and a headache ;)
    So What ive done so far is I put in a hyperlink in the infopath form to the task lists newitem form "click here for new task" . I have the title of this newitem form prepopulated based on the form library item. For example, if you open up a form
    from the form library Titled: Test Entry, and has an ID of 5. The newform title of the task list will read "Test Entry | 5 ". So its title | ID. I then have a calculated column to take the right 3 characters of the title, so it prints out the ID.
    So pretty much I have a title and ID that match the form library...
    now the hard part.
    Say I have 10 tasks in the tast list related to ID # 5 from the form library.
    Is there a way to create a repeating table or other solution to show these 10 tasks within the form library form? I was thinking a button to query for data from a secondary source (task list) filter where ID = current Item ID. then have it set a fields value???
    Anyideas???

    Hi,
    Here's an idea. When you are creating the task, populate a ReferenceID field in the task list with the item ID of the form library list. In this form, create secondary data connection to the task list and include the fields that you want to show. Drag the
    group on the form, it will create repeated section with controls. Create a formatting rule on the section, condition where ID!=ReferenceID, Hide this section.
    This will display the repeating data from the Task list where ReferenceID is = ID and hide all others.
    Another variation would be to Filter the Data Connection itself and add the condition in the filter (ID=ReferenceID). Hope it helps.
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

Maybe you are looking for

  • Any Ideas on a how to falling snow?

    I have a image that I would like to make a little snow falling over it. As a amateur rookie at flash, I'm looking for a tutorial or some generous genius to explain how a dummy could do it? thks

  • Music on my iPhone 5 won't play and is grayed out. HELP!

    I got my iPhone 5 about a year ago and I never had any problems with my music until now. About 2 hours ago, I wanted to download a new song. So after it downloaded, my 4 most recent songs I had downloaded from iTunes the day before became grayed out

  • Preview freeze and not working fine on PDF view (building plans)

    Imac 27" 5k i7 32GB Osx 10.10.1 When opening a PDF in preview (mostly building plans) some lines are not viewable. When enlarging the pdf and every time i'm scrolling preview freeze for a 30". (in quick view (mail) the hole PDF is perfect viewable bu

  • R7950 TwinFrozr OC - stability issue playing flash video

    After a day or so uptime, with some gaming, max gpu temp 55°C, idle 40°. Had a driver crash - main monitor had a mess of gray noise, extended desktop not affected. Caused by playing flash video on youtube. Also occurred in online newspaper, but in th

  • Test plan

    Hi friends, Please any one tell me, what are steps involved in test plan preparation in bw