Pour some light on 0906 infotype Additional Data for Correspondence

Hi Experts,
I have now explored a infotype 0906 - Additional Data for Correspondence. hope its fetch my requirement regarding correspondence letter related to HR ( Appointment, Transfer letter etc)
Please can u suggest how this infotype works and which are all the back round work we need to maintain.
I think it is included from ECC 6.0 version.
Thanks in advance.
SAPUUSER

These URLs might be useful.
[http://wiki.sdn.sap.com/wiki/display/ERPHCM/EnhancetheStandardInfotype0906forprintingtheHRletters]
[Regarding Infotype 0906(Additional data for Corresponding letters);
Mohan

Similar Messages

  • "Print report REKORD 80 has not selected any data for correspondence SAP18"

    When executed FBCJ transaction click the "print cash journal" button then appears  the following message "Print report REKORD 80 has not selected any data for correspondence SAP18"
    What is the procedure for to fix error?
    Best regards
    John

    HI,
    John.
    please refer the following link.
    correspondence type
    Regards,
    satish

  • Outlook 2010 Client - "unable to connect to retrieve additional data" for some Distribution lists

    We have a mix of Outlook 2003, 2007 and 2010 clients in our organization.
    Users with an outlook 2010 client are having issues with a number (not all) of our distribution lists.
    Issues: When selecting a distribution list in the new message 'to' fiedl, a 'message tip' appears with the name of the DL and 'contains xx recipients'.
    However, when attempting to expand the DL (selecting the + sign) the following prompt appears "Cannot perfrom the requested operation. The command selected is not valid for this recipient. The operation failed"
    When selecting the DL through the outlook address book the memberlist is empty and has a mail tip "unable to connect to retrieve additional data".
    The DL's were all created in a 2003 environment.
    We are currently setting up a 2010 environment, and all DL's were created prior to any schema updates etc.
    Of note, users experience the issue, but access the list through OWA don't have the issue.

    Please also perform the following steps to troubleshoot the issue.
    1. Temporarily turn off firewall and antivirus program on the problematic machine for a test.
    2. Remove the Outlook profile completely and create a new profile.
    3. Login on the same mailbox by Outlook 2010 on another machine to check the result.
    If the issue persists, please open Event Viewer and check whether any error message exists. If so, please post it here for research.
    Thanks.
    Novak Wu-MSFT

  • SEM-BPS how to load additional data for special users at runtime?

    Let´s assume you have a transactional info cube which contains SD Data from the source system.
    If you want to show additional data, let´s say the attributes of the sold materials which can be read in the table MARA of the source system (provided you use R/3, etc.)
    and you only want to show this data for a small amount of users, which need to see it, then i wonder how to do  this.
    am i right, that i can use the exit functions to init key figures, i.e. i could write some code which connects to the source system over RFC, downloads the data at runtime and presents it at the users excel sheet????
    moreover, is it necessary to extend the existing cube, just to achieve this aim?
    Message was edited by: Gideon Lenz

    Hello Gideon,
    there's no need to program anything. You can display any attribute in planning layouts. In your case you would extract the master data from material from SAP R/3 (MARA) into BW. The setup the layout to show the required attribute(s) in the layout in BPS.
    If the attribute is relevant only for a specific user group, just give them access to this "special" layout (create a planning folder or web interface for this group).
    Regards
    Marc
    SAP NetWeaver RIG

  • How to update additional data for a premise in ISU?

    Hi Experts,
    Does any1 have any ideas about how to update additional data (Such as number of premises, flat area) for a premise? I mean not use ISU_DB_EWA_VBS_UPDATE directly. I tried to use ISU_S_PREMISE_CHANGE to update the data, but I do not konw how to use the parameters, can any1 help?
    Thx in advance, points will be rewarded.
    Vincent.

    Hi Vincent,
    Here is an example coded by me. Hope this is useful to you. If so, please reward points.
    l_premise = '0000004454'.
    CALL FUNCTION 'ISU_S_PREMISE_PROVIDE'
      EXPORTING
        x_vstelle            = l_premise
        x_wmode              = '1'
      X_TEILOBJ            =
    IMPORTING
      Y_OBJ                =
       y_auto               = x_auto
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       general_fault        = 3
       not_authorized       = 4
       invalid_wmode        = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ENDIF.
    x_auto-evbsd-haus_num2 = '99999'.
    CALL FUNCTION 'ISU_S_PREMISE_CHANGE'
      EXPORTING
        x_vstelle            = l_premise
        x_upd_online         = 'X'
        x_no_dialog          = 'X'
        x_auto               = x_auto
      X_OBJ                =
      X_NO_OTHER           =
    IMPORTING
      Y_DB_UPDATE          =
      Y_EXIT_TYPE          =
      Y_NEW_EVBS           =
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       input_error          = 3
       general_fault        = 4
       not_authorized       = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Pranjal.

  • How to update additional data for Premise in ISU?

    Hi Experts,
    Does any1 have any ideas about  how to update additional data (Such as number of premises, flat area) for a premise? I mean not use ISU_DB_EWA_VBS_UPDATE directly. I tried to use ISU_S_PREMISE_CHANGE to update the data, but I do not konw how to use the parameters, can any1 help?
    Thx in advance, points will be rewarded.
    Vincent.

    Hi Vincent,
    Here is an example coded by me. Hope this is useful to you. If so, please reward points.
    l_premise = '0000004454'.
    CALL FUNCTION 'ISU_S_PREMISE_PROVIDE'
      EXPORTING
        x_vstelle            = l_premise
        x_wmode              = '1'
      X_TEILOBJ            =
    IMPORTING
      Y_OBJ                =
       y_auto               = x_auto
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       general_fault        = 3
       not_authorized       = 4
       invalid_wmode        = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ENDIF.
    x_auto-evbsd-haus_num2 = '99999'.
    CALL FUNCTION 'ISU_S_PREMISE_CHANGE'
      EXPORTING
        x_vstelle            = l_premise
        x_upd_online         = 'X'
        x_no_dialog          = 'X'
        x_auto               = x_auto
      X_OBJ                =
      X_NO_OTHER           =
    IMPORTING
      Y_DB_UPDATE          =
      Y_EXIT_TYPE          =
      Y_NEW_EVBS           =
    EXCEPTIONS
       not_found            = 1
       foreign_lock         = 2
       input_error          = 3
       general_fault        = 4
       not_authorized       = 5
       OTHERS               = 6.
    IF sy-subrc <> 0.
    ELSE.
      COMMIT WORK.
    ENDIF.
    Thanks,
    Pranjal.

  • E-Recruiting Additional Data For PA48

    Hello!  We have E-Recrutiing and HCM on the same instance.  When we execute the Data Transfer For New Hires activity we would like additional data to be included with the standard data that is stored in table T752F.  Can anyone explain how you do this when E-Recruting and HCM are on the same "box."
    Thanks for your help!

    Hi John,
                To Transfer additional data fields from E-Recruitment system to SAP HR system (Table T7528),  you need to customized the function module "*HR_PREPARE_NEW_EE*" which is being called  while creating data transfer activity. You can find this function module from Class CL_HRRCF_ACT_DATA_TRANS_RECORD.
    Regards,
    Madhu Sudan Bhoyar

  • How do I purchase additional data for my Jetpack 5510?

    This website was not built with the consumer in mind. It is extremely confusing, inconsistent and does not answer simple questions!! I just want to add data to my Wi-Fi Hotspot, I mean really it's not that complicated, I'm sure. Where do I find it PLEASE?!?!? It is prepaid, I've registered and purchased the initial minutes, but need to add more. I'm traveling and NEED TO REPLENISH ASAP. HELP!!!

    I’m aware of two ways:
    Option 1:  Go to any Verizon store and purchase a data plan.
    Option 2:  The $15 $60 $90 refill card from Wal-Mart
    Walmart No.: 550562111
    Model No.: VERIZONBB 17735
    (Best Buy and Radio Shack sell the device and may have the card)
    1) Purchase a data plan using the refill card at Wal-Mart
    2) Add the card to your account by calling the number on back
    3) Activate the card by calling back and speaking to an agent (this gets you online)
    4) Tell the agent to setup your online account and email your account password
    5) Go to Verizonwireless.com/account and complete the online account setup
    When your data plan runs out, “Verizon QuickAccess” comes up. Once your account setup is complete you can add refill cards and purchase and activate data plans through quickaccess.com without calling Verizon.

  • Update values of custom fields in table HRPAD506-Additional Data for PAD506

    Hi Experts,
    my requirement is write a report program to upload a file with records.
    I have to capture this records into an internal table and have to update values of 5 custom fields based on ADATANR.
    Can anyone suggest me about any FM or any way of doing this.
    Urgent requirement.
    Will HRIQ_RFC_BOOKING_CHANGE help.
    thankx.
    Duttad.

    hi,
    Above mentioned that when the values are entered in the customised fields they are not updating in the to the table mara.
    so, the program name and screen number which you are configuring in the spro, in that program name and in that screen number code it as below:
    (you could find the field statements in that screen for the standard fields like FIELD MARA-MEINS.)
    for example:
    PROCESS BEFORE OUTPUT.
           PROCESS AFTER INPUT.
          FIELD MARA-zzfieldname.
    Refer the oss note : 38229
    Thanks and regards.

  • Difference between Due Date for All Tasks and Duration per task in an approval workflow

    Hello,
    I'm starting to read up and learn about approval workflows in Designer 2010.  I am confused by the fields "Due Date for all Tasks" and the "Duration per task".  I understand that the Due date for all Tasks is the date that all
    of the tasks in the workflow must be completed by.  And I understand that the duration means each task has x number of days to complete.
    But I dont know whey we need them both.  If I have the task duration set to two days and there are 3 tasks involved, then wouldn't the due date be 6 days from the start?  Why would I have a due date for all tasks that is completely different than
    the sum of the duration of days for each task? 
    Please help shed some light!

    Hi Michelle,
    Due date for all tasks, this setting specifies the date by which all tasks are due. It’s used for serial and parallel
    task.
    Duration per tasks, this setting specifies the date by which an individual
     task is due, it’s used for serial workflow participants.
    Note, when you create an approval workflow, select task process participants(approvers oob approval workflow), we can also
    select once at a time(serial) or all at once(parallel).
    For more information, see
    http://office.microsoft.com/en-us/sharepoint-server-help/use-an-approval-workflow-HA101793831.aspx
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • HRP1001 - Additional data

    Hi,
    I would like to programatically create a 1001 relationship record using RH_INSERT_INFTY. But I couldnt find a way to also update the 1001 Additional data for object types like Room(PAD22), Qualification (PAD31) etc.
    For the rest of the Infotypes I am able to see a structure p<nnnn>_exp available which can be used.
    Any help.
    Thanks.

    Solution:
    Move your data to a structure of the additional data (e.g. PAD23, PADxx, etc).
    Then use method cl_hr_adata_type_cast=>padnn_to_adata to cast your PADxx structure to the ADATA field of INNNN structure.
    Calling RH_INSERT_INFTY with the INNNN-ADATA filled will create the additional data and it's links.
    To moderator: I know this is an old thread. I am updating my solution for other users who may be asking the same question. I too was searching for this.

  • Info type 1001 Additional Data and Maintenance Using PPOME

    Hi All,
    I have gone through the steps of creating additional data for a new relationship that I have created in Organizational Management.  Everything works fine when maintaining this relationship using transaction PO13 - Position maintenance.
    Transaction PO13 - 1. Create relationship. 2. Additional data screen comes up. 3. Additional data is saved.
    Transaction PPOME - 1. Assign relationship. 2. No Additional data scree.
    I have debugged the code and PPOME calls module pool MP100100 the same way at PO13 and infact the system actually goes through the code to call my additional data screen, but the screen is not present in PPOME even though the system calls it.  
    Has anyone ran into this issue?  Is there a solution?  Or does PPOME not support the maintenance of relationship additional data?
    thanks.
    JB

    check this view T77OMTABUS.
    In the attribute scenerio select the OME0  and then double click on tab page of scenerio of each object type....
    against the object S there are several tab page defined. i think you need to create the  entry for the additional data also.
    hope this would work..
    Thanks,
    Amar

  • Performance Appraisal : BADIs - Header - Additional data

    Dear All,
    I just want to add a few fields to the "additional data for employee" part in the header of my appraisal template.
    It seems this table is generated by the standard Badi's HRHAP00_ADD_HEADER.
    How can I enhance this badi to add the field I need ?
    Is it possible ?
    Thanks a lot for your help,
    John.

    Hi John,
    Steps for Enhancements.
    1. Got0 the Tcode SE18 and select your Badi definition "HRHAP00_ADD_HEADER" and click on display.
    2. Got the menu Filter value and select create.
    3. You will be prompted for a new filter value and description.
    4. Provide a 2 char filter value (Start with Y or Z) and a suitable description.
    5. Once you do it, it will ask for a corresponding class creation. Accept for that also.
    6. Now your implementatio is created.
    7. Activate it.
    8. To get the default implementation code, folloew the step 1 again and select display filter value option.
    9. Now goto the Interface tab and select method "GET_ADD_HEADER_DATA" by double clicking.
    10. Paste the code in your Z implementation that you have created.
    11. Ask your ABAPer to code for the Position logic as done for other fields.
    Hope this helps you.
    Regards,
    Subbu

  • Get Additional Data with BAPI_DOCUMENT_GETDETAIL2

    Hello,
    I´m using BAPIs with VBA (MS Office). I´m able to get Detail Data for a document with the Function Module BAPI_DOCUMENT_GETDETAIL2. But trying to get Additional Data for a document with this BAPI doesn´t work because the required (?) table CHARACTERISTICVALUES is not active.
    Is there any chance to get the Additional Data for a document with using VBA? Thanks for help!
    Best regards
    Robert

    Karlo,
          Inorder to find answers to your questions I reccommend that you do the following.
    1. Go to transaction SE 37 ( If you do not have authorization obtain one, normally an ABAP auth).
    2. Type the name of the FM as BAPI_DOCUMENT_CREATE
    3. Press F8
    4. Goto --> Documentation
    5. SAP has given a sample program, there.
    6. You  can copy the code, create a test ABAP program and test with different values for the class and characterestics and try to post the document.
    7. Also in the documentation, you will find an explanation from SAP on the use of the BAPI.
    If you have further questions, let me know,
    Sojan

  • Maintaining Text data for IT0102 in Ad Hoc Query

    We use the "Maintain Text" function to store comments and additional data for Grievance information on IT0102.  I need these comments to be included in a query for IT0102, however I only see the indicator for if text exists...there's no "field" to select to show the actual text - mainly because it's a note and not a field.
    Any suggestions???

    Hi,
    you could make a custom field in your infoset for infotyp 0012. Then you could append code to this field and read the text with function module
    HR_ECM_READ_TEXT_INFOTYPE into this field. 
    Regards Bernd

