To trigger  congen_obj_wrt   when any changes  are done in Capgen_obj_wrt

Hi ,
  I would like to know if there is any mechanism to trigger an congen_obj_wrt when changes are made to the organization(capgen) even for change in fields like name1 or address .
There is "is contact person of " relationship maintained for the cp(congen ) and the organization (cap ) .
I would like to trigger a congen_obj_wrt as soon as any changes are made to capgen_obj_wrt if the relationship exists .

Hi,
try the user exit EXIT_SAPLV56U_004.
use the following tables parameters of this function module to determine whether the values are changed:
I_XVTTK - Shipment Headers (Current)
I_YVTTK - Shipment Headers (Old)
I_XVTTS - Shipment Stages (Current)
I_YVTTS - Shipment Stages (Old)
if any change is made to any of the fields, you can trigger the standard output type by using the function module WFMC_MESSAGE_SINGLE. you will have to pass a structure of type NAST with the required vlaues.
try this...
cheers
jubin

Similar Messages

  • Some output types are adding in messages when the changes are done

    Hi Friends,
    In PO, some output types(which are already there in display mode in messages) are adding in EDIT mode in messages when I change any thing in Purchase order(ME22N). Some outputs are not adding.
    Example, i have created two output types (AAA and BBB) successfully in ME22n. Now i am changing some thing in PO and going to MESSAGES. Now I am seeing one extra output type AAA is added in MESSAGES with EDIT mode,  But i am seeing output type BBB is in display mode and also not added extra.
    Could you please tell me, what is the reason for this?
    Thanks
    Kumar

    Hi Kumar,
    Looks like your Question is not pertaining to SAP-MDM.
    This forum is for SAP Master data management queries .
    Kindly post your question in the right forum to get quick replies.
    Hope It Helped
    Thanks & Regards
    Simona

  • What exact changes are done in MGCP after NAT

    Hi All,
    I am not able to understand the changes in the MGCP packet after NAT. The screenshot is of working and non working case. Office is working fine with port change after NAT. But at home the NAT does not change the src port. It RSIP packet from the phone to the MG.
    What exact changes are done to a MGCP packet after NAT.
    Any help will highly be appreciated.
    Regards,
    Ravi

    NAT should not be used with VoIP.
    However, you may have better luck with H.323, or SIP, under NAT.

  • Automatic Trigering of MAIL when any changes to Discussion Room is done.

    Hi All,
    I have created 5 discussion room and assigned acess to  limited number of people.
    Now i want that when ever any changes is made that is when ever any thread is posted in the discussion room there should be automatic mail triggering should take place to all the members who are assigned acess.
    please help me and suggest any idea through which i can achive it
    its very Urgent points will be alloted for any help.
    Thanks in advance.
    Vinit

    Archiving messages is an option for Gmail accounts - I don't think that it's available for other accounts. You should be able to switch it to a trashcan icon for deletion by selecting the account in Settings > Mail, Contacts, Calendars and switching Archiving 'off'  : http://support.apple.com/kb/HT4207 (more on archiving here http://mail.google.com/support/bin/answer.py?answer=6576).
    In terms of blank emails, try closing the Mail completely and then re-open it : from the home screen (i.e. not with Mail 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • POI Information Updates when Costing Changes are not Saved

    Hi All,
    When you go to the costing screen of a party in Oracle HRMS, make changes to the costing string (Cost Allocation Flexfield) and not save them. Then, exit from the costing form and go to the Purchase Order Information (POI) screen and press Ctrl+F11, the POI information updates to the new changes. It was my understanding that in order for the purchase order info to be updated you need to make changes or "touch" the costing screen and save. I have noticed that the purchase order changes after being in the costing screen even without saving anything. Was this intend?
    Thanks,
    Naveen Gagadam

    The Changes on the Assignment reflect because of the changes on the Costing Screen. This is due to the custom.pll implementation. Is there an event name that I can use for the Assignment form such that the changes on the Assignment screen show up only after the changes are SAVED on the Costing Screen. Here's the code that we are using in the Procedure: Event of the custom.pll
    ====================================================================================
    If Event_name = 'WHEN-VALIDATE-RECORD' then
    --     1. Costing checks at Assignment (PERWSEAC). This code copies first 4 segments of costing string
    --               to Default Expense Account on the Assignment screen.The Code will perform this function for
    -- the first Costing record but no other record.
    if name_in('system.current_form') in ('PERWSEAC') then
         Step_identity := 'Costing to Expense Account Population';
                   if name_in ('system.cursor_block') = 'COST' then
    -- Check if current record is the first record in the block
    -- prior to 4/6/05 this code only ran if first costing record. now runs for all and passes
    -- whether first record to package. B Wagner                    
    if name_in('system.cursor_record') = '1' then
              lvc2_first_rec := 'Y';
    else
         lvc2_first_rec := 'N';
    end if;
                        if name_in('COST.SEGMENT1') is not null
                   and name_in('COST.SEGMENT8') is not null
                   and name_in('COST.SEGMENT2') is not null
                   and name_in('COST.SEGMENT3') is not null then
                             lvc2_company_nm     := name_in('COST.SEGMENT1');
                             lvc2_LOB := name_in('COST.SEGMENT8');
                             lvc2_location := name_in('COST.SEGMENT2');
                             lvc2_dept := name_in('COST.SEGMENT3');
                             FND_PROFILE.get('USER_ID',ln_user_id );
         -- It has been assumed that the seperator for the flexfield segments is a period ('.') .
         -- If the seperator is changed then the following line of code has to be modified.
         -- If the number of segments in the flexfield definition is changed then the number of
         -- separators has also to be modified.
    ln_assignment_id := name_in('COST.ASSIGNMENT_ID');
    ld_session_dt := name_in('CTL_GLOBALS.SESSION_DATE');
    smc_customlib.set_exp_act(
                                                                     ln_retcode,
                                                                     lvc2_errbuf,
                                                                     ln_user_id,
                                                                     ln_assignment_id,
                                                                     ld_session_dt,
                                                                     lvc2_company_nm,
                                                                     lvc2_LOB,
                                                                     lvc2_location,
                                                                     lvc2_dept,
                                                                lvc2_first_rec
    if ln_retcode = -1 then
         -- b wagner 4/6/05 - raise trigger failure so bad combinations can't be entered into costing screen
         fnd_message.set_string(lvc2_errbuf);
         fnd_message.error;
         raise form_trigger_failure;
    end if;
                        end if; -- If costing string is complete
                   end if;   If First Record of COST Block
                   end if; -- If Block is COST
         end if;     -- For Assignment form.
    ================================================================================================================
    Its the custom package that actually populates the changes in Costing Screen onto the Assignment Screen, but I want to activate this only when I save the changes on the Costing Screen. Right now the changes are seen on Assignment Screen when I hit CTRL=F11 even when I don's save the Costing Screen changes.
    Thank You,
    Ngagadam.
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam
    Message was edited by:
    Naveen Gagadam

  • The Change time of the file is getting modified when no changes are made to the file content

    While doing save operation of a MS-WORD file, (in my example "1M.doc" ) with client (Windows 8) and server(either Win 2008 R2 or Win2012 R2). Observing the following scenario.
     After Renames are done(eg, xx.tmp renamed to 1M.doc) , all the file handles are being closed one by one.
    When the xx.tmp file is closed, immediately followed by Create of 1M.doc, the LastWrite time values between Close and Create are same but LastChanged time values are different. The LastChanged and LastWrite times are noted from
    the Close Response and Create Response packets.
    No modification is done on the file between this last close and next create. So, why LastChanged time values are different for the file? We are observing this almost everytime with Win8- Win2k8R2/Win2012R2, but not observed
    till now with Win8-Win2012.

    Hi,
    Is only word files have the issue? You could refer to the articles below to troubleshoot the issue:
    The "Modified time" file attribute of a registry hive file is updated when an application loads and then unloads the registry hive file without making any changes on a computer that is running Windows Server 2008 R2 or Windows 7
    http://support.microsoft.com/kb/983544
    File “Date modified” property are not updating while modifying a file without closing it.
    http://blogs.technet.com/b/asiasupp/archive/2010/12/14/file-date-modified-property-are-not-updating-while-modifying-a-file-without-closing-it.aspx
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Why Module level trigger contains "WHEN-CHECKBOX-CHANGED" trigger in Forms 6i?

    Hi,
    Why Module level trigger contains triggers like "WHEN-CHECKBOX-CHANGED", "WHEN-BUTTON-PRESSED" etc.? "WHEN-CHECKBOX-CHANGED" trigger is present in CheckBox & "WHEN-BUTTON-PRESSED" trigger in Button. Then why these triggers are also presnt in Module?
    Can anyone please clarify my doubt?

    There's a lot of triggers that are present at different "scopes". Like they exist at the item level, the block level,
    the module level...
    The idea is if you have an action that should only occur at that one single item it can do in the item trigger. If
    it's for all of them on the block, in the block level trigger. If for all of them ever, at the module level.
    For example suppose you wanted it to do a next_item after the trigger executed you can put that logic in the module
    level trigger. A key thing to notice here is the trigger hierarchy. That is essential to know about.
    Right click on one of these triggers in the object navigator. The execution hierarchy is override, before and after.
    since each of these levels of the same trigger has this execution hierarchy this is, well, potentially not easy to
    understand what is going to happen. I would typically have a per-item trigger be before and a higher level trigger
    be after.
    And this execution hierarchy thing is something I'd love to see enhanced in the gui. I wish it was a lot easier to see
    what the execution hierarchy is when editing a trigger text. I wish one could see and modify the execution hierarchy on the
    same screen as the trigger text and what would be really great is some way to tell how the trigger hierarchy will sort out
    at run time. For example if one is looking at an item level trigger it would be fabulous to know that as is, that trigger will be
    overridden by a higher level trigger and so on. Or vice versa if one is looking at a block level or form level trigger that it is
    overridden by a lower level trigger, or it will execute before or after some other trigger. I don't know what is defined to happen
    with various levels of triggers that have the same execution hierarchy. Like suppose they are all override,before,after.. then
    what happens? It'd be good to know.

  • Trigger workflow when PR changed and copmlete activ workflow for same PR

    Hi,
    i am triggering the workflow for all line item of PR when PR is created. now i want to create workflow when PR change also.
    but before triggering the workflow i have to check the any in process workflow for the same and if then complete is and delete all its work item.
    for Ex.
    PR -4500000001 created with item 10 workflow triggerd ,
    suppose i changed it and agan save next workflow trigged now before triggerin this workflow we have to complete the 1 instance of workflow , delete all workitem of that instant
    Please suggest how can i achive this .
    Thanks in Advance
    Deepanker Dwivedi

    Hello,
    We have already implemented this in our old  project.Please find below the solution.
    No config change is required.
    1.Go to tcode SWETYPV
    2. Double click on your linkage.
    3. You will see there check function module.
    4. MAke a custom custom function module of yours and it will have CDPOS and CDHDR as its component.
    5. When so pr is changed or created this function module will be triggered there you can identify whether pr is changed or not using cdpos and cdhdr.
    6. If it is change raise two events one for completeion of old worklfows which are in process second for creation of new workflow instance.
    7. Create a wait step in your workflow which will wait for the completion event to be raised.
    Hope it helps.
    Regards,
    Nabheet Madan

  • Redermnation of output medium when PO changes are made

    Hello,
    We used to have fax medium for PO output and now it is retired. But when we change old POs, the fax output is getting determined even though output medium is already changed in the output condition records. When we create new POs, the outputs are correctly determined with new medium. Is there any way to determine new output medium when PO is changed?
    Thanks a lot,
    Venu

    Hello Pavan,
    'Fine-Tuned Control: Purchase Order' is already configured for 'New' & 'Change' operations for the output type.
    Thanks,
    Venu

  • Email alert when calc scripts are done

    Hi - I have Essbase 6.5 and wanted to know how do I setup an email alert when one of my calcs are done running?
    Thanks

    Hi CLAU,
    we use second method suggested by Glenn.
    instead of BLAT we use SendMail
    here is the sample batch file which call a maxl script (which can be your calc script) and then emails the log.
    hope this helps.
    -Dornakal
    www.dornakal.blogspot.com
    Batch File to call the MaxL Script and send email about status of the
    Rem ******************************************************************************
    Rem Object Type: Batch File
    Rem Object Name: BatchFileName.bat
    Rem Script Date: 01-27-2009
    Rem Created by: Dornakal
    Rem Purpose: This script loads the following data into Cube
    Rem Changed By:
    Rem Change Date:
    Rem Description:
    Rem ******************************************************************************
    Rem This starts the log file
    echo "Start of log" > E:\Logs\Dataload.log
    Rem This calls MaxL script to load data
    essmsh E:\Scripts\MaxL \DataLoad.mxl >> E:\Logs\Dataload.log
    Rem Send mail about the status of the job
    sendmail -b E:\Logs\Dataload.log -s "Subject of the mail (data load status)." -f Sendersemail -r Recievers email -r Receiver’s email -X HQSMTP.yourcompany.net

  • No prompt to check in file when no changes are made

    Hi,
    Now I know what you are thinking, why check out if you do not need to make any changes and I would say that is a valid point. But this scenario is more prone to cropping up than you think. Imagine a user is sent a link to document in a library. They click
    the link > check out and then close after just reading the document. That file is now checked out and prevents someone who actually needs to edit the file from editing it.
    Steps to re-produce:
    Launch file from document library
    Check out using the info bar
    Close the application via the X in the top right hand corner.
    The application will close and the file will remain checked out and at no point was the user prompted to check in the file.
    Now I have seen a similar post saying that the above behaviour is by design but to relay this back to my end user with confidence do we have any official Microsoft documentation out there to state this fact please?
    Any help would be more than greatly appreciated :)

    Hi Henry,
    This is the by default behavior, I haven't seen a good way to due with this issue, I would suggest you to disable require document check out if it is not necessary for the library.
    Also, you can consider using a timer job, to check the document with status of check out, then send reminder to the user who check out the document, let the user check in the document in time.
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • Send message from SAP(when any change happed) to XI

    Hi all,
          I have used soap and rfc adapter to create a sales order in SAP system. I would like to know the status if any modification (create of new sales order) happened in SAP system using SAP-XI.   SAP(trigger)->xi.  I would like to know the status using http adapter.
    Please help me with step by step details. Your help is rewardable

    Hi,
    There are many ways you can achieve this..
    1. There is a user exit which is called before saving the Sales order. ABAP code can be written to check if that is the sales order created thru XI with the helpof created user ID. Then a RFC call or a IDOC can be triggered to XI.
    2. You can schedule a program in R/3 which would check the table CDHDR with the object class for Sales Order and check if any slaes order is being modified. If so check if the sales order is created by the XI using the user ID. If so then trigger a RFC or IDOC from R/3 to XI.
    Regards,
    Prakash

  • All Quiz Slides Automatically Changed (by captivate) when ANY change is made to a Quiz Slide

    When I make a change to a quiz slide, captivate automatically adds the "Back" button (which was previously deleted) to *all* quiz slides and extends *all* quiz slide length by several seconds. This is very frustrating to have to go back to every quiz slide (which are interspersed thought the project) to remove the "back" button and correct the slide length. Thoughts anyone?

    Did you read that blog post that I indicated in the other thread about questions?
    Default pausing point is at 1.5 secs. If you leave the Success/Last attempt action to default 'Continue' users have to wait 1.5secs, never 3 secs.
    If you want to reduce the time, you can drag the pausing point bit more to the right to decrement the non-active part (not totally till end). That is the best solution, especially if some users will have to work with restricted bandwidth. Or you use Go to Next Slide instead of Continue for the actions.

  • Trigger IDoc when outbound documents are deleted

    Hi Experts,
    I am working on a scenario where in when delivery document is deleted then we need to have a IDoc to be triggered and sent to the receiver.
    I understand that when we create/change delivery, there is a way to trigger IDoc (i.e., through message control). But when we delete a delivery, I am not sure, we have standard mechanism to trigger an IDoc. Can we have a standard way of making this happen?
    Thanks & Regards,
    Suraj Kumar

    Hi,
    In the NACE transaction, Click on the APPLICATION V2 and create a new OUTPUT type with Z as prefix
    In the Processing Routine Tab in the control data enter the MEDIUM as  6 which is the  EDI and  maintain the PROGRAM & SMARTFORM as developed by the ABAPer
    Now maintain the CONDITION RECORDS with the MEDIUM 6  and the LS as Partner function
    Now with the Help of your ABAPer, define  the PARTNER PROFILES in WE20 and the Message types .
    This will trigger the OUTBOUND idoc to the other system.
    Please check these settings and revert back if you need more details
    regars,
    santosh

  • Is there a plug-in for Firefox 4.01 that allows tabs to open at the end? Millions of people do multiple searches on eBay and Craig's List - it is a pain to have to look at the results after each search instead of reviewing them when the searches are done

    The the only answer I have found to this question does not apply to Firefox 4.01. The Plug-in for allowing tabs to open at the end that works in older versions of Firefox does not work in 4.01. I would like to know if there is a plug-in that works for 4.01 or when or if we can expect one.

    Open new tabs on far right, restore pre Fx3.6 behavior, set '''browser.tabs.insertRelatedAfterCurrent''' to '''false''' in '''about:config'''
    For more information see item #36 in ...
    You can make Firefox 4.0.1 look like Firefox 3.6.17, see numbered items 1-10 in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 look like 3.6)]
    '''''More information on configuration variables''' available in
    [http://kb.mozillazine.org/About:config_entries about:config (entries)] and for users not familiar with the process there is [http://kb.mozillazine.org/About:config about:config (How to change)] -- Specialized list of only [http://dmcritchie.mvps.org/firefox/tabs_config.htm Tabs configuration] variables.''

Maybe you are looking for