FM TO Get the Convert UOM

Hi Experts
IN QP03 Inspection Plan Charcterstics there is filed called UOM (MASSEINHSW) actually in Screen it is KG\cm2 but in table it is stored as +KGC+.
In Program it is displying as KGC but i need to display kg\cm2 any FM to Convert this.
Rgards
Jagadish

Hi,
Check these below FM's
CIF_GEN_CONVERT_BASE_UOM
ISA_CONVERT_UOM
CONVERSION_EXIT_SUOM_OUTPUT    HU number output conversion exit
OIG_F_CONVERT_UOM_FOR_SCD      TD-F convert UOM for scd-calculation to different UOM        
OIU_QCI_CONVERT_UOM            Convert units of measurement
Regards,
Jyothi CH.

Similar Messages

  • I can't get the "converter" to engage

    I can't get the "converter" to ingage. It continually asks me to BUY after I already did

    Boy did I make a huge mistake. Congrats, your runaround is way better than most!

  • How do I get the converted PDF file to look the same in Word as it did in PDF?

    How do I get the converted PDF file to look the same in Word as it did in PDF?

    uscmagz wrote:
    > I took the High Speed Data Reader.VI and added the Write to
    > SpreadSheet.VI. Shouldn't that be able to write the converted data to
    > file? What am I overlooking here. I am attaching a screenshot!
    Watch out with Excel. As you use the High Speed Recorder to create the
    original file you will most probably create quite large files quite
    fast. Translating that into an ASCII spreadsheet would work fine in
    LabVIEW but Excel has a limitation that it can't open spreadsheet files
    above a certain number of rows. I do believe this is around 64k rows but
    it does a little vary depending on the number of columns you have.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • I can't get the convert to word command to work?

    How do I get the Convert to Word function to work?  

    The pane next to the document has a space for the file name and  the target conversion (Microsoft Word) and a conversion button.  I press it and nothing happens, and no inquiry comes up asking for my Acrobat user name and password.  Just no action.  I I have Windows 7.
    In a message dated 08/18/14 12:14:13 Pacific Daylight Time, [email protected] writes:
    I can't get the convert to word command to work?
    created by MichaelKazlow in Creating, Editing & Exporting PDFs - View the full discussion
    What happens when you try? Error Messages? What version of Acrobat? What OS? Does the document have real text or is it a scan which is a picture of text?
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6651867#6651867
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Creating, Editing & Exporting PDFs by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How do I get the Converting to Adobe PDF process to stop hanging?

    I installed Adobe Acrobat 8 Professional on a machine running Windows 7 Professional 64bit.  I have tried creating PDFs from MS Office files (using the Acrobat PDFMaker toolbar).  I have also tried printing to Adobe PDF, from within MS office but also elsewhere (e.g. IE, Notepad).  No matter the creation method, I am prompted for a file name and location and then the Acrobat PDFMaker window appears with a taskbar and message "Coverting to Adobe PDF..."  The process hangs there and a print job appears in the Adobe PDF printer with a status of "Error - Printing."  How do I get the process to stop hanging and successfully create PDFs?

    FWIW, a former colleague was also frustrated with this "Error - Printing" hang-up problem, when printing from any app to Adobe PDF, with Acrobat Pro 9.3.0 on a Win7x64 system. I recall forum threads on that issue, with no clear resolution?. What did work on every print job, though, was the two-step method: (a) Print to File with Adobe PDF, then (b) fire up Acrobat Distiller 9 to convert the intermediate .prn Postscript file. (It would seem that Acrotray wasn't functioning properly in a x64 environment?...though it did run as one of the pc startup processes)
    As that two-step method was acceptable for his workflow, he never explored the possibility of getting a fluent one-step PDF creation by upgrading to the highest available v9x version, or beyond.

  • How to get the Converted opportunities from the lead extension BO?.

    Hi Experts,
    In Sales lead after converting to opportunity, it will appear in opportunity sub facet in lead. How to get these opportunity in ABSL script file.
    Technically: In opportunity business object what should i pass to get this converted opportunity from the extension Lead BO.
    If i pass Account ID to the opportunity BO, i am getting more than one opportunities.
    Can you please tell me what are the common and unique field to pass to opportunity BO for getting the corresponding opportunity from the lead extension BO.
    Regards,
    Vijay.

    You have to convert your long string to a table of shorter strings.
    There may be other ways, but one possibility is to use a loop to process you string.
    while (there is something left)
       put the next e.g. 1024 characters in a new row of your table
    endwhile
    If you need to reconstruct your string from the table, don't use simple concatenation since it will remove blanks at the end of lines. Believe me (from experience) sooner or later this will happen.
    Instead you need to either set the subsections of your long string, or insert from the end of your table and keep shifting the contents (probably less efficient) right

  • How do I get the converted ProRes file into my timeline?

    Having done a quick test editing AVCHD natively I decided to transcode to ProRes and try that.
    So I imported a new AVCHD clip after ticking the "Optimise Media" box and the clip was duly converted and appeared in the Event Folder on my scratch disk.
    However, when I select the clip in the Events window of FCP X or in the timeline and select Info in the Inspector it reports that the clip's codec is H.264, Linear PCM.
    What's going on?

    I have similar issue. I use XDCAM EX and when I tried to optimize. Reveal in finder still shows EXDCAM EX. When I import a clip without optimization the option to transcode is grayed out. So I guess that FCPX will not transcode to ProRes probably because there is no need to.

  • How to get the SQL Statement of a report region?

    For example: The SQL of report region such as "SELECT A,B,C FROM T1 WHERE A = :P10_A".
    I hope to get the converted statement (the variable has been replaced), like this:
    :P10_A = 'TOM', SQL: "SELECT A,B,C FROM T1 WHERE A = 'TOM'".
    THX.

    I agree with John with the usual caveat about using bind variables.
    In other words, you should use
    SELECT A,B,C FROM T1 WHERE A = :P10_Ainstead of SELECT A,B,C FROM T1 WHERE A = 'foo'so that the shared pool doesn't get clutterred with copies of the same (sharable) SQL.
    Even if you use the "PL/SQL function returning a SQL query", be sure to use bind variables in your SQL and not "glue in" session state by concatenating it into the query.
    Thanks.

  • I'm trying to convert a PDF to Word. The convert box will not let me choose a format.

    I am signed in and trying to convert a PDF to Word. I can't get the convert box let me choose the format (won't light up) What am I doing wrong?

    If I understand correctly, you are using ExportPDF. If so, you should ask in here:
    http://forums.adobe.com/community/exportpdf
    This is the Reader forum.

  • I didn't get the PDFMaker options in Lotus Notes

    Hello,
    I am working on Windows XP, with Lotus Notes 7.
    I want to convert Lotus Directories and Mails to pdf.
    I have instaled the evaluation version of Acrobat XI pro, to test if I can have this functionality before buying the licence,
    ...but I didn't get the PDFMaker options in Lotus.
    I have try:
    - restart the computer,
    - restart Notes,
    - read the link: http://helpx.adobe.com/acrobat/kb/pdfmaker-unavailable-lotus-notes-acrobat.html
         => Solution 1: Make sure that the Notes PDFMaker files are installed ==> was already OK
         => Solution 2: Modify the Notes.ini file to include path to the PDFMaker dll file ==> Was not ok, I have made the change
                 (my NOTES.ini file is in C:\Program Files\lotus\notes\_xxxx\Standard      directory in my case.
    - read the link: http://forums.adobe.com/message/3526901#3526901
         => in regedit, I find Software/Lotus/Notes/ 7.0 under HKEY_LOCAL_MACHINE instead of HKEY_CURRENT_USER
              and without NotesIniPath.
              I Try to add NotesIniPath with the path, restart Notes, but I still haven't the PDFMaker buttons or menu or toolbar.
    - I search a lot in the forum, but I only found unresolved topics.
    could someone please help me to get the PDFMaker in Lotus Notes?
    thank You in advance for your Help,
    Happy new Year
    TV

    I have remove the Acrobat XI demo version from my computer and installed the Acrobat 9 version (with licence n°)
    but I have the same problem.
    I still didn't get the convert option in Lotus Notes.
    If You have an other idea...
    Thanks in advance
    TV

  • How to get the string value from the RichSelectBooleanCheckBox component?

    I added a validator to a RichSelectBooleanCheckBox component which is binded to a String attribute of a View Object.
    I defined the mapping of boolean value to corresponding String value in the corresponding attribute binding in the page definition.
    When the validate() method of my validator was invoked, the new value passed to the validate method() was a Boolean value instead of the converted String value.
    I need to write validate() method generically so that it can handle more than one way of mapping boolean values to String values.
    How can I get the converted String value in my validator method() from the RichBooleanCheckBox component that was also passed to the validate() method as a parameter?

    use:
    int num = Integer.parseInt(s);

  • When I convert a trailer to a project and add content, how can I get the music track to repeat longer

    Hey fellow Apple Geniuses - I just got the latest iMovie11 so excited for the new trailer feature, only to discover that these teenie weenie movie trailers are not near long enough for my taste, however I do like the cool transitions and layouts, so I discovered that I can convert the trailer to a project and then add more content, which I am doing right now. I need help though with the audio track... Does anyone know the secret to getting the 43 second music track to repeat, since this particular track (Friendship2) is not showing as an option in my iTunes/iMovie licensed audio to be able to keep dragging more into the movie? Thanks a million!

    Hey Tom - Thanks a million truly! Just did what you said and it worked so smoothly! Totally cool! This was the last piece to finish the movie. I appreciate and value your quick response! Happy camper here!

  • How do I get the PDF Convert feature of Adobe Acrobat Pro Extended 9.4.4, which makes a PDF of a web page interactive, to work in Firefox 4.0.1?

    I just installed (on my Windows 7 Ultimate (64 bit) operating system/Intel i5 CPU M560 2.67 GHz) and am now using as my default browser Firefox 4.0.1 because Internet Explorer 9 was giving me so much trouble--lack of display of web content, lack of PDF reproduction when web content displayed, screwball formatting display, etc., all of which has been remedied by the mere installation of Firefox 4.0.1.
    How do I get the PDF Convert feature of Adobe Acrobat Pro Extended 9.4.4, which converts a web page to an interactive PDF, to set up and work on Firefox 4.0.1?

    You can not do that using Adobe Acrobat 9. Adobe never made a create PDF add-on for Firefox for use with Adobe Acrobat 9. They created a Firefox add-on for use with Acrobat X, but currently that one does not work with Firefox 4 though Adobe are working on an update.

  • I converted aif files to mp3 files in I tunes so I could put them on a flash drive.  Now when I transfer an album to the flash drive I get both the aif files and the mp3 files in the flash drive.  How do I get the iTunes to only copy the smaller file?

    I converted aif files to mp3 files in iTunes so I could put them on a flash drive.  Now when I transfer an album to the flash drive I get both the aif files and the mp3 files on the flash drive.  How do I get the iTunes to only copy the smaller file?

    My suggestion to use the smart playlist was more along the lines of making one list with rules to show everything in your library as long as it was kind "mpeg" (= mp3).
    Smart playlists cannot be edited manually, only by changing the rules.  You can use them as the basis for another smart playlist though.
    There is added overhead to using smart playlists, so don't go overboard.

  • I would like to read a text file in which the decimal numbers are using dots instead of commas. Is there a way of converting this in labVIEW, or how can I get the program to enterpret the figures in the correct way?

    The program doest enterpret my figures from the text file in the correct way since the numbers contain dots instead of commas. Is there a way to fix this in labVIEW, or do I have to change the files before reading them in the program? Thanks beforehend!

    You must go in the labview option menu, you can select 'use the local
    separator' in the front side submenu (LV6i).
    If you use the "From Exponential/Fract/Eng" vi, you are able to select this
    opton (with a boolean) without changing the labview parameters.
    (sorry for my english)
    Lange Jerome
    FRANCE
    "Nina" a ecrit dans le message news:
    [email protected]..
    > I would like to read a text file in which the decimal numbers are
    > using dots instead of commas. Is there a way of converting this in
    > labVIEW, or how can I get the program to enterpret the figures in the
    > correct way?
    >
    > The program doest enterpret my figures from the text file in the
    > correct way since the numbers contain dots instea
    d of commas. Is there
    > a way to fix this in labVIEW, or do I have to change the files before
    > reading them in the program? Thanks beforehend!

Maybe you are looking for

  • Mid 2010 Macbook Pro HDMI

    Since updating my Mid 2010 Macbook Pro to OSX 10.9.1, connecting it to my TV has been hit and miss via an HDMI cable. When plugging the cable in, the Macbook screen flashes black as it would be ready to mirror the image but it does not send a signal

  • ABAP Mapping Black Field Missing

    Hi,    I did an ABAP Mapping, one field of a sender message could be full of spaces or with some data. When a message with data for that field is sent, the mapped field in the receiver message had the data, but when I send a full spaces data field th

  • Can we call Remote Endable Module  from another Remote Enabled Moduel

    Hii experts... I have a problem regarding Remote Enabled Module Function Module.... Actually i want to call the standard BAPI 'BAPI_GL_GETGLACCBALANCE' into the BAPI which i hve created... is it possible??? or can anyone tell me if it is not possible

  • Oracle EE vs SE

    Hi, 1. First, how do we find if we are using an Enterprise Version or Standard Edition Oracle. 2. Does it help to have the Enterprise Edition if the client has large data about (300 GB) and if he wishes to run multiple instances ? Any help in answeri

  • Windows 7 system only recognizing 16GB out of 32GB newly installed

    Hi all, I'm having some difficulties with a newly built Windows 7 system, particularly with the RAM. The problem is I have installed 32GB of memory (8 x 4GB), but Windows is only recognizing 16GB. My motherboard is an ASUS P9X79 WS. I have verified t