Problem posting HTML content in WebForms

I apologize in advance if this is posted in the wrong location; I cannot find a form for Webforms or ASP.NET in the listings.  (I also apologize if this is a duplicate question; I had trouble submitting it the first time.)
I'm updating an existing WebForms application for a relative who will undoubtedly find lots of little details for me to fix over the next few weeks.  In order to reduce the number of service calls, I'm implementing a "site config" feature that
will enable him to modify some of the site elements himself, such as toggling the display of certain labels or repositioning the hit count.  The configuration isn't being stored in a database, but rather in an XML document in the site root.  Each
time the form is used to update the XML, a backup is saved, and the site can revert to a previous version if the current config becomes hosed.  In short, I'm not particularly concerned about malicious code going into the XML, although I do have some validation
in place to make sure he doesn't screw things up.
I'd like the config to be able to hold some HTML, so that he can apply custom formatting to the elements he configures, and I have of course applied Server.HtmlEncode to those fields.  But I can't get the form to post HTML content.  The article here
(http://msdn.microsoft.com/en-us/library/a2a4yykt(v=vs.100).aspx) advises me to turn off the request validation using the @ Page attribute ValidateRequest="false."  However, this has no effect.  Upon form submission, the code behind is
completely ignored, and the exception  "A potentially dangerous Request.Form value was detected from the client" is logged.
Is there a way to override this behavior?  I'm using Framework version 4.0 (with Visual Studio 2010).

If I remember correctly, you *should* be able to use whatever value you want for "key" in the RegisterOnSubmitStatement.  Have you tried something like this just for a test?
this.ClientScript.RegisterOnSubmitStatement(
this.GetType(),
"I_Can_Put_Whatever_I_Want_Here",
"alert('Microsoft is Awesome!');"
But I *think* you are having a different issue.  It *sounds* like to me that maybe your EncodeAll ECMA/JavaScript function may not be getting registered properly or in a timely manner.  Have you used IE Developer Tools (F12) to poke around
and view the available ECMA/JavaScript Files and definitions?
There are different ways to register ECMA/JavaScript in *.NET.  One primitive way is to simply put something like this in the "head" tag of your MasterPage or ASPX file:
<script type="text/javascript" src="./myJSFile.js">
</script>
Others ways are to use the
ScriptManager or
RegisterClientScriptInclude .  You can see a few easy examples of how to register ECMA/JavaScript in Mr. Akhtar's post here:
https://stackoverflow.com/questions/1666797/how-to-include-javascript-file-in-asp-net-page
One really *strange* behavior that seems to get a lot of people when registering JavaScript manually via the "script" tag as mentioned above is that you often have to use a *full* </script> end tag for scripts to register properly. 
I have *no* idea why some browsers require this, but it is something web developers need to be aware of.  For example my
"<script type='text/javascript' src='./myJSFile.js'></script>"
example above should work if you have the right path but strangely
"<script type='text/javascript' src='./myJSFile.js' />" does *not* necessarily work on all browsers even if you do use the correct path to the desired ECMA/JavaScript File.
Best,
Shawn

Similar Messages

  • Problems with html content in box

    Hi! I have a problem with html content. For example photoswipe. If I import the folder with the index.html of photoswipe as an article all works fine. If I link it trough the folio overlay creator/webcontent) into a box in indesign dps, it stays empty. Seems like it doesnt find the images/paths??
    Klaus

    This sounds familiar. PhotoSwipe doesn't seem to like working in a web content overlay unless the JavaScript and other source files are uploaded within HTMLResources. This means editing your local HTML file so that paths to the JavaScript, images and CSS files begin by pointing to HTMLResources virtual folder (../../../HTMLResources/) before their subfolder and filenames. It's worth a try.

  • Adding HTML content in Planning Webform Instruction box

    Hi,
    I am working on Planning 9.3.1, we are migrating the application from planning 3.5.
    One point i noticed todays is "Adding Instruction to Webform".
    In my Old system- i can add HTML content to set the instruction more user friendly or even i can add url inside the instruction box by href fucntion of html.
    In System 9.3.1- when i just copied that html from old webform Instruction box to new system webform Instruction box, it is not displaying in correct format.
    Any idea and any thought , how can manage to add html inside the Instruction box.
    Ex: <p><b><Font color=blue>Tax Percentage Input:</Font></b><br><br> <b>This form is used to enter applicable Federal and State taxes </b>
    The above text display on click of "View" as the font ,bold etc defined above in my planning 3.5 webform but same content is not working in 9.3.1
    Is that feature has gone in system 9 onwords...
    Regards,
    KK
    Edited by: user8919739 on Dec 13, 2010 12:05 PM

    EW wrote:
    That is correct.> In old versions of Planning if you knew how to write html you could add stuff into the instructions that could be a hyperlink and could be edited for fonts size and color etc.
    >
    This is no longer available based on the base code changing and no longer allowing it. Other might have suggestions on how to make so that works again but way I know handle this is through "menus". In menus you can add hyperlinks to other stuff.
    Well I thought it changed back in later versions 11.1.1.3.04 (I know not much use if you are on earlier versions) :- 9475065 – Users cannot use HTML commands in data form and task list instructions.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Post BLOB image in an html content

    I have a HTML content which will go as a body of the email to be sent to various users.
    Now in the email, somewhere there is a tag
    <img src="[IMG]"/>
    We need to replace the [IMG] with the image link store in the database column, so that the email receiver can see the image there.
    Any help
    Thanks
    Deb

    Hi Tony
    I am using something like this
    <img src="WRT.DISPLAY_TEMPLATE_IMAGE?inid=189" width="100%" border="0" >
    where DISPLAY_TEMPLATE_IMAGE is a procedure with the following code
    create or replace
    PROCEDURE display_template_image (inid NUMBER)
    AS
    vmime VARCHAR2 (48);
    vlength NUMBER;
    vfilename VARCHAR2 (2000);
    vblob BLOB;
    BEGIN
    SELECT ctl_image_mime_type
    , ctl_image
    , ctl_image_filename
    , DBMS_LOB.getlength (ctl_image)
    INTO vmime
    , vblob
    , vfilename
    , vlength
    FROM contact_templates
    WHERE ctl_id = inid;
    OWA_UTIL.mime_header (NVL (vmime, 'application/octet'), FALSE);
    HTP.p ('Content-length: ' || vlength);
    OWA_UTIL.http_header_close;
    WPG_DOCLOAD.download_file (vblob);
    END;
    The above procedure works fine when I use it in a IR report query. but not in a HTML script.
    Thanks
    Debraj

  • Setting html content with setContent() does never show images

    I've an application set sets dynamically generated html-content in a webview node by using the webengine.setContent() method. This generated html content uses image-tags.
    Here's the problem: the image is not displayed. I tried all variations (absolute url like "http://localhost/c:/test.png" or "file://c:/test.png", relative urls like "test.png" with png in jar-file).
    Anyone out there who has a workaround for me? I appreciate any comment.

    one non-working apple <img src="apple.png"> You loaded the page content with loadcontent, then inside the page content provided a relative url. This is likely an error.
    The question is, what is this url relative to?
    The answer is either likely undefined as no protocol was used to load the page content and so it can't be determined how to load the relative url resource.
    and two non-working peaches <img src="http://localhost/c:/peaches.png">
    You attempted to load content using the http protocol server on the localhost, but you have no such server on the host, so this cannot work.
    and a working remote image url <img src="http://docs.oracle.com/javafx/javafx/images/javafx-documentation.png">
    This works because you fully specified how to load the content by providing the protocol and valid resource reference.
    OK, so the question remains how do you images from the local drive?
    There are three options for this in the following code.
    package org.jewelsea.examples.webviewlocal;
    import javafx.application.Application;
    import javafx.beans.value.*;
    import javafx.scene.Scene;
    import javafx.scene.layout.FlowPane;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    /** Example of a webview loading resources from the file system. */
    public class WebViewLocal extends Application {
      public static void main(String[] args) throws Exception {
    //    URL.setURLStreamHandlerFactory(new HandlerFactory());
        launch(args);
      public void start(final Stage stage) throws Exception {
        final FlowPane layout = new FlowPane();
        WebView webView = new WebView();
        webView.getEngine().load("file:///C:\\dev\\gettingstarted\\timeforgotten.html");
    //    webView.getEngine().load("jar:file:///C:\\dev\\javafx\\JavaFXidea\\out\\artifacts\\JavaFXidea_jar\\JavaFXidea.jar!/org/jewelsea/examples/webviewlocal/timeforgotten.html");
    //    webView.getEngine().load("resource:///org/jewelsea/examples/webviewlocal/timeforgotten.html");
        webView.getEngine().getLoadWorker().exceptionProperty().addListener(new ChangeListener<Throwable>() {
          @Override public void changed(ObservableValue<? extends Throwable> observableValue, Throwable oldThrowable, Throwable newThrowable) {
            System.out.println("Load exception: " + newThrowable);
        // layout the scene.
        layout.getChildren().addAll(webView);
        Scene scene = new Scene(layout, 1000, 600);
        webView.prefWidthProperty().bind(scene.widthProperty());
        webView.prefHeightProperty().bind(scene.heightProperty());
        stage.setScene(scene);
        stage.show();
    }which loads the following html file:
    <html>
    <head>
      <style type="text/css">p { color: sienna; font-size: 20px; text-align: center; }</style>
    </head>
    <body bgcolor="cornsilk">
    <p><em>
        <br/>
        On either side the river lie,<br/>
        Long fields of barley and of rye,<br/>
        And through the fields a road runs by,<br/>
        To many towered Camelot.
    </em></p>
    <p><img src="camelot.jpg"/></p>
    </body>
    </html>If you want to test this example the camelot.jpg image is downloadable from http://www.timelessmyths.com/arthurian/gallery/camelot.jpg.
    Option 1: The file:// protocol for lookup from the filesystem.
    This is the most straight-forward as it is just based on standard html layout in the filesystem - just place your html and it's relative referenced images somewhere in your filesystem in locations relative to each other - if your browser loads it properly, then your webengine will to if you give it the right file:// path.
    In the case of file:///C:\\dev\\gettingstarted\\timeforgotten.html, timeforgotten.html is placed in c:\dev\gettingstarted and camelot.jpg image is placed in the same directory.
    Option 2: The jar:file:// protocol for lookup from a jar hosted on the filesystem.
    This makes use of the http://docs.oracle.com/javase/7/docs/api/java/net/JarURLConnection.html to find your resources.
    If your application resources are packaged in a jar file (could be the same jar file as your main application class) then you can reference the jar file through the file protocol, then pick out the resources packaged in the jar file via their relative paths.
    Option 3: The resource:// protocol for lookup based on the classpath.
    This type of resource lookup is the one most Java programmers are familiar with - a classloader is used to load a resource. The pattern is widely used in web application frameworks on the server. But usually the means to do this is via a classloader.getResource() call, not via a URL.
    Java does not, by default, have a URL protocol handler for looking up resources on the classpath, so if you want to do this, it is necessary to create your own protocol and install it.
    The installation function is the commented out line: // URL.setURLStreamHandlerFactory(new HandlerFactory());
    It is a system wide call for the VM and should be called (just once) before any URL Connections are established.
    To get this to work I used a resource handler from http://www.arakhne.org/arakhneVmutils/index.html which included the following classes:
      java.org.arakhne.vmutil.resource.Handler
      java.org.arakhne.vmutil.resource.HandlerFactory
      java.org.arakhne.vmutil.resource.URLConnection
      java.org.arakhne.vmutil.ClassLoaderFinder
      java.org.arakhne.vmutil.Resources
      java.org.arakhne.vmutil.ResourceNotFoundException
      java.org.arakhne.vmutil.URISchemeType
      java.org.arakhne.vmutil.URLHandlerUtilDetails on how all this works are in http://java.sun.com/developer/onlineTraining/protocolhandlers/ which defines "A New Era for Java Protocol Handlers" by defining a URL handler extension mechanism which is hardly ever used.
    As a final note to my way overly long forum post, when the WebEngine doesn't process the urls sometimes you can get info on what went wrong via the monitoring the loadWorker's exception property, but sometimes I was able to get more complete stack traces by trying to open a connection on a URL to see if I had got the URL correct - for example:
        URL url = new URL("jar:file:///C:\\dev\\javafx\\JavaFXidea\\out\\artifacts\\JavaFXidea_jar!/org/jewelsea/examples/webviewlocal/timeforgotten.html");
        url.openConnection();Anyway, just using the file:// protocol in webEngine.load() will probably accomplish what you need.
    Note that if it is a webstart or browser embedded app, then you'll need to sign it if you want to access the local file system.

  • Print html content of an JEditorPane

    Hello!
    I have an JEditorPane with some HTML Content displayed (as it is displayed in a browser).
    Now i want to sent this content to a printer.
    After some search i found the DocumentRenderer class from this link:
    http://www.fawcette.com/javapro/2002_12/online/print_kgauthier_12_10_02/
    It may be trivial, but i don't know how to create a HTMLDocument Object from my JEditorPane (and its contents).
    Maybe somebody can help me out with this.
    my code so far:
    DocumentRenderer renderer = new DocumentRenderer();
    HTMLDocument doc = new HTMLDocument();
    //At this point i don't  know how to get my JEditorPane/it's contents "into" the HTMLDocument Object
    renderer.setDocument(doc);
    renderer.print(doc);                               Many thanks in advance for help!

    find it out by myself.
    HTMLDocument doc = (HTMLDocument)myJEditorPane.getDocument();But now i ran in another problem:
    Checkboxes are not displayed when i print this content.
    Is it possible to solve this problem?

  • Problem in file content conversion from XML to CSV

    Hi Experts,
    I am finding problem in file content conversion. I need to convert the following XML file into CSV file:
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_CROSS_REF xmlns:ns0="urn:dabur:idoc2file:pos">
          <Update_type>2</Update_type>
          <PLU>00000000</PLU>
          <Cross_ref_PLU>7777777</Cross_ref_PLU>
          <Capture_PLU />
          <Package_size />
          <Package_desc />
      </ns0:MT_CROSS_REF>
    The output file data has to be like:
    2,00000000,7777777,,,,
    The problem I am facing is while specifying the content conversion parameters in communication channel i dont know what recordset structure i should mention as all the records are directly under root. If I mention recordset structure as "ns0:MT_CROSS_REF" and parameters as
    ns0:MT_CROSS_REF.fieldSeparator   ,
    ns0:MT_CROSS_REF.endSeparator    'nl'
    i get error in communication channel monitoring and no file is posted.
    Please help me as to what correct parameter i should mention in my case.
    Thanks,
    Regards,
    Yash

    Hi Chirag,
    I cannot change the xml file as it comes after mapping idoc to a message type. How can I add ROOT in the xml? My message type is like MT_CROSS_REF and it has those 6 fields as in the XML (Update_type, PLU etc.). I do the mapping of these fields from a IDOC and get the XML.
    I hope you got my point.
    Thanks,
    Yash

  • Problem with file content conversion in receiver file adapter

    Hi All
    I have a problem with file content conversion in receiver file adapter.
    This is my recordset structure: Header_Record,1,Claim_Record,*,Check_Rec,1
    These are the content conversion parameters:
    Header_Record.fieldSeparator = ,
    Header_Record.endSeparator = 'nl'
    Claim_Record.fieldSeparator = ,
    Claim_Record.endSeparator = 'nl'
    Check_Rec.fieldSeparator = ,
    Check_Rec.endSeparator = 'nl'
    In SXMB_MONI, i can see that the data is correctly extracted from proxy, and correctly mapped to receiver message, and i see a checkered flag (success).
    But, Adapter status is RED with the following error message:
    Conversion initialization failed: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Parameter '1.fieldFixedLengths' or '1.fieldSeparator' is missing
    In communication channel monitoring, i get the following error message:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Channel has not been correctly initialized and cannot process messages
    What is going wrong here? Can anyone please tell me?
    Thanks
    Chandra

    Posted in Incorrect forum.
    Posted again in Process Integration forum

  • HTML Content not displayed correctly in UWL

    Hi all,
    I have setup UWL to connect to SRM 5.0 system. I have no problem retrieving alerts from the backend. However, alerts with HTML content are not displayed correctly in the UWL. Instead of parsing the HTML content, the html tags are displayed instead.
    Am I missing some configurations here?
    Thanks in advance.

    Hi Benny;
    Please see:
    My Oracle Support FAQ [ID 747242.5] << What are the browser requirements for accessing My Oracle Support?
    If you have still problem you can go wiht SR
    Regard
    Helios

  • Best practice for sharing html content on different group spaces?

    How can html content be shared between several group spaces?
    One way I have found is to add a html doc to ucm and then to add this doc as a iframe to a page.
    Are there other ways, like adding on one group space page a html layout element and then to view this content in a different space. How could this be done, with an expression language reference?
    Has someone experience in presenting the same html content on different spaces and can share how he does it. Any ideas are welcome.
    Thanks,
    Max

    Hey Max,
    Check out our technical whitepaper on Integrating ECM with Portal Technologies.
    Our "Fishbowl Portlets" allow you to share any content - HTML, WYSIWYG user generated content, documents etc - in multiple contexts (portlets, web apps, etc).
    This is one of the things that we showcased as the recent Collaborate conference in Vegas - WebCenter framework, UCM and the portlets surfacing the same items in different contexts - all personalization aware, configurable and end user/super user editable.
    The white paper can be found here:
    http://www.fishbowlsolutions.com/StellentSolutions/ContentManagementResources/index.htm
    A blog post on it can be found here:
    http://cfour.fishbowlsolutions.com/2010/03/10/fishbowl-portlets-followup-cis-and-content-consumption-options/
    warmly,
    Billy Cripe
    Fishbowl Solutions

  • How to attach HTML content to DMS Document?

    Hello,
    I have a requirement in which I have to make a HTML file which contains the current Dispaly on screen, I have to attach this HTML file inside the DMS document.
    For this I am doing following steps.
    1 ) FM SAVE_LIST
    2) FM WWW_HTML_FROM_LISTOBJECT, form this FM I am getting the Internal table which is containing the HTML content.
             a) I am converting this internal table content ot first in XSTRING using FM SCMS_TEXT_TO_XSTRING
             b) And XSTRING to Binary format.
    3) After this I am creating a DMS cocument using FM CVAPI_DOC_CREATE
    3) After DMS document creation I am using FM CVAPI_DOC_CHECKIN to attach HTML file content to this DMS Document.
    Everthing seems to be ok, but when I am using CV03N to view the document, its showing the HTML file bu not showing the original content(HTML)
    Please help to find the problem, Is there any other way from which I could CHECKIN HTML content directly inside DMS document in HTML form without converting it to binary.

    HI,
    I have not understood the requirement.
    As far as I know, HTML need not to be checked in.
    Refer also link below
    Re: some questions on SAP DMS
    May be useful in choice of FM.
    Regards
    Nitin

  • Updated HTML content not displayed

    Hi All,
               In webdynpro application, I am having an HTML file in the MIME repository which I am downloading dynamically and modifying its contents and placing the edited contents in ICM cache to display the URL. But I see that the changes I have made in the HTML file has not taken place even though I see in the debug mode that the chanegs are happening. In order to test i deleted the html file manually from MIME repository and uploaded it again , but even then it displays the old contents of the deleted HTML file. ANd it is not even taking the changes that are happening  in the program dynamically.
    Where is that it is going wrong?

    If you place the dynamic HTML content into the ICM cache, then it should have a completely different URL than the original content from the MIME repository.  It would only have the same content with the different URL if that is what you placed into the Cache.  Generally the Cached URLs are GUIDs.  Perhaps you should post your ICM cache upload code, because if the content is the old content from the MIME repository, then you are certainly doing something wrong in the upload.

  • Why is HTML content missing on some websites with Firefox 13?

    I just reinstalled Kubuntu 12.04 and I use Firefox 13 now. For some strange reason some HTML content isn't displayed. For example on this page, the code block after "This is test.module" is just gray:
    https://drupal.org/node/1331094 The same happens on other sites. I haven't been able to figure out a pattern so far.
    I can confirm, that the missing content ''is'' in the source code.

    Additionally you could also check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u '''Use hardware acceleration when available''']. All these settings/options/add-ons can also be individually or collectively disabled/enabled/changed in Firefox normal mode to check if an extension, theme, option or hardware acceleration is causing issues. Disabling/enabling hardware acceleration, and some types of add-ons in normal mode may require a Firefox restart.
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]
    If the problem persists, please also check in a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. If the new profile is okay, you can then [https://support.mozilla.org/en-US/kb/reset-firefox-easily-fix-most-problems Reset Firefox] on the old (previous) profile via '''Help''' ('''Alt''' + '''H''') > '''Troubleshooting Information'''.

  • Sending HTML content in body for emailnotification in OSB

    hi,
    i have done an emailnotification service in OSB..
    currently HTML content in body is not supported in OSB..
    how to send the html content as body for an email..
    please provide a solution at the earlist..
    thanks

    how to send the html content as body for an emailSimply as you send a XML. Post OSB related queries in SOA suite forum -
    SOA Suite
    Regards,
    Anuj

  • HTML content in Email from ALSB 2.6

    HI, I am trying to send an email consistig of HTML content from ALSB 2.6.
    I have set the Content-Type to 'text/HTML' and made the following assignment to $body:
    <soap-env:Body>
    <HTML>
    <HEAD>
    </HEAD>
    <BODY>
         <H2><center>Error in {fn:string($body/notificationmessage/servicename)} Service for Operation - {fn:string($body/notificationmessage/operationname)}</center></H2>
    <p>For more details please see the logs at {fn:concat(fn:string($logfileDetails/rootlocation),fn:string($body/notificationmessage/logfilepath))}</p>
    <H2>Following is the Error Message from {fn:string($body/notificationmessage/operationname)} Operation</H2>
    <p>{$body/notificationmessage/faultmessage}</p>
    </BODY>
    </HTML>
    </soap-env:Body>
    But the message I receive is
    <?xml version="1.0" encoding="utf-8"?>
    <HTML><HEAD/><BODY><H2><center>Error in PreScreen-SFDC Service for Operation - UpdateLead</center></H2><p>For more details please see the logs at D:/SampleLogs/PreScreen-SFDC/2010/7/23/690b14f2-9a2d-41c4-8869-0d52e6cc4668_00QQ0000003wJ2bMAE_UpdateLead.log</p><H2>Following is the Error Message from UpdateLead Operation</H2><p><faultmessage><con:fault xmlns:con="http://www.bea.com/wli/sb/context"><con:errorCode>BEA-382505</con:errorCode><con:reason>ALSB Validate action failed validation</con:reason><con:details><con1:ValidationFailureDetail xmlns:con1="http://www.bea.com/wli/sb/stages/transform/config"> </con1:ValidationFailureDetail></con:details><con:location><con:node>PipelinePairNode1</con:node><con:pipeline>PipelinePairNode1_request</con:pipeline><con:stage>Validate Request</con:stage><con:path>request-pipeline</con:path></con:location></con:fault></faultmessage></p></BODY></HTML>
    Can anybody please help?

    Cant figure out what is the issue from your description. Can you explain what is the problem?

Maybe you are looking for

  • Need help with merging itunes accounts.

    Hello.  I was wondering if any of you mac experts can help me.  My husband and I recently purchased a new mac and are having trouble figuring out how to merge our information into our computer's itunes.  I set up the computer under my apple ID/email.

  • Inter-Site Change Notification Not Working

    I made the change in ADSIEDIT to enable Inter-site change notification after adding a second AD site on our domain. The domain level and the old domain controllers in the main site are Server 2008 and the new domain controller for the new site is 201

  • [Solved][Hal and Partitions] Newbie problem with hal policy

    Hello everybody, As a new user of archlinux for less than a week I have experienced a great distribution after having been for 1 year on Linux. After installation I was able to solve most of my problems with the wiki and the forums but there is one p

  • How do I clear the logs/sync.services summary in the MacBook Air?

    I bought a second hand MacBook Air and noticed the logs and Sync. Services Summary was full. I like to delete even knowing that it wouldn't talke up space. How can I clear it? Hope for some help. AV

  • Quantity field in ABSO

    Dear colleagues, do you know how to display the quantity field in t-code ABSO. We use ERP 6.3. I am not aware of any customizing that controls that. For comparison, I see it in another system that is on 4.6C but I don't see it in 6.3. I cannot use al