Remove the info message "Customizing missing: No code for category"

Hi Experts,
              I am getting the information message i.e "Customizing missing: No code for category" while entering into the repair web ui screen in service. I want to remove this information message. Please suggest me how to avoid this info. message. Thank you in advance.
Regards,
Santhosh

I installed this VB script and still get the same error message. I have also installed all the install scripts from InstallShield. I sent an email to InstallShield a week ago explaining my problem but have had no reply. Their Website says to contact the software vendor directly - that would be Apple. I have an Apple 800 number but have never been able to get through. I have installed other Windows software in the last week and have not had a problem. Any more suggestions?
Home built Windows XP Pro
Home built Windows XP Pro

Similar Messages

  • I need to get the info Message generated by the Called Program

    Hi All,
    I am calling an standard SAP program from my own program as follows:
        SUBMIT RFBIBL00 WITH DS_NAME = V_FILE
                        WITH CALLMODE = 'C'
                        with max_comm = '1000'
                        with xinf = 'X'
                        AND RETURN.
    As soon as the called program parks invoice and finish execution, it generates an info message at the status bar but I can't capture this message which contains the newly created invoice No.
    I have tried to call the above program with xlog = 'X' option which prints the info messages as a log report after the programs finishes, but I am still not able to capture that log as well, although I have tried with the EXPORTING LIST TO MEMORY option while submitting the program but it just prints the log as report without sending it to memory.
    Please let me know if there is some way to do it.
    Regards,

    Hi Athar,
    1. MESSAGES cannot be CAPTURED
       using submit
    2. For that CALL Transaction
                MESSAGES Into Itab
       is required.
    3. For your requirement,
       make a new TCODE for this program
       eg. ZR0   (ZR zero)
    4. Fill the bdc table
    5. use this code (just copy paste)
       make modifiction as per ur requirement.
    6.
    REPORT abc.
    DATA
    DATA:   bdcdata LIKE bdcdata    OCCURS 0 WITH HEADER LINE.
    DATA:   messtab LIKE bdcmsgcoll OCCURS 0 WITH HEADER LINE.
    DATA: l_mstring(480).
    TABLES : t100.
    FILL DATA
    PERFORM bdcfill USING :
    'X' 'RFBIBL00' '1000'
    , '' 'CALLMODE' 'C'
    , '' 'XLOG' 'X'
    , '' 'BDC_OKCODE' '=ONLI'
    TRANSACTION
    CALL TRANSACTION 'ZR0'
    USING bdcdata
    MODE 'N'
    MESSAGES INTO messtab.
    PERFORM showmsg.
    BDC FORM
    FORM showmsg.
    MESSAGES
      LOOP AT messtab.
        SELECT SINGLE * FROM t100 WHERE sprsl = messtab-msgspra
                                  AND   arbgb = messtab-msgid
                                  AND   msgnr = messtab-msgnr.
        IF sy-subrc = 0.
          l_mstring = t100-text.
          IF l_mstring CS '&1'.
            REPLACE '&1' WITH messtab-msgv1 INTO l_mstring.
            REPLACE '&2' WITH messtab-msgv2 INTO l_mstring.
            REPLACE '&3' WITH messtab-msgv3 INTO l_mstring.
            REPLACE '&4' WITH messtab-msgv4 INTO l_mstring.
          ELSE.
            REPLACE '&' WITH messtab-msgv1 INTO l_mstring.
            REPLACE '&' WITH messtab-msgv2 INTO l_mstring.
            REPLACE '&' WITH messtab-msgv3 INTO l_mstring.
            REPLACE '&' WITH messtab-msgv4 INTO l_mstring.
          ENDIF.
          CONDENSE l_mstring.
          WRITE: / messtab-msgtyp, l_mstring.
        ENDIF.
      ENDLOOP.
    ENDFORM.                    "SHOWMSG
    BDC FORM
    FORM bdcfill USING a b c.
      CLEAR bdcdata.
      IF a = 'X'.
        bdcdata-program = b.
        bdcdata-dynpro = c.
        bdcdata-dynbegin  = 'X'.
      ELSE.
        bdcdata-fnam = b.
        bdcdata-fval = c.
      ENDIF.
      APPEND bdcdata.
    ENDFORM.                    "bdcfill
    I hope it helps.
    regards,
    amit m.

  • Can I remove the annoying message box thingy beneath the search bar on FF 8

    Can I remove the annoying message box thingy beneath the search bar on FF 8

    You can hide the box that shows the snippets with code in userChrome.css
    Add code to userChrome.css below the @namespace line.
    * http://kb.mozillazine.org/userChrome.css
    * http://kb.mozillazine.org/Editing_configuration
    You can use the ChromEdit Plus extension to have easier access to the customization files.
    * ChromEdit Plus: http://webdesigns.ms11.net/chromeditp.html <br />
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    /* hide snippet container on the about:home page */
    #snippetContainer { display: none !important; }
    </nowiki></pre>

  • How to remove the statusbar message in panelCollecion ?

    Hi All,
    JDev ver 11.1.1.3.0
    How to remove the statusbar message in panelCollecion ?
    I am getting 'Columns hidden' in the status bar.. i want to remove that ?
    give suggestion..
    Regards
    Gops

    so ...
    Gops wrote:
    JDev ver 11.1.1.3.0
    Jan Vervecken wrote:about ...
    Navaneetha Krishnan Nataraj wrote:
    For the PanelCollection, add statusBar to FeaturesOff attribute.fyi, the "featuresOff " attribute is documented
    at http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e12419/tagdoc/af_panelCollection.html
    regards
    Jan- "Oracle Fusion Middleware Tag Reference for Oracle ADF Faces 11g R1 PS3 (11.1.1) E12419-05 "
    at http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e12419/toc.htm
    refers to http://download.oracle.com/docs/cd/E17904_01/apirefs.1111/e12419/tagdoc/af_panelCollection.html
    documenting the "featuresOff " attribute with valid value "statusBar "
    - "Oracle Fusion Middleware Tag Reference for Oracle ADF Faces 11g Release 1 (11.1.1) E12419-04 "
    at http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e12419/toc.htm
    refers to http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e12419/tagdoc/af_panelCollection.html
    documenting the "featuresOff " attribute not with valid value "statusBar "
    regards
    Jan

  • MQSeries---to remove the first message from queue

    Hi all,
    I have some question in MQSeries in Sun Solaris.
    I would like to ask if there are any command in runmqsc that can remove the first message only? I know the command 'CLEAR QLOCAL' but it removes all the messages inside the queue but not only the first one.
    Thanks a lot.
    Jane.

    You might have more luck with pure MQSeries questions on www.mqseries.net

  • How do I remove the text message from my iPad

    Someone please help, I am a teacher and I use an iPad in my classroom. I just purchased my first iPhone, but somehow, some icons from my phone appear on my iPad. The main one that worries me is my text messaging. I need to remove the text messaging from my iPad.

    Hi, Srta. Sunshine. 
    Thank you for using Apple Support Communities. 
    I would recommend signing out of iMessage or turning this feature off on your iPad.  You can sign out of iMessage by selecting Settings > Messages > Send & Receive > Select Your Apple ID > Sign Out.  Or you can turn off iMessage by selecting Settings > Messages and turn iMessage off. 
    iOS: Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/ts4268
    Cheers,
    Jason H. 

  • Is there any way to click the System Message Box button  through code?

    Hi,
    Is there any way to click the System Message Box button through code?
    Is there any way to restrict the System Message Box ?
    The requirement is, i need to open the MRP Wizard form in MRP.it s run automatically.after completion of the wizard is there finish button.after clicking of the finish button, there have a system message. i want to click on "Yes" button through coding.
    when system message box open.my code is stopped.if i press yes code is running.   
    Thanks in advance.

    Thanks for replay
    bellow given the code
    i am using, when i call the finishMrp function its going to take the itemId from XML and click to the finish button.
    There have a system message .when system message fair my debugging stopped. Please give me any idea.
    Public Function Execuate() As Boolean
    Dim strSQL As String
      Dim objRS As SAPbobsCOM.Recordset
        Dim intLoop As Integer
        Dim objForm As SAPbouiCOM.Form
        objForm = objAddOnCentral.objApplication.Forms.ActiveForm
        objRS = objAddOnCentral.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        strSQL = "SELECT U_MRPCode From [@ACSYMRPLIST]"
        objRS.DoQuery(strSQL)
        If objRS.EoF Then
        Throw New Exception("No MRP Scenario Scheudled")
        Return False
        End If
    For intLoop = 1 To objRS.RecordCount
                objForm.Freeze(True)
                If intLoop = 1 Then
                initializeMRPRun()
                System.Windows.Forms.Application.DoEvents()
                Else
                reinitialize()
                System.Windows.Forms.Application.DoEvents()
                End If
                MRPRun(objRS.Fields.Item("U_MRPCode").Value)
                System.Windows.Forms.Application.DoEvents()
                objForm.Freeze(False)
                objRS.MoveNext()
            Nex
            finishMRPRun()
            Return True
        End Function
       Private Sub finishMRPRun()
            Dim strResource As String
            Dim objXML As New XmlDocument
            Dim objXMLNode As XmlNode
            Dim objXMLNodeList As XmlNodeList
            strResource = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name & "." & "AutoStart.xml"
            objXML.Load(System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(strResource))
            objXMLNodeList = objXML.SelectNodes("/AutoMRPScript/FinishMRP/Instruction")
            For Each objXMLNode In objXMLNodeList 'objXML.ChildNodes.Item(1).ChildNodes
                Select Case objXMLNode.Attributes("OPType").Value
                    Case "2"
                        systemMessageactiveFormButton(objXMLNode)
                End Select
            Next
        End Sub
    Private Sub systemMessageactiveFormButton(ByVal Instruction As XmlNode)
            Dim objForm As SAPbouiCOM.Form
            objForm = objAddOnCentral.objApplication.Forms.ActiveForm
            objForm.Items.Item(Instruction.Attributes("ItemID").Value).Click()
        End Sub
    Edited by: Badulla Sk on Dec 31, 2009 11:24 AM
    Edited by: Badulla Sk on Dec 31, 2009 11:25 AM

  • CS4 won't start up on my new computer. The error message I get is "Licensing for this product has stopped working."

    CS4 won't start up on my new computer. The error message I get is "Licensing for this product has stopped working."  Both the old and new computer are MACs and the error code I get is 150:30.  It says to restart the computer or open another application in the suite, but neither helps.  It says if nothing helps to contact Adobe support, but this is the only way I'm given to contact adobe support.  Can I really not use my purchased software on my new computer?  What do I do to activate the license on the new computer?

    "Licensing For This Product Has Stopped Working" - Help

  • ITunes 11.1.4 (62) can't find the info button to set up sync for contacts, calendars, etc.

    I'm running iTunes 11.1.4 (62) and can't find the info button to set up sync for contacts, calendars, etc.

    That option has been removed with Mavericks. Syncing for calendars and contacts etc can only be done through iCloud:
    https://www.apple.com/au/support/icloud/contacts/

  • How to add a custom PL/SQL code for a button event handler

    Hi All,
    I am a toddler in using Oracle Portal. So please forgive me for my ignorance.
    Q : How do I add a custom PL/SQL code for a button event handler?
    Basically, I would like to write MY PL/SQL function and call it. I could see that we can write "CUSTOM" code as "PL/SQL button event handler" in the form design window. But the question is that it expects only a "call" to procedure. But where do I define the procedure then? If I insert the procedure from the backend, it gets flushed the next time I compile my form.
    Hope I am able to explain my point.
    Thanks in advance,
    Abbas.

    Hi All,
    I am a toddler in using Oracle Portal. So please forgive me for my ignorance.
    Q : How do I add a custom PL/SQL code for a button event handler?
    Basically, I would like to write MY PL/SQL function and call it. I could see that we can write "CUSTOM" code as "PL/SQL button event handler" in the form design window. But the question is that it expects only a "call" to procedure. But where do I define the procedure then? If I insert the procedure from the backend, it gets flushed the next time I compile my form.
    Hope I am able to explain my point.
    Thanks in advance,
    Abbas.

  • What are the different messages that OCOD may return for a web service requ

    Hi,
    Please give me feedback on the questions below, concerning the limitations of web service, and messages which may return.
    1) What are the different messages that OCOD may return for a web service request? I need all the messages of all the scenarios which OCOD can meet, for example:
    - If the file is rejected (Error message)
    - If the file is accepted (to clarify that the records have been created)
    - if the application is unavailable (maintenance or web service is down)
    2) How many request can we send simultaneously, and how many records we can make per second?
    Best Regard,

    Have a look here Jquery slideshow tutorial for beginners | WEBTUTS

  • The App Store says I have updates for I-Photo and Garage Band.  When I try to update I get the following message: You have updates available for other accounts  To update this application, sign in to the account you used to purchase it.  I only have 1 acc

    The App Store says I have updates for I-Photo and Garage Band.  When I try to update I get the following message: You have updates available for other accounts  To update this application, sign in to the account you used to purchase it."  Both apps came with my computer and as far as I know I only have one Apple account.  Any thoughts?  Thanks.
    Karen

    Thanks for you reply.  I'm 99% positive that I'm using the user id and password that I used to set up my computer.  That's why I'm stumped.  I read the solution someone else suggested (type your user name without @gmail and create a new password.  When I tried it, I was asked for my birthday.  It didn't recognize it.  I know I got my birthday correct. Oh well...
    Karen

  • I am trying to sync my ipad with my computer and keep getting the following message: iTunes could not check for an update to the carrier settings in your ipad.  an unknown error occurs (1631).  what do I do??

    am trying to sync my ipad with my computer and keep getting the following message: iTunes could not check for an update to the carrier settings in your ipad.  an unknown error occurs (1631).  what do I do??

    The search bar can be very valuable...........
    In using it, I found out other's have had this issue and it likely means you have a 3G iPad?  If you do, go into settings and turn off cellular data, then try to update again and you should be OK........

  • I need help re-installing itunes.  I get the error message: Install failed run preupgrade for Apple Mobile Device Support.  Any solutions?

    I've been trying to upgrade to/install Itunes 10.  When trying to do so, I get the error message: Install failed run preupgrade for Apple Mobile Device Support.
    Per what I saw as a response to someone else who had a similar issue, I thought a fix might be to uninstall my existing Itunes, then try to re-install the Itunes 10.  I tried that.  However, I still get the same error message.  Now, I have no Itunes.   
    I tried to email Apple, and they have not replied.
    Anyone offer any solutions? 

    me too did you get any help?

  • I just downloaded a few tv show and the 'info' / 'description' section has not downloaded for the episodes...on previous items it has downloaded just not the recent few? Any ideas why?

    I just downloaded a few tv show and the 'info' / 'description' section has not downloaded for the episodes...on previous items it has downloaded just not the recent few? Any ideas why?

    Check permissions and ownership of the files. Maybe this helps....
    How to Take Ownership and Grant Permissions in Windows Vista

Maybe you are looking for