Show 'Text' Document contents  instead of using Document Links

I have a requirement from my customer that requires comments to be stored and display both on the planning layout and display instantly in query.
I am aware that documents which type other than text is stored in BIN form, so my first approach is just to assume to work with document with type 'TEXT'.
I am aware this can be partly achieved by using the document links, but are there ways to get round of using document "links"? We want to show <b>instantly</b> the content of the document when the layout is opened and when BW query with the right combinations of characteristic values are displayed.

Yes, for bex, it works only in workbook.
Check F.Group: SKWF_CONTENT. There are many FM for documents which you can use.
Here are the VBA Code part for calling RFC FM :
Public Function BW_DOCUMENT_READ()
  Application.ScreenUpdating = False
' Declaration
  Dim FuncCtrl As Object
  Dim ABAP_FUNC As Object
  Dim ABAP_TAB_E_DOCUMENT_PROPERTY As Object
  Dim ABAP_TAB_E_DOCUMENT_CONTENT As Object
  Dim Row As Object
' Class Declaration
  Set FuncCtrl = CreateObject("SAP.Functions")
' Transfer SapConnection
  FuncCtrl.Connection = SapConnection
' Setting ABAP Functions and parameters
'   Func Name
    Set ABAP_FUNC = FuncCtrl.Add(ABAP_FUNC_NAME)
'   Func Export Params
    ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM1) = SAP_QUERY_DESCP
    ABAP_FUNC.Exports(ABAP_FUNC_EX_PARAM2) = SapConnection.Language
'   Excute Function
    CALL_ABAP_FUNC = ABAP_FUNC.Call
'   Check Function Call return
    If ABAP_FUNC.Exception <> "" Or Not CALL_ABAP_FUNC Then
       Call COLLECT_MESSAGE(Msgtxt001 & ABAP_FUNC.Exception)
       'MsgBox Msgtxt001 & ABAP_FUNC.Exception
    Else
    ' Func Import Params
      BW_BEX_SUBTOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM1)
      BW_BEX_TOTAL_TEXT = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM2)
      BW_DOC_URL_PREFIX = ABAP_FUNC.Imports(ABAP_FUNC_IM_PARAM3)
    ' Doc Content
      X_pos = 1
      ' Create Header for Doc content
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, "Document Nr.")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, "Document Line Nr.")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, "Document Content")
      ' Fill Doc content
        For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE2).Rows
          X_pos = X_pos + 1
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 1, Row("DOCNR"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 2, Row("LINENR"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_CONT, X_pos, 3, Row("LINE"))
        Next
    ' Doc Properties
      X_pos = 1
      ' Create Header for Doc content
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, "Document Nr.")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, "Property Name")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, "Property Value")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, "Language")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, "Text Short")
        Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, "Text Long")
      ' Fill Doc Property
        For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE1).Rows
          X_pos = X_pos + 1
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 1, Row("DOCNR"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 2, Row("NAME"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 3, Row("Value"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 4, Row("LANGU"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 5, Row("TXTSH"))
          Call WRITE_DOC_TABLES(SHEET_NAME_DOC_PROP, X_pos, 6, Row("TXTLG"))
         Next
    ' Infoobjects Text
      X_pos = 1
      ' Create Header
        Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, "Infoobject Name")
        Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, "Language")
        Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, "Text Short")
        Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, "Text Long")
      ' Fill Texts
        For Each Row In ABAP_FUNC.Tables(ABAP_FUNC_TABLE3).Rows
          X_pos = X_pos + 1
          Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 1, Row("IOBJNM"))
          Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 2, Row("LANGU"))
          Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 3, Row("TXTSH"))
          Call WRITE_DOC_TABLES(SHEET_NAME_IOBJ_TEXT, X_pos, 4, Row("TXTLG"))
        Next
    End If
    Application.Worksheets(SHEET_NAME_DOC_CONT).Select
    Range("A2").Select: Selection.End(xlDown).Select
    MAX_NR_DOC = Selection.Value
    Cells.Select: Cells.EntireColumn.AutoFit
    Application.Worksheets(SHEET_NAME_DOC_PROP).Select
    Cells.Select: Cells.EntireColumn.AutoFit
    Application.Worksheets(SHEET_NAME_IOBJ_TEXT).Select
    Cells.Select: Cells.EntireColumn.AutoFit
