How to pick activity type from HR mini master during activity confirmation

Hi,
How to pick activity type from HR mini master during activity confirmation via BAPI "BAPI_NETWORK_CONF_ADD".
I have confirmed activity via bapi BAPI_NETWORK_CONF_ADD, and it is picking activity type from activity. but i wants from HR mini master. In BAPI i am passing Personal no.
Thanks in advance.

Hi,
Did you mention Activity type information in HR Master-315 InfoType (TimeSheet Default value).
then you can get the value.
Vemula

Similar Messages

  • How do I transfer photos from iPad mini to SD card for backup?

    How do I transfer photos from iPad mini to Sd card for backup?

    You can copy photos from Camera Roll to a wireless flash drive (Micro SD Card)
    http://www.sandisk.com/products/wireless/flash-drive/

  • How can I copy music from iPad mini to iPad mini using home sharing??

    How can I copy music from iPad mini to iPad mini using home sharing??

    SHARING iTunes MUSIC
    http://macmost.com/five-ways-to-share-music-in-itunes.html

  • How to crete data type from XSD

    Hi All,
    can anyone tell me ...how to create data type from agiven xsd.
    I need urgently....
    thanks in advance....

    import this XSD, load this in your mapping editor and then use this to crate the datatype manually.
    Or, use XML spy, load this XSD and then you should be able to see the Structure, or,
    Look into the XSD data and decipher things yourself
    Regards
    Bhavesh

  • How to pick invoice document from R/3.

    Hi gurus,
    How to pick Invoice Documents from R/3 to BI.
    I am unable to find them in any of the datasources.
    Anyone please explain me.
    Regards,
    V N.

    Hi,
    Thanks for the reply.
    Normally the invoice documents which are there in the PO in Invoice receipts are billing documents ?
    Please explain me in clear. I'm confused.
    Regards,
    V N.

  • How do i move files from mac mini to external hard drive

    how do i move files from mac mini to external hard drive

    The simplest method would be to drag & drop the files you want to move to the external drive using the Finder. Just open both the source and destination locations in separate Finder windows.

  • How to transfer pages file from mac mini to iphone

    how to transfer pages file from mac mini to iphone

    If you have OSX 10.8 (Mountain Lion) installed on your Mac mini, set-up iCloud in your System preferences.
    Peter

  • How to pick a message from a mail box using shell script

    Hi
    Can any one tell me how to pick a message from a mail box using shell script.
    Thanks,
    Suman.

    Hi Suman,
    Can any one tell me how to pick a message from a mail box using shell script.Grep for the message and then either cut or awk for the text. . . Something like this:
    ls -al /mail/directory | grep "$1"* | awk '{print $9}'
    Jon emmons has working samples in his book on Oracle shell scripting . . .
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference"
    http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Activity type in a Personnel Master , CAT2

    Hi All,
    Need a reply at an urgent basis. In the HR management, the cost center can be attached to a personnel master data against which a CAT2 time sheet can be filled. Is it also possible to attach a given activity type to a personnel record?
    pls help
    Anuradha Ambekar
    TCS

    Dear Anuradha,
    maintain Activity type in transaction CJ20N at Network Activity level.
    In IMG under
    Cross Application Components -> Time Sheet -> Specific settings for CATS notebook -> Set up data entry profile -> Choose your profile -> Set Activity type under default values.
    I believe Inforype 0315(CATS: Sender Information) is not used.
    Regards,
    Naveen.

  • How to delete a activity type from KP26 which has executed KSS2 and KSII?

    Hi experts,
    I maintain three activity type to one cost center by KP26
    cost center 1:
       activity type 1
       activity type 2
       activity type 3
    last month I run KSS2 to split the price and also run KSII, so these three activity already have actual cost.
    This month I find activity type 3 should not be assigned to cost center 1, so I want to delete it from KP26 , but the system didn't let me to delete it , how to resolve this problem??
    error message:
    Costs already posted under cost element 6100016. No deletion possible   Message no. K8098
    Under cost element 6100016 there is a splitting record. No deletion p          Message no. K8082
    Plan values exist in other periods. No deletion possible.                                  Message no. K8085
    Actual price for P111CN33/PMT001 already entered; Deletion not possib    Message no. K8184
    thanks very much
    lance

    Hi,
    Please check the long text of these messages, it explains clearly. There are plan/actual dependent data existing for related cost elements, before deleting the records for cost center/activity type, all the dependent data must be deleted first.
    1. Run RKACSHOW to check on those entries!! Please first ensure   COKA entries deleted. You may delete the COKA entries by
       executing the program RKPLNC18.
    2. Subsequently, CSSL entries for cost centre and activity type,   use RKPLNC29 and then the actual CSSL entries with RKPLNC13.
    3. You may use RKPLNC39 to delete a COKP records once the   no corresponding COKA exists.
    4. COSS, COKS, COKP and COKL records could be deleted via KP06.
    Please notice, that even if you reverse all postings for the relevant object, the records in the CO tables still exist even
    if the balance value is 0.
    These records prevent the deletion.
    regards
    Waman

  • How to pick max value from a column of a table using cursor and iteration

    Hello Everybody
    I have a table loan_detail
    and a column in it loan_amount
    now i want to pick values from this table using cursor and then by using iteration i want to pick max value from it using that cursor
    here is my table
    LOAN_AMOUNT
    100
    200
    300
    400
    500
    5600
    700i was able to do it using simple loop concepts but when i was trying to do this by using cursor i was not able to do it .
    Regards
    Peeyush

    SQL> SELECT MAX(sal) Highest_Sal,MIN(sal) Lowest_Sal FROM emp;
    HIGHEST_SAL LOWEST_SAL
           5000        800
    SQL> set serverout on
    SQL> DECLARE
      2    TYPE tmp_tbl IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
      3    sal_tbl tmp_tbl;
      4    CURSOR emp_sal IS
      5      SELECT sal FROM emp;
      6    counter INTEGER := 1;
      7  BEGIN
      8    FOR i IN emp_sal LOOP
      9      sal_tbl(i.sal) := counter;
    10      counter := counter + 1;
    11    END LOOP;
    12    DBMS_OUTPUT.put_line('Lowest SAL:' || sal_tbl.FIRST);
    13    DBMS_OUTPUT.put_line('Highest SAL:' || sal_tbl.LAST);
    14  END;
    15  /
    Lowest SAL:800
    Highest SAL:5000
    PL/SQL procedure successfully completed.
    SQL> Even smaller
    SQL> DECLARE
      2    TYPE tmp_tbl IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
      3    sal_tbl tmp_tbl;
      4    CURSOR emp_sal IS
      5      SELECT sal FROM emp;
      6    counter INTEGER := 1;
      7  BEGIN
      8    FOR i IN emp_sal LOOP
      9      sal_tbl(i.sal) := 1;
    10    END LOOP;
    11    DBMS_OUTPUT.put_line('Lowest SAL:' || sal_tbl.FIRST);
    12    DBMS_OUTPUT.put_line('Highest SAL:' || sal_tbl.LAST);
    13  END;
    14  /
    Lowest SAL:800
    Highest SAL:5000
    PL/SQL procedure successfully completed.
    SQL> Edited by: Saubhik on Jan 5, 2011 4:41 PM

  • How do I transfer data from Mac Mini to Macbook Pro

    How do I transfer data from a Mac Mini (10.6.8) to a Macbook Pro (10.7)?

    Hi David,
    When you first start the MBP, run Setup Assistant and connect the two machines with a FireWire cable.

  • How to pick a video from gallery with wp8.1 and wp8.0

    I found this article
    https://msdn.microsoft.com/en-us/library/windows/apps/jj655411.aspx
    where a file is filtered by type and picked up.
    Is it possible to do that with video in wp8.1?
    I tried with a third party library (cordova) and is not possible to pick video from gallery in wp8.0, can you confirm that there is no way to do that (pick a video from gallery) in wp8.0?
    Many thanks 

    Hello,
    The
    FileOpenPicker can be used to open any type of file including video files. You can have the picker default to the video library by setting the
    SuggestedStartLocation property of the picker to
    VideosLibrary.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • How to transfer photos/film from Mac mini to memory stick

    mac mini late 2012 processor 2.3 Ghz intel core 7
    memory 8 Gb
    software OS X maverick
    Can somebody tell me how to traNSFER PHOTOS AND MOVIES FROM  MAC MINI TO SD OR MEMORY STICK?
    Thank You
    <E-mail Edited by Host>

    Drag them there.
    (112861)

  • How to find Delivery type from CRM_ORDER_READ?

    Hi friends,
    Can anyone tell me where and how i can find Delivery type from CRM_ORDER_READ.
    Thanks in advance.
    Ganesh

    Hi xiaoming cai,
    But i need in CRM systems
    Ganesh

Maybe you are looking for

  • Solution on SharePoint2010

    Hello, I'm fairly new to SharePoint 2010. I want to develop a solution on which it will be possible to show data from a table (SQL) and it will be possible to insert/delete/change data on the same page. I have some experience on C#.  Which technology

  • For sale - 27" TBD

    Beautiful shiny, 27" TBD for sale. Looks great on your desk, gets a lot of "Oooohs" and "Ahhhhs", only down side is that it only works occasionally. Kinda of a crapshoot, really. Doesn't matter how many forums you go through or how many recipes you a

  • HTML5 - securing intellectual property

    Hi, Currently when I publish in Captivate project then the content and how we created it is hidden from view  (unless someone decompiles it) . With HTML5 my understanding is that everthing is in plain text and there is no way of doing DRM or hiding c

  • Javadoc not popular?

    Does anyone know why there is no equivalent to javadoc API type documentation in other languages? I was looking at python for example and there is nothing like javadoc for API documentation and the same is the case for C#. I think the java API docs a

  • After most recent update, Firefox keep hanging intermittently with "Not Responding".

    After the most recent update, my Firefox browser begins to hang intermittently with "Not Responding". I have checked the extensions and plug-in like Java, all of them are the latest updated ones. Everytime I open a new site or click on links to load