How to display file status during importation?

Hi,
Can anyone tell me how to display import file status during file importation? The file status can consist of file name, type of file, size of file, % of complete during importation, ....
Thx in advance

Hi
use these functions
RIGHT (Text, Number)
Return X characters from the right
RIGHT(“The Quick Brown Fox”, 5)
n
SEARCH(Text1, Text2, Num)
Returns the index of Text1 within Text2,starting the search at index Number
Formula should be
right([Name-column],search[".",[Name-column],1))
More info regarding calculated columns
http://junestime.wordpress.com/2013/02/12/sharepoint-calculated-column-formulas/
Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

Similar Messages

  • How to display an status Icon in Table UI web dynpro ABAP?

    Hi Experts ,
    How to display an status Icon ( Traffic light ) in Table UI web dynpro ABAP? can somebody tell with a coding example. also I need to update status on condition so whats the best way?
    Thanks in advance.
    Regards,

    Hi Laeeq,
    click on table cntrol n place it on the screen..
    now click on the icon button n place it in the table control area.. a column of icons get created. name it (say) ICON.
    in the PBO..
    loop at internal table and call module in the loop (say) .
    MODULE ICON_DISP.
    now in the module try the foll code :
    module icon_display output.
    check some condition and assign the icon to the variable icon_r
      icon_R = 'ICON_GREEN_LIGHT'.
      CALL FUNCTION 'ICON_CREATE'
        EXPORTING
          name                        = ICON_R
        TEXT                        = ' '
        INFO                        = ' '
        ADD_STDINF                  = 'X'
       IMPORTING
         RESULT                      = ICON
      EXCEPTIONS
        ICON_NOT_FOUND              = 1
        OUTPUTFIELD_TOO_SHORT       = 2
        OTHERS                      = 3
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      endmodule.
    where icon(35) and icon_r(35) type c .
    hope this helps u..
    Regards
    Aparna

  • Idoc-xi-file scenario.  how to display file in html format

    I am not sure whether this is a valid question.........but want to confirm as it was asked by somebody
    In idoc-xi-file scenario.......  how to display file in html format ??
    Thanks in advance
    Kumar

    Hi Vijayakumar,
    Thanks for your reply !! You mean to say I got to use XSLT mapping and also .htm and .html extension together to produce the html file ?? or it is sufficient to use any one of them to produce the html file ??
    Regards
    Kumar

  • How to display file extensions

    Hi,
    I'm trying to get our Sharepoint 2013 server to show file extensions again and I've had no luck so far. I've been able to add an extra name column that shows the file extension (like ), but that name is not clickable anymore so I've ended up with one name
    that's a link and the same name next to it. This doesn't look good, especially when the users pick overly long file names.
    This (http://social.technet.microsoft.com/wiki/contents/articles/11161.how-to-display-file-extensions-in-a-sharepoint-document-library.aspx) seems to apply to Sharepoint 2007 only. I'm not sure which onet.xml file they mean and the default file has several
    occurences of "Name=”Created_x0020_Date”", or how adding
    Name=”File_x0020_Type”/> without an extra opening bracket would work.
    I've also found and tried this solution: http://social.technet.microsoft.com/Forums/sharepoint/en-US/59c15eee-9116-4aa1-8d16-32cd361c9a2f/show-file-extensions-in-document-library?forum=sharepointcustomizationprevious
    >>3. Edit the WebPartPages:XsltListViewWebPart so that the link contains the extension.
    >>a. Open SharePoint Designer and click on the desired document library.
    >>b. Open the View you want to change, which in most cases is "All Documents".
    >>c. Find the line that looks like this:
    >><xsl:value-of select="$thisNode/@FileLeafRef.Name" />
    >>d. Edit the line to look like this:  (the xsl:if tests to see if the suffix is not blank and then displays a '.' and the suffix)
    >><xsl:value-of select="$thisNode/@FileLeafRef.Name" /><xsl:if test="$thisNode/@FileLeafRef.Suffix!=''">.<xsl:value-of select="$thisNode/@FileLeafRef.Suffix" /></xsl:if>
    This doesn't seem to work with Sharepoint 2013 because the line <xsl:value-of select="$thisNode/@FileLeafRef.Name" /> doesn't seem to exist. Are there any other suggestions on how to get the file extensions to show?
    Thank you.

    Hi
    use these functions
    RIGHT (Text, Number)
    Return X characters from the right
    RIGHT(“The Quick Brown Fox”, 5)
    n
    SEARCH(Text1, Text2, Num)
    Returns the index of Text1 within Text2,starting the search at index Number
    Formula should be
    right([Name-column],search[".",[Name-column],1))
    More info regarding calculated columns
    http://junestime.wordpress.com/2013/02/12/sharepoint-calculated-column-formulas/
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • How to display file content in browser using servlet..? urgent!!!

    hello,
    i am building a application for which when a user logs in he will we redirected to page where he will have one link ,with this link a file is associated.
    when user press that link he should be able to see that particular file in internet browser....
    now can anybody give me a code sample of how to display a file in browser....
    please reply me as soon as possible...

    thanks for your reply....
    but i don't want this....
    i want to read a file from disk into stream or buffer and from that again reading and printing in browser.....
    a servlet should be built for this....
    i wrote this but its not working
    ========================================================
    public class FilePrinting extends HttpServlet
         public void doPost(HttpServletRequest req,HttpServletResponse res)
              throws IOException,ServletException
              ServletOutputStream out=res.getOutputStream();
              res.setContentType("text/html");
              String fileURL="/mydomainWebApp/Test.htm";
              res.setHeader("Content-disposition","attachment; filename=" +="Test.htm" );
              BufferedInputStream bis=null;
              BufferedOutputStream bos=null;
              try
                   URL url = new URL( fileURL );
                   bis=new BufferedInputStream(url.openStream());
                   bos = new BufferedOutputStream(out);
                   byte[] buff = new byte[2048];
                   int bytesRead;
                   // Simple read/write loop.
                   while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
                   bos.write(buff, 0, bytesRead);
              }catch(final MalformedURLException e)
                   System.out.println ( "MalformedURLException." );
                   throw e;
              }catch(final IOException e)
                   System.out.println ( "IOException." );
                   throw e;
              }finally
                   if (bis != null)
                        bis.close();
                   if (bos != null)
                        bos.close();
    =======================================================================
    please send me sample code if anyone have../...

  • How to remove existing keywords during import?

    I have tried to find a way to NOT import existing keywords present in files that are already on my system, when I am importing those files into my library. They mess up my existing keyword structure and I just want to ignore them during import. I tried to enter an empty keyword text area with checkbox ticked in the template I apply during import, but that doesn't do the trick for reasons I don't comprehend. Any clues?

    To tell you the truth, I don't think the Lighroom Import function has the capability of removing keywords.
    Your choices seem to be ...
    Remove keywords after import, in which case you would also have to remove the unwanted keyword from your hierarchy
    Use freeware tools like Geosetter or Exiftool to remove the keywords from your photos before importing

  • How to view file size of imported photo

    i plan to import a number of large photos from iphoto. i hesitate because each photo is between 20 and 50 MB. Will iweb scale this file down while importing? How can i find out about it? I did not find file information on the imported photo nor do i know the file location of the website project on my mac harddisk.
    Do I have to use third party software like Photoshop to scale the size down and afterwards import them into iphoto and iweb?
    Thank You,
    Harpo

    I think you should DEFINITELY scale your images down before importing them or dragging and dropping them into iWeb! If your images are in iPhoto, then you can use the "Export" command in iPhoto to export your images and specify what resolution they should be scaled to.
    One of the issues I have with the iPhoto export function is that you have no control over the amount of JPG compression in the exported photos, which has a direct relationship to the resulting file size. So I like to use a program called "Downsize" http://www.stuntsoftware.com/Downsize/ which will allow you to specify maximum image dimensions as well as JPG compression. You will also then be able to check how large the resulting files are in the Finder before using them in iWeb.
    Whenever you are scaling photos for use in iWeb, it's important to realize that any additional changes that you make to the photos in iWeb will cause the image to be converted from jpg to png. This may impinge on your ability to control the filesizes directly. The way to get around this is to scale your photos to exactly the size you want and then after dragging them into iWeb, click on the "Use original size" button in the Inspector Metrics tab. Also, don't apply any other effects to your images like rotation, frames, drop shadows... If you want these, you should do these in external applications as well. These are my recommendations only if you want to have complete control over your filesizes. It's certainly not required.
    But as far as your 50mb images go, definitely scale them down before bringing them into iWeb. Otherwise, iWeb will rescale the images for you, but it will ALSO throw a copy of your 50mb file into your Domain file to refer to in publishing. This would cause your Domain file to balloon in size quite rapidly. To put things into perspective for you on this, the Domain file for my entire site is only 80mb.

  • How to display delivery status on sales order line

    Hi,
    We're on R12.1.3
    We have a requirement to display delivery status on sales order lines in quick sales order form. Is there a standard configuration available to achieve this? if not available, what would be the best way of achieving this?
    I mean using, Forms personalization or Event based Alert etc?
    Thanks,
    Ram

    This is already available in the additional line information..though..
    If you still want that at line level to be displayed..maybe you need to customize the form...not sure how u can handle that logic
    Mahendra

  • How to display the status of a SubVI on the front panel?

    Hi,
    I am writing a program to control an instrument through a serial communication port. The control and communication functions are integrated in a SubVI and they work fine.
    In the front panel of the main VI, I want to add some indicators to display the status of those controls in real time, such as using some LEDs to show whether the program is running in some loops of the SubVI, or use some indicators to show some variables in the SubVI.
    I tried using global variables, but I can't make them work in real time (or maybe I didn't do it right). The values of the global variables are actually changing on the fly, but the indicators on the front panel wouldn't reflect those changes until the program return
    ed from the SubVI.
    Is there a way to do this in Labview 6.0.2?
    Your earlist help is very much appreciated.
    Best regards,
    Hua

    Hua,
    I have attached an example in which a front panel boolean indicator is toggled in the subvi. Also, a front panel stop button is used to stop the loop execution in the subvi. References are passed to the subvi instead of the actual control values.
    Without seeing your code I'm not sure what was going on with the globals, but you had to have a data dependency somewhere which was keeping the code from running until after the execution of the subvi. The code must be totally independent of the subvi in order to run. Also, in order for the update to work it would have to be operating in a loop.
    Attachments:
    Main.vi ‏13 KB
    subvi.vi ‏20 KB

  • How to display the status message based on student marks..

    Hi all,
    i have student table that has columns mark1,mark2,mak3...
    i want to display the student name,staus as pass or fail based on the marks.. in a single query..
    if the student score above 30 in all the subject i should display the status as pass other wise fail ( note:- status is not a column in the table)
    Thanks

    select e.student_name
          ,e.mark1
          ,e.mark2
          ,e.mark3
          ,decode(pass.flag,'Y','PASS','FAIL') status
    from   exam e
           , (select e2.student_id,'Y' flag
              from   exam e2
              where  e2.mark1 > 30
              and    e2.mark2 > 30
              and    e2.mark3 > 30) pass
    where e.student_id = pass.student_id (+);
    STUDENT_NAME      MARK1      MARK2      MARK3 STATUS
    CNAME                40         50         60 PASS  
    DNAME                60         70         80 PASS  
    ANAME                20         30         40 FAIL  
    BNAME                30         40         50 FAIL Edited by: JamesK on May 30, 2013 12:38 PM
    Edited by: JamesK on May 30, 2013 12:40 PM

  • How to display icon status in table control

    hi, i trying to display icon in table control its not displaying
    i given below statment.
    DATA: BEGIN OF WA_MARA,
            ICON1(4) TYPE C,
             END OF WA_MARA.
         INCLUDE <list>.
    MOVE ICON_GREEN_LIGHT TO IT_MARA-ICON1.
    APPEND IT_MARA..
    when i debugging it display green icon but after run the program its display ' @08@ '   in table control.
    how to display green icon in table control help me.

    Hi,
    check the link:
    Table control in custom infotypes

  • Power of File Naming during import

    Can you append the HH (Hour) MM (Minute) SS (Second) that the photo was shot to the name while importing?
    I have read that Aperture will not allow files to be renamed after in the Library to follow along with being non destructive. However I do not see renaming files or appending Meta Data in IPTC as being destructive and should not be ignored if the Photographer desires that to be part of his/her workflow.
    I am sure that some third party programmers will write Automator scripts to accomplish many of the things that Aperture will be lacking in.
    I am curious as to the power and functionality of Naming digital files as they are imported. I know that they can be tagged with YYMMDD. I have Read the Getting Started but want to know if HHMMSS can be appended also. I have searched the Internet for a naming convention that is very flexible and unique. When files are imported you do not know and can not say what is in each file, so better renaming and IPTC editing should be support post import. I do not consider preImport or during the best place to do this in Post Production. I think this can best be accomplished after using Aperture's Great Meta tagging tools.
    I have accepted for for the majority of my workflow that Files should only be named once, and only tagged with a different name on an export. (Like appendning some Keywords).
    I used to use a Random, Sequentually generated SN, but think now that the Date is nearly Unique (execpt Multiple Shots a second, or from other cameras at the same time.) I think that this SN to be tagged on the photo is more helpful.
    Does any body recommend a powerful naming convention for digital image files?
    Here is the naming Scheme that I am thinking of.
    YYMMDD-HHMMSSx.CR2
    X - is 0 through 9 to account for multiple shots a second.
    I was planning on using the sequential numbering. This will allow me to easily speak out differenced between multiple files in a stack by speaking the last number which will usually be unique.
    I have also thought about YYMMDD-ABC-HHMMSSx.cr2 (ABC would identify the roll) which is similar to what I have used, but I am do not like ABC now because it might mislead me or not mean anything at all.
    What is everybody using, and what is working for you???
    (and again)
    Can you append the HH (Hour) MM (Minute) SS (Second) that the photo was shot to the name while importing?
    PowerMac G5   Mac OS X (10.4.3)  

    Yes, after playing with it at home, I confirm the same things. All of the - (dashes) and .(dots) and 'PM' is wasteful, and aperture will not even show that full name.
    Naming is a Huge deal. The photos will not be in Aperture forever, and when they come back out during an export or whatever, they should be how you want them. Not having control makes using aperture as a Library for your photos and projects weak.
    If Aperture starts at the import from digital media, then naming happens only after that point. If I have to rename files before importing them into aperture then, I have to skip Aperture's first Steps.
    When I name photos I have in the past tagged some keywords to the file name. Stacks and smart albums would do great to help, but after I put all of the work into naming and organizing, the filenames can not be set to what I want them to be.
    This means that I would still have to use a 3rd party app to organize sort and name all photos then import to aperture.
    Now the Stacks functionality, and keyword tagging can be skipped in Aperture. What is left are versions, working with RAW and smart albums. And Spotlight would do just as good of a job searching for photos this way.
    I do not want to knock Aperture, but I have to accept that it is a learning curve. I need to learn what it can do for me to save time. And I need to learn what it will not do so that I can stay away from it. I was really looking forword to it being my post production SW.
    I would like for something like this.
    YYMMDD-HHMMSSx-Grouping Keyword(IPTC)-1 of 7(in stack)
    This would use the Keyword and IPTC That you work hard to set in aperture, and also the stacking. Then when they are exported to clients, or for backup, web, or use when aperture has reached EOL, then it can be very useful.
    I like that iPhoto has 3rd party extensions to use Keywords to Save in photo or extract from photo to add to iPhoto Library. I am a little more afraid of Aperture because it is a closed system. If a 3rd party app sets keywords to a photo or renames it, what info would be lost in Aperture.
    Thanks for all of the thougts.

  • How to display file type - suffix

    I am trying out the trial version of aperture. Immediately found one problem and can't find a solution easily.
    When images are imported Aperture shows the file name only and not the suffix - i.e. DSC0001 and not DSC0001.NEF or IMG001.CR2.
    How do I change this so that I can see what type of file I am dealing with?
    Thanks

    View > Metadata Display > Customize, then Aperture > File Name
    This will allow you to see the name of the Master that is being managed or referenced. Remember, what you see is called a "Version" because it's just a representation of the output after adjustments are applied to the Master. That's why you only see a Version name, which may or may not be the same as the Master.
    Also, if you have the Metadata view open in the Inspector (Library/Metadata/Adjustments), you'll see the file type in the camera window along with all the shooting settings. That might be easier than dealing with metadata fields.
    hope this helps.
    Rob

  • How to display file contents on a web page

    On unix platform I have created a class that can read the contents of a file and display them to the standard output. But now i want to display these file contents on a web page through jsp. On JSP code I have imported this class and want to assign a record from a file and write it to the screen using html. I think the class needs to be modified in order to return the string record read from a file so that im able to access it from a jsp and assign it to a variable the I can display it on the screen. Can someone help me with these code?

    Actually, you mean Linksys.  BIG difference there.
    Linksys Business Series was accumulated into Cisco Small Business, since it was purpose built for small business, not residential/consumer grade.
    The new PVC2300 actually are Cisco branded on the case.
    The collateral you seek is protected by the business unit that supplies it, since it was placed on a portal that only Cisco registered partners can access.
    As I wrote, I already checked with the BU and they told me thats where it lives and not to hand it out.  I cannot override that. 
    I am not sure there are any secrets in there, but I dont make the rules, sorry.
    Do you want to be a Cisco Partner?   Sign up and gain access to everything you need to sell Cisco successfully to end customers?  If you tell me your geography (city/state/zip, I will have an ICAM call you and help recruit you.....
    Steve D
    Systems Engineer
    U.S. Partner Sales team
    RTP, N.C.

  • How to display files in thumbnail view ???

    i want to display my avi file list in thumbnail view as windows explorer is providing... can anyone tell me... how can i implement the same??

    You can use a [url http://java.sun.com/docs/books/tutorial/uiswing/components/list.html]Wrapped JList to display item in a grid. You would need to provide a custom renderer.

Maybe you are looking for

  • New Dimension to a Cube

    Hi, We've a cube already in production (with huge amount of data). Now we have to add few more 'new' characteristics to this cube. My question is, can I create new Dimension and add characteristics to this without deleting data? As the characteristic

  • How can I get my old iPhone 5 (Verizon) unlocked for use with another carrier?

    I have an iPhone 5 that was purchased with a Verizon Wireless account.  It is more than two years old and I have since upgraded it to a newer iPhone.  I want to give this phone to a friend in Germany.  His service will provide a new sim, if the phone

  • I have an app called i downloads and I backed up my device. I would like to know if all my songs will be on that app whenever I get my new iPhone?

    I backed up my device on iclouds today because im getting a new phone wednsay.I have an app called i downloads, this app has all my songs on it. Will all the songs be on the app when It backs up?

  • Business Systems Limit

    Hi ALL, we have nearly 150 third party systems in our Project ,customer is asking to create all of them as Business systems in the SLD . i want to know like is there any limit for the number of business systems to be created in the SLD .. ? thanks So

  • Keeps  changing  passwords

    I am trying to set up a broad band connection-but every time i put in the new password (in PPP i think-after opening up network link in system applications)-after i type it in and click on apply changes-it (the dots)double in length.after completing