End Function
Private Function WRITE_DOC_TABLES(SHEET_NAME, I_X, I_Y, I_TEXT)
  Application.ScreenUpdating = False
  Set DOC_POS = Application.Worksheets(SHEET_NAME)
  DOC_POS.Cells(I_X, I_Y).NumberFormat = "@"
  DOC_POS.Cells(I_X, I_Y).Value = I_TEXT
End Function
For the BW Web, you can searh in how to paper from Tobias Kaufmann. Or search for Doc: "WEB API REFERENCE". In that Doc, search for the topic: 'WEB DESIGN API FOR TABLES'. There you will get all info needed, about how to enhance BW Web application designer.
There is no possibility for me to attach that doc here. sorry, you have to search it by your self, or send me your email.
Hope it helps.
Best Regards,
Suan Liono

Similar Messages

  • No content loads when using portal links

    We recently upgraded from 3.0.9.8.2 to 3.0.9.8.5 and in the new version we are having issues with our favorites portlet as well as any links that users create to send to other users. In the new version, after a user logs in, if they click on a saved favorite link, the new page does not load. The tabs at the top of the screen stay and the content of the page is left blank. The same thing happens if you copy a link into the browser window after logging in. However, if you navigate to the tab that the link is going to, and then go back to the login page and use the link, it works fine. We have a TAR logged with Oracle and they do not know what is wrong. Has anyone experienced a similar problem or know a solution?
    After testing, we came up with something interesting. When we were creating favorites, we were going to the page we wanted, copying the URL, and pasting it into a favorite. This URL is fairly short. Just now I tried right clicking on the folder I wanted to make a favorite and copying a shortcut. This URL is much longer (although it should point to the same place as the short one). When I tested the favorites, the first URL loaded a blank screen (as you saw in the ODC), but the second loaded the page correctly. I went back to our System Test environment to make sure that the problem does not exist there (this instance is still 3.0.9.8.2). Both the short URL and the long URL worked. Why should patching the portal cause the short URLs, which worked before, to
    stop loading pages correctly? Here is an example:
    Portal Production (3.0.9.8.5)---------------------------------------------------------------------------
    URLs for My Regional tab
    WORKS(right-click and copy shortcut)
    http://portal.us.colorcon.com:7777/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2264&p_portletid=956&p_mainpageid=952&p_mode=3&p_debug=0&p_back_url=http%3A%2F%2Fportal.us.colorcon.com%3A7777%2Fservlet%2Fpage%3F_pageid%3D952%2C956%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    BREAKS(navigate to page and copy URL)
    http://portal.us.colorcon.com:7777/servlet/page?_pageid=952,956&_dad=cc_prod&_schema=CC_INTRANET
    URLs for QA Tab under My Knowledge (this is a sub-tab)
    WORKS(right-click and copy shortcut)
    http://portal.us.colorcon.com:7777/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2277&p_portletid=997&p_mainpageid=952&p_mode=10&p_debug=0&p_back_url=http%3A%2F%2Fportal.us.colorcon.com%3A7777%2Fservlet%2Fpage%3F_pageid%3D952%2C954%2C960%2C997%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    BREAKS(navigate to page and copy URL)
    http://portal.us.colorcon.com:7777/servlet/page?_pageid=952,954,960,997&_dad=cc_prod&_schema=CC_INTRANET
    Portal System Test (3.0.9.8.2)-------------------------------------------------------------------------
    URLs for My Regional tab
    WORKS(right-click and copy shortcut)
    http://hercules.us.colorcon.com:8020/pls/cc_prod/CC_INTRANET.wwpob_page.changetabs?p_pageid=952&p_regionid=2264&p_portletid=956&p_mainpageid=952&p_mode=3&p_debug=0&p_back_url=http%3A%2F%2Fhercules.us.colorcon.com%3A8020%2Fservlet%2Fpage%3F_pageid%3D952%2C956%2C960%2C964%2C48%2C47%2C614%2C50%2C103%2C49%26_dad%3Dcc_prod%26_schema%3DCC_INTRANET
    WORKS(navigate to page and copy URL)
    http://hercules.us.colorcon.com:8020/servlet/page?_pageid=952,956,962,964,48,47,614,50,103,49,1006,1020,1154,1060&_dad=cc_prod&_schema=CC_INTRANET&2086_IT_EBUS_PROJ_93987.p_subid=83600&2086_IT_EBUS_PROJ_93987.p_sub_siteid=1&2086_IT_EBUS_PROJ_93987.p_edit=0

    Hi,
    The reason why I decide to use Light Framework, itu2019s because Iu2019m creating an EFP, and Iu2019m using the WPC to publish the content (articles, news, and link list), using the standard Web Forms.
    The problem is, after adding to a WPC Page something so simple like an article (using the Web Form Article), no Portal iView, HTMLB or other stuff included, the preview of the WPC Page using the Default Framework Page is ok, but when using the Light Framework Page, the text in the article doesnu2019t have the correct font-family. It looks like there are some styles missing in the Light Framework Page, that WPC content is expecting.
    Thanks and Regards,
    John

  • Word 2013 shows full UNC path instead of local "Documents" folder on file Open and Save

    Normally Word (and Excel) by default will show the user's local "Documents" folder when opening or saving a file. That is what we want. However, after using Windows Server Folder Redirection to redirect the Documents folder to the network (Windows
    Server 2012R2), Word now shows the full UNC path to the network share.
    Instead of seeing:
    "MyPC  Documents"
    users see
    \\sever1\redirect$\username\documents
    Folder redirection is supposed to be transparent to the user. Virtually all our other applications, including Office 2003, respect this convention and continue to show "Documents". As you can see, Word even exposes a hidden share.
    Even if we go to File / Options / Save and browse to the local Documents folder as the place Word should open and save files from, Word immediately removes the path you have browsed to, and replaces it with the UNC path.
    Is there a way to suppress this behavior? Thanx!
    Dana

    Hi,
    Based on my understanding, you only want others to see some part of path name, rather than full UNC path name. It is right?
    It seems that we can’t implement your requirement. When we open a file from “My Pictures”, it shows “My picture” instead of showing the full path “C:\Users\User\Pictures”. “My Picture” is set as a library in Windows, so it hides
    full path by design. We can't set \\sever1\redirect$\username\documents as a library.
    As a workaround, you can upload these files to OneDrive and share link to others.
    If I have anything misunderstood, don't hesitate to tell me.
    Regards,
    Greta Ge
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Update Sharepoint 2013 document library folder columns using document url

    Hi All,
    I have a SharePoint document library. In that library I am having folder name called Folder1. In this folder Folder1 I have 4 files in it. Now. I need to update the status column of these 4 files in Folder1 folder using the url of these 4 files.
    So can anyone help me in to solve this problem. I am using SharePoint 2013 and Visual studio 2012. I want the code in C#.
    Thanks & Regards,
    Kishore
    Kishore

    Hi,
    According to your post, my understanding is that you want to update the field within the folder.
    I have made a simple code demo below to update the field within the folder, you can have a look at it.
    using (SPSite site = new SPSite("http://YourSiteURL"))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists.TryGetList("Lib1");
    if (list != null)
    foreach (SPListItem folderItem in list.Folders)
    if (folderItem.Title == "Folder1")
    SPListItem item = list.GetItemById(5);
    item["Status"] = "Updated";
    item.Update();
    Console.WriteLine("Field update successfully...");
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Mac Mail Address Autofill Leaving Text In Field Instead of Email Address Link

    This is a new development that has started occurring since I upgraded to Maverick.  When I start typing an address into the address bar, it quickly autofills with the correct address.  I used to be able to hit the right arrow for it to enter that address and allow me to add more.  Now when I hit the right arrow, it leaves the text in the address line from the autofill, but it isn't formatted as a contact link in a blue bubble.  If I press tab it works fine, but then I have to go back each time and click in the address field to continue adding recipients.
    I get this:
    Instead of this:
    Anyone else having this happen?  Any workarounds?

    Try re-indexing the mailboxes. This can take awhile if you have a lot of mail.
    Reindex messages      Mavericks/Yosemite
    Reindex messages       Mountain Lion

  • How to Search document by using Long text description contents in SAPEasy DMS

    Hi,
    How to Search document by using Long text description contents in SAPEasy DMS
    Regards,
    Shrikant Shinde

    Hi Alfredo,
    Thanks for reply..Will you please explain in brief what are the  OCR program and workflow.
    Will you please send me any docs on [email protected]
    Thanks
    shiv.

  • When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?

    When I create a New Folder (on the desktop or in Finder), the system uses the Generic Document Icon instead of the Generic Folder Icon. How can I change this back?
    All of a sudden I noticed that most of the folders on my computer were no longer using the folder icon, but the generic document icon. I had to manually change back the icon being used by opening Get Info for each folder and copying and pasting the generic folder icon from some folders that remained unchanged. Now whenever I create a New Folder (right click -> "New Folder"), the icon that shows up is the generic document icon (white page with top right corner turned down). And I have to manually change it so it shows up as a folder in Finder or on my desktop. I don't know why or how this switch happened. All of the folders now on my computer look ok, but I need to change the default so when I create a New Folder it uses the correct icon.
    I have also Forced Relaunch of my Finder and rebooted the system. I downloaded Candybar but am not sure what will fix anything, so I haven't proceeded.
    Anyone know how I can do this? Thanks.

    Anyone?

  • Using PowerShell to Copy the content of a Word Document and Paste that content into a New Message in Outlook

    So, I'm a little new to PowerShell and I came across a PowerShell which allow me to copy the content od a spreadsheet, into the new message in Outlook 2007.  I have search and search on a way to do the same with a Word Document.  I would like to
    create a PowerShell Script that copies the content of a Word Document and paste that content in an email message.
    I am basing my script on this
    #Create and get my Word Obj
    $w1 = New-Object  -comobject Word.Application
    $w1.Visible = $True
    $UserWord = $w1.Workbooks.Open("C:\Users\hhhh\Documents\Powershell\test.docx")
    #create outlook Object
    $Outlook = New-Object  -comObject  Outlook.Application 
    $Mail = $Outlook.CreateItem(0)
    $Mail.SentOnBehalfOfName = "[email protected]"
    $Mail.Recipients.Add("[email protected]")
    #Add the text part I want to display first
    $Mail.Subject = "Test email"
    $Mail.Body = "My Comment on the Excel Spreadsheet"
    #Then Copy the Word using parameters to format it
    $Mail.Getinspector.WordEditor.Range().PasteExcelTable($true,$false,$false)
    #Then it becomes possible to insert text before
    $wdDoc = $Mail.Getinspector.WordEditor
    $wdRange = $wdDoc.Range()
    $Mail.Display()
    Any Help would be great!

    My requirements are the Word documents are a template of sorts.  The document will be changes prior to its email with some changes.  The other twist is that the customer might more that one recipients, and each recipient will have to have a separate
    email, with the same content of the word document. 
    For example: Say I'm doing maintenance. The Word doc might descript that maintenance, in a set format. Once save the script is run to generate 3 to 10 email with separate recipients with the body of the email containing what was in the Word document.

  • Created column not showing in the Document Library View for a Custom Content Type based on Document

    We have a custom content type based of Document Content Type. The OOTB "Created" column does not show up in the view as well as in the Site Settings -> Columns.
    But it shows up in the Display Form and Edit Form of the Item at the bottom "Created at " by " " and "Modified by" at by ""
    Would anyone know how to make this column appear as part of the view ?
    thanks,
    Harsh

    Hi,
    They should by default be possible to add to a view. The only reason they would disappear from the UI if someone has changed the attribute of the Field to hidden = true. You can verify that with PowerShell and if so you can use PowerShell to revert the setting
    to false.
    $w = Get-SPWeb http://dev13$f = $w.Fields.GetFieldByInternalName("Created")$f.Hidden$f.Hidden = $false$f.Update()

  • Why do old Adobe PDF files which I attach to a document show as Firefox files instead of an Adobe PDF file after an Adobe Reader update??

    Why do old Adobe PDF files which I attach to a document show as Firefox documents in my files instead of an Adobe PDF file after an Adobe Reader update?  My saved files Adobe PDF documents also appear as Firefox documents instead of Adobe PDF files.

    NO MATTER WHAT VERSION OF WINDOWS YOU'RE USING:
    Right click one of the PDFs with the Word icon.
    Select "Properties"
    Where it says "Opens With" there is a button to change it from Word to Adobe Reader, which should be in the list of available programs that pops up.
    Choose Reader, and click APPLY before clicking OK.
    That will change ALL PDFs to Reader as the default application.

  • Show document content from webdynpro abap

    hi folks,
    i already posted such a question, now i try again - maybe someone has a hot tip for me.
    i hat der content of a document (e.g. JPG oder TIFF or WORD) in a table of type binary data.
    Now my first suggestion was create a url with dp_create_url and dne navigate with element "link_to_url" to that generated url, which is in format sapr3:// , but that won't work.
    has anyone an idea how to show this file-content in a webdynpro abap application.
    kind regards oliver

    Hi Oliver,
    You can show files of all kinds by using an iframe and placing the file at some place inside of the MIME repository. If the file is somewhat static, just add it to the component (right mouse click at the component in the tree at the left side in se80). Just enter name of the file (if the file is part of the component) or the path within the mine repository inside of the URL field. If you don't add http:// something like that in front of the URL we assume that it is a path in the mime repository. This should work for LinkToURL as well.
    Another nice option is to add the file to the response. Just call method cl_wd_runtime_services=>attach_file_to_response() and specify all the parameters.
    Kind regards,
    Thomas

  • Show Text Thread in all opened Document

    I want to show text thread in all opended Documents, here is my script, but have error, anyone can fix?
    var myEnableTextThreads = app.menuActions.itemByID(24332);
    var myEnableTextThreads1 = app.menuActions.item("Hide Text Threads");
    var myEnableTextThreads2 = app.menuActions.item("Show Text Threads");
    ShowThreads();
    function ShowThreads(){
    var myDoc = app.documents;
    for (var i=0; i<myDoc.length; i++) {
    if (myDoc[i].menuActions.item("Show Text Threads") == true){
               myEnableTextThreads.invoke();
                 alert("Text Threads Shown");

    Hi,
    No such property is exposed for scripting, unfortunately.
    The one to observe is a menuAction.name ==> but this is only an effect of some procedure involved by menuAction. Even worse ==> script will show you the last menuAction status - not the one is currently applied to activeDocument. It will update after menu activation in UI, not earlier.
    So you can only toggle between both of them regardless on its current state, using app.menuActions.itemByID(24332).
    If you will try to check (by script) its current menuAction.name ==> sometimes is true, sometimes is false.
    If you will check it manually ==. is true cause is updated already.
    Jarek

  • How to handle the word document which is already opened(Add content to it) using VbScript using "Word.Application" method

    Hello,
    I want to add some content to the word document which is opened already and active using vbscript.
    Here is the sample code to have an idea.Kindly Help.
    Set oWord = CreateObject("Word.Application")
    oWord.Documents.Open
    "c:\test.docx" ----->Here i dont want to open the Document as such as my document which is opened already,i have get the control over that document-I try to achive this by using HP UFT tool for word document automation
    oWord.Selection.EndKey
    6,0
    oWord.Selection.TypeText
    " This text has been entered by opening the exisitng document. "
    oWord.ActiveDocument.Save
    oWord.Quit
    Set oWord = Nothing

    Hello,
    Nice to see the Reply from you. I have done the same thing what you have suggested but unfortunately i am not achieving the result as expected.
    Here i explain you clearly,
    Business Scenario:
    Using an aplication we will create word documents-To do this we need to fill all the document properties and click on OK button-After this,Application automatically launches a Word Document with the File name given by itself as per the Configuration and
    it will be available for the Editing-After user add content,he has to check in the document in the application in order to replicate the changes made by user to the document-This is the Business process
    Here my Document actually resides in the Users Folder-"C:\Users\narayanasamy_r\Documentum\Checkout\" before checkin event happened,once i add content,save,close the document,i will navigate to the document in the application  and Do check-in
    operation.
    Interesting point is that,after i do check-in operation my actual document which was resided in "C:\Users\narayanasamy_r\Documentum\Checkout\" will not be available anymore
    So My logic Should be,
    1.identify that particular Document from the Folder and add content,save and close(Note:i dont want to open the document from "word.application" control here, as the application itself opens up the Document)
    Kindly Help On the same.
    Thanks,
    Narayan

  • Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    Why can't I save text I've entered into a PDF file?  When I hit "Save As", only the PDF document is saved, but not the text i typed into the document.  I'm using Windows 8.

    THANK YOU!
    Jan Whitfield
    The College Planning Center
    250 Palladio Parkway, Suite 1311
    Folsom, CA 95630
    (916) 985-0453
    www.TheCollegePlanningCenter.com

  • After installing lion and updating to pages 4.1 cannot view my document content after I open the document.  Shows how many pages I have and how many words in word count, but no words...

    after installing lion and updating to pages 4.1 cannot view my document content after I open the document.  Shows how many pages I have and how many words in word count, but no words...

    Same problem. Tried reinstalling Pages. Didn't help. The behavior is like I am typing with a white font on a white background, but I am not.

Maybe you are looking for

  • Removing iTunes music from my Hard Drive and placing on a Jump Drive.

    I would like to remove then delete the songs I have on my Hard Drive. It's taking up a lot space. I am currently using operating system Windows XP and the latest version of iTunes. Can someone suggest the best way of doing this? I would like to use a

  • Only Balances in local currency

    Hi, By mistake we activated only Balances in local currency setting for a GL account at the time of Go-live. Also we had done  postings to this account with foreign currency and local currency. Now we want to do foreign currency valuation for this ac

  • TO_DATE function's weird feature

    Hi Friends, Is the following statement workable? select to_date('09,06,16 12:12:59','yyyy-mm-dd hh24@mi,ss') from dual; My own anwser is YES but the result is decided by NLS_DATE_FORMAT. Have you any different opinions?

  • OpenSSL vulnerabilities in WLC 7.4.110.0

    Hi, version 7.4.11.0 is vulnerable to the following CVE IDs: CVE-2014-0224 CVE-2014-0221 CVE-2014-0195 CVE-2014-0198 CVE-2010-5298 CVE-2014-3470 CVE-2014-0076 Is there a patch, that could fix it? Thanks!

  • PO Discount

    Hi, When we enter discount etc. at header level, the price of the material automatically discounted and it will be printed after the discount value.  The requirement is how to print the po with actual value (as quoted by the vendor) and put discount