Event when posting a discussion

Hello,
is there any ResourceEvent 'fired' when a post is added to a discussion item?
I would like to sort discussions by the date of the lates post, but the cm_modified is not changed when a post is added. So I would like to implement a repository service which sets a date-type attribute when a new post is made.
Thanks in advance,
Reinhard

Hello Reinhard,
I can't tell you which event is fired if a post is added to a discussion, but I can assert that it is not possible to sort discussions within the following iview: com.sap.netweaver.coll.DiscussionGroup
Reason: With the first post there will be a xml-document generated in the collaboration repository and every answer regarding to that post wil be another xml-doc, which relates to it's parent-xml-doc. Well, and the sort functionality only points to the first post.
The SAP support told me to open a feature request to get this required new functionality! Now we're using the ressource discussion iView instead...
Hope that helps
Regards
Steffen

Similar Messages

  • FI-CAX event 1102 when posting documents using BAPI_CTRACDOCUMENT_CREATE

    The event 1102 in FI-CAX has been implemented to copy "Alternative business partner for payments" to the document, when posting a document using transaction FPE1.
    Will this event aslo be executed when posting documents automatically via the BAPI BAPI_CTRACDOCUMENT_CREATE?
    If not, is there any other possibility to copy "Alternative business partner for payments" to the document, when posting a document automatically via the BAPI BAPI_CTRACDOCUMENT_CREATE?

    Thank you!
    In our system this note has not been implemented yet so this is something we need to fix.
    Do you know if event 1102 is supposed to be called when running FP60M/FP60P (mass activity: revenue distribution/Revenue distribution: Create and post documents)?
    Cheers,
    Teo

  • "Access Denied" Message When Posting Discussion

    Why can't I post a discussion? I want to post some things from Terminal so someone can trouble shoot for me, but it won't let me. I can post this discussion fine..

    Hello
    As far as I can tell, shebang is currently filtered. And / b i n / b a s h (without spaces) iself is also filtered. I hope this is temprorary measure.
    Regards,
    H
    PS. Testing. Are these filtered?
    #!/usr/bin/ruby
    PPS. It turned out shebang itself seems OK.
    Message was edited by: Hiroto (added PPS)

  • Problem with TextLine not getting mouse events when expected

    Hi All,
    I am cross-posting the discussion I put on the TLF forum here (sample code is in that post)
    http://forums.adobe.com/message/3768763#3768763
    The issue is to do with non/slow response when clicking to edit multiple TLF text elements on a base group. Thanks to some extra work by Jin-Huang the problem is apparently that when the edit functionality is set (by setting the interactionManager), the TLF class cannot receive any more events until the mouse leaves and re-enters the TextLine you are supposed to be editing. This sounds like a Flex bug.
    I guess my questions are (1) is this actually a Flex bug? and (2) does anyone know a workaround so the thing can start accepting input immediately without further mouse actions?
    Thanks,
    Darryl.

    What happens if you use two RichEditableText controls or two TextAreas
    instead?  By trying to install your own editing controls, you might have to
    fully conform to the IFocusManagerComponent interface for focusable
    components otherwise you might run into issues like this.

  • Why does ical put a random time in front of added events when I print?

    How can I prevent ical from putting a random time in front of added events when I print?

    In Word go to File, Options, Display and uncheck the box to print document properties.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Poor image quality when posted on the web

    Hi,
    When posting my iWeb pages on the web, the images look very poor compared to iWeb. When importing images to iWeb the image size is around 240 kb and when downloading the same image from the web after posting the image size is reduced to 52 kb and with a clear difference in quality. Why is that?
    For info, my Optimize setting is set to OFF

    Welcome to the Apple Discussions.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Update correspondence history (DFKKCOHI) when posting manually via FPE1

    Hi experts,
    Here is a difficult one. I need to update the correspondance history when posting manually certain types of documents via FPE1. I was told to use business event 723 - Correspondence : Free --> Create (tcode FQEVENTS) that is one of the events for Document. I thought that by creating and activating my customer function module Z_FKK_SAMPLE_0723 it should be enough, placing my own code there. But I can see that when I post a document via FPE1 this event is never triggered, even though now is activated. Am I missing something??
    After a lot of debugging I found out that event 1118 is called instead (one of the events called among others).
    From include LFKPPFB0
    * finally call the posting module
      CALL FUNCTION 'FKK_CREATE_DOC'
        EXPORTING
          I_FKKKO          = FKKKO
          I_UPDATE_TASK    = ' '
          I_FKKOPL_CF      = 'X'
          I_DIALOG         = 'X'
        IMPORTING
          E_OPBEL          = XOPBEL
        TABLES
          T_FKKOP          = XFKKOP
          T_FKKOPK         = XFKKOPK
          T_FKKOPW         = XFKKOPW
          T_FKKOPL         = XFKKOPL
          T_FKKOPKC        = XFKKOPKC
          T_FKKOPREL       = XFKKOPREL
          T_FKKOP_ESR      = XFKKOPESR
        EXCEPTIONS
          ERROR_MESSAGE    = 4.
      IF SY-SUBRC = 0.
        PERFORM EVENT_1118.
      ELSE.
        PERFORM MESSAGE_STORE USING '1119'.
        PERFORM MESSAGES_SHOW.
        PERFORM OKCODE_OVER.
      ENDIF.
    And that this event (FKK_SAMPLE_1118) is empty so you can write your own code there. But I don't know how risky this is.
    Please I need some advice with this issue. My two questions are:
    - 1) why event 723 is not triggered when I do I manual post?? What do I have to do to trigger it?
    - 2) My plan B is to force the call to event 723 from event 1118, which I for sure know that is triggered. Anybody can see any problem in this?
    Anybody has been in a similar situation making a new event in FQEVENTS?
    Thanks in advance, points will surely be rewarded.
    Elena

    Hi Prashant,
    Thanks for that. YES! That may be to update text in document. But while uploading invoices I will not have document number details, it will be created when we process batch which been created using “rfbibl00”. How can I capture document numbers after processing batch session? Because with document number details I will able to use SAVE_TEXT to update remaining text fields. So can you please suggest best way to do this if you can? Many thanks.
    Regards,
    Tim

  • Event GR Posted is denied for the DBM Order - External service procurement

    Dear Experts,
    We are facing the below mentioned issue while trying to perform goods receipt for external service procurement.
    Error - "Event GR Posted is denied for the DBM Order  -------XXX"
    The error message is raised when the tracking number is maintained in the Purchase order of External servce,
    If we remove the Tracking order (DBM Job order number) from Purchase order and then perform Goods receipt (MIGO) then the error does not exists.
    Request you to help us with suggestion.
    Regards,
    T.R.S,Praveen

    Hi Sachin,
    Thank you for your valuable feedback.
    Requirement Tracking number in Purchase order item screen. Field name - BEDNR.
    Please note that the job order number is not manually updated by us. It is automatically updating in PO line item through Purchase requisition details as per standard behavior.
    If we perform goods receipt then we are getting error message as "Event GR Posted is denied for the DBM Order  -------XXX".
    Goods receipt is working properly if we remove the Job order number in tracking order field in PO.
    Regards,
    T.R.S.Praveen

  • RAISING AN EVENT WHEN DATABASE TABLE UPDATES

    hi all,
             i want to raise an event when database table updates.For eg : if a price of a material has been changed then i have to raise an event and run the abap program in back ground.i know transaction SM62 to create event, i dont know about transaction SM64. please give me the procedure how to solve this problem. i dont know work flow. please give me a sample code how to raise event.
    thanka and regards
    suresh

    Hi Suresh
    It is important to understand that the SAP architecture abstracts the database from the application.
    I think that you should look for ways that the application triggers an event when an update has taken place, rather than the DB.
    Two ways of doing this that spring to mind are change pointers (for the ALE interface, see menu SALE) and Business Transaction Events (various things including CRM integration, see menu FIBF).
    The latter works very well for sending prices to CRM when they change. I am more familiar with this than ALE so I will discuss it.
    If you go to menu FIBF and then follow menu path Environment -> Info System (P/S), and then run the report for event 00503301, you can find documentation and a sample function module that you can copy.
    Once you register your new function module in the event tables then it will be called when prices are changed.
    Cheers
    Dom

  • Seperate Document Row with same account  when post GL

    Hello everyone
    How I can seperate Document Row with same account  when post GL
    because If I post dcoument that  have many rows but same account and difference detail. It will sum amount for same account in JE
    and I found that will seperate if it has diference project code but it's not enough for me.
    How I can config SAP B1 to seperate Doc row when post to JE if it has difference detail (as userfield or standard filed)
    Sorry for my poor english
    Thank,Seang

    Hello Suthee,
    Sorry to tell you, it is not possible to do so in current B1 without addon development.
    There are 2 alternative.
    1.Consulting Workaround:
    Seperate the Item into 2 items, the account into 2 sub accounts.e.g.
    Item A => Item A01 and A02
    G/L Account 1001 => Sub Account 100101 and 100102
    2.AddOn development to seperate the JE just after it is created document
    You can update to JE to seperate just after JE are created by docuemnts.
    Just Listen FormDataAdd Event.
    Sample Code:
    Private Sub FormDataEventHandler( _
        ByRef BusinessObjectInfo As SAPbouiCOM.BusinessObjectInfo, _
        ByRef BubbleEvent As Boolean) Handles oApp.FormDataEvent
            'I just listen 133 - AR invoice here,
            'You may add the target documents
            'Before action = true, start the transation
            If BusinessObjectInfo.FormTypeEx = "133" _
                    And (BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD _
                    Or BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE) _
                    And BusinessObjectInfo.BeforeAction = True Then
                oCompany.StartTransaction()
            End If
            'Before Action = false,
            'Update the JE in document
            'Succeed, commit, otherwise rollback
            If BusinessObjectInfo.FormTypeEx = "133" _
            And (BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD _
            Or BusinessObjectInfo.EventType = SAPbouiCOM.BoEventTypes.et_FORM_DATA_UPDATE) Then
                If BusinessObjectInfo.BeforeAction = False And BusinessObjectInfo.ActionSuccess Then
                    Dim xmlDoc As System.Xml.XmlDocument = New System.Xml.XmlDocument
                    xmlDoc.LoadXml(BusinessObjectInfo.ObjectKey)
                    Dim objectKey As String
                    objectKey = xmlDoc.SelectSingleNode("//DocEntry").InnerText
                    Dim oDocument As SAPbobsCOM.Documents = Nothing
                    oDocument = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oPurchaseOrders)
                    If oDocument.GetByKey(CInt(objectKey)) Then
                        Dim oJE As SAPbobsCOM.JournalEntries
                        oJE = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oJournalEntries)
                        If oJE.GetByKey(oDocument.TransNum) Then
                            '*Add you code to Update oJE lines here*
                            lRetCode = oJE.Update
                            If 0 <> lRetCode Then
                                oApp.MessageBox("Failed to update JE")
                                'roll back the whole transaction, including the document
                                oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_RollBack)
                                Exit Sub
                            Else
                                'Commit the transaction
                                oCompany.EndTransaction(SAPbobsCOM.BoWfTransOpt.wf_Commit)
                            End If
                        End If
                    End If
                End If
            End If
        End Sub
    Hope it helps. Thanks.
    Kind Regards
    -Yatsea

  • Trigger event when items moved from a library to a document

    Hi all,
    I want to be able to trigger an event when a user drags items from a library in to their document, I had looked at the AfterMove event which I though might enable me to access any items after they had been moved (worst case scenario) but I can't seem to get this event to trigger.
    Any thoughts?
    Cheers
    JSX

    You can't really single out the selectionChanged or place events triggered by dragging items from a library from other selectionChanged or place events. See this thread for a relevant discussion and a link to the very useful Event Watcher extension. (It looks like afterMove is only triggered by a couple of objects, not including page items.)
    Jeff

  • Safari keeps Crashing when posting to social media. Tried clearing and restarting

    On MacBook Air. Safari keeps crashing when inside a website and going to another page within that site. Example: I am in Facebook and when I try to post a status and photos, it crashes... I've tried clearing all cache and restarting. Also checked for updates. Tried many times, same result. Below is the report.
    file:///Users/TN/Desktop/Screen%20Shot%202014-03-08%20at%208.56.27%20PM.png

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports (not "Diagnostic and Usage Messages") for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post other kinds of diagnostic report — they're very long and not helpful.

  • Is there a way to detect the event when device goes to sleep and the screen blackens?

    I want to detect the event when the iOS device goes to sleep and the screen blackens?
    Is there any way to do it?

    Hi,
    A small idea, please check whether it will work or not.
    You can achieve this by using combination of DNS server and reverse proxy server.( Customized apache). Make 'A' record for www.abcd.com to reverse proxy server IP address in your DNS.
    So it will resolve your reverse proxy IP address for requests.
    Configure appche to accept incoming request for www.abcd.com and points towards www.abcd.com/parameters.
    I think this will solve your problem.  Only one condition is that proxy server will communicate with www.abcd.com on behalf of client.
    Follow the link for configuration of reverse proxy server
    http://www.slashroot.in/how-configure-basic-apache-reverse-proxy
    HTH
    Naisam

  • Validation when posting a document using T. Code FB50 or F-02

    Dear Experts
    Please let me know on how to validate when posting a Cross Company Transaction using T. Codes FB50 or F-02.  The requirement is to restrict Branches (each Branch is a Company Code in SAP) to post any Cross Company documents by selecting HO Company Code in Line Item, system has to stop the User by giving Error Message.
    We can't control this using User level Authorizations because, here the Authorization is provided to the Users to post the Transactions using T. Codes FB50 and F-02.
    To restrict this, I created a Validation as below:
    Prerequisite:
    BKPF-TCODE = 'FB50' OR BKPF-TCODE = 'F-02' AND
    BKPF-BUKRS = 'Br. Company Code' AND
    BSEG-BUKRS = 'HO Company Code'
    Check:
    FALSE
    Message:
    You Can't post Cross Company Transactions using T.Code FB50 or F-02
    And I activated the above Validation in OB28 for HO and Branch Company Codes.  But the Validation is not working properly.  Can anybody help me on how to proceed further in this regard please.

    Hi,
    I haven't tried to use a transaction code for Validation purpose. Instead, I have used document type as prerequisite and then check:
    BKPF-BUKRS = 'Br. Company Code' AND
    BSEG-BUKRS = 'HO Company Code'
    If the condition is met, it displays an error (per the message in validation) while completing the line item details on posting a document.
    Please let me know if that helps. If not, I can try to replicate your scenario and let you know if there is anything missing.
    Thanks,
    Ashish

  • Dump error when posting through F-02.

    Greetings everyone,
    When posting G/L act through F-02 we are facing a dump error in QUALITY system and in DEVELOPMENT we are able to post succesfully.
    From my primary analysis one standard program is calling and that program has syntax error.
    When i checked that program it is saved in local object and generated automaticaly when some thing done is FICO.
    Generated Program is Module pool program :GBTV6FI0
    Description of that program is below
    Generated by report RGUGBR01.
    Generated code used by validations substitutions and rules.
    !! Do not manually change or transport !!
    For reference please find the dump below
        Error in the ABAP Application Program
        The current ABAP program "SAPLGBL5" had to be terminated because
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program "GBTV6FI0 " in in
         " in
        line 519:
        "FORM "SEND_CMPLX_DATA_015" does not exist"
        The include has been created and last changed by:
        Created by: "DDIC "
        Last changed by: "****"
        Error in the ABAP Application Program
        The current ABAP program "SAPLGBL5" had to be terminated because
        come across a statement that unfortunately cannot be executed.
    Can any one please suggest me how to resolve this issue.
    Thanks in Advance.

    This looks like you have not transported the code to quality system. This code seems to have been generated when validation, substitution and rules have been defined and is missing in quality system (not transported ?)
    Find the form send_cmplx_data_015 in development system and check the version. This is the transport that still needs to be transported to quality system.
    I now see that you say it has been saved as local object. In that case assign it to a package and transport in SE80.
    And now I see the answer of Klaus, follow the instructions in the note he has supplied first. It seems that note is exactly describing your problem.  :-)

