Application log not getting cleared

Hi All,
we have a requirement where in we have to prevent service ticket save if the status of ticket is open and save button is clicked from ICWC .We are on CRM2007.
we are using ORDER_SAVE badi's check_before_order_save and raising the exception DO_NOT_SAVE from the BADI .
making cv_own_message as true .
error message is shown .but if we change the status to other then open and save .then service ticket gets saved but with the same error.
how to clear the prev log as if we use the FM crm_message_delete from the BADI , it is causing exception CS_SY_ERROR and terminating there itself.the same thing is happening if we use BAL_LOG_DELTE_MESSAGE.
thanks
sonia

Hi,
We are facing the same problem. Can anybody have idea about this, then kindly suggest.
Regards,
Steve

Similar Messages

  • Open Item not getting Cleared automatically

    Dear Sir,
    For a GL "Cenvat Clearing" , we have ticked the option "open Item Management" in FS00 .
    Our business scenario is as below :
    After MIGO , we do excise posting using J1IEX and here in the posted Fi document the GL "Cenvat Clearing" gets Credited . Subsequently during the MIRO this GL i.e "Cenvat Claering" gets Debited .
    My problem is that when I see in FBL3n for this GL the relevant transaction still appear under the open Items . Pl guide me , as what is the reason for this entry not getting cleared automatically .
    Regards
    B Mittal
    Regar

    PO number cannot be taken as sort feild  hence the value is in blank always.
    You need to identify some value for this feild and as a process you need to tell your users to incorporate the same at the time of doing MIRO.
    Or other wise you can take out the assignment of sort key to this GL account, and as a process you can instruct your user to use reference feild and input a value. If you fell that this is a tedious process,
    the Identify another feild that is common for both debit and credit line items and try to post with a common valuie using, one ABAP program which will update this feild. Mind that this feild need to be in the OB74.
    reward if useful
    sarma

  • GR/IR Clearing a/c not getting cleared..

    Dear All,
    My GR/IR clearing account is not getting cleared automatically after Invoice posting..is it the standard behavior or anything
    missing?
    For example- GR/IR Clearing a/c is 13110100,when GRN is done it is getting credited and once invoice is posted it gets
                          debited so it should show cleared when we run FS10N / FBL3N
    please let me know whether it is needed to clear manually?
    Naren

    Hi
    F.13 is for executing the setting configured under Financial Accounting -> General Ledger Account -> Business Transactions ->Open item clearing - > Prepare Automatic clearing. In this place, the GL account needs to be updated with the relevant criteria like, what are the fields to be matched for clearing like Reference field, assignment, etc.
    After that, if F.13 is executed for this GL account then it will clear based on the criteria specified above.
    Hope it clarifies
    Regards
    Lakshmanan Krishnan

  • Vendor Account not getting Cleared.

    Dear All,
    First of all thanks everyone for your support till date.
    I have an issue. When I am trying to clear a vendor account from F-44 its not getting cleared. Its showing a negative balance of Cash discount and is not getting adjusted with any account.
    However when I am processing the open item for the same vendor in FBL1N. The total is 0.
    Can any one suggest how to go ahead and clear this account.
    Thanks & regards
    Om Prakash gupta

    Dear All,
    Any updates on this issue as it has become a serious problem here. There ia an objection from Auditor.
    Kindly Suggest.
    Regards
    OM

  • UWL items not getting cleared after performing action

    Hello
    We are on EP 7.0.
    We are experiencing a strange behaviorin UWL.
    When end users receive workitems in their inbox and they take the appropriate actions, the workitems still stay in the inbox. Normally they should no longer appear.
    I have tried the refresh in the UWL iview but no luck.
    It seems to work in DEV and other landscape. It does no work in Production. The software installation of UWL are the same across all landscapes.
    Is there any other setting that is required. In SAP GUI this is not an issue.
    Any feedback or tips would be helpful. thanks.
    Regards,
    Sunil

    Hi,
    As far as I can remember, this is a known limitation of UWL.
    Please, check this thread : UWL work item not getting cleared
    I am unsure whether you use the correct button the refresh the UWL (it is well hidden!), check the slide 6 in this document :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20f4843e-314f-2a10-2a88-8c4afa20dda6&overridelayout=true
    Best regards,
    Guillaume

  • SD Reversal not getting Cleared

    Hi Experts,
    When an invoice is getting posted in SD and subsequently when such invoice is cancelled, the line item is not getting cleared. In FBL5n it is showing both the line items as open for all these cases. Please advice
    Thanks in Advance

    Hi,
    VF11 only cancell the invoice and post the reversal document in FI.
    First you clear the original document and reversal document manually in FI
    use T code F-32 or automatically in F.13
    It is related to OB74 setting for this Cusotmer' Recon Acc
    please Check the OSS notes 1259505 and Note 400000

  • SOCO requiremnts not getting cleared.

    Hello Freinds,
    I am working on SRM 5.0 classic scenario( with support pack 11). The requiremnts are not getting cleared although follow on docs are created for them ( PO). This is happening for only goods shopping carts and not for the limit.
    Any inputs on this will be highly appriciated.
    Regards
    SRM USER

    Hi Muthu ,
    I have check the code , But i sisnt see any difference , Infact we didn done any change recently . It was working fine beofre support pack and still working fine in another system aftter support pack .this Badi code is same in the both systems .
    you can also have look into this code.zsrm_sourcing is a custom table where we are maintaing document type and account assignment catogory for catalog items.
    Thank you .
    Get details of shopping cart.
      CALL FUNCTION 'BBP_PD_SC_ITEM_GETDETAIL'
        EXPORTING
          i_guid    = item_bbp_guid
        IMPORTING
          E_ITEM    = ls_item
          ET_ATTACH = lt_attach
        TABLES
          E_ACCOUNT = lt_account
          E_PARTNER = lt_partner.
    If lt_attach got any records sourcing needs to be done.
    SET SOURCING parameter to 'X'.
      IF lt_attach[] IS NOT INITIAL.
        SOURCING = 'X'.
        EXIT.
      ENDIF.
    If lt_partner doenst contain a fixed vendor, sourcing
    needs to be carried out.
      READ TABLE lt_partner TRANSPORTING NO FIELDS
           WITH KEY partner_fct = c_vendor.  " Fixed vendor
      IF NOT sy-subrc IS INITIAL.
        SOURCING = 'X'.
        EXIT.
      ELSE.
    If there is a fixed vendor, but item is not assigned to
    account assignment category, EXPENSE or INTERNAL ORDER .
    Sourcing needs to be carried out for this case.
    Load table with sourcing rules
        SELECT * FROM zsrm_sourcing
             INTO TABLE lt_sourcing.
        CLEAR SOURCING.
        LOOP AT lt_account ASSIGNING <fs_account>.
          READ TABLE lt_sourcing TRANSPORTING NO FIELDS
             WITH KEY acc_cat = <fs_account>-acc_cat
                      skip_sourcing = c_x.
          IF sy-subrc IS NOT INITIAL.
            SOURCING = 'X'.
            EXIT.
          ENDIF.
        ENDLOOP.
      ENDIF.

  • Not getting cleared with internal working of JSF

    Hi All,
    I have started with basics of JSF and created some simple apps using netBeans.
    However I am not getting cleared with the exact internal working of JSF i.e. how the things are implemented in JSF libraries: jsf-api and jsf-impl.
    Please advice or share some links on this.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    While creating JSP custom tags, we start from scratch by first creating tag handler class then .tld file for that and finally deploying both these files.
    I am looking for a similar approach for making our own JSF component.
    I don't want to put jsf-impl API into lib directory. Is it possible to make a simple component using jstl standard libraries ?
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • DUMMY_BW (0FI_GL_04) delta queue not getting cleared

    Hi,
    We're using minute based extraction approach for 0FI_GL_04 and thereby have two delta queues for the 0FI_GL_4 extractor in the SAP ERP ECC system: One for the ‘DUMMY_BW’ and the other for the 'real' BI system. The delta queue for DUMMY_BW is not getting cleared automatically in production system and it keeps on adding more records in the queue which is in turn consuming memory in ARFCSDATA. Any thoughts on this would be really helpful.
    Regards,
    Karthik

    Hi Gurus,
    Please help me on how can I check that on what fields 0FI_GL_20 is pulling delta.
    I tried to find the MSG Type to check in BD52 for relevant field list, in ROOSGEN table. the entry for MSG type is blank there.
    Any help on this is appreciated.
    Thanks,
    Sourabh Deo

  • WCS:- WLC Alarm not getting cleared automatically on WCS

    ALarm TAB:-
    ==========
    Severity: Message:
    Critical ------------------------------Port 2 is down on Controller.
    This Alarm is not getting cleared automatically, Where as the alarms generated for AP's are getting cleared, I would like to know is this the default behaviour or we need to look into some thing here. To clear this i need to manually delete the alarm.
    Any help would be greatly appriciated.

    Alarms are automatically cleared after 7 days. Clear the alarms manually if you want to clear the alarms before 7 days. For more information refer http://www.cisco.com/en/US/products/ps6305/products_qanda_item09186a00807a60f0.shtml#qa11.

  • JSF: Error Message are not getting cleared

    Hi,
    I am facing some problem with error messages in JSF.
    Here is what I am doing
    1. User submits a form, server validates and sends back the error to the client error message added to Faces Context.
    2. User checks the messages, changes the input and submits. assuming everything is correct now.
    3. On server, it validates and writes data to response for download using the following code.
    FacesContext faces = FacesContext.getCurrentInstance();
        HttpServletResponse response = (HttpServletResponse)faces.getExternalContext().getResponse();
        DownloadResponse.sendDownload( response, is, fileName );
        faces.responseComplete();
      }4. It shows the download popup to download the file. The problem here is that error message are not getting cleared off. User can still see the error message on the screen.
    It seems I am missing something in JSF req-response life cycle. Anyone please point out the mistake.

    SudhirMongia wrote:
    4. It shows the download popup to download the file. The problem here is that error message are not getting cleared off. User can still see the error message on the screen. Wrong. The problem is that the view is not rerendered, which makes sense because you are not sending view content to the browser but your file.
    Your real question probably is: how do I cause a file download and still rerender the view afterwards to show the results? To that I myself do not have the answer unfortunately, but I have seen that question come by a few times already, so doing some searches in these forums may yield you an answer.

  • I am not getting clear alert from OEM 11g Grid, even after the issue solved

    I am not getting clear email alert from OEM 11g, even after the issue fixed.
    For eg: I got critical alert when I have shutdown the DB.But I didn't get clear alert even I have started my DB and is up running.
    I am getting only critical and warning alerts but not clear alerts from 11g Grid control.
    Please help me in troubleshooting the issue....
    Thanks in advance.............
    vgcrl

    Bullitt wrote:
    there email address is [email protected]
    Thank you... I will give that a go...
    Martin

  • Custom log not getting generated in weblogic 10.3.5

    We have weblogic 10.3.5 as application server and deployed DAM(Digital Assets Management ) application on it. Also we have deployed 2-3 more application which is sharing connection properties file (dfc and log4j) outside from application war in shared location.
    Now, we have configured the log path but logs are not get generated where as it comes in out log of weblogic.
    Is there any configuration changes which can create the log files as mentioned in our log4j.properties?? Seeking help urgently.

    How are you writing to the log file in your application?
    When, for example, use System.out.println the entry will show up in the .out file.
    You need to get the right loghandler to write the logging you configure.

  • Processing log not getting updated for send immediatly

    Hi,
    I have a custom output type and a Custom function module for issueing the output for delivery, my prob is that it processing log is getting updated for the send in batch and other options but it is not getting updated for the SEND IMMEDIATLY, I am using the same FM for the Output issue I am checking if they have selected output type as 4 if yes, I am calling a FM in perform by saying
    PERFORM xxxxxxxx ON COMMIT
    and in the perform I am calling a FM
    CALL FUNCTION  xxxxxxxxx in BACKGROUND TASK  AS A SEPARATE TASK,
    the functioanlity of issueing the output is working but the Processing log is not getting updated.
    What might be the problem ? it is getting updated for  Send in batch but not for except 4.

    I am updating Log using this form
    at every step I am collecting the messages and passing them to this form.
    FORM update_nast_log  USING   p_msgid
                                  p_msgnr
                                  p_msgty
                                  p_msgv1
                                  p_msgv2
                                  p_msgv3
                                  p_msgv4.
    * Local data declaration
      DATA: lv_msgid LIKE sy-msgid,
            lv_msgnr LIKE sy-msgno,
            lv_msgty LIKE sy-msgty,
            lv_msgv1 LIKE sy-msgv1,
            lv_msgv2 LIKE sy-msgv2,
            lv_msgv3 LIKE sy-msgv3,
            lv_msgv4 LIKE sy-msgv4.
    * clear all the local variables
      CLEAR:lv_msgid,
            lv_msgnr,
            lv_msgty,
            lv_msgv1,
            lv_msgv2,
            lv_msgv3,
            lv_msgv4.
    * move message ID,number,msg type and the messsages
    *     to local variables
      MOVE: p_msgid TO lv_msgid,
            p_msgnr TO lv_msgnr,
            p_msgty TO lv_msgty,
            p_msgv1 TO lv_msgv1,
            p_msgv2 TO lv_msgv2,
            p_msgv3 TO lv_msgv3,
            p_msgv4 TO lv_msgv4.
    * Update nast table using nast protocol update
      CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
        EXPORTING
          msg_arbgb = lv_msgid
          msg_nr    = lv_msgnr
          msg_ty    = lv_msgty
          msg_v1    = lv_msgv1
          msg_v2    = lv_msgv2
          msg_v3    = lv_msgv3
          msg_v4    = lv_msgv4.
    ENDFORM.                    " UPDATE_NAST_LOG

  • OSD Logs not getting written to SLShare

    We have the SLShare defined in the CustomSettings.ini as..
    SLShare=\\<servername>\Logs$
    SLShareDynamicLogging=\\<servername>\OSDLogs$
    Logs used to get written to both locations with no issue.  Over the past couple of months, no logs get written to either location.  Shares have been recreated and still nothing.. Checked the permissions, nothing has changed. 
    Ideas?

    I do apologize for not getting a lot more info
    Been a bad week with other issues and trying to clear up some old questions and concerns - this being one of them....
    During the WinPE phase of the deployment, we’ve connected to the SLSHare with the account that we use for joining the domain, that account connects without any issue.
    In the ZTIGather.log what we see when we compare existing logs taken from the local drive on a machine that’s been imaged or in the process of imaging, to the logs up on the server that were centrally stored shows that the Property
    SLSHare is now = \\<servername>\Logs$
    In the logs extracted from the local drives(..Windows\CCM\Logs\) of machines that have been imaged in the past couple of months, that Property value does not exist, but we also see the following highlighted errors in the logs
    which are not in the logs centrally stored on the server from a couple of months back.  We have verified that the file
    Microsoft.BDD.Utility.dll is in the correct location for
    … Toolkit Package\Tools\x86 and …Toolkit Package\Tools\x64.
    Finished getting network info    ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Getting DP info ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Unable to determine ConfigMgr distribution point           ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Finished getting DP info                ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Getting WDS server info               ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Unable to determine WDS server name, probably not booted from WDS.             ZTIGather            11/5/2014 10:29:11
    AM  0 (0x0000)
    Finished getting WDS server info              ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    Property HostName is now = MININT-PUPTGTH               ZTIGather            11/5/2014 10:29:11 AM 
    0 (0x0000)
    Getting asset info            ZTIGather            11/5/2014 10:29:11 AM  0 (0x0000)
    FindFile: The file x86\Microsoft.BDD.Utility.dll could not be found in any standard locations.   ZTIGather           
    11/5/2014 10:29:13 AM       0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 1              ZTIGather            11/5/2014
    10:29:13 AM  0 (0x0000)
    RUN: regsvr32.exe /s ""                ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    FindFile: The file x64\Microsoft.BDD.Utility.dll could not be found in any standard locations.   ZTIGather           
    11/5/2014 10:29:13 AM       0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 1              ZTIGather            11/5/2014
    10:29:13 AM  0 (0x0000)
    RUN: regsvr32.exe /s ""                ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    FAILURE (Err): 429: CreateObject(Microsoft.BDD.Utility) - ActiveX component can't create object           ZTIGather               
    11/5/2014 10:29:13 AM  0 (0x0000)
    Property AssetTag is now = No Asset Information            ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property SerialNumber is now = R900VB6B          ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property Make is now = LENOVO             ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property Model is now =***      ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property Product is now =***   ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property UUID is now = 08136381-5318-11CB-8777-F9DA97025E14            ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    Property Memory is now = 7851               ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property Architecture is now = X86          ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property ProcessorSpeed is now = 2701                ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    Property CapableArchitecture is now = AMD64 X64 X86 ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property IsLaptop is now = True                ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    Property IsDesktop is now = False            ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property IsServer is now = False               ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property IsUEFI is now = False   ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property IsOnBattery is now = False        ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property SupportsX86 is now = True       ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property SupportsX64 is now = True       ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property SupportsSLAT is now = True     ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Finished getting asset info           ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Getting OS SKU info        ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Unable to determine Windows SKU while in Windows PE.            ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Determining the Disk and Partition Number from the Logical Drive X:\windows  ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property OriginalArchitecture is now =   ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Getting virtualization info             ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    FindFile: The file x86\Microsoft.BDD.Utility.dll could not be found in any standard locations.   ZTIGather            11/5/2014 10:29:13 AM      
    0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 1              ZTIGather            11/5/2014
    10:29:13 AM  0 (0x0000)
    RUN: regsvr32.exe /s ""               ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    FindFile: The file x64\Microsoft.BDD.Utility.dll could not be found in any standard locations.   ZTIGather            11/5/2014 10:29:13 AM      
    0 (0x0000)
    FindFile(...\Microsoft.BDD.Utility.dll)  Result : 1              ZTIGather            11/5/2014
    10:29:13 AM  0 (0x0000)
    RUN: regsvr32.exe /s ""               ZTIGather            11/5/2014 10:29:13 AM 
    0 (0x0000)
    FAILURE (Err): 429: CreateObject(Microsoft.BDD.Utility) - ActiveX component can't create object           ZTIGather               
    11/5/2014 10:29:13 AM  0 (0x0000)
    FAILURE (Err): 424: GetVirtualizationInfo for Gather process - Object required  ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Connection succeeded to MicrosoftVolumeEncryption  ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    There are no encrypted drives   ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Property IsBDE is now = False     ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Processing the  phase.   ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Determining the INI file to use. ZTIGather            11/5/2014 10:29:13 AM  0 (0x0000)
    Finished determining the INI file to use.                ZTIGather            11/5/2014 10:29:13
    AM  0 (0x0000)

