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

Similar Messages

  • Configure IT0019 task type in for specific to molga

    Can we configure IT0019 task type which are molga specific ?
    I need to create some task types which are speicific to molga 10.
    When I create those tasks then it appears in IT0019 globally. Do we have settings to make it molga specific ? thanks, Shan

    Hi Harsha,
    We can not configure the task types country grouping specific but you can create task type in general and if you are creating the IT 0019 using action then you can write the dynamic action in which you can check the country grouping, if the country grouping is 10 then only the IT0019 with your task type will get created otherwise it will not.
    Second option would be to include the required task type only in the infogroup (of action) of country grouping 10.
    Another option would be to change the standard setting of T777D for IT 0019 check the box for country specific subtype then create your country specific task type and then maintain the view V_T582L.
    Thanks,
    Javed

  • 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.

  • 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

  • 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.

  • 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

  • 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

  • How to change the task type of bdoc in sap crm

    Dear CRM Experts,
    I am new to CRM. Want to know how to change the task type  of Bdoc from update to insert. I am gettind B doc error due to the reason that under object_task the entry is U , whereas i have to change it to I (insert).
    Pls provide deatil answer. Points will be given.
    Regards
    Rajat
    Edited by: Gurinder Pal Singh on Jul 21, 2011 10:17 AM

    Hello Rajat,
    Please provide us more information about the error you have and it's description so that we can help here arounfd here.
    thanks
    Willie

  • Hide Certain Task Types in UWL

    Hi,
    We have a situation where we have two portals pointing at the same backend ECC 5 system.  One portal is used by core HR users and the other by ESS / MSS users.
    One of the issues we have is that when the core users log into the ESS portal, they see all of their core tasks as well as their ess / mss ones.
    Does anyone know of a way of hiding certain task types or suggest another way around this.
    Many Thanks
    Paul

    Hi Paul,
    You need to customize the item types that you dont want displayed in each UWL.
    Customizing UWL help is available at:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/27/8be9f12c6746158328764a13c0ef99/frameset.htm
    Process flow is: Enable debug on UWL>Determine Item Types you dont want> download associated UWL>Create custom UWL (based on the items types you want to remove)>Upload UWL and clear UWL cache.
    Cheers
    Daniel

Maybe you are looking for

  • Please Help!-Problem using Image[ ] array

    Hi everyone, I have this real confusing bug in my code which i am not able to fix. Image[] tmpImg = new Image[Img.size()];   /initializing an image array tmpImg             for(int i=0; i<Img.size(); i++) {          //i require this display the image

  • Calling t-code f-43 from MIRO (is it SAP Recommended)

    Hi     can i call f-43 tcode for a PO (ex. 4500000154) from MIRO which is given in MIRO tr.code i.e  4500000154

  • PICTURE IN LDAP

    How can i put a picture in the LDAP??? Has somebody a piece of source?? NEED THIS ! Urgend!

  • How to use cookies in struts

    hai iI am new to struts. I want to get value in text field from one form to another using cookis in struts, can any one help me?, please...

  • Image Sizes in iDVD Themes

    I know this has been asked before but there doesn't seem to have been a definitive answer. What size and resolution do images need to be in order to fit into the standard drop zones in iDVD vers 7. I realise they can be repositioned by holding down c