In R12.2.3 Task type LOV is blank

Hi,
We are implementing R12.2.3 Service modules for our client.
But after defining the task types using the Service Responsibility, the same are available under Task manager window.
But none of the task type neither the seeded one are available under the task type LOV in create service request form.
Nor we can see any task type available under mapping objects window which opens after clicking on Map Types button in Task Type definition form.
Is there anything we missing any profile option or some key setup.
Please let me know if anyone has seen this issue before.
Best Regards,
Shyam

Hi Shyam,
Please open the Task Types form ( JTFTKTTY.fmb) and click on the 'Map Types' button.
Query for Source Object = 'Service Request'.
a) Do you see Task Types already mapped?
b) If you add a row: there are no Task Types in the LOV at all? Do you see any errors at the bottom of the form (i.e. FRM-41826)?
Thanks,
M.

Similar Messages

  • Con not assign TASK TYPE for Put away during PO receipt

    Good morning everyone!
    I spent a lot of time to setup WMS Task assigment rule with no result.
    My goal is to make Task assigment for inbound tasks. Particulary put away after receipt.
    Expected behavor: after receipt in receiving area system should assign task type. This can be checked via "Warehouse control board" form, "Task type" column.
    Actual (current behavour): task is created and even can be seen via "Warehouse control board" form. But there's no task type. For Task assigment the only rule exists.
    To be sure that it works with other tasks types I've checked on Move order. Works well.
    NEED YOUR ADVISE
    Thanks in advance.
    Eugene.

    This case happened to me too in R12.
    The system did not assign task type after receipt in the receiving area. Moreover, I cannot update status from "Pending" to "Queue" to the user via "Warehouse Control Board" form for these put away tasks. It always show the error message "Cannot update putaway task." after press execute button. So How can I assign these task to specific user?
    Need your advise too,
    Thanks,
    Surachai.

  • Expenditure Type LOV-- Adding where clause with controller extension- help

    Hi Gurus,
    I'm new to OA Framework and Java and I need to extend the controller for the expenditure type lov in iProcurement. I need to add a where clause to the VO to show only those expenditure
    types that will pass transactions controls based on the project and task.
    Name of the VO:ExpenditureTypeNoAwardLOVVO
    controller:oracle.apps.icx.lov.webui.ExpenditureTypeLovCO
    Original Query from the VO:
    select * from (SELECT et.expenditure_type, et.sys_link_start_date_active,
    et.sys_link_end_date_active, 1 as dummy_number
    FROM pa_expenditure_types_expend_v et
    WHERE et.system_linkage_function = 'VI'
    and (trunc(sysdate) between et.expnd_typ_start_date_active and
    nvl(et.expnd_typ_end_date_active, trunc(sysdate+1)))
    and (trunc(sysdate) between et.sys_link_start_date_active and
    nvl(et.sys_link_end_date_active, trunc(sysdate+1))) QRSLT
    ((WHERE UPPER(EXPENDITURE_TYPE) like UPPER(:1)
    AND (UPPER(EXPENDITURE_TYPE) like :2 or UPPER(EXPENDITURE_TYPE) like :3
    or UPPER(EXPENDITURE_TYPE) like :4 or UPPER(EXPENDITURE_TYPE) like :5)))
    I created a custom database function xxpa_check_txnctl which takes project_id, task_id and expenditure type as parameters and returns "Y" if that expenditure type is valid or
    returns "N" if it is not valid.
    What I need to add to the where clause of the above query is
    and *'Y' = ( select xxpa_check_txnctl(project_id,task_id,et.expenditure_type) from dual)* to the standard VO query so that only valid expenditure types will show up in the LOV for that
    project/task combination.
    I enabled the Debug Log from Diagnostics and able to see the values of project_id and task_id in the controller attached to the LOV (oracle.apps.icx.lov.webui.ExpenditureTypeLovCO) as shown
    below. Please tell me how I can add the where condition to the custom controller .
    I really appreciate your help.
    Thanks in Advance,
    Shree.
    ==========================================================================================
    [28]:STATEMENT:[icx.lov.webui.ExpenditureTypeLovCO]:#Param# ProjectId=13
    [28]:STATEMENT:[icx.lov.webui.ExpenditureTypeLovCO]:lov criteria item from dictionary in getLovItemNumber():
    [28]:STATEMENT:[icx.lov.webui.ExpenditureTypeLovCO]:#Param# TaskId=796
    [28]:STATEMENT:[icx.lov.webui.ExpenditureTypeLovCO]:VO used in ExpenditureTypeLovCO.java:
    [28]:STATEMENT:[icx.lov.webui.ExpenditureTypeLovCO]:#Param# voName=ExpenditureTypeNoAwardLovVO
    ==========================================================================================
    Here is the code for the standard controller:
    ==========================================================================================
    package oracle.apps.icx.lov.webui;
    import com.sun.java.util.collections.ArrayList;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.form.OAFormValueBean;
    import oracle.apps.fnd.framework.webui.beans.layout.OAListOfValuesBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.icx.por.req.webui.CheckoutInfoBaseCO;
    import oracle.jbo.domain.Number;
    public class ExpenditureTypeLovCO extends CheckoutInfoBaseCO
    public static final String RCS_ID = "$Header: ExpenditureTypeLovCO.java 120.1 2006/07/25 06:33:16 sudsubra noship $";
    public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: ExpenditureTypeLovCO.java 120.1 2006/07/25 06:33:16 sudsubra noship $",
    "oracle.apps.icx.lov.webui");
    public ExpenditureTypeLovCO()
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    java.util.Dictionary dictionary = oapagecontext.getLovCriteriaItems();
    Number number = getLovItemNumber(oapagecontext, dictionary, "ReqAwardId");
    Number number1 = getLovItemNumber(oapagecontext, dictionary, "ProjectId");
    Number number2 = getLovItemNumber(oapagecontext, dictionary, "TaskId");
    String s = null;
    if(number == null)
    s = "ExpenditureTypeNoAwardLovVO";
    } else
    ArrayList arraylist = new ArrayList(1);
    arraylist.add("getDefaultAwardId");
    Number number3 = (Number)executeServerCommand(oapagecontext, oapagecontext.getApplicationModule(oawebbean), "CheckoutLovSvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logParam(this, oapagecontext, "defaultAwardId", number3, 1);
    if(number.equals(number3))
    s = "ExpenditureTypeWithDefaultAwardLovVO";
    OAViewObject oaviewobject = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("ExpenditureTypeWithDefaultAwardLovVO");
    oaviewobject.setWhereClauseParam(0, number1);
    oaviewobject.setWhereClauseParam(1, number2);
    } else
    s = "ExpenditureTypeWithAwardLovVO";
    OAViewObject oaviewobject1 = (OAViewObject)oapagecontext.getApplicationModule(oawebbean).findViewObject("ExpenditureTypeWithAwardLovVO");
    oaviewobject1.setWhereClauseParam(0, number);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "VO used in ExpenditureTypeLovCO.java:", 1);
    logParam(this, oapagecontext, "voName", s, 1);
    OAMessageStyledTextBean oamessagestyledtextbean = (OAMessageStyledTextBean)oawebbean.findIndexedChildRecursive("ExpenditureType");
    oamessagestyledtextbean.setViewUsageName(s);
    OAMessageStyledTextBean oamessagestyledtextbean1 = (OAMessageStyledTextBean)oawebbean.findIndexedChildRecursive("StartDate");
    oamessagestyledtextbean1.setViewUsageName(s);
    OAMessageStyledTextBean oamessagestyledtextbean2 = (OAMessageStyledTextBean)oawebbean.findIndexedChildRecursive("EndDate");
    oamessagestyledtextbean2.setViewUsageName(s);
    OAFormValueBean oaformvaluebean = (OAFormValueBean)oawebbean.findIndexedChildRecursive("ReqAwardId");
    oaformvaluebean.setViewUsageName(s);
    OAFormValueBean oaformvaluebean1 = (OAFormValueBean)oawebbean.findIndexedChildRecursive("ProjectId");
    oaformvaluebean1.setViewUsageName(s);
    OAFormValueBean oaformvaluebean2 = (OAFormValueBean)oawebbean.findIndexedChildRecursive("TaskId");
    oaformvaluebean2.setViewUsageName(s);
    ((OAListOfValuesBean)oawebbean).setViewUsageName(s);
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processFormRequest(oapagecontext, oawebbean);
    ==========================================================================================

    Hi, I will try to look into the issue. I have also done customizations like this in past.
    To achieve this, we must read the Process request of CO properly and understand the places, where you have to make changes. In my case, I identify such places and also I couldn't extend the controller class. SO I took the code from standard CO, changed it at couple of places and created a class file with same code as standard CO but with changed at some places. After that I gave newly created CO name in personalization property, so that the page will follow newly created custom CO.
    So I would suggest to read the CO properly, to understand which line is doing what......

  • HOW TO Restrict Absence Type LOV Self Service in 12.1.3

    Hi All,
    Will someone please inform of whar is the package to use for this new feature restriction as stated below. Thanks.
    From new feature PDF 12.1.3:
    3.26.4.6. Restrict Absence Type LOV
    Prior to this release, all absence types created using Oracle HRMS are displayed to users in Self-Service HR. With this release, implementers can update ""a package"" to restrict the absence types that are displayed to users based on the business requirements. This feature ensures that employees enter only those absences for which they are eligible, and managers do not have to verify the validity of the absence type of employee requests.

    Apologies for the delay here.
    The package in question is hr_absence_restricted. You replace the Package Body of this package so that the function absences_restricted returns a comma-separated array of Absence Type ids that SHOULD NOT be displayed.
    For example,
    RETURN '123, 456, 789'
    Would prevent Absence Type Ids 123, 456 and 789 from appearing in the user's List of Values. This is supposed to be described in the following Oracle Article but it's not published:
    Oracle Article How To Restrict Absence Type LOV in Oracle Self-Service Human Resources (Doc ID 1122674.1)

  • WMS - Cycle Counts - are generating with no user task type

    Hi,
    I have configued Cycle counts and it is creating tasks with no user task type.
    That too .. this is happening for some tasks .. others are created correctly.
    As there is no user task type .. It is not getting displayed on Gun.
    Can anyone pls help me .. Thanks in advance.
    Regards,
    Naveen S

    Hi,
    I have configued Cycle counts and it is creating tasks with no user task type.
    That too .. this is happening for some tasks .. others are created correctly.
    As there is no user task type .. It is not getting displayed on Gun.
    Can anyone pls help me .. Thanks in advance.
    Regards,
    Naveen S

  • How to set task type of a task in MS Project using excel vba code.

    Hello Gurus,
    I am generating MS Project files(.mpp) files form excel data. An excel macro in the excel file will read the excel data and will generate the .mpp file. It is working fine. now i want to set the task type of all the tasks to "Fixed work" from excel
    vba code.
    How to use the property PjTaskFixedType in setting the task type??
    refer below links
    http://msdn.microsoft.com/en-us/library/office/ff861713.aspx
    http://msdn.microsoft.com/en-us/library/office/ff864157.aspx
    Can someone help me in setting task type property from excel vba.
    I have attached my sample code used to generate the mpp file. It is not the complete code but you will get an idea from it.
    Set pjApp = CreateObject("MSProject.Application")
    pjApp.FileNew
    Set newproj = pjApp.ActiveProject
    newproj.Tasks.Add (task_name)
    newproj.Tasks(mpp_row_number).Start = task_start_date
    newproj.Tasks(mpp_row_number).Finish = task_end_date
    newproj.Tasks(mpp_row_number).ResourceNames = resource_name
    pjApp.FileSaveAs mpp_file_save_path & mpp_file_name & ".mpp"
    pjApp.FileClose
    pjApp.Quit
    Any help is appreciated.

    Hi Syamku,
    A simple example that sets the task type:
    ActiveProject.Tasks(2).Type = pjFixedDuration
    ActiveProject.Tasks(3).Type = pjFixedUnits
    ActiveProject.Tasks(4).Type = pjFixedWork
    http://msdn.microsoft.com/en-us/library/office/ff860469(v=office.15).aspx
    Hope this helps

  • 'Task Type' property in Monitoring of Task iview in MSS

    Hi,
    There is a property called 'Task Type' in the iview 'Monitoring of Task'.
    This is supposed to restrict the display of task types to what is specified here in this property only.
    For eg, if i have 3 task types configured for It0019 in the back-end and want only 2 to get displayed in the portal, then i will mention those task types in this property.
    1 -- Monitoring Overtime
    2 -- Monitoring payments
    3 -- Monitoring absence.
    I have mentioned the task types separating them by ';'.
    However now no task is getting displayed.
    Can anyone help please?
    Thanks and Regards,
    Pinki

    can you please check your iview property
    FUNCTION HRMSS_RFC_RD_DATES_GETLIST
    FUNCTION HRWPC_RD_DATES_GETLIST_INTERNA
    LOOP AT lt_monitoringtask
                    INTO  ls_monitoringtask
                    WHERE ( p0019-termn BETWEEN begda AND endda ) OR
                          ( p0019-mndat BETWEEN begda AND endda ).
            check for allowed employment status
              IF NOT t_employmentstatus_mt[] IS INITIAL.
                LOOP AT lt_action
                        INTO  ls_action
                        WHERE pernr  = ls_monitoringtask-p0019-pernr AND
                              begda <= ls_monitoringtask-p0019-termn AND
                              endda >= ls_monitoringtask-p0019-termn.
                  EXIT.
    http://help.sap.com/saphelp_erp60/helpdata/EN/43/376d7ced1f1bcee10000000
    a1553f7/frameset.htm

  • Query regarding changing the human task type

    Hi,
    I am new to BPM.I have created a process with two tasks and mistakenly selected both the human tasks with the initiator pattern.And now I am getting this compilation error which says my process contains more than one initiator tasks.Is there any way in which I can change the human task type to simple after the process has been created?
    Thanks in advance

    Hi,
    Thanks for your reply.I found that out too.It is really strange that there is no way in which you can change the type once you have created a user task.
    Thanks
    Rahul

  • ST03 Export: How to export all instances and task types?

    I am exporting ST03 data using SAP GUI
    I can export data for a single task type and a single instance.Is there a way I can export the Time Profile data for all instances and all task types in a single export? Can I do a single export rather than NxM exports?
    Also, when I export to a text file, there is a header that reports the instance, data, and task type. When I export to excel file I only get the table, not the header info. Is there a way to to get the header info into the excel export?
    Is this the appropriate forum for these questions?
    Any help is appreciated.
    Thanks.
    Tim

    I moved this question to an ABAP forum. Here's the [thread|ST03 Export: How to export all instances and task types?;.
    Tim

  • How can we change Absence Type LOV in Create mode not in search in SSHR

    Hello,
    My requirement is to Restrict Absence Type LOV at the time of applying the leave in Self Service. For that i have used hr_absence_restricted.absences_restricted.
    After changing this package Its working fine at the time of applying leave.
    But in search i want to display all kind of leaves, But its restricting serach Absence Type LOV as well.
    Thanks in advance,
    Sheetal

    Hi,
    have extended contoller instead of VO for the same. Its working fine now.I have Used the code in controller as shown below:
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(0,81);
    vo.setWhereClause("ABSENCE_ATTENDANCE_TYPE_ID not in "+strAbsType);
    vo.executeQuery();
    Thanks,

  • ST03N Task Type "other"

    I am fairly new out of college into SAP Basis Administration.  My boss has asked as to why some of the tasks in the workload monitor are taking so long, mainly the task type "other".  The avg response time/diag step is ~85000 (ms), and ~83000 (ms) is spent in the database.  All be it interesting that doesn't tell me much, because I have not a clue what "other" pertains to, and why its spending so much time in the database.  Any help would be much appreciated. 
    SAP Login: 710
    MS Windows SP 3
    Any information needed, just let me know and I will be sure to provide it.
    David

    David,
    My 2 cents on this. Usually, if a process spends too much time on the database, it would mean that one or more of the following is possible.
    1. The process is trying to read a lot of data. In which case, you will need to analyze what the process is doing or trying to read. If it is a SAP program, some buffer tuning might be needed. If it is a custom program, the program might need to be tuned. There is more to it than this.
    2. Network problem. I doubt if this is the problem especially if your entire database does not seem slow. In other words, a network problem would not be isolated to a certain tcodes/programs
    3. Disk problem. If the process is trying to read data from a disk that is slower then this could result in degraded performance.
    There is no real "one solution" to this. It will need some poking around.
    As far as "Other" goes, do the following.
    Highlight "Other" and hit F1. You will see documentation on each of those Task Types. "Other" is not defined, which leads me to believe that this could be something running on the database directly without SAP knowing about it ? Maybe, maybe not.
    Check if there is a script or something running on the db. What is the time frame ? Check the transaction profile for that day/time and sort it according to high db times. Maybe that will lead you to something.
    Kunal
    Edited by: Kunal Belnekar on Jun 12, 2009 9:57 AM

  • RFC Task type

    Hi,
    Can any1 tell me how different is task type RFC ( in ST03N) than the task type dialog.
    Which activity is recorded in RFC task type. For eg. if DIA makes an rfc call, is it recored in RFC task type too along with DIA?
    Why response time of RFC task type doesn't include roll wait time when DIA task type includes it.
    Regards,
    Hussain.

    Roll-Wait time will be part of the response time of the dialog step (the caller) because the caller had to wait for the RFC to execute.
    Roll Wait will not be part of the response time of the RFC server step (the called) because it did not wait; it just did the function call.
    The Roll Wait time of the caller should be about the same as the Response Time of the callee.
    For a discussion of components of response time see SAP Note 1063061 - Information about response time in STAD/ST03.
    Tim
    Edited by: Tim Wise on Feb 8, 2008 1:36 PM

  • Usage task type, task component and task level and service number in time s

    Hi guru,
    when I compile time sheet, I want to fill field task type, task component, task level, sender purchase porder, PO item e service number but the system give me an error, LR105, "service does not exist". I uderstand that this error is caused from missing record inderivationor task component but I work on more services.
    Is there anyway to set in this derivation all the services or a range of services?
    Thanks
    Regards

    not answered

  • Task Type in 0019

    Hi,
    Is there any feature, by means of which we can default the Task Types in Infotype 0019?

    In Userexit EXIT_SAPFP50M_001 . In Include ZXPADU01.
    DATA: w_P0019 TYPE P0019.
    IF  ipsyst-massn <> space AND
      ( ipsyst-ioper = 'INS'  OR
        ipsyst-ioper = 'INSS' OR
        ipsyst-ioper = 'COP'  OR
        ipsyst-ioper = 'MOD').
    CASE innnn-infty.
    WHEN '0019'.
    *convert prelp to pnnnn structure
    CALL METHOD CL_HR_PNNNN_TYPE_CAST=>PRELP_TO_PNNNN
    EXPORTING
    PRELP = INNNN
    IMPORTING
    PNNNN = w_P0019 .
    *Here you can have more conditions like for which Action Types you want the
    IT0019 to default .
    *Default Task Type
    w_P0019-TMART= '01'. 
    *convert pnnnn to prelp structure
    CALL METHOD CL_HR_PNNNN_TYPE_CAST=>pnnnn_to_prelp
    EXPORTING
    PNNNN = w_P0019
    IMPORTING
    PRELP = INNNN.
    WHEN OTHERS.
      ENDCASE.
    ENDIF.
    Thanks ,
    Sucharita Das

  • Help-Task not found - Please check the Task Type, Name and Location are cor

    HI all,
    i have upgraded my owb from version 11gr1 to 11gr2. the installation is complete and all my mappings and objects are imported successfully.
    i was able to execute the mappings using the sql code:
    @/oracle/product/11.2.0/owb/rtp/sql/sqlplus_exec_template.sql
    by logging into sqlplus as the user in whose schema mappings are deployed.
    hOwever, suddenly i am getting the error since sometime back - not sure what might have happened or what might have gone wrong. can someone please help me understand what might be wrong - how to decode this?
    Here is my error:
    @/oracle/product/11.2.0/owb/rtp/sql/sqlplus_exec_template.sql
    Role set.
    Enter value for 1: WSODS
    Call completed.
    Enter value for 2: ODS_SCHEMA
    Enter value for 3: PLSQLMAP
    Enter value for 4: MAPPING_1
    Enter value for 6: ","
    Enter value for 5: ","
    Stage 1: Decoding Parameters
    |  location_name=ODS_SCHEMA
    |  task_type=PLSQLMAP
    |  task_name=MAPPING_1
    Stage 2: Opening Task
    begin
    ERROR at line 1:
    ORA-20001: Task not found - Please check the Task Type, Name and Location are
    correct.
    ORA-06512: at "OWBSYS.WB_RT_API_EXEC", line 759
    ORA-06512: at "OWBSYS.WB_RT_SCRIPT_UTIL", line 910
    ORA-06512: at line 2When i execute this: i get the result as follows:
    SELECT warehouse_object_id, store_id, object_type_id, object_type_name, object_name FROM owb$wb_rt_warehouse_objects
    where object_name = 'MAPPING_1';
    WAREHOUSE_OBJECT_ID     STORE_ID                OBJECT_TYPE_ID          OBJECT_TYPE_NAME                                                 OBJECT_NAME                                                     
    15947                   15325                   769                     PLSQLMap                                                         MAPPING_1                                                       
    1 rows selectedEdited by: Chaitanya on Mar 5, 2012 3:33 AM

    Hi Chaitanya,
    Did you get any resolution for this error? I'm facing the same error while trying to execute OWB mapping through this command.
    Any help would be much appreciated. Thanks.
    Regards,
    Jagari

Maybe you are looking for

  • How can I make multiple quizzes within one Captivate project?

    Hi guys! Really liking Captivate 5.5, especially the way random question slides can lift questions out of a question pool...very elegant! Sadly though, I've come up against a bit of a wall. In my project, I want to have 3 separate quizzes that all us

  • Plz read- itunes wont load album info

    I recently downloaded itunes v5 because i didnt have ne other version because my computer was wiped out, and when i finally got it and began to import cds itunes would not upload the album info the songs would come into the library known as "track 1"

  • Convert to specific PDF size?

    I send PDFs all the time for work. Is there some program or some way to convert a PDF to a certain size to accomodate different email delivery restrictions? For example: If I make a PDF that is 19MB, I can send it to another gmail user, but I can't s

  • Application Self service

    Hi, We have implemented application web catalog in our environment. All user are able to request and install application using web portal. Now we have one request from all local system administrator that they wanted to have email notification wheneve

  • Synch with Groupwise?

    I've stopped using my Palm ever since I got a 12" PB that is light enough to carry around. But my organization keeps the shared calendars on Groupwise. Is there a program available to synch iCal with it?