TRM Correspondence Type Definition (config) and Automatic Creation

I am on ECC 6.0 EHP4, and attempting to follow configuration instructions provided by SAP related to defining and setting up correspondence types to ensure automatic generation. I'm trying to find the setting described in the below statement:
"4. You also specify here whether correspondence should be generated automatically for each correspondence activity. Automatically means that the planned record for correspondence is immediately carried out when you save the correspondence-relevant activity.  If you do not set this indicator, when you save the correspondence-relevant activity, the planned record for correspondence is saved. Correspondence is then generated via the report entitled 'Outgoing correspondence'."
The above statement is from this link:
[http://help.sap.com/erp2005_ehp_04/helpdata/EN/d2/6f73c5415e11d182b10000e829fbfe/frameset.htm]
Does anyone know if the setting for automatic generation of correspondence is added from application of an OSS note or through programming a badi? I haven't been able to find the setting for automatic generation of correspondence.
Brian

Hello,
In the Implementation Guide for the Transaction Manager by choosing Money Market/Foreign Exchange/Securities/Listed Derivatives/OTC Derivatives  -> Transaction Management  -> Correspondence  -> Define Correspondence Activities,
you will see an indicator AutoCorr (AUTOMATIC):
Indicator: Automatic Correspondence Required?
The indicator shows that correspondence is to be produced automatically. Automatic correspondence is carried out when you save the transaction (i.e. the planned record created is immediately executed).
If you need automatic generation, please set it as ON.
Best regards,
Jasmine

Similar Messages

  • Creation of C project from xRPM item and automatic creation of proj in PS

    Hi all,
    My requirement is to create a cproject from xRPM, once the status of the item is "Approved" and a BAdI is there(RPM_PROJ_CUST_WF) which will trigger, when the status is changed to "Approved".
    My problem is how to create a cproject from xRPM item, any FM or BAPI available? If cproject is created, then automatically a project needs to be created in PS (ECC).
    Also how to create a project in PS from cproject, any config? Please help in this regard. How I can proceed?. I need to make any config. for acheiving the same?
    Regards,
    V Kumar
    Edited by: V Kumar on Sep 18, 2009 3:06 PM
    Edited by: V Kumar on Sep 18, 2009 3:09 PM

    Hi,
    I don't know how to create PS upon approval of item but I have done auto creation of cProject upon approval of item. Use FM
    DFM_DO_CREATE_PROCESSING.
    Here is sample code for this. In this code you have to create a cProject from a template.
    FUNCTION Z_RPM_ITEM_CPROJECT_LINK2.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_ITEM_GUID) TYPE  /RPM/TV_GUID OPTIONAL
    *"     VALUE(I_BUCKET_ID) TYPE  /RPM/TV_BUCKET_ID OPTIONAL
    *"  EXPORTING
    *"     VALUE(EV_RC) TYPE  I
    Data declaration
    Data:
          lt_rpm_messages        TYPE /rpm/tt_messages,
          ls_source_context      TYPE inm_object_context,
          ls_operation_context   TYPE inm_operation_context,
          IT_TARGET_TEMPLATES TYPE  INM_TT_GROUP_TEMPLATE_ASSOC,
          ls_target_templates TYPE INM_TS_GROUP_TEMPLATE_ASSOC,
          lt_triggering_objects  TYPE inm_tt_object_context,
          ls_triggering_object   TYPE inm_object_context,
          lt_params              TYPE inm_of_tt_field_names_values,
          ls_params              TYPE inm_of_ts_field_name_value,
          lv_object_id           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_templateId           TYPE  INM_OF_TV_OBJECT_KEY,
          lv_parent_guid        TYPE  /RPM/TV_GUID,
          lv_portfolio_guid      TYPE  /RPM/TV_GUID,
          lv_parent_guid1        TYPE  INM_OF_TV_FIELD_VALUE,
          lv_portfolio_guid1      TYPE  INM_OF_TV_FIELD_VALUE,
          ET_Messages    TYPE INM_OF_TT_MESSAGES,
          ls_ilink_db      TYPE /rpm/item_il.
    Data:  lv_cproject_template  TYPE  ZTEMPLATE1-CPROJECT_TEMP,
           lv_cproject_template2  TYPE  DPR_TV_PROJECT_ID,
           lv_temp_guid  TYPE  DPR_TV_ENTITY_GUID,
           lv_log_sys  TYPE  string.
    lv_object_id = I_ITEM_GUID.
    Get the cproject template guid
    select single CPROJECT_TEMP into lv_cproject_template
    from ZTEMPLATE1
    where EXTERNAL_ID = I_BUCKET_ID.
    lv_cproject_template2 = lv_cproject_template.
    select single GUID into lv_temp_guid
    from DPR_PROJECT
    where  PROJECT_ID = lv_cproject_template2.
    lv_templateId = lv_temp_guid.
    Get Parent & Portfolio guid
    Select single PORTFOLIO_GUID PARENT_GUID into
    (lv_portfolio_guid, lv_parent_guid)
    from /rpm/item_d
    where guid = i_item_guid.
    lv_portfolio_guid1 = lv_portfolio_guid.
    lv_parent_guid1 = lv_parent_guid.
    Get logistic system
    concatenate SY-SYSID 'CLNT' SY-MANDT into lv_log_sys.
    condense lv_log_sys.
    Assigning more data
    ls_source_context-OBJECT_ID = lv_object_id.
    *ls_source_context-LOGSYS = 'DY1CLNT200'.
    ls_source_context-LOGSYS = lv_log_sys.
    ls_source_context-GROUPING = 'PPO'.
    ls_source_context-OBJECT_LINK_TYPE = '0INMITEM'.
    ls_source_context-CREATE_TEMPLATE_TYPE = '1'.
    ls_source_context-TEMPLATE_ID = lv_templateId.
    ls_source_context-TARGET_OBJECT_GROUPING = 'PDCP'.
    ls_operation_context-OPERATION = 'C'.
    ls_target_templates-GROUPING = 'PDCP'.
    *ls_target_templates-LOGSYS = 'DY1CLNT200'.
    ls_target_templates-LOGSYS = lv_log_sys.
    ls_target_templates-TEMPLATE_ID = lv_templateId.
    ls_target_templates-TYPE = '1'.
    append ls_target_templates to IT_TARGET_TEMPLATES.
    ls_params-EXT_FIELD_NAME = 'PARENT_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_parent_guid1.
    append ls_params to lt_params.
    ls_params-EXT_FIELD_NAME = 'PORTFOLIO_GUID'.
    ls_params-EXT_FIELD_VALUE = lv_portfolio_guid1.
    append ls_params to lt_params.
    Calling FM to create cproject & linking to item
    CALL FUNCTION 'DFM_DO_CREATE_PROCESSING'
      EXPORTING
        IS_SOURCE_OBJECT_CONTEXT = ls_source_context
        IS_OPERATION_CONTEXT     = ls_operation_context
        IT_TARGET_TEMPLATES      = it_target_templates
        IT_PARAMS                = lt_params
        IT_TRIGGERING_OBJECTS    = lt_triggering_objects
      IMPORTING
        ET_MESSAGES              = ET_Messages
        EV_RC                    = EV_RC.
    commit changes
    ENDFUNCTION.
    Please let me know if you find a way to create PS from xRPM or cProject.
    Regards
    Mohinder

  • Master data in R/3  and automatic creation of CVC ?

    Hi All,
    we have requirement that all the master data created in R/3 should come to APO.Now some of the master data are optionals in R/3 so we need to develop a custom program so that if any master data is missing in APO then Master Data Controller should get email.
    Is this possible ? Youe help is highly appreciated.
    Thanks,
    Prabhat

    Hi Prabhat,
    You can use a User exit on the APO end. Some of very useful exits that could be used are
    1. ZXCIFUSERU14
    2. ZXCIFUSERU05
    3  ZXATPQUSERU02
    4. ZXATPQUSERU06
    5. ZXATPQUSERU12
    These are the main CIF exits through which data from R/3 flows into APO. You can look inside the data in these exits.
    And if the data is not found then you can shoot that mail you were referring to.
    Pls. award points if useful .
    Regards
    Abhishek

  • TRM Correspondence Definition

    Hi Experts:
    I have customized the correspondence so that any time a transaction is settle it prints a documents or send an email. In this case the documents has payments details and the structure of the transaction.
    But if the transaction has a decrease in the amount due to a previous payment of the principal and or the interest or a new other flow, how do I get the correspondence of those specific flows (i.e in money market a 1110 Decrease 1200 payed untill due date or a 5001 other flow axes)
    thanks in advance
    Regards
    Claudio

    Hi,
    I guess you are using the old correspondence feature and not the correspondence framework which is available from EH3 onwards.  Anyway for your case, you can define a new correspondence type for printing and assign that for a new activity for your product type. 
    You can specify the last function as change and the activity category as contract or settlement as per your requirement. You can check the form F_TR_CONFIRM_ALL or F_TR_DEALER_ALL which is a dealing slip.  These forms would contain the flows.  But in case if this is not suffecient, you can develop a new form and assign it for this activity.
    Regards,
    Ravi

  • Functional module for automatic creation of pur requisition & pur order

    hello,
    what is the functional module for automatic creation of puchase requisition and automatic creation of purchase order which we will assign in action box in service order processing management.
    please let me know as early as possible
    regards,
    rajesh kumar raju

    Hi,
             Please check with following.
    IDOC_INPUT_ACC_PURCHASE_REQUI
    IDOC_INPUT_ACC_PURCHASE_ORDER
    /ISDFPS/OR_PURCHASE_ORDER_CR
    BS01_PURCHASE_DOCUMENT_CREATE
    CO_MP_CREATE_PURCHASE_ORDER
    Thanks & Regards
    Sadhu Kishore

  • Stop Automatic creation and confirmation of Transafer Order for a doc type

    Hello All,
    There is a requirement that I need to stop Automatic creation and confirmation of Transafer Order for a particular document type.
    The issue is that sometimes the cycle goes upto creation of Invoice automatically but sometimes this does not happen. More over the user wants that the transafer order needs to be confirmed manually.
    Can u please provide the .steps involved for thie case.
    Thanks
    Chandrashekhar

    Dear Steve,
    Thanks a lot for giving reply with what I need to do, but I am unable to see result.
    I have down configuration like below even though system not processing Auto TO creation. Can you explain me if I have down any mistake below.
    Click on ‘Assign’ button,
    Press on ‘New entries’
    WhN = ‘900’
    Reference Movement Type = ‘101’
    Movement indicator = ‘B’
    Movement type for Whse Mgmt = ‘101’
    TR create Transfer Requirement = ‘X’
    Immed.TO Creation
    Mail confirmation for background processing = ‘01’.
    GR date = ‘2’

  • Automatic PGI and Invoice creation

    Hi Friends,
                   I had a requirement in SD area where once we create sales order, the PGI and Invoice process should run in the background ( Automation Process).  The scenario here is --  when we create sales order, the delivery document also gets generated.
    My approach --  for PGI and Invoice process, I need to develop the BAPIs. ( for Post Goods Issue and Invoice creation).
    After the creation of BAPIs, I need to call these bapis in the standard sales order creation process.
    Searched the forum on this issue. But cant find the appropriate answers.
    Please suggest me the solution for this issue.
    Murali Krishna. T

    You don't call anything else from the standard sales order process.  Sales order creation stands alone; every other process is a subsequent process.  Automatic delivery creation can be implemented by sales document type config, which it sounds like you already have in place, or you're using the delivery due list.  You also don't need another program for billing doc creation; use the billing due list program scheduled at certain intervals.
    The limitation on billing is the PGI if your copy control specifies that you can't bill until PGI occurs.  I don't understand why you would do this automatically, without confirmation that the shipment has left your warehouse.  If your items aren't really relevant for PGI, then you can configure them that way so that it's not required.  However, auto-picking and auto-packing are done via delivery output determination code using the functions WS_DELIVERY_UPDATE_*.  You might also try to PGI the delivery there as well with WS_DELIVERY_UPDATE.  Otherwise, just use table drop and trigger the WS_DELIVERY_UPDATE function for the PGI from a custom program; you can then run billing due as a second step in the job.

  • Automatic Creation and Confirmation of Warehouse Task in EWM 5.1

    Hello,
    We want an automatic creation and confirmation of the warehouse task in EWM 5.1 on the based of a delivery type and warehouse number.
    The scenario goes in this way... As soon as the inbound delivery is created/replicated in EWM, the creation and confimartion of warehouse request, warehouse task and warehouse order (all the transactions) should be called automatically. And the goods receipt should be posted.
    Can someone throw more light on the customizing/BADI/enhancements etc required??
    Thanks and Regards..

    Hi koen,
    I tried with the FM that you suggested...
    But somehow with the process type 'stock removal' gives an error...
    Is that that this FM will help to create a pick task for a particular outbound delivery--Tcode:/SCWM/TODLV_TO.
    how will this FM take the outbound delivery as an input?or it will be on the corresponding sales order number and item number as input?
    Being new EWM i require help on this..about how to go about creating the pick task for an outbound delivery which wil be equal to the warehouse request.
    Thanks in advance,
    Rashmi.

  • Automatic creation of Transfer order for Picking and putaway

    Hello All .
    I would appreciate if someone can explain the process of configuring Automatic creation of Transfer order for Picking ( outbound delivery)and putaway( inbound delivery)  .
    thanks
    Rahul

    Hi
    To have transfer orders created automatically in the background, you must first set the indicator Automatic transfer order creation for each respective movement type in the Customizing application for Warehouse Management under the path <b>Activities - Transfers - Define Movement Types</b>. The system automatically copies this indicator into the header item of the source document.
    For more information on how to set up automatic transfer order creation for transfer requirements and posting change notices, refer to the IMG for Warehouse Management under the path <b>Activities - Transfers- Set up Autom</b>. TO Creation for TR/Posting Change Notices.
    You can find more details on this link
    http://help.sap.com/saphelp_47x200/helpdata/en/c6/f85c504afa11d182b90000e829fbfe/frameset.htm
    Thanks & Regards
    Kishore

  • Automatic creation of delivery ,pgi and billing as soon as ordrer  is creat

    Hai gurus,
                Can we do automatic creation of delivery,pgi and billing as soon as order is saved.
    Plz explain ?
    Thanks in Advance
    sameer

    Hi sameer,
    unless the standard program is modified you cannot do auto pgi. However batch jobs can help creating a delivery afer sales order. But incase WM is implemented then we can for the required delivery movment types create an automatic transfer order and confirmation. This brings us closer to some extent in the task. Then schedule again a job that does PGI.
    can you please however explain the business need for auto pgi. It helps us to learn something as well.
    regards
    sadhu kishore

  • Type definition and reference

    Hello,
    when I look at the "Usage" column in the Types view, am I right to assume that the first location given for a type is where the type is defined, all others where it is referenced?
    Example:
    Name                 Type                           Version    Usage
    OMS_StdQueueInput    Container, Type Definition     0.0.0.4    OMS_Types.ini; OMS_LocalTypes.ini; OMSStart.seq    No comment
    So here I would assume, that the type OMS_StdQueueInput is defined in OMS_Types.ini and used/referenced in OMS_LocalTypes.ini and OMSStart.seq. Is that correct?
    Regards,
    Peter
    Solved!
    Go to Solution.

    By INI file do you mean a TestStand Type Palette File?
    A new feature was added to TestStand (in 4.1 I think so you should have it) that allows you to control when automatic conflict resolution (choosing the highest version of  a type silently) occurs. The setting is located on the File tab of the Station Options dialog and is called "Allow Automatic Type Conflict Resolution". In general, I recommend changing it to the slightly more restrictive setting of "Only If a Type Palette File has the Higher Version" because this will get rid of the possibility of automatic conflict resolution when opening two sequence files with different versions of a type when the type does not exist in a type palette file. But if your type will always be in a type palette file then the default setting is fine.
    First, some background information.
    Automatic Type Conflict Resolution - This occurs when a file is opened whose type is different from the version already loaded into memory, and the criteria for automatic resolution is met (i.e. the station option setting allows it, neither verison of the type is marked as modified, and the different versions of the type have different version numbers). When automatic resolution occurs TestStand automatically chooses the version of the type with the highest version number.
    Let me know if you want me to explain other terms.
    What I'd recommend for type management:
    1) Create a type palette file for your standard types. Make sure all deployed and development systems are using/loading this type palette file. If you need more details on how to do this please let us know.
    2) Control updates to these types using a source code control system to control updating of the type palette file(s). Ideally, only one person should be editing a type palette file at a time. Source code control systems can be used to enforce this.
    3) Let your developers know that they should only edit types in the type palette files and not in individual sequence files.
    4) Try to make all changes to your types and substep code backwards compatible so that old sequences will continue to work with newer versions of the types. If you have to break backwards compatibility, consider creating a new type instead and use the new type from now on, but leave the old type there for backwards compatibility (you can use flags to hide the old version of the types from the insert menu if needed).
    If you use a type palette file in this way I think you will get something close to what you are asking for. With the default setting for "Allow Automatic Type Conflict Resolution", if all of your TestStand systems are loading your standard type palette files then you will either get the version in the type palette file or your will get a type conflict dialog if the version in the sequence file is newer. There will be no possibility of silently using a version other than the one in the type palette file. Is this sufficient for your needs or are you looking for something different. If you are looking for something different please let us know the specific behavior you require.
    Hope this helps,
    -Doug

  • Creation of new Print Program & Variant for new Correspondence Type created

    Dear Friends,
    I have created 2 new Correspondence Types in SAP as SAP61 (Vendor Debit Note) & SAP62 (Vendor Credit Note) by copying SAP09 (Internal Document) properties like itu2019s Name of the print program - RFKORD30 & Name of variant - SAP09.
    We are facing problem when we execute print program in F.64 for SAP09 it is coming same like SAP61 or SAP62. Actual script & print values of SAP09 are replaced by SAP61 or SAP62.
    Please suggest us how we can differentiate both SAP09 & SAP61/62. Because we use these correspondences for different purposes like SAP09 gives the information for the Line items in the Document whereas SAP61/62 gives the information of vendor line item weather it is debit or credit entry.
    Your kind co-operation in this matter is highly appreciated.
    Thanks & Regards,
    Naveen Kumar.P

    "Assigned the from to the company code - progam in V_001F_B"
    Check 'Form ID' field in this IMG transaction against the program and form that you have created.
    I am assuming there are 2 lines with same entries but different form IDs.
    Or there are 2 lines with the same entries but different CoCodes (seem to remember that the CoCode is not taken into account as a key in certain programs - not logical i know but remembered a previous issue I had many moons ago - could be to do with the blank entry for CoCode field if there is one being picked up by the program before the entry that has your CoCode).
    Now check the variant attached and Form ID in step 'Created new program variants in SA38'
    Ensure the correct program and variant are attached in step OB78.
    My assumption is Form ID is the key.
    Hope this helps

  • How can I automatically connect to the server without having to type the password and click "connect"?

    I have a Mac OS X 10.8 and a Time Capsule configurated as server with a name "Servidor" on my home. The discs are protected by Accounts, so, each person can access the server by typing own name and password. The problem is... Every time I start the computer, I see the window below:
    So, every time I start I have to type my name and pass. And the box "Remember this password on my keychain" doesn't work because the "Password" is always blank when I see the window, like the image up.
    Please, someone help me to automatize it so I don't need to type nothing to connect to the server. I want something that do it automatically for me.
    NOTE: Please, explain clear and with details because I'm a new Mac's user.
    Thank so +!

    Try running KeyChain First Aid if you have not already done so.
    Open Keychain Access and click on the KeyChain Access menu at upper left of the screen
    Click KeyChain First Aid, then close KeyChain Access
    Open System Preferences (gear icon on the dock)
    Open Network
    Click on AirPort or WiFi on the left
    Click Advanced at the lower right
    Click to highlight an old network that you no longer need, then click the - (minus) button to delete the listing
    Do the same for other neworks that you no longer need
    Make sure there is a check mark in the box that reads  "Remember networks this computer has joined"
    No other boxes should be checked.
    Click OK, then click Apply
    That is about all that you can do.

  • How to create automatic creation of BP from customer and vendor master data

    Hi gurus,
    can any one tell how to create automatic creation of BP from customer and vendor master data.
    Please give me the steps.
    Thanks
    Sasikanth.

    HI,
    Goto SPRO\ Cross application components \ Master data synchronization \ Synchronization control.
    Assign account groups of customer and vendors to respective BP grouping. This setting is enough to create BP in background while creating customer / vendor. But the fields groups are very much important, ensure mandatory fields should be sync.
    rgds,
    Srini

  • BAdi - Automatic Creation of Transaction Type (Activities/Tasks)

    Dear Experts,
    we have a customer requirement to create automatically Activities/Tasks if a certain date is reached. The user just want to receive a alarm/note when there is a created acitivitie.
    Which BAdi we casn use for the automatic creation of activities? Which options we have to do that?
    Relevant tables are CRMD_ORDERADM_H and CRMD_ACTIVITY_H as I know.
    Note: We can no use the visit plan.
    Best Regards
    Oliver Schultze

    Hi Oliver,
    CRM_ORDER_MAINTAIN and CRM_ORDER_SAVE are the function modules to create and save a business transaction. As you have the requirement to create Activities, Arden has suggested these function modules(transaction SE37). Based on your business scenario, you can use these FMs in BADI implementations to achieve the functionality.
    Thanks,
    Priyanka