Maybe you are looking for

  • How can I add a sequence in one project to a sequence in another project?

    I have finished editing a project called "HF Field Day 2011" but want to add another finished sequence from another project called "Quick pitch tent" at the end of the video in the former project. I then want to render the combination out to a final

  • How Can Improve On Slow Update Query Using /*+ NO_XML_DML_REWRITE */?

    We have an update query recently brought to my attention that is running extremely slow on Oracle 11.2.0.1 against a secure file binary XML table using update /*+ NO_XML_DML_REWRITE */croutreach.action set object_value = :1 where actn_id = :2 . I am

  • Driver for Printer HP LazerJet 6L (Apr., 1998) Please help!

    Please help! I have a notebook (2012, with Windows 7) and an old (but good) printer HP LazerJet 6L (Apr., 1998). I want this printer with my notebook. Disk with driver was lost during re-moving. At the HP site I foung 4 drivers: HP LaserJet 6L Gold P

  • Cisco ISE and Catalyst 2950

    Hello! Please, could you help me? Is it possible to install ISE on Catalyst 2950? In Component Compatibility Guide http://www.cisco.com/en/US/docs/security/ise/1.0.4/compatibility/ise104_sdt.html Catalyst 2950 only support 802.1X and VLAN. At first I

  • Can i download ibooks author on laptop

    Can i download ibooks author on laptop. I have both a laptop (osx 10.6.7) and an iPad and can't seem to download iBooks Author to either.