Maybe you are looking for

  • Error in execution of EJB model

    Hi All ,         I am using EJB model in my web dynpro dc which is having two wd comp.CompA is firing plug to interfaceview of compB.b4 firing plug its calling showDetails() method from interface controller of compB and executing model based on data

  • Mouse pointer acting up

    I have my mouse pointer acting up for about 2 month now. Iets start to say yes i do download movies alot and burn them or delet them onces im done with them.But my mouse pointer begain going nuts ie: switchig screens, opening random folders or apps,

  • Big messages inside BPM

    Hello I cannot avoid the using of BPM. The sender system could send big messages 5-20MB (with binary data). I have synch HTTP -> BPM (1:N) mapping) N could be 10-30. BPM has forEach block and send synh messages to FRC receiver for each message. Is it

  • Install Oracle 8

    I try to install Oracle 8, after 6 hours of download, and after decompress the Oracle817ntee.zip in the c:\disk1, try to run the setup.exe and... nothing happens, neither messages, nor errors... nothing. My PC is a Dell Dimension 8200 with a PIV 1.7

  • ECC5.0

    Hi Everybody           Currently I am working as ABAP Programmer in SAP R/3. Now I have to work on ECC 5.0. So Please suggest me on What domain in ECC or Netwever I Should work on. I am thinking of XI ,but here XI not going to imp-lement. So Suggest