Customizing Sourcing Stylesheet PON_SOURCING_XSLFO.xsl

Can you please point me to an appropriate userguide/document that will help me understand how to go about customizing PON_SOURCING_XSLFO.xsl document to updte the stylesheet with our company logo ? Most other documentation says that download the xsl from XML Publisher responsibility > Sourcing Stylesheet, then modify using text editor and then upload it back. There is no documentation anywhere as to how to go about adding an image etc. The only thing that i found helpful was bug db bug 13006586. But couldn't find the release info of patch 8771921 mentioned in it.

Hussein,
Thanks for your reply but this is what i found for...
Note 1231313.1
There is no explanation as to where to look for hints. The PON_PRINTING_PKG doesn't explain anything.
Note 284684.1
Again, "Modify as required", without actually pointing to an documentation on how to edit the stylesheet.
Note 750151.1 explains only about Arabic language alignment.
Bug 13006586 may hold an answer, but i can't find patch 8771921 mentioned in it. If you can help, it would be great.
rgds,
ex-Oracle.
Edited by: 987249 on Feb 18, 2013 3:17 PM
Edited by: 987249 on Feb 18, 2013 3:46 PM

Similar Messages

  • Custom Sort via the XSL and custom template?

    I am trying to add a sort order to a CQWP. I would like a template style that does the sorting? I have to sort by a field called SortOrder, then I want it to be by file name - here is the code:
    I am thinking to do a foreach but not able to get it working? Is there another easier way?
    <!--Start Custom Policy Sort-->
        <xsl:template name="PolicySortedBullets" match="Row[@Style='PolicySortedBullets']" mode="itemstyle">
            <xsl:variable name="SafeLinkUrl">
                <xsl:call-template name="OuterTemplate.GetSafeLink">
                    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
                </xsl:call-template>
            </xsl:variable>
            <xsl:variable name="DisplayTitle">
                <xsl:call-template name="OuterTemplate.GetTitle">
                    <xsl:with-param name="Title" select="@Title"/>
                    <xsl:with-param name="UrlColumnName" select="'LinkUrl'"/>
                </xsl:call-template>
            </xsl:variable>
            <div class="item link-item bullet">
                <xsl:call-template name="OuterTemplate.CallPresenceStatusIconTemplate"/>
       <a href="{$SafeLinkUrl}" title="{@LinkToolTip}" target="_blank">
                  <xsl:if test="$ItemsHaveStreams = 'True'">
                    <xsl:attribute name="onclick">
                      <xsl:value-of select="@OnClickForWebRendering"/>
                    </xsl:attribute>
                  </xsl:if>
                  <xsl:if test="$ItemsHaveStreams != 'True' and @OpenInNewWindow = 'True'">
                    <xsl:attribute name="onclick">
                      <xsl:value-of disable-output-escaping="yes" select="$OnClickTargetAttribute"/>
                    </xsl:attribute>
                  </xsl:if>
                  <xsl:value-of select="$DisplayTitle"/>
                </a>
            </div>
        </xsl:template>
    <!--End Custom Policy Sort-->

    http://stackoverflow.com/questions/5415383/xslt-sortingboth-ascending-and-descending
    http://sharepoint.stackexchange.com/questions/81167/content-query-web-part-group-by-sort
    You can use the XSLT <xsl:sort> element to customize your sort order.
    https://sites.google.com/site/icsharepoint2010/xslt/sorting-in-xslt
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="text"/>
    <xsl:template match="employees">
    <xsl:apply-templates>
    <xsl:sort select="salary"/>
    </xsl:apply-templates>
    </xsl:template>
    <xsl:template match="employee">
    Last: <xsl:apply-templates select="last"/>
    First: <xsl:apply-templates select="first"/>
    Salary: <xsl:apply-templates select="salary"/>
    Hire Date: <xsl:apply-templates select="@hireDate"/>
    <xsl:text>
    </xsl:text>
    </xsl:template>
    </xsl:stylesheet>

  • Sourcing Style Sheet xsl VO , Print RFQ (Sourcing )

    Hello,
         In Sourcing, when we click on Any PO. We have option to print RFQ. This internally calls 
    PON_SOURCING_XSLFO.xsl
    Where can i find from which VO data is sent to this.

    Hi PreethamChandra
    As far as I know, the XSL is called from the template . Please check the template definition. You should find here how and which data is exactly passed to the XSL style sheet for formatting. The XSL style sheet accepts the data in the form of xml nodes .
    Thanks
    Sandeep

  • Need to modify Standard Purchase Order Stylesheet (PO_STANDARD_XSLFO.xsl)

    Hi
    We need to modify Standard Purchase Order Stylesheet (po_standard_xslfo.xsl) . Current stylesheet generating PO like the following.
    <FOR-EACH>
    ITEM_NUM
    ITEM_DESCRIPTION
    <FOR-EACH>
    SHIP_TO_ADDRESS_LINE1 NEED_BY_DATE QUANTITY
    </FOR-EACH>
    </FOR-EACH>
    Based on this, we are getting the output like this:
    Item Num 1
    Itme Description 1
    Ship To: Needed: Quntity
    1234. A1 Avenue JUL 200
    SomeCity, CA 90706
    1234. A1 Avenue AUG 200
    SomeCity, CA 90706
    4567 B1 Avenue JUL 100
    City2 , CA
    Itme Description 2
    Ship To: Needed: Quntity
    5689. c1 Avenue JUL 200
    SomeCity, CA 90706
    Our requirement is like this:
    Item Num 1
    Itme Description 1
    Ship To: 1234. A1 Avenue, SomeCity, CA 90706
    Month: JUL AUG SEP
    Quantity: 200 200 100
    Ship To: VVV4567 B1 Avenue , SomeCity, CA 90706
    Month: JUL AUG SEP
    Quantity: 100 200 100
    So we need to add ship_to group (ITEM/SHIP_TO) .
    How can we use group by item, ship_to..
    <fo:block> <xsl:value-of select="ITEM_NUM"/> </fo:block>
    <fo:block> <xsl:value-of select="ITEM_DESCRIPTION"/> </fo:block>
    <xsl:for-each select="/PO_DATA/LINES/LINES_ROW/LINE_LOCATIONS/LINE_LOCATIONS_ROW">
    <fo:block> <xsl:value-of select="SHIP_TO_ADDRESS_LINE1"/> </fo:block>
    <fo:block> <xsl:value-of select="substring(NEED_BY_DATE,4,3)"/> </fo:block>
    <fo:block> <xsl:value-of select="QUANTITY"/> </fo:block>
    </xsl:for-each>
    </xsl:for-each>
    In the above code I need split the data by ITEM_NUM/ SHIP_TO_ADDRESS_LINE1.
    I am new to xsl-fo. I tried different ways,but ship_to_address_line1 is generating wiith each quanty and need_by_date.
    Please guide me.
    Thank you
    Raju
    Edited by: subbaraju on May 7, 2009 2:36 PM

    Hi Chandra
    Thank you very much for your suggestion.
    I tried that way, I created some sample xml file, I created sample rtf file and I generated xsl-fo file. I copied the part of code into my PO_STANDARD_PO.XSL. I am getting some error.
    I noticed PO_STANDARD_PO.XSL is xsl version 1.0 and the generated sample data is with xsl version 2.0.
    The generated code is using “for-each_group”, “sum()”, “current-group()” etc. Is these functions will work in xslt 1? Or do we need to code different way?
    We are in Oracle APPS 12.0.4.
    Thank you
    Raju
    Edited by: subbaraju on May 26, 2009 11:56 AM

  • Error using custom xpath function with XSL transformations in BPM

    Hi,
    We have created a custom xpath function for use with SOA Suite and BPM. This has been built as per specified within the http://docs.oracle.com/cd/E29597_01/dev.1111/e10224/bp_appx_functs.htm#SOASE11100. We have also reviewed the Oracle Sample for mapper-107-ExtensionFunctions (sample demonstrates the use of user-defined extension functions). This has been registered with jDeveloper and SOA within the oracle.soa.ext_11.1.1 (run ant to include in oracle.soa.ext.jar)
    We ideally want to use this is BPM within an xsl. However when consuming this function is either BPEL or BPM using an xsl, the xsl fails with an error such as:
    XPath expression failed to execute. An error occurs while processing the XPath expression; the expression is ora:doXSLTransformForDoc("xsl/Transformation_1.xsl", $inputVariable.payload). The XPath expression failed to execute; the reason was: javax.xml.transform.TransformerException: oramds:/deployed-composites/default/gwCustomXpathUtil_rev1.0/xsl/Transformation_1.xsl<Line 9, Column 113>: XML-22043: (Error) Extension function error: Method not found 'getWeekDayDate'. Check the detailed root cause described in the exception message text and verify that the XPath query is correct.
    In an Assign it operates fine and returns the expected result. We have included a combination of both of the Config files (ext-mapper-xpath-functions-config.xml and ext-soa-xpath-functions-config.xml) in the META-INF folder, however neither allow the use of this function in the XSL.
    I believe there may be an issue getting the custom xpath functions within XSL files. Hence I have also raised an SR. Has anyone experiences of this?
    Our SOA / BPM suite environment is using 11.1.1.6.4 and has the following patches applied:
    13801175
    14406487 (11.1.1.6.4 SOA Bundle)
    13896993
    13088538
    Regards Dave
    Edited by: DavidGaskell on Mar 14, 2013 10:08 PM

    Hi All,
    I am also facing the same issue...Experts can you please help us.
    hi DavidGaskell, did you find any resolution, if so can you share it with me.....
    Thanks,
    RR

  • Migrating SLA Custom Source

    Hello Everyone,
    I was wondering if Oracle provides a standard way of migrating SLA Custom Source definition from one instance to another. For e.g. Ldt etc
    Thanks
    Arun

    Hi
    The standard concurrent program 'Export Application Accounting Definition' does not export the SLA sources. It only exports the AADs for a given subledger.
    To export the SLA sources you may use the xlaemseed.lct to get the data for xla_sources_<b/tl> and other tables.
    I have not tested it for the customer sources but it works correctly for the seeded sources (to test).
    Regards
    Kaouther Boussema.

  • SLA Custom Source to_char

    Hi,
    We are trying to create a custom source to get some values from the Attribute field, we tried to use the to_char function as a pl/sql function name to return the attribute that is passed to the custom source.
    But it is giving an error during validation. This the text that we specify in the pl/sql function name - TO_CHAR(TRX_LINE_ATTR1)

    Can u send the table name and error you see
    VJ

  • SLA Custom source for Receivable Tax line

    Hi All,
    I defined a custom source with a cutstom funtion. I have taken paramter as 'Distribution Line Identifier' and did some logic to extract a value
    I have NOT entered any values to Segment, Lookup and Valueset.
    Next I developed custom Account derivation rule, selecting Value set into the 'Output type' (I have taken same value set as the line of business valueset)
    Into the priorities I have taken the above custom source
    Now in Journal Line Definitions for my required definition and required line type
    i tried to assign the above custom rule to line of business segment
    Here I could not find my custom rule at all.
    I did same way for Payables, it is working fine. Not sure where I did the worng.
    If I have to select 'Segment' options in custom source. I could not find line of business option in lov.
    Please let me know what I have to do with this.
    Thanks in advance
    Edited by: DharV on Aug 30, 2012 10:25 PM

    From the window help of JLD / JLT / ADR assignment screen:The list of values includes the following:All account derivation rules associated with the application for which the journal lines definition is created
    Sources that belong to the event class for which the line assignment is created and which meet the conditions described in the table below.Check all the sources used in custom source and ADR are related to the event class of the JLD, to which you are assigning the ADR.By
    Vamsi

  • Loading custom override stylesheet into custom wiki theme

    I'm trying to set up a custom wiki theme on 10.5 server. I haven't had any trouble using .xsl overrides. I created a .css file based off the overrides.css stylesheet and I'm trying to get it loaded as part of my custom theme, but haven't had any luck. I'm trying not to modify any of the default .css files, but rather just have my override stylesheet get loaded last. I've read and re-read "Extending Your Wiki Server," but haven't seen any reference to this specifically.
    Thanks,
    Shannon

    Hello,
    I was searching the www when I found the instruction to add this line to my code:
    ctx_ddl.set_attribute('german_lexer','theme_language','AUTO');
    But this was not the right answer, because I only get another error message:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in driddl.kglpurge
    ORA-20000: Oracle Text error:
    DRG-11422: linguistic initialization failed
    DRG-00100: internal error, arguments : [52100],[drxs.c],[557],[gxtopen],[1]
    DRG-11432: file error while accessing knowledge base
    ORA-30576: ConText Option dictionary loading error
    DRG-50610: internal error: kglpurge []
    Without indexing german index_themes the project works good, but without the about-query and I unfortunately need a fast answer or solution for my problem.
    I hope you will have understand my problem and i'll get some help from here.
    thanks
    Nicolas

  • Customize Print Quote stylesheet ASOPRINT.xsl

    Hi,
    I have a requirement where I need to check if we can use the existing Print Quote functionality to generate custom Quote Reports. As i see we can create new XML templates by making changes to the standard style sheet ASOPRINT.XSL. According to what is mentioned in the oracle quoting guide we can add company logo, change height width etc.. of the report by modifying this style sheet. I need to know how do we cusomize the style sheet to include static text or add new tables etc.. I am very new to XSL so do not have much idea as to where is the data fetched from and where is the static text present.
    Thnaks
    AM

    Hi,
    Thanks a lot for the response. I went through the documents and they mainly talk about customizing the Quote report by including the company logo, Title and disclaimer. How can we add static text to the ASOPRINT.XSl style sheet in order to customize it and attach it to a custom tempalate. I am very new to this so do not have much idea. can we add the static test directly in the style sheet or is it fetched from somewhere?
    Regard
    AM

  • Disappearing of Web Parts and a custom List Views containing XSL

    Hello!
    Recently, on the sites with Web Parts
    containing XSL or on List Views (.aspx-pages) containing
    XSL a message appears:
    Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.
    Correlation ID:98bcff3d-5cc0-42b6-819c-41d36a4aa335
    And so it is as long as I do not take
    certain actions: indicated below as I
    struggled with this. In a day or two it
    repeats.
    Web Parts and List Views without XSL
    are displayed normal.
    Related LOGs for such Web Parts and List View containing XSL:
    Error while executing web part: System.IndexOutOfRangeException: Index was outside the bounds of the array.
    at Microsoft.Xslt.MethodCollection.ResolveMethodDef(Int32 tokenNum)
    at Microsoft.Xslt.MethodCollection.GetMethodInfo(Int32 methodNumber)
    at Microsoft.Xslt.STransform.GetCompiledTransform()
    at Microsoft.SharePoint.WebPartPages.BaseXsltListWebPart.LoadXslCompiledTransform(WSSXmlUrlResolver someXmlResolver)
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.GetXslCompiledTransform()
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean bDeferExecuteTransform)
    Herewith:
    1. Updates have been installed on the server
    with a further rebooting.
    2. No doubt the correctness of XSL:
    previously these web parts and list views were displayed.
    And it is displayed in SP Designer.
    My actions for troubleshooting (a day or two
    it reappears):
    For Web Parts containing XSL:
    - Server rebooting does not help.
    - Resaving of Web Part settings
    helps (Web Part menu -> Change Web Part -> OK).
    - Sometimes resaving of Web Part settings does not help. In this case restarting of Application Pool 'SharePoint - 80' with further
    resaving of Web Part settings helps.
    For List Views containing XSL:
    - Server rebooting does not help.
    - Server updating with futher rebooting
    helps.
    - Restarting of Application Pool 'SharePoint - 80'
    helps.

    Hi,
    According to your post, my understanding is that Web Parts and List Views with XSL were displayed unnormal.
    The error message is caused by that the time allowed for doing the XSL transformation was exceeded.
    In SharePoint 2010 the XSL transform cannot take longer than 1 second.
    There is now a hot fix available from Microsoft to resolve this issue,  the solution are at this page:
    http://support.microsoft.com/kb/2639184. 
    In addition, you can install  sharepointfoundation2010-kb2597136-fullfile-x64-glb.exe and use the PowerShell
    script below to make the change to the Timeout value
    If the issue still exists, you can perform an AppPool recycle in IIS.
    More information:
    http://englando.wordpress.com/2012/01/05/unable-to-display-this-web-part-xsltlistview-and-xsltdataview-web-part-issues-in-ie/
    http://hsdhaarsma.blogspot.in/2013/06/indexoutofrangeexception-in.html#!/2013/06/indexoutofrangeexception-in.html
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • NWDS Webdynpro Code Generator overwrites custom source with old fragements

    Hello,
    I am developing Web Dynpro Components in Java with NWDS 7.1. and I am experiencing a strange behavoiur of the code generator. After I save the changes I made to a View in the "View Editor" the View is rebuild and the corresponding Java Source Code gets overwritten with an older version of it.
    The same thing happens after editing the model or context bindings of the view controller, except that in this case all Java Sources are rebuild and overwritten. Its not that all method implementations are deleted, itu2019s the matter that they are replaced by older versions.
    As a developer I think thatu2019s very dangerous, because sometimes I don't recognize which code areas are rewritten by designtime - I get Null Pointer Exu2019s by runtime.
    Does anyone of you have an advice for me how to avoid these problems? Does anyone of you experienced the same behaviour before?
    Thanks in advance!
    Kind regards
    Andreas Horn

    Your question is not NWDI related. Post it in the [Web Dynpro for Java|Web Dynpro Java; forum or the [Java EE 5 @ SAP forum|Java Development;.

  • Getting error in  custom ContentCategorizer component

    Hi All,
    I have created a custom component and it contains custom_searchml_to_scc.xsl.
    Then I am trying to map this xsl file in Content Categorizer admininistration -> Filetype Map
    FILETYPE: doc
    RULESET: Default
    CONVERTER: SearchML
    STYLESHEET: {IntradocDir}/custom/testcc/stylesheets/custom_searchml_to_scc.xsl
    MAXSIZE: 0
    When I run Categorizer its taking {IntradocDir}/custom/testcc/stylesheets/custom_searchml_to_scc.xsl insted of Intradocpath/custom/testcc/stylesheets/custom_searchml_to_scc.xsl and syaing there is not file exist in that path.
    Its not taking IntradocDir value like C:\Oracle\Middleware\user_projects\domains\base_domain\ucm\cs
    If I give my full path C:\Oracle\Middleware\user_projects\domains\base_domain\ucm\cs\custom\testcc\stylesheets\custom_searchml_to_scc.xsl its taking the xsl and executing sucess fully.
    I dont want to hardcode this full path here.
    even I tried to placing follwoing configuraiton in custom.cfg file and giving MyEnvironmentParameter1 like in the STYLESHEET value place. nothing is working out for me and i am getting error like there is no custom_searchml_to_scc.xsl exist in the given path
    MyEnvironmentParameter1=${IntradocDir}custom/testcc/stylesheets/custom_searchml_to_scc.xsl
    MyEnvironmentParameter2=${IntradocDir}custom/testcc/stylesheets/custom_searchml_to_scc.xsl
    MyEnvironmentParameter3=$IntradocDir/custom/testcc/stylesheets/custom_searchml_to_scc.xsl
    MyEnvironmentParameter4=<$IntradocDir$>/custom/testcc/stylesheets/custom_searchml_to_scc.xsl
    Can any one suggest how to over come this problem its very urggent.
    Thanks in Advance
    Kishore
    Edited by: kishore on Jun 30, 2011 3:16 AM
    Edited by: kishore on Jun 30, 2011 3:17 AM

    Hi All,
    Problem get resolved,
    its because of the component
    the way we created custom component its incorrect.

  • Using xsl stylesheet with List View Web Part to display custom text

    Hi 
    i have an xsl stylesheet with sharepoint listview webpart. The list view shows some items based on a filter. I want to display custom text such as "No Items" when there are zero items in the list view using the xsl stylesheet. How do i achieve
    this. I have spent hours searching but couldnt find the exact answer. Please help me out. I am a light user not a hard core developer so I dont use Visual Studio. Thanks in advance

    Hi 
    I have customised the list view webpart using a custom xsl file by including it in the xsl link of the list view webpart. So i think i need to include the condition in the xsl file itself else it wont work. Since the list view webpart isnt using the default
    xsl. Please let me kknow if you have any idea about including a condition in xsl to check if there are not items in view. 
    The code of the xsl is included below.
    <!--
    This section is the set up and can be used at the top of any external XSLT stylesheet file
    -->
    <xsl:stylesheet
    xmlns:x="http://www.w3.org/2001/XMLSchema"
    xmlns:d="http://schemas.microsoft.com/sharepoint/dsp"
    version="1.0"
    exclude-result-prefixes="xsl msxsl ddwrt"
    xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime"
    xmlns:asp="http://schemas.microsoft.com/ASPNET/20"
    xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt"
    xmlns:SharePoint="Microsoft.SharePoint.WebControls"
    xmlns:ddwrt2="urn:frontpage:internal">
    <xsl:output method="html" indent="no"/>
    <xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema">
    <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row" />
    <table>
    <xsl:for-each select="$Rows">
    <xsl:call-template name="dvt_1.rowview"></xsl:call-template> 
    </xsl:for-each>
    </table>
    </xsl:template>
    <xsl:template name="dvt_1.rowview">
        <tr>
      <td><img height="78" width="60"><xsl:attribute name="src"><xsl:value-of select="@Photo"/></xsl:attribute></img></td>
        <td>
        <table style="margin-left:10px;">
        <tr><td><xsl:value-of select="@FullName"/></td></tr>
        <tr><td><xsl:value-of select="@DOBinWords"/></td></tr>
        </table>
        </td>
      </tr>
    </xsl:template>
    </xsl:stylesheet>

  • XSL Stylesheet syntax

    In .xsl file,
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
    What is this xmlns:xsl="http://www.w3.org/TR/WD-xsl" for?
    and what is the different between xmlns:xsl="http://www.w3.org/1999/XSL/Transform ?
    Any help will be grateful.
    Regards,
    Kelly Chen
    null

    Thanks for your response Rick and I hope it resolves Kelly's issue. But I too would like to know exactly what the difference is between the two examples Kelly provided because I have run into an issue where some code will run with the first example but not with the second and vice verse and without knowing why the parser is reporting an error it's hard to know which reference to use when:
    1. Exactly what does a parser do with a namespace (or other URI) reference that causes it to treat the two examples differently?
    2. Is there any documentation (or freeware source code) available that might show how namespace (and other) references are used to validate?
    3. Does the parser compare the given string with a hard-coded string in the parser to see if they match? Does the parser look the URI up on the net to see if it exists? Does it do something like:
    if uri = 'xmlns:xsl="http://www.w3.org/TR/WD-xsl"' then load namespace values from new.txt
    else if uri = 'xmlns:xsl="http://www.w3.org/1999/XSL/Transform' then load namespace values from old.txt
    Thanks again!
    null

Maybe you are looking for

  • How to Place a file on application server in XML format

    Hi, Our requirement is to place  a file from SAP to a folder on  application server in XML and vice-versa. please suggest. Thanks Narendra

  • Java.lang.NullPointerException at org.apache.struts.taglib.tiles.InsertTag

    I am using tiles with JSF. my starting page is template.jsp which is like this.. <f:view> <f:subview id="header"> <tiles:insert attribute="header" flush="false"/> </f:subview> <f:subview id="menu"> <tiles:insert attribute="menu" flush="false"/> </f:s

  • When loading CC installer I get error 205?

    When attempting to run CC set up, I get error message 205.

  • Can I run a User Query using SDK?

    Hi I am new to SDK development. Can I run a user query using SDK?  what I am after is, when the user clicks a button on my screen, I want to run the user query already in the system. If this can be done, does anyone know how to do this? I have not be

  • Skype Causing USB Headset to Code 45

    For whatever reason, the prolonged use of Skype for a voice call will cause my headset in the device manager to code 45, or disconnect from my computer without actually being disconnected. Pressing CAPS/NUM/SCROLL lock, or running dxdiag causes the s