Maximum VOC Value to be printed on a label

Hello,
I have created a label using CG42 transaction and in that there is a symbol VOC(g/l) which i have inserted. But this is having multiple values. I want to print the maximum value of the VOC in the label.
Does anyone have any idea how to do this??
Regards,
Jhings

Hello Jhings,
Maybe you need create a a function module as processing method for the symbol by choosing one of the following options:
- In Customizing for Product Safety in the detail screen of the IMG activity Check and define report symbols.
- In WWI on the Insert Symbols dialog box in WWI as processing method NM and subprocessing method M .
The entry in WWI has priority.
The function module must meet the requirements of a specific interface. The system checks both in Customizing as well as when you use a method in layout, whether the function module is active in the system and whether it meets the requirements of the interface.
Before creating new function modules, check the documentation of sample function module C128_DUMMY_CONVERSION_METHOD .:
Choose transaction se37 and enter the name of function module C128_DUMMY_CONVERSION_METHOD .
You can now display the documentation and the source text for the interface of the function module.
Regards,
JCD

Similar Messages

  • Values not getting printed in the Output

    Hi all,
        Iam facing strange problem.
    In the debug mode iam seeing the values for all variables ( Variable windows) but after printing no value is getting printed. MAIN window is there but no element is being called from the MAIN window.
    Can anyone help me in this regard.
    Rehards,
    Indrajit

    hi Indrajit ,
    check that in print program you have created the element same as using in main program , also declare temporary variables inside loop at table so that **** sign doesnt gets printed ..
    Hope this will help you

  • Sales order getting maximum doc value exceeds but not blocking.

    Hi Experts,
    My client using automatic credit control .
    And for one risk category we have activated max doc value and sen the value is -0.01. It means even though for the free of charge sales orders also should be block.
    I have created a sales order with free of charge item with value of 0.00 after getting warning message and it is blocking.
    And i have one scenario for service items , where am creating sales order with value of 0.00 for the service items and while saving the sale order getting warning message and it is not blocking.
    Why this sales order is not showing in vkm1 event though if i get warning message while saving the sales order time.
    Please any body help out form this issue
    Regards
    Venkat

    Hi
    That i already setup and maximum doc.value i have set there -0.01.
    The same functionality is working for diffrent sales document type,but it is not working for this service sales document processing.
    Is there any scenario like if there is no delivery further process it should not block
    Please revert immediately if any body knows
    Regards
    Venkat
    Edited by: venkat s on Jun 8, 2009 1:28 PM

  • Setting up maximum order value for vendor

    Hi experts,
    I want to set a maximum price/value limit for vendor for giving order
    For example - i want to set a maximum limit of 1lakh for vendor A
    when ever I create PO for vendor A , system should chck the maximum value for A vendor.
    And if there a many open order for vendor A, then the total of open PO's shoukld be
    counted and when ever i am creating new PO & if ec=xceeds the value 1 lakh then
    system should not allow to create the new PO
    Vendor A       PO1     value - 50000      status - open
    vendor A     PO2     value - 30000     status - open
    vendor A     PO3     value - 40000     status - creating now
    At the time of creating PO3, PO value exceeds the vendor limit, so it should not allow to create/save the PO3
    please let me know how to handle this

    Hi,
    This can get really complex unless you have clear vision of what you want to control.
    For example, the maximum limit that you want to set, is it for the current month / current year etc?
    If it is the sum of all Open PO value, would you consider the PO's that were created the sme month and delivered but payment is pending though Invopice is posted?
    So answers to such questions provide the clarity for teh controls that need to set in place.
    For this you can create a Z table and maintain the limits that you like to set based on the criterion like monthly or yearly.
    Then Use a user-exit in the PO to calculate the net value of all open PO's for the vendor and then validate with the Z table and throw an error if it exceeds.
    However the performance may get effected with such calculations on PO save.
    in that case you may have to consider storing the cumulated PO value on every PO creation and PO Completion.
    Consider all this and take a decision.
    hope this helps.

  • How to find out Maximum date value in RPD.

    Hi All,
    I have a date column i want to get the maximum date value from that column. I am trying this expression MAX( "sales"."book"."date") in new logical column i am getting the RPD inconsistence error. Database is SQL server 2005. Is there any problem in my syntax?
    Thanks in advance.

    Is that column date part of time dimension?
    What does error say? syntax should be ok - maybe something to do with your DB settings in physical layer.
    can you try to create the same column in Answers? (select fx button of the column and then add MAX ( ) around the column.
    Edited by: wildmight on Jun 12, 2009 10:09 AM

  • Need a maximum date value using group by

    Create table student (dept number(10), dep_name varchar2(10),join_date date,years_attended number(10),end_date date);
    insert into student values (1,'I',to_date('3/7/1917','MM/DD/YYYY'),4,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (1,'I',to_date('1/1/1900','MM/DD/YYYY'),4,to_date('8/26/1932','MM/DD/YYYY'));
    insert into student values (1,'D',to_date('1/1/1920','MM/DD/YYYY'),5,to_date('8/26/1994','MM/DD/YYYY'));
    insert into student values (1,'C',to_date('1/1/1920','MM/DD/YYYY'),6,to_date('8/26/1945','MM/DD/YYYY'));
    insert into student values (2,'I',to_date('7/1/1900','MM/DD/YYYY'),3,to_date('8/26/1932','MM/DD/YYYY'));
    insert into student values (2,'I',to_date('8/16/1916','MM/DD/YYYY'),9,to_date('8/26/1923','MM/DD/YYYY'));
    insert into student values (2,'D',to_date('8/16/1916','MM/DD/YYYY'),10,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (3,'I',to_date('3/7/1917','MM/DD/YYYY'),4,to_date('8/26/1987','MM/DD/YYYY'));
    insert into student values (3,'D',to_date('7/28/1920','MM/DD/YYYY'),6,to_date('8/26/1945','MM/DD/YYYY'));
    insert into student values (3,'I',to_date('7/28/1920','MM/DD/YYYY'),8,to_date('8/26/1965','MM/DD/YYYY'));
    insert into student values (4,'I',to_date('12/31/1924','MM/DD/YYYY'),2,to_date('8/26/1998','MM/DD/YYYY'));
    insert into student values (4,'I',to_date('6/10/1929','MM/DD/YYYY'),1,to_date('8/26/1943','MM/DD/YYYY'));
    insert into student values (4,'C',to_date('1/17/1927','MM/DD/YYYY'),4,to_date('8/26/1955','MM/DD/YYYY'));
    insert into student values (4,'C',to_date('6/10/1929','MM/DD/YYYY'),30,to_date('8/26/1967','MM/DD/YYYY'));
    insert into student values (5,'D',to_date('2/10/1931','MM/DD/YYYY'),2,to_date('8/26/1943','MM/DD/YYYY'));
    insert into student values (5,'I',to_date('2/10/1931','MM/DD/YYYY'),24,to_date('8/26/1962','MM/DD/YYYY'));
    commit;I need a maximum date value join_date for each department. If max(join_date) has two records for each dept then max(end_date) should be considered. I have used a below select query
    select * from student where join_date in (select
    max(join_date) from student group by dept);which gives me the following result
    1     D     1/1/1920     5     8/26/1994
    1     C     1/1/1920     6     8/26/1945
    2     I     8/16/1916     9     8/26/1923
    2     D     8/16/1916     10     8/26/1987
    3     D     7/28/1920     6     8/26/1945
    3     I     7/28/1920     8     8/26/1965
    4     I     6/10/1929     1     8/26/1943
    4     C     6/10/1929     30     8/26/1967
    5     D     2/10/1931     2     8/26/1943
    5     I     2/10/1931     24     8/26/1962But I am looking for the result which gives me only one maximum value for each dept column. First it should look for maximum value of join_date, if two records has same join_date then max(end_date) should be considered. The result should be sumthing like this
    1     D     1/1/1920     5     8/26/1994
    2     D     8/16/1916     10     8/26/1987
    3     I     7/28/1920     8     8/26/1965
    4     C     6/10/1929     30     8/26/1967
    5     I     2/10/1931     24     8/26/1962Can you please tell me how to rewrite the select query to get the above results.
    Edited by: user11872870 on Aug 2, 2011 5:29 PM
    Edited by: user11872870 on Aug 2, 2011 5:36 PM

    Hi,
    That's called a Top-N Query , and here's one way to do it:
    WITH     got_r_num     AS
         SELECT     student.*
         ,     ROW_NUMBER () OVER ( PARTITION BY  dept
                                   ORDER BY          join_date     DESC
                             ,                end_date     DESC
                           )      AS r_num
         FROM    student
    SELECT       dept, dep_name, join_date, years_attended, end_date
    FROM       got_r_num
    WHERE       r_num     = 1
    ORDER BY  dept
    ;Another way is similar to what you originally posted:
    SELECT    *
    FROM       student
    WHERE        (dept, join_date, end_date)
                   IN (
                        SELECT    dept
                   ,       MAX (join_date)
                   ,       MAX (end_date) KEEP (DENSE_RANK LAST ORDER BY join_date)
                   FROM      student
                   GROUP BY     dept
                   );I suspect the first way (using ROW_NUMBER) will be faster.
    Also, the ROW_NUMBER approach is guaranteed to return only 1 row per dept. Using the GROUP BY approach,if there is a tie on join_date and end_date, then it will return all contenders in that dept. Using ROW_NUMBER, it's easy to add as many tie-breaking expressions as you want, and, if there is still a tie, it will arbirarily pick one of the rows involved in the tie as #1.
    Thanks for posting the CREATE TABLE and INSERT statments! That's very helpful.
    Edited by: Frank Kulash on Aug 2, 2011 9:00 PM
    Added GROUP BY alternative

  • Relevance of Maximum Plan Value for Cost Center wise SKF plan Data

    Hi,
    Will you please tell me the relevence of data entered as Maximum Plan Value for the Cost center wise SKF data plan i.e. data entered through T Code KP46 using planning layout 1-301 with planning profile SAPALL.
    Regards,
    Partha B.

    Hi,
    Try 0CO_OM_CCA_1.

  • In Safari, what does "maximum cookie value" mean?

    My granddaughter on her MBP is getting an error from Safari about "maximum cookie value" - can someone interpret that for me? Happens when she opens 7-8 wondows from a specific stie, and then she can't open any more.
    Thanks!

    Safari > Preferences > Privacy > Remove All Website Data

  • How to investigate maximum 'permissible' value for jvmmx

    Hi all.
    I am deploying jdk 1.5 with tomcat 5.5.26, and am facing problems during server start up. However, when I set the jvmmx value below a certain threshold, the server starts up properly.
    Is there a way that may tell the maximum permissible value that may be used. I use Windows.
    Looking forward to a reply.
    Ajay Garg

    Seriously, I'm not sure what answer you expect.
    The limit will be a function of many variables: the physical RAM in the machine, what drivers are loaded and are grabbing physical and/or virtual address space, the size of the JVM executable and associated DLLs (which will be influenced by whether you're using any libraries that make use of JNI), the processor architecture (Intel/AMD, 32bit/64bit), the version of Windows, whether you've started it with the /3GB flag, if the BIOS has shadowed any hardware (e.g. graphics), if your graphics card uses any main memory or exclusively it's own memory, the vendor and version of your JVM, etc., etc.
    In short, there are far too many variables for there to be a definite answer to this, so you'll just have to try different values until you hit the limit.

  • Maximum display values

    Are there limits to the maximum number value for the albums, items, days and disk space? A friend reached over 108,000 songs (items) and while the number of albums, items (songs) and days keep increasing the disk space stopped at 984.46 GB and while she has deleted duplicates and imported about another 1,500 songs, the disk space value stayed the same. Is there some way to see if anything is wrong or there is a fix?

    She's compiling a library of the American pop, rock, etc. songs from the 1960's, 70's and 80's using the Rolling Stone Record Guide. It's 345.2 days worth and only cost her about $20K over 5+ years with friends in the used CD business who either loan her or buy/sell her CD's. She also has a music production studio (no recording) and drives a VW Jetta. So now an answer to the question would be helpful. I couldn't find any event logs for iTunes or thought of any logical reasons why the number stops at that value. She estimates it should be 1.15 TBytes.

  • Maximum Document Value

    Dear SapGurus,
    i have a scenario. my clinet wants to create a delivery upto the particular value only. the particula value depends upon the customer group.
    say if customer orders 100000 worth of products . if we define the particular value as 50000. when i am creating the delivery , system should allow upto the value 50000 products into the delivery.
    so here we can create two deliveries.
    how to acheive this functionality.
    Thank in advance
    Regards,
    Ram

    Hi
    The control will be more effective if it is confiured at Sales order level instead of delivery. Because the people who creates the delivery are different and they are not sure of reducing the quantities at different line items. The system should not allow to create an order above certain value. The credit management is a different functionality and is no way related to this maximum order value.
    You have to create Ztable and maintain the list of the customer groups and the corresponding  maximum order values. You have to use a userexit and the system takes the customer group from the Customer Master Record of that SP and then gets the Max Order Value from the Ztable and compares it with the order value of the document under creation. You can configure either an error message or a warning message based on the clients requirement, if the value exceeds.
    The userexits which may be useful are.,
    Program - SAPMV45A...include - MV45AFZZ
    Userexit_save_document
    Userexit_save_document_prepare.
    You can also check if anyother approrpiate exits are available.
    Thanks,
    Ravi

  • Making maximum y value negative

    I am trying to make a chart with data that spans -10 to -6. When I chart it, Numbers makes the maximum y value zero by default. I would like the y axis to span -12 to -4. Any help would be appreciated.
    Michael

    Michael,
    Please submit Numbers Feedback. I agree with you that a negative upper limit should be available.
    Jerry

  • Maximum Repalcement Value Procedure

    Hi ,
    I have configured the Maximum Repalcement Value Procedures and assigned the same to Repalcement value procedures.But it is functioning properly during the bapi upload.
    At the same time the minimumu RVP,linear RVP etc is working fine.
    Through the EDM1,the Maximum RVP is working fine.Can any one suggest the solution.
    Thanks.

    Sorry.
    I have configured the Maximum Repalcement Value Procedures and assigned the same to Repalcement value procedures.But it is not functioning properly during the bapi upload.
    At the same time the minimumu RVP,linear RVP etc is working fine.
    Through the EDM1,the Maximum RVP is working fine.Can any one suggest the solution.
    Thanks.

  • Sapscript - print out seperate labels for multiple delivery items

    Hello,
    we do have an output type that prints barcode labels for deliveries (VL02n).
    Now if there are more than one delivery item on the delivery, it will only print out a label for the first item.
    How can I trigger that all items will be printed out on a seperate label each?
    thanks
    Anne

    Hi,
    Just open the script which prints the lables and check for the variable name used for label printing
    Check the script for variables and pass the value to that avriables and those to be declred in your print/driver program.
    when you call write_from in the loop  there you give a window name what ever the value in the variable it will pass to script
    Regards
    Krishna

  • Printing Across Multiple Labels

    I have a requirement to modify a report that will print data in a designated format. The report was originally designed to accommodate five or less detail lines. Now I have to change the report to accommodate an indefinite number of detail lines that will print across multiple labels. The labels are 2 1/2" wide and 1" high with a Times New Roman font of 5 (small font, but acceptable). The top of the report allows two lines of data for a header. There is a subreport that allows 5 detail lines and a one line footer that totals the detail lines.
    This design worked fine when there where only five detail lines. However, there can now be more than five detail lines and these print on the label, losing the footer. What I need to be able to do is to print these detail lines across multiple labels. There will not be header or footer lines on these labels until the last detail line is printed, at which time the footer will print.
    I have not been able to figure out how to get labels to continue when the detail lines exceed a specified amount and continue on the next label.
    Can anyone offer any assistance, please?
    Thank you in advance.

    Not much info including version of CR but think of it this way, and it may be printer dependent, rather than defining your label size as 2 1/2 x 1 set your page size to the size of a typical printer or a continuous form feed printer. Something that lines up with your labels.
    For example is if you print to a laser printer you'll see the label header info and then the multiple detail lines ( this is the Detail section of the designer ) and it prints until no more data then you see the footers being printed.
    So what you do is manually space your fields so it lines up with the labels and then it should print all detail lines. You will have to create formula to insert lines to adjust for any missing lines so the labels line up when the footers start printing. Example, you don't won't the footer to start in the middle of a label, unless that is what you do want.
    Think of it like a Continuous form Printer rather than a label printer. Depending on the printer and labels being used I'm not sure it will allow you to create a custom paper size, if it does though and you'll have to test this, set it for the maximum length you expect your labels to be printed.
    Hope this makes sense?
    Thanks
    Don

Maybe you are looking for

  • Preview on Mac OS X Lion 10.7.3 won't load and crashes! Help!

    Preview on Mac OS X Lion 10.7.3 won't load and crashes. These are the details after it closes: Please help! Process:         Preview [644] Path:            /Applications/Preview.app/Contents/MacOS/Preview Identifier:      com.apple.Preview Version:  

  • Download and Upload speeds have been dropping sinc...

    I have recently been having seriously problems with my connection, every day the router appears to reset/crash, sometimes once and sometimes more than several times a day. This was the speed I was getting in December, everything was fine. Now this is

  • Duplicate Post

    We create lessons in Captivate that include swf demos that someone else records. We import the swf files onto one slide. (In the future we're going to do this differently, but we already have these lessons buildt and need them out there, like today!)

  • Calendar sync problem after upgrade to Snow leopard?

    I upgrade my iMac to Snow Leopard recently, since then I can not sync my calendar with mobile me account other item are syncing OK (contact, notes ..etc). How I can fix this?

  • Cisco UCS 6248 and Dell EQ 6510x

            We have a Dell EQ 6510x we have in production and we are about to power on a Cisco UCS B series chassis and a pair of 6248UP FIs. I'm planning to connect the 4 6510x 10G ports directly to the 6248 FIs and set them as Applicance Ports. My ques