Maybe you are looking for

  • SAP R/3 ...Dispatcher is not starting and all table fields are ended...

    Hi Experts Pls...Help me out regarding my sap R/3 4.6c startup problem.. <u>on my local machine</u> while staring the server, i am getting the following errors... <u>The message server starts but the dispatcher doesn't start..</u> 1. The dispatcher s

  • Difference Between OBIEE 10g and OBIEE 11g

    Hi everyone, I have a doubt when choosing two versions of OBIEE, 10g and 11g. Actually, is there any big difference between 10g and 11 version ? From the point of view of easiness finding tutorial in internet, simplicity of using the tool, and other

  • How to call a function onload of document

    Hello All,     In acrobat Javascript I am supposed to call a function on load of the document Please suggest a solution or refernce to solve the problem.

  • How to apply patch on Kernal for ECC 5.0?

    Hi, I have installed a new SAP ECC 5.0 system. The release verion shows the current Release as 6.4 and Patch Level 43. Now I want to apply the latest patch on Kernal. Can any one please provide me the steps for 1). How to proceed with the Kernal upga

  • Set scale values when zoom out

    Hi! I have a XY Graph and I want it to have three different scale ranges depending on a case structure. So, for example, if it's case 1, I have the xy graph X.minimum = 1,234 and xy graph X.maximum = 10,789 and so on. I want to be able to zoom the gr