Maybe you are looking for

  • How to use CL_PROXY_BASIS instead of CL_PROXY_CLIENT your ABAP Proxy class?

    Hello experts, I have a scenario where a new basis release was done in my development and testing SAP boxes (Basis Release 710 I believe) which means from then on when generating an ABAP Proxy class the inheriting class will be used is CL_PROXY_CLIEN

  • Illustrator CC Quits Unexpectedly When Moving Paths

    It works fine until I try to move a path, any path, that I've drawn with the pen tool.  It happens on any file I work in  When I do, it quits and gives me the message below.  I haven't a clue how to interpret any of that.  Suggestions, please? Proces

  • PDF documents open as a blank page.

    I have downloaded Adobe Acrobat X onto my new computer running Windows 7 but cannot open documents like pdf online credit card statements online.  All I get is a blank page.  Also, I cannot download a pdf from an email as a pdf.  The option I get to

  • XI Monitpting RFC's

    Hi... Please ...how i can to monitoting the rfc's sending to XI??? Which screen i can monitoring the rfc send to XI ?? ..in XI ???? I have a problem in send a RFC ...the people who send the rfc to me said the destination is ok !!! But i not receive t

  • How to delete locked files on flash memory stick

    Several files on my memory stick have somehow become locked and cannot be deleted. When I unlock them in their Info window and then close the window, they revert to locked status. How can I delete these files? iBook   Mac OS X (10.3.9)