Changing Information Error into Fatal Error

Hi SAP Gurus
I have  changed  information error into fatal error which i got it when posting a partial payment thru F-53.
but it is throwing a fatal error only when i post thru my login ID whereas if any other users posting more then the balance amount it it is throwing only information error.
i have modified the error in OBA5.
Can anyone help me in making this error displayed to all the Users.
Thx in advance
Kamal Sankla

have you filled field UNAME? - if yes, clear it
A.

Similar Messages

  • How can I change Information/Error Heading texts

    I want to change Information/Error Heading texts that are shown during error and message notifications
    at top of the UIX pages. (I am using UIX/Struts/BC4j with jhs 9.0.4.5)
    I have changed the values of "ERROR_HEADING" , "ERROR_PAGE_HEADING" , "INFORMATION_HEADING"
    keys in the generated resource bundles, but nothing has changed.
    It looks that modifying these keys has no effect at all.
    Where is my mistake?
    Does anybody have solution for changing these headings ?
    Thanks for your help.

    Navid,
    These entries are used when generating JSP pages.
    In case of UIX the error and information headings are controlled by UIX, just like the detail disclosure text you mentioned in the other thread. So, change the language of your browser and you should get a different heading.
    Steven Davelaar,
    JHeadstart Team.

  • How can I change disclosure prompt and Information/Error Headings in UIX

    Hi all
    I want to change disclosure prompt("Details"),texts ( "Show/Hide" ) and information/error headings that are shown during error and message notifications at top of the UIX pages.
    I know these texts change according to the locale of browser but I want to override these texts according to my favorite.
    Does anybody know how I can do it ?
    Thanks for your help.

    Navid -
    Although these messages aren't currently customizable, but we are looking into supporting this in future UIX releases. The more details that you can provide regarding precisely what you need to customize, the better.
    BTW - in the table detail disclosure case, are you looking to be able to customize these messages (Details, Show, Hide) on a per-table basis? Or do want to change these messages in a consistent way for all tables in your application?
    Andy

  • Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility bu

    Installing a trial version of the Illustrator and InDesign App in Creative Cloud on my Mac is impossible. Keep getting 'Installation failed' notices. More information gives 0 fatal error(s), 0 error(s). Already repaired disk permissions in Disk Utility but nothing seems to work. Exit code: 7.

    Hi Maarton,
    Please follow the link to resolve the issue: Errors "Exit Code: 6," "Exit Code: 7" | CS5, CS5.5
    -Ankit

  • Error"No item information transferred into Accounting"in PRELIMINARY_POSTIN

    Hi Experts,
    Am trying to PARK the gl doc by using FM of PRELIMINARY_POSTING_FB01......when I tested it in SE37 with my test data.........its worked fine........but, when I implemented the same into my Z prog. of SE38........its failing, even though am using the same test data!! Am getting the below error!!
    italics
    No item information transferred into Accounting
    Message no. RW002
    Diagnosis
    The interface into Accounting requires:
    Header data
    Item data
    Currency data
    The item data is missing.
    System Response
    Processing of the data in the Accounting interface is not possible.
    Procedure
    This is a system error of the application which was called up.
    italics
    so, let me know that, Where its going wrong? How to fix it?
    thanq

    * Document Date & Currency
      READ TABLE t_datatab INTO wa_datatab INDEX 1.
      IF sy-subrc EQ 0.
        CONCATENATE wa_datatab-col3+6(4)
                    wa_datatab-col3+3(2)
                    wa_datatab-col3(2)
            INTO t_bkpf1-bldat.
        t_bkpf1-waers = wa_datatab-col6.
      ENDIF.
    * Posting date
      READ TABLE t_datatab INTO wa_datatab INDEX 2.
      IF sy-subrc EQ 0.
        CONCATENATE wa_datatab-col3+6(4)
                    wa_datatab-col3+3(2)
                    wa_datatab-col3(2)
           INTO t_bkpf1-budat.
      ENDIF.
    * user name
      t_bkpf1-usnam = sy-uname.
    * Reference
      READ TABLE t_datatab INTO wa_datatab INDEX 3.
      IF sy-subrc EQ 0.
        t_bkpf1-xblnr = wa_datatab-col3.
      ENDIF.
    * Document Header Text
      READ TABLE t_datatab INTO wa_datatab INDEX 4.
      IF sy-subrc EQ 0.
        t_bkpf1-bktxt = wa_datatab-col3.
      ENDIF.
    * Document Type
      READ TABLE t_datatab INTO wa_datatab INDEX 5.
      IF sy-subrc EQ 0.
        t_bkpf1-blart = wa_datatab-col3.
      ENDIF.
    * Company Code (Validate Company Code in the file against the Company
    *               Code in the Selection Parameters)
      READ TABLE t_datatab INTO wa_datatab INDEX 7.
      IF sy-subrc EQ 0.
        IF wa_datatab-col3 = p_bukrs.
          t_bkpf1-bukrs = wa_datatab-col3.
        ELSE.
          MESSAGE e000(z1) WITH  text-002 text-003 text-004 text-005.
        ENDIF.
      ENDIF.
    * Check mandatory fields*  IF NOT v_chk_rev IS INITIAL.
      IF t_bkpf1-bktxt IS INITIAL OR
         t_bkpf1-xblnr IS INITIAL.
        MESSAGE e000(z1) WITH  text-006.
      ENDIF.
      APPEND t_bkpf1.
    ENDFORM.                    " fill_bbkpf1
    *header end
    *2) V1 items begin
    FORM sub_fill_bbseg1.
      CLEAR: wa_datatab, t_bseg1, t_bsec1, t_bset1, t_bsez1.
      REFRESH: t_bseg1, t_bsec1, t_bset1, t_bsez1.
    * Delete Header Part from Internal Table
      DELETE t_datatab FROM 1 TO 9.
    * Get total no. of Internal Table entries again
      DESCRIBE TABLE t_datatab.
    * Delete the last Internal Table line-TOTALS.
      DELETE t_datatab INDEX sy-tfill.
      LOOP AT t_datatab INTO wa_datatab WHERE col2 NE space.
        t_bseg1-buzei = wa_datatab-col1.
        t_bsec1-buzei = wa_datatab-col1.
        t_bset1-buzei = wa_datatab-col1.
        t_bseg1-hkont = wa_datatab-col2.
        PERFORM sub_pad_zeros USING t_bseg1-hkont.
        t_bseg1-mwskz = wa_datatab-col6.
        t_bseg1-kostl = wa_datatab-col7.
        PERFORM sub_pad_zeros USING t_bseg1-kostl.
        t_bseg1-aufnr = wa_datatab-col8.
        PERFORM sub_pad_zeros USING t_bseg1-aufnr.
        t_bseg1-sgtxt = wa_datatab-col9.
        t_bseg1-prctr = wa_datatab-col10.
        PERFORM sub_pad_zeros USING t_bseg1-prctr.
        t_bseg1-bukrs = p_bukrs.
        t_bsec1-bukrs = p_bukrs.
        t_bset1-bukrs = p_bukrs.
        t_bseg1-koart = 'S'.
        IF wa_datatab-col3 NE space AND
           wa_datatab-col4 EQ space.        "debit?
          t_bseg1-wrbtr =   wa_datatab-col3.
          t_bseg1-bschl = '40'.
          t_bseg1-shkzg = 'S'.
        ELSE.
          t_bseg1-wrbtr = ( wa_datatab-col4 * -1 ). "credit?
          t_bseg1-bschl = '50'.
          t_bseg1-shkzg = 'H'.
        ENDIF.
        APPEND t_bseg1.
        APPEND t_bsec1.
        APPEND t_bset1.
        APPEND t_bsez1.
      ENDLOOP.
    ENDFORM.                    " fill_bbseg1
    *items end
         CALL FUNCTION 'PRELIMINARY_POSTING_FB01'
            EXPORTING
              i_tcode = 'FBV1'
            TABLES
              t_bkpf  = t_bkpf1
              t_bseg  = t_bseg1
              t_bsec  = t_bsec1
              t_bset  = t_bset1
              t_bsez  = t_bsez1.

  • What is "Missing Port Information" error?

    Setting FINEST log level on JAXRPC in the AS8 2004Q04 Beta reveals nothing.
    Searches on this forum provides only 3 matches for "Missing port information" (this one makes 4). In http://forum.java.sun.com/thread.jsp?forum=136&thread=508958 the same problem that I have is described, and the problem is left unresolved, despite a plea from a second user. ( I wonder what happened to these people...Did they sell short or become .NET developers. Neither are an answer for me. )
    Searches in the bug parade shows that this error is generic: In 6157880, classpath was not set correctly. In 4859401, service used a J2SE 1.4 API in a 1.3 environment. In 4802443 there is a getter for a public field and so jaxrcp was confused. There are more bugs matching but I'm not listing them all here. My point is that there doesn't seem to be a single root cause for this problem.
    So, logs don't help, forum doesn't have answer, bug parade is too noisy. This problem seems unresolved here on Sun's web pages, but here I try again:
    Here are some questions:
    1) What is "port information"?
    2) From where is it missing? Where does AS8 expect to find it?
    3) Anyone have a strategy on how to debug this?
    I have Axis TCPMON tracing the soap messages and can verify that AS8 originates the error, not the client. The limited information from the server log verifies this too:
    [#|2004-11-01T16:28:20.008-0500|SEVERE|sun-appserver-pe8.1|javax.enterprise.resource.webservices.rpc.server.http|_Thre
    adID=11;|JAXRPCSERVLET22: no endpoint specified|#]Here is the output of a client that dumps the exception:
         [java] Endpoint address = http://Stratocaster:8080/ym/ym-alias
         [java] javax.xml.rpc.soap.SOAPFaultException: JAXRPCSERVLET28: Missing port information
         [java]     at com.sun.xml.rpc.client.StreamingSender._raiseFault(StreamingSender.java:515)
         [java]     at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:294)
         [java]     at svcp.XXXAPIR0501_Stub.create2(XXXAPIR0501_Stub.java:282)
         [java]     at SubClient.main(SubClient.java:31)

    I believe I've gotten to the bottom of this error and will report it here in case there is anyone that is also having this problem and in case there is anyone that can make sense of it.
    The alias and endpoint fields must be equal.
    The deploy tool allows you to enter an alias and an endpoint for your web service. I'll show you the user interface specifics below. The data you enter in these fields show up in the wsdl, the web.xml and the sun-web.xml, and I'll show what elements below.
    Except for the preceding '/' in the alias field (the '/' is inserted by deploytool), the alias and the endpoint string must be identical: if '/imp-alias' is the alias value, the endpoint must be 'imp-alias'.
    If they are not equal and your client uses the alias value in endpoint address, you will get "Missing port information" error.
    If they are not equal and your client uses the endpoint value in endpoint address, you will get '404 Not Found' error.
    For example, lets say I set alias to 'api-alias' and endpoint to 'api-endpoint'. Using my browser, I can get the wsdl with http://localhost:8080/context/api-alias?wsdl (where context is also a value set in deploytool gui). The returned wsdl will show that the soap:adress location attribute is: http://localhost:8080/context/api-endpoint. If your client uses the wsdl to generate stubs, the default endpoint is this location and your client will get the '404 Not Found' error. If you client provides an endpoint address by setting the ENDPOINT_ADDRESS_PROPERTY to http://localhost:8080/context/api-alias, your client will get the "Missing port information" error.
    You get to the alias and endpoint fields in deploytool from the File panel on the left. Open the subfolder that represents your war file. There will be your web service. Select the web service and the main panel will change to contain about 4-6 tabs. One tab labelled Aliases another tab labelled Endpoint.
    The alias field shows up in the web.xml file like this:
    <servlet-name>APIImpl</servlet-name>
    <url-pattern>/api-alias</url-pattern>
    </servlet-mapping>The endpoint field show up in the web.xml file under the same servlet-mapping element as alias:
    <servlet-name>APIImpl</servlet-name>
    <url-pattern>/api-endpoint/__container$publishing$subctx/*</url-pattern>
    </servlet-mapping>The endpoint field shows up in the wsdl in the soap:address element's 'location' attribute:
          <soap:address location="http://localhost:8080/context/api-endpoint" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"/>The endpoint field shows up in the sun-web.xml file
    <endpoint-address-uri>api-endpoint</endpoint-address-uri>John

  • SCCM 2012 Deploy --- Error = The software change returned error code 0x87D00324(-2016410844).

    Deployment to the client is successful but the error reported within Clients "SCCM Software Center"  
    The software change returned error code 0x87D00324(-2016410844).
    Also States on "Status" Past Due - Will be Retired"
    Can't figure this one out and I did some googling with no success in finding a solution?
    I am running an Adobe Flash install (.EXE)
    Any help or direction would be greatly appreciated
    RF

    Hi,
    Thank you for your response
    ""Wow6432Node is not valid on x86 systems."""
    Yes, that I am aware of that.....Windows on Windows, for running x86 apps on x64 Windows<o:p></o:p>
    When I first created the detection method I had only created the "WoW" Check
    for Flash value in the reg, which was running against both x86 & x64 Win 7
    systems, and forgot to include the x64 check/, either case, the error appeared
    on the WOW check. Presently I have 2 "Detection Clauses" one for x86
    and the second clause is x64 ( non WOW Path), and still receive the same erorrs
    on both x86 & x64 systems. ( and x64 system have both reg entries since Win 7 has both x86 & x64 versions of IE)
    Looking at the registry of an x64 Win 7 system I find the Adobe Flash registry entry is
    located in both Wow6432Node and also in the x64 sections of the reg.....<o:p></o:p>
    """"Also, why use the default value? I doubt there's anything in there (the default value is the
    value display in a key in regedit with the name of
    "@").""""<o:p></o:p>
    When Default Value is selected the boxes/options below that allow for more detailed
    information to be entered when performing the "reg check"? This is
    where I had been able to enter specific Build/Version to look for, Flash
    11.4.402.265, so that if it does not discover the build # it will proceed with
    the install.....<o:p></o:p>
    I figured having the option to check for Build/Version # would omit SCCM reinstalling on
    systems that have build 11.4.402.265 already?<o:p></o:p>
    From what I understand is that Adobe Flash x64 installs both versions x86 & x64 since Win 7 has both IE
    x86 & IE x64 bit versions by default, and this would explain the Wow6432Node reg
    entries and the true x64 reg entries in both locations when installing.
    Overall, I am thinking I may be heading in the wrong direction in resolving this, as x86 & x64 versions install on the systems, so this tells me it is detecting when / what needs to be installed, the issue seems to be how it reports back after installing......
    Looking further, I view the Content Status Page, and there reporting info in Asset Detail under [Success]  all others { / In Progresss / Error /Unknown } has no info......
    If this helps provide further details.....
    Thanks
    Regards,
    Ron
    RF

  • Changing CAT2 Error Messages

    Hi,
    I'm looking to change the error messages displayed from CAT2 when an error is encountered on the timesheet screen.  e.g.  "System Status AALK is active"
    Is this possible?  If so, where can I find the messages?
    Thanks,

         https://discussions.apple.com/thread/4749177?start=0&tstart=0
    Selecting all photos and then starting to drag and drop but dropping back into place created a pop-up alert for each file which was causing the problem.  Fortunately, I did not need these files, so I was able to delete them and the problem appears to be corrected. 

  • The software change returned error code 0x87D0128F (-2016406897)

    Hi all,
    We are currently using Admin Studio 2013 to create App-V applications (which in turn uses the Microsoft App-V 5.0 Sequencer running through AAC).  I have noticed that the last few applications that have been sequenced, when deployed via SCCM 2012 have
    the following error:
    The software change returned error code 0x87D0128F (-2016406897)
    Now, we have tested these applications on a vanilla Windows 7 SP1 OS using the AppVLauncher and the application launches as expected.  The issue seems to be with the app deployment.  I have read a couple of articles about this (slim picking) and
    one suggested the shortcut could have an extra space at the start.  This is not the case for my apps.  Also the other suggestion is changing the Enable Scripting registry key, but again this did not work.
    Has anyone else seen this problem and have a solution?
    Ta

    Thanks for replying Torsten,
    This is the error log I get.  Not quite sure how to diagnose the issue:
       + CategoryInfo          : InvalidResult: (:) [Add-AppvClientPackage], Clie 
       ntException
        + FullyQualifiedErrorId : ConfigurePackageError,Microsoft.AppV.AppvClientP 
       owerShell.AddAppvPackage
    ]LOG]!><time="16:16:49.418+00" date="11-19-2013" component="AppEnforce" context="" type="3" thread="2532" file="appexcnlib.cpp:441">
    <![LOG[AppV command ["C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Add-AppvClientPackage -Path 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01.appv'
     -DynamicDeploymentConfiguration 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01_UserConfig.xml'] failed with return code 1.]LOG]!><time="16:16:49.419+00" date="11-19-2013" component="AppEnforce" context="" type="3" thread="2532" file="appvcommandutil.cpp:128">
    <![LOG[AppVCommandUtil::RunAppVCommand() failed. (0x87d0128f)]LOG]!><time="16:16:49.420+00" date="11-19-2013" component="AppEnforce" context="" type="3" thread="2532" file="appvcommandutil.cpp:154">
    <![LOG[AppVManageClient5X::InstallAppVPackage() failed. (0x87d0128f)]LOG]!><time="16:16:49.421+00" date="11-19-2013" component="AppEnforce" context="" type="3" thread="2532" file="appvmanage5x.cpp:86">
    <![LOG[    CAppV5XHandler::InstallApp() failed. (0x87d0128f)]LOG]!><time="16:16:49.422+00" date="11-19-2013" component="AppEnforce" context="" type="3" thread="2532" file="appv5xhandler.cpp:646">
    <![LOG[++++++ App enforcement completed (5 seconds) for App DT "00031_SolidWorks_eDrawings_2014_EN_R01" [ScopeId_42683436-a79d-4a9e-8d2c-695680507cab/DeploymentType_f1b9b8e8-8d73-4138-909e-5e18af698a2e], Revision: 1, User SID: ] ++++++]LOG]!><time="16:16:49.427+00"
    date="11-19-2013" component="AppEnforce" context="" type="1" thread="2532" file="appprovider.cpp:2366">
    <![LOG[The package with GUID {E6F08B0C-F196-450C-A615-7731F4DAFA47} is not installed on this machine yet]LOG]!><time="17:10:13.543+00" date="11-19-2013" component="AppEnforce" context="" type="1" thread="4828" file="appvpackagequery5x.cpp:177">
    <![LOG[The package with GUID {E6F08B0C-F196-450C-A615-7731F4DAFA47} is not installed on this machine yet]LOG]!><time="10:46:36.192+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appvpackagequery5x.cpp:177">
    <![LOG[The package with GUID {E6F08B0C-F196-450C-A615-7731F4DAFA47} is not installed on this machine yet]LOG]!><time="10:46:36.259+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appvpackagequery5x.cpp:177">
    <![LOG[+++ Starting Install enforcement for App DT "00031_SolidWorks_eDrawings_2014_EN_R01" ApplicationDeliveryType - ScopeId_42683436-a79d-4a9e-8d2c-695680507cab/DeploymentType_f1b9b8e8-8d73-4138-909e-5e18af698a2e, Revision - 1, ContentPath - C:\WINDOWS\ccmcache\y,
    Execution Context - Any]LOG]!><time="10:46:37.834+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appprovider.cpp:1643">
    <![LOG[    A user is logged on to the system.]LOG]!><time="10:46:37.916+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appprovider.cpp:2014">
    <![LOG[    Performing detection of app deployment type 00031_SolidWorks_eDrawings_2014_EN_R01(ScopeId_42683436-a79d-4a9e-8d2c-695680507cab/DeploymentType_f1b9b8e8-8d73-4138-909e-5e18af698a2e, revision 1) for system.]LOG]!><time="10:46:37.927+00"
    date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appprovider.cpp:2079">
    <![LOG[The package with GUID {E6F08B0C-F196-450C-A615-7731F4DAFA47} is not installed on this machine yet]LOG]!><time="10:46:38.236+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2280" file="appvpackagequery5x.cpp:177">
    <![LOG[    Installing App-V 5.X package 00031_SolidWorks_eDrawings_2014_EN_R01 (DTId = ScopeId_42683436-a79d-4a9e-8d2c-695680507cab/DeploymentType_f1b9b8e8-8d73-4138-909e-5e18af698a2e, Revision = 1)]LOG]!><time="10:46:38.245+00" date="11-20-2013"
    component="AppEnforce" context="" type="1" thread="2500" file="appv5xhandler.cpp:422">
    <![LOG[Running App-V command ["C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1'; Get-AppVPublishingServer | Remove-AppVPublishingServer
    ] for the  machine]LOG]!><time="10:46:38.246+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appvcommandutil.cpp:117">
    <![LOG[    Executing Command line: "C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1'; Get-AppVPublishingServer
    | Remove-AppVPublishingServer  with system context]LOG]!><time="10:46:38.247+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appexcnlib.cpp:345">
    <![LOG[    Process 4356 terminated with exitcode: 0]LOG]!><time="10:46:43.218+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appexcnlib.cpp:431">
    <![LOG[The AppV 5X client is configured for use with ConfigMgr.]LOG]!><time="10:46:43.219+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appvclientconfig5x.cpp:64">
    <![LOG[The package with GUID {E6F08B0C-F196-450C-A615-7731F4DAFA47} is not installed on this machine yet]LOG]!><time="10:46:43.245+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appvpackagequery5x.cpp:177">
    <![LOG[Package: 00031_SolidWorks_eDrawings_2014_EN_R01 with version GUID {7013821C-844B-46E4-B3DB-380B65BF93CF} is not installed. Will install it]LOG]!><time="10:46:43.246+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500"
    file="appv5xhandler.cpp:459">
    <![LOG[Configure the package 00031_SolidWorks_eDrawings_2014_EN_R01 as download and execute]LOG]!><time="10:46:43.249+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appv5xhandler.cpp:468">
    <![LOG[Running App-V command ["C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Add-AppvClientPackage -Path
    'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01.appv'  -DynamicDeploymentConfiguration 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01_UserConfig.xml'] for the  machine]LOG]!><time="10:46:43.255+00" date="11-20-2013"
    component="AppEnforce" context="" type="1" thread="2500" file="appvcommandutil.cpp:117">
    <![LOG[    Executing Command line: "C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Add-AppvClientPackage
    -Path 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01.appv'  -DynamicDeploymentConfiguration 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01_UserConfig.xml' with system context]LOG]!><time="10:46:43.256+00" date="11-20-2013"
    component="AppEnforce" context="" type="1" thread="2500" file="appexcnlib.cpp:345">
    <![LOG[    Process 4120 terminated with exitcode: 1]LOG]!><time="10:46:45.438+00" date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appexcnlib.cpp:431">
    <![LOG[Here is the error message generated by the process:
    Add-AppvClientPackage : XML document could not be loaded because it is 
    invalid. Please supply a valid XML document. Please consult AppV Client Event 
    Log for more details.
    Operation attempted: Configure AppV Package. 
    AppV Error Code: 050009000A. 
    Please consult AppV Client Event Log for more details.
    At line:1 char:106
    + import-module 'C:\Program Files\Microsoft Application 
    Virtualization\Client\Appv ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult: (:) [Add-AppvClientPackage], Clie 
       ntException
        + FullyQualifiedErrorId : ConfigurePackageError,Microsoft.AppV.AppvClientP 
       owerShell.AddAppvPackage
    ]LOG]!><time="10:46:45.442+00" date="11-20-2013" component="AppEnforce" context="" type="3" thread="2500" file="appexcnlib.cpp:441">
    <![LOG[AppV command ["C:\\windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -ExecutionPolicy Bypass import-module 'C:\Program Files\Microsoft Application Virtualization\Client\AppvClient\AppvClient.psd1';  Add-AppvClientPackage -Path 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01.appv'
     -DynamicDeploymentConfiguration 'C:\WINDOWS\ccmcache\y\00031_SolidWorks_eDrawings_2014_EN_R01_UserConfig.xml'] failed with return code 1.]LOG]!><time="10:46:45.443+00" date="11-20-2013" component="AppEnforce" context="" type="3" thread="2500" file="appvcommandutil.cpp:128">
    <![LOG[AppVCommandUtil::RunAppVCommand() failed. (0x87d0128f)]LOG]!><time="10:46:45.444+00" date="11-20-2013" component="AppEnforce" context="" type="3" thread="2500" file="appvcommandutil.cpp:154">
    <![LOG[AppVManageClient5X::InstallAppVPackage() failed. (0x87d0128f)]LOG]!><time="10:46:45.445+00" date="11-20-2013" component="AppEnforce" context="" type="3" thread="2500" file="appvmanage5x.cpp:86">
    <![LOG[    CAppV5XHandler::InstallApp() failed. (0x87d0128f)]LOG]!><time="10:46:45.446+00" date="11-20-2013" component="AppEnforce" context="" type="3" thread="2500" file="appv5xhandler.cpp:646">
    <![LOG[++++++ App enforcement completed (7 seconds) for App DT "00031_SolidWorks_eDrawings_2014_EN_R01" [ScopeId_42683436-a79d-4a9e-8d2c-695680507cab/DeploymentType_f1b9b8e8-8d73-4138-909e-5e18af698a2e], Revision: 1, User SID: ] ++++++]LOG]!><time="10:46:45.450+00"
    date="11-20-2013" component="AppEnforce" context="" type="1" thread="2500" file="appprovider.cpp:2366">
    Just to add to this I have also managed to install the application from the downloaded content from SCCM.  By that I mean I go into the cached folder and run the app-v launcher, load and install the application and it works correctly.  Therefore
    it must be something to do with the launch command through SCCM?

  • How to change the error message Invalid login credentials

    Hi all,
    How to change the default error messages .
    1) In the Login page while giving wrong username or password .It showing
    Error message "Invalid login credentials".
    But requirement is change the above error message.
    2) I need to change the error message instead of "1 error has occureed"
    Thanks in Advance
    Sudhakar

    On the Login Page of the application create a 'Before Header' process with this code if  apex_application.g_notification ='Invalid Login Credentials' then
             apex_application.g_notification :='Your Altered Failed Login Message Here';
      end if;varad

  • Changing the error message

    Hi,
    <br />
    <br />How do I change the error message generated for a function such as an expired login.
    <br />
    <br /> <?php<br /> echo $tNGs->getErrorMsg();<br />?>
    <br />
    <br />Thanks
    <br />
    <br />Laurence

    Hi Laurence,
    ADDT´s error messages are spread across all those XYZ.res.php files located in the includes/resources folder -- and in your case it seems to be the file "tNG_pro.res.php" which provides the error messages related to the login.
    In here you´ll find two message variants : one for ADDT´s "development" mode, and the other for the "production" mode. As you most likely will not need to edit the "development mode" messages which are identified by a trailing "_D" in the variable name
    (e.g. BADWORDS_SQL_ERROR_D), you´ll just need to adapt the "production mode" messages
    (e.g. BADWORDS_SQL_ERROR)
    Cheers
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to Generate Information Errors in Generic Extractor Function Module

    Hi, In my Generic Extractor logic I am reaching out to an additional table to get a field.  I would like to produce an informational error or red error in the process monitor if I'm unable to get the field.  Is this possible?  How can I generate these messages in the Extractor Function Module?
    Thanks!

    Hi,
    Please go through the below doc. It explanins each and every step of creation of generic extractor through Function module.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c062a3a8-f44c-2c10-ccb8-9b88fbdcb008?quicklink=index&overridelayout=true
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30aefb04-7043-2c10-8e92-941536eebc79?quicklink=index&overridelayout=true
    Regards,
    mahesh

  • Crystal report "Failed to load database information" error after publish

    I have seen similar questions, but none of the answers seem to apply to my situation.
    I am upgrading an older web application to Visual Studio 2013, using the SAP Visual Studio Crystal Reports tools. Everything works great until I publish.
    I have two sorts of reports: Some that export to Excel, and some that export to PDF. All work fine within Visual Studio. However, when I publish, the reports that should go to PDF give me the following error.
    Failed to load database information.Error in File [Report Name] {GUID}.rpt
    I have seen several posts that indicate that this could be a 32/64 bit issue. I am using a newer 64 bit SQL database, and this is an old application. I have it set to Any CPU. However, since the reports work fine in Visual Studio, I don't see how this could be the issue.
    Any other ideas?
    Thanks,
    Geoff Callaghan

    Hi Geoff
    This is definitely not due to the export type. Rather it will be due to a db issue of some sort. My suspicion is that reports that work use a different type of connection that reports that fail. E.g.; the reports that work use OLE DB, those that fail use ODBC and the ODBC datasource is 32 bit, not 64 bit(?). E.g.; check the database connections between reports that work and those that do not. And remember to also check the connections in subreports (if any).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • DFSR Replication Event ID 1202 The DFS Replication service failed to contact domain controller Additional Information: Error: 160 (One or more arguments are not correct.)

    Hi,
    hummmm...
    The client had 1 Server with AD and All Apps, IIS, Terminal Servers (30 device Cal), File Server, SQL2008R2 on it
    Task: Install new AD server promote it to DC,  bring in 2nd server, Replicate the File Server (DFSR) on these 2 servers, and demote it to standard server. 
    1) Old AD with name "Server" with OS-2008R2 SP1 and is a DC.
    2) Brought in a new server "PrimaryAD", Installed 2008R2, done DC Promo, and added it as Additional Domain controller
    3) Transferred roles from old server "Server" to "PrimaryAD"
    4) Brought in a new File Server replicating server "Backup-Server"
    5) Copied all the data from Server to Backup-server as DFS initial file sync with robocopy
    6) here the problem started, after the copy finished, next morning the "Server" server crashed.....
    7) thank god the data was backed up on Backup-server. but we didnt get the time to Demote the server "Server" and remove AD from it.
    8) Since AD was replicated so "PrimaryAD" was are DC, brought 2nd Server "SecondaryDC" as additional domain controller.
    9) we cleaned up the metadata and used ASIEDIT to clean the remaining stuff.
    10) the "Server" server was formatted and renamed as "Primary-Server" and OS2008R2 SP1 was installed with rest of required apps
    11) so now the PrimaryAD the DC, SecondaryAD the Additional Domain controller, Primary-Server the mail server and File server, the Backup-server, the replicated server.
    Now configured DFS Replication from Primary-Server to Backup-server and receive following Event ID 1202
    If i Configure DFS Replication as follows
    PrimaryAD <<>> SecondaryAD -= Works... no errors...
    PrimaryAD <<>> Backup-Server = Creates but Dosent works Event ID 5012, error The DFS Replication service failed to communicate with partner BACKUP-SERVER, Additional Information: Error: 9026 (The connection is invalid)
    PrimaryAD <<>> Primary-Server = Dosent creates replication job just hangs,
    on primaryad continious Eveni ID 10009, DCOM was unable to communicate with the computer "SERVER" using any of the configured protocols
    ......something on PrimaryAD is still trying to connect to old corrupt AD server "Server"
    No errors with AD replication, SYSVOL & Netlogon shares also working fine and accessible.
    DFS Diagnose report says
    DNS name: backup-server.mydomain.com
    Domain name: mydomain.COM
    Reference domain controller: --           (HERE there is NO DOMAIN CONTROLLER mentioned) 
    IP address: 192.168.1.248,192.168.1.251,::1
    Site: Default-First-Site-Name
    Forgot to mention, gave full rights with ADSIEDIT to DFSR-LocalSettings  for all server to Administrator and read permissions to "Authenticated Users"
    DFSRDIAG POLLAD throws following error
    c:\Dfsrdiag pollad /verbose
    [INFO] Computer Name: BACKUP-SERVER
    [INFO] Computer DNS: Backup-Server.mydomain.COM
    [INFO] Domain Name: mydomain
    [INFO] Domain DNS: mydomain.COM
    [INFO] Site Name: Default-First-Site-Name
    [INFO] Connected to WMI services on computer: Backup-Server.mydomain.COM
    [INFO] Invoke PollDsNow() method on Backup-Server.mydomain.COM
    [ERROR] PollDsNow method executed unsuccessfully. ReturnValue: 12 (0xc)
    [ERROR] Failed to execute PollAD command Err: -2147217407 (0x80041001)
    Can anyone point me to any direction which can lead to resolution of this ERROR and make DFS_R work..
    Thanks
    bikram

    Hi,
    It seems that DCPROMO did its work without complaints, still the DFSR references remained in AD. You could refer to the article below to clean up the DFS Replication object.
    How to remove data in Active Directory after an unsuccessful domain controller demotion
    http://support.microsoft.com/kb/216498
    In additional, please refer to the following thread to troubleshoot the issue:
    DFS is not working anymore.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/953be9ef-e9e3-4885-a5c4-47fc475ba562/dfs-is-not-working-anymore?forum=winserverfiles
    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.

  • I am getting the 'invalid personalization information' error when I start my photoshop cs8. I cannot find my original disk to re-install, but do have the serial number. Can I download a trial version and then enter my serial number?

    I am getting the 'invalid personalization information' error when I start my photoshop cs8. I cannot find my original disk to re-install, but do have the serial number. Can I download a trial version and then enter my serial number?

    If it is the first CS version then you will need to check out the following.  I believe it applies to CS as well even though it specifies CS2....
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3 - http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

Maybe you are looking for

  • XMLGEN: Produce XML dump of a table WITH tags for null column values

    I am new to generating XML so bear with me.... We have a customer who needs an XML extract of data, including tags for any column that is null. I created a simple test case below using DBMS_XMLGEN.getXML. The first row (A1) has no null values and thu

  • Set Finder Layout and Size - Silly Question

    Hi Guys and Happy Late Valentine's Day! I have a really easy question regarding the size of the finder window. Every time I open a new window in the Finder, it is too small for my liking, so I have to resize it. Do you know how I can set a size for t

  • How to add descriptions to web app items?

    How do I add metta data (keywords and descriptions) to my web app items? Do I need to create them as additional custom fields?  Any help would be appreciated.

  • Constant "you have changed the settings for the iphone" in iTunes

    On my iPhone 4, I can sync my phone with no issues, and when the sync is done and I switch over to the iTunes store or my library, it always pops up with "You have changed the settings for the iphone "my iPhone". Would you like to apply these setting

  • Substring error with ( or  )

    Hi, i'm trying to do a substring in a string.. using: txt.replaceAll(":(", "SAD");but get an error "Exception in thread "AWT-EventQueue-0" java.util.regex.PatternSyntaxException: Unclosed group near index 2 :("or when i use: txt.replaceAll(":(", "HAP