Adding meauring point and transfering total

Hello,
I have a scenario that i am trying out now.  I have a functional location hierarchy where the measuring points at the lower level need to be added up and the total transfer to the parent FL.
Example.
in the water treatment plant, i have a power consumption meter.  I create a FL to represent the treatment plant.  At the lower hierarchy, i have a few pump.  Each of this pump, i have a power consumption meter too which i represent as a FL too.
At the end of day, all the consumption at the pump will be recorded and the total consumption at the pump will be transfer to the water treatment plant.
How can i do this with measuring point transfer?  Is there a way to sum up the measurement reading then only i transfer to total to the other measuring point?
Thanks a million.

Hi ,
I think you need to do some custome development ... alternatively check if BADI : MP_TRANSFER_RELATION to define customer-specific relationships for measurement reading transfer for a technical object .....   is helpful or no .This is avaiblable from ECC 6,EHP2 ..
regrds
pushpa

Similar Messages

  • Equipment Efficiency through Measuring Point and Counters

    Hi gurus,
    I am planning to get the efficiency of equipment by using Meauring points and counters.
    Against an Equipment I have created a Measuring point as counter.
    I am capturing Actual output of the machine as mesurment reading.
    In order to set the Target output i dont find a solution.
    I am expecting from all you guys to give me some solution to set the Expected or standard output against an equipment.
    so that i can compare the target vs actual as well as efficiency.

    The purpose of measuring points and counters is to genrate call objects at given overflow reading or points I dont think so that they can help in calculating the effiency in a way that this machine perfomence is let say 80% and other one is 70%.
    However you can maintain it manualy while entering the measuring points in format of % .
    Regards
    Iftikhar

  • I have just bought a new laptop, how do I go about adding iTunes to it and transferring everything from my old laptop?

    Hello -
    I have just bought a new laptop with Windows 8 and I would like to know how I go about adding iTunes to it and transferring all my information to this laptop?  I would appreciate any help possible.
    Thanks
    Jennie

    MegsiPhone wrote:
    This user tip may help too
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive
    I must tell you, I am in the situation that MegsiPhone described and I am confused as to what to do.  Here is what I have done thus far:
    1.  I installed iTunes on my new computer, I wen't ahead and set up a new library file locally, and pointed to my NAS for all the music and movies file in edit>advanced.  From what I recall, when I did I can remember getting a whole bunch of messages about apps, new versions, overwriting.  I don't recall, regadless I dismissed each on and did not override.  Anyway, that's all done now.
    2.  I can tell you that I used to back up three iPhones and an iPod touch to my old PC.  There is a mixture of 4 iTunes ID's with various app purchases, it seems a mess. 
    3.  I did plug my phone in, it gave me the error message about syncing only to one computer.  Then I did a back-up and a sync.  I know it did not work right because it took a matter of seconds when I know it should take a lot longer.  Anyway, as a safeguard I am using iCloud back-up for now before I do anything else.
    So, what do I do now to make this all right?  I would like to be able to sync mine and my wife's iPhone to the computer.  Should I not bother and just keep my back-up in the cloud and are there disadvantages to this?  For my son's iPhone, I can let him back-up to the old computer, I would assume that would remain good and I would not have any issues.  Should I erase the back-up on my new computer, erase the appss or whatever and start from scratch?  Kind of not sure how to handle, please help.

  • How to delete decimal point and adding leading zeros....

    Hi,
    I have one requirement in the report   i.e.
            <b>Present Value    :</b>  44567.98
            <b>Expected Value  :</b> 0000004456798
    In the present Value how will I remove that decimal point and how to add those six ing zeros. I tried with CONVERSION_EXIT....but it is not giving. Help me...
    Thanks in advance.
    Regards,
    Kumar.

    Hi,
    Use SPLIT and COMCATENATE fnctions.
    Eg:  split l_v at '.' into l_v1 l_v2
            concatenate l_v1 l_v2 into l_v.
    For adding leading zeros
    Use FM CONVERSION_EXIT_ALPHA_INPUT.
    Eg:
    data: tknum type vttk-tknum value '99156'.
    call function 'CONVERSION_EXIT_ALPHA_INPUT'
         exporting
              input  = tknum
         importing
              output = tknum.
    Sri
    Message was edited by:
            Sri Tayi

  • When i use the AE2 as an extra wifi point and put the plug in from Time Capsule than the total networks goes down. what do I wrong?

    When i use the AE2 as an extra wifi point and put the plug in from Time Capsule than the total networks goes down. what do I wrong?

    When i use the AE2 as an extra wifi point and put the plug in from Time Capsule than the total networks goes down. what do I wrong?
    You likely first configured the AirPort Express to "extend a wireless network" using wireless only, correct?
    If yes, you cannot then connect the AirPort Express using Ethernet....that will crash your network.
    The Express must be configured to "create a wireless network".  AirPort Utility will do this for you automatically, but you will first need to perform a Factory Default Reset or Hard Reset on the AirPort Express and then start over with the configuration again.
    Connect the Ethernet cable to the Express before you open AirPort Utility. Post back if you need more tips on how to set this up.

  • Break points and watch points

    Hi all
       Can anybody help me using break points and watch points.what do they exactly do as well..
    Thanks
    abap user

    Hi
    <b>Breakpoints</b>
    Instead of starting an ABAP program directly in the Debugger, you can also debug a program by creating one or more breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The program runs normally until the breakpoint is reached.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field <b>change. For further information, refer to Watchpoints.
    Breakpoint Variants</b>
    The Debugger contains different breakpoint variants:
    <b>Static</b>     The BREAK-POINT statement in an ABAP program. Static breakpoints are not normally user-specific. However, you can make them user-specific.
    <b>Directly-set</b>
    dynamic breakpoints     Can be set in the ABAP Editor or the Debugger. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    <b>Breakpoint</b>
    at statement     The Debugger stops the program directly before the specified statement is executed.
    <b>Breakpoint at subroutine</b>     The Debugger stops the program directly before the specified subroutine is called.
    <b>Breakpoint at function module</b>     The Debugger stops the program directly before the specified function module is called.
    Breakpoint at method     The Debugger stops the program directly before the specified method is called.
    <b>Breakpoints at system exceptions</b>     The Debugger stops the program directly after a system exception, that is, after a runtime error has been intercepted.
    <b>Use</b>
    <b>Static Breakpoints</b>
    Static breakpoints are not normally user-specific. Once a user has inserted a BREAK-POINT statement in an ABAP program, the system always interrupts the program at that point. You should only use static breakpoints during the development phase of an application. You should set static breakpoints whenever more than one programmer is working on the same program and you always want to stop the program in the same place.
    <b>Dynamic Breakpoints</b>
    Dynamic breakpoints are user-specific. You should, therefore, use them when you only want the program to be interrupted when you run it yourself. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints, because you can deactivate or delete them at runtime. They have the following advantages:
    •     You do not have to change the program code
    •     You can set them even when the program is locked by another programmer
    •     You can define a counter (for example, only activate the breakpoint after it has been reached five times).
    <b>Special Dynamic Breakpoints</b>
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the program code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger.
    <b>Transferring Breakpoints to HTTP and Update Sessions</b>
    If an HTTP or update session is called from a Logical Unit of Work (LUW), new work processes are started for these new sessions. Breakpoints that were defined beforehand in the calling LUW are copied to these sessions where they can be displayed under breakpoints.
    If, for example, the update module func is called via CALL FUNCTION func IN UPDATE TASK, the new work process is displayed in a second window if Update debugging was selected under Settings in the debugging mode. All the breakpoints that were set in the calling LUW can then be processed here.
    <b>Static Breakpoints</b>
    You should only use static breakpoints during the development phase of an application. You must remove them from your program before you transport it.
    Setting Breakpoints
    To set a static breakpoint, use the ABAP statement BREAK-POINT . Place the breakpoint in the line at which you want to interrupt the program.
    program RSDEBUG_01.
    if SY-SUBRC <> 0.
    break-point.
    endif.
    When you run the program, the runtime processor interrupts it when the breakpoints occur. You can number your breakpoints to make them easier to identify ( BREAK-POINT 1, BREAK-POINT 2 …).
    Static breakpoints are not normally user-specific. The program is, therefore, always interrupted as soon as the runtime processor reaches the line containing the breakpoint. The program is interrupted regardless of the user who executes it.
    However, you can set user-specific static breakpoints using the BREAK statement followed by your user name. For example, if you use the statement BREAK SMITH , the program is only interrupted when user Smith runs it. Although user-specific breakpoints appear in the program code, they are not active when other users run the program. You should, however, be careful if an application is being used by several users with the same name.
    Deleting Breakpoints
    Since static breakpoints apply to all users, you must remove them from the program once you have finished testing it. In the ABAP Editor, you can find breakpoints quickly by choosing Utilities &#61614; Global search. You can also use the Extended Program Check to find them.
    If you do not remove static breakpoints from your program, they will be transported to your production system. This could cause serious problems in the production system.
    <b>Dynamic Breakpoints</b>
    You can set up to 30 dynamic breakpoints without changing the program code. Dynamic breakpoints can be set either in the ABAP Editor or directly in the Debugger.
    Setting Dynamic Breakpoints in the ABAP Editor
    You can set dynamic breakpoints in the ABAP Editor regardless of whether you are in display or change mode. You can also set breakpoints directly from within the Debugger at runtime. To set a dynamic breakpoint in the ABAP Editor:
    1.     Position the cursor on the line of the source code at which you want to set the breakpoint.
    2.     Choose Utilities &#61614; Breakpoints &#61614; Set or the Stop icon. The system confirms that the breakpoint has been set.
    To display a list of all dynamic breakpoints in a program, choose Utilities &#61614; Breakpoints &#61614; Display. You can use this list to navigate to a particular breakpoint or to delete one or more breakpoints from the program.
    Setting Dynamic Breakpoints in Debugging Mode
    To set a dynamic breakpoint in the Debugger:
    1.     Position the cursor on the line in which you want to set the breakpoint.
    2.     Select the line by double-clicking it or choosing Breakpoint &#61614; Set/delete.
    The system sets the breakpoint, and displays a small stop sign to the left of the relevant line. If the line already contained a breakpoint, it is deleted.
    When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    <b>
    Breakpoints at Statements</b>
    You can use this special kind of dynamic breakpoint to interrupt a program directly before an ABAP statement is processed.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at an ABAP statement:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Statement...
    2.     Enter the ABAP statement.
    The system sets a breakpoint at all points in the program at which the ABAP statement occurs.
    3.     Choose ENTER.
    The breakpoint applies to all lines containing the specified statement.
    Result
    The system confirms the breakpoint and adds it to the list in the display. When you finish your debugging session, the breakpoint is automatically deleted unless you have explicitly saved it.
    <b>Breakpoints at Subroutines</b>
    You can use this special kind of dynamic breakpoint to interrupt a program directly before a subroutine is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint for a subroutine:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Event/Subroutine.
    2.     Enter the name of the subroutine before which you want to interrupt the program. By default, the Program field contains the name of the program that is currently active. The system sets a breakpoint wherever the specified subroutine occurs in the program code.
    3.     Choose ENTER.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    <b>Breakpoints at Function Module</b>
    You can use this kind of dynamic breakpoint to interrupt a program directly before a function module is called.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    <b>To set a breakpoint for a function module</b>:
    1.     Choose Breakpoint &#61614; Breakpoint at &#61614; Function module... 
    2.     Enter the name of the function module before which you want to interrupt the program. The system sets a breakpoint wherever the specified event, module pool, or subroutine occurs in the program code.
    3.     Choose ENTER.
    Result
    If you entered a valid function module name, the system confirms that the breakpoint has been set. If the function module exists in the system, the new breakpoint is added to the display list.
    <b>Breakpoints at System Exceptions</b>
    You can use this special form of dynamic breakpoint to interrupt a program immediately after a runtime error has occurred.
    Prerequisites
    You must already be running the program in the Debugger.
    Procedure
    To set a breakpoint at a system exception:
    Choose Breakpoint &#61614; Breakpoint at &#61614; System exception.
    Result
    The system confirms the breakpoint. The breakpoint is added to the breakpoints displayed.
    When a system exception is triggered, a warning triangle appears in the line containing the statement that caused it. If you double-click the warning triangle, the internal name of the runtime error appears.
    <b>Saving Breakpoints</b>
    If you want to leave the Debugger temporarily, you can save your dynamic breakpoints so that they are still active when you return to the Debugger within the same terminal session.
    To save the breakpoints that you have set in the Debugger:
    Choose Breakpoint &#61614; Save.
    The system saves all of the breakpoints that you have set in the current program. These breakpoints will remain active until you either explicitly delete them or log off from the system.
    <u>You can also delete breakpoints that you have saved</u>:
    •     By deleting individual breakpoints from the display and then saving again. In this case, only your selected breakpoints will be deleted.
    •     By choosing Breakpoint &#61614; Delete all. In this case, the system deletes all dynamic breakpoints.
    <b>Managing Dynamic Breakpoints</b>
    The ABAP Debugger provides a convenient user interface for managing breakpoints. To open the breakpoint display, choose Breakpoints, or, from the menu, Goto &#61614; Control debugging &#61614; Breakpoints.
    Functions
    This display mode contains the following functions for breakpoints:
    Breakpoint Display
    The scrollable breakpoint display contains up to 30 dynamic breakpoints. For breakpoints that you set directly, the program name and line number at which the breakpoint occurs are displayed. For special breakpoint forms, the list displays the statements, events, subroutines, and module calls at which the relevant breakpoints are set.
    Counter
    In the breakpoint display, you can specify a counter. When you use a counter, the breakpoint is not activated until it has been reached a specified number of times. For example, if you enter 5 for the counter, the breakpoint is not activated until it is reached for the fifth time. After the breakpoint has been activated, it remains so, and the counter no longer appears in the breakpoint display.
    Deleting Breakpoints
    Position the cursor on the breakpoint that you want to delete, and either double-click the line or choose Breakpoint &#61614; Set/delete. To delete all breakpoints, choose Breakpoint &#61614; Delete all.
    Activating and Deactivating Breakpoints
    Position the cursor on the breakpoint that you want to activate or deactivate and choose Breakpoint &#61614; Activate/deactivate.
    <b>Watchpoints</b>
    Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    •     You can set up to five watchpoints in a program.
    •     You can also specify the conditions on which a watchpoint is to become active.
    •     You can specify logical conditions between up to five conditional watchpoints.
    •     You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program.
    •     You can change and delete watchpoints.
    <b>Setting Watchpoints</b>
    If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings.
    A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.
    Procedure
    <u>To set a watchpoint, start the Debugger and proceed as follows:</u>
    1.     Choose Breakpoint &#61614; Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears.
    2.     Decide whether you want to set a local or global watchpoint.
    3.     Enter the program and the name of the field for which you want to set the watchpoint. In the Program field, the name of the program currently running is always defaulted.
    4.     If you want your watchpoint to be activated each time the contents of the field change, the definition is now complete, and you can return to the Debugger by pressing ENTER .
    5.     To create a conditional watchpoint, that is only activated when a particular situation arises, choose one of the following relational operators.
    Operator     Meaning
    <     Less than
    <=     Less than or equal
    =     Equal
    <>     Not equal
    >=      Greater than or equal
    >      Greater than
    6.     
    7.     You can use the Comparison field option to specify whether the comparison is to be carried out with a value that you specify or with the contents of another field. Depending on your choice from step 6, enter a value or a field for the comparison.
    <b>Result</b>
    The system confirms the watchpoint and adds it to the list in the display. When you finish your debugging session, the watchpoint is automatically deleted unless you have explicitly saved it.
    <b>Specifying Logical Links</b>
    If you have more than one conditional watchpoint, you can specify a logical link between them:
    OR     Only one of the specified conditions must be met
    AND     All of the conditions must be met.
    <u>To create a logical link between watchpoints:</u>
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to open the watchpoint display.
    2.     Set the Logical operator between watchpoints option.
    The default value is always OR .
    Changing Watchpoints
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    2.     Choose the pencil icon in the line containing the watchpoint you want to change.
    3.     Change the watchpoint attributes in the Create/Change Watchpoint.
    3.     Choose ENTER .
    <b>Deleting Watchpoints</b>
    You cannot delete watchpoints by choosing Breakpoint &#61614; Delete or Breakpoint &#61614; Deactivate/activate. Instead, proceed as follows:
    1.     Choose Goto &#61614; Control debugging &#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list.
    2.     Choose the trashcan icon in the line containing the watchpoint you want to delete.
    <b>Memory Monitoring with Watchpoints</b>
    You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. By placing an ampersand (&) in front of the object name, you can display the reference in question in hexadecimal format. With internal tables, you can also display the table header by placing an asterisk (*) at the beginning of the name.
    <b>Reward ifusefull</b>

  • Phone is connecting and transfering data in the ba...

    Today at work my Nokia 6710 did start to transfer data in the background without my interaction. I was typing a sms while the symbol for data transfer below the 3G lit up. Did a quick check in the menu->settings->connectivity->Conn.mgr.  Yes, one active connection was sending and receiving data, small amounts 3-4kb, then idle.
    I ended the connection in the Conn.mgr. Closed all the apps in the phone and waited a minute. Then it started one new connection in the background again! Same procedure, checked and closed it...! This did not stop, every time the phone started a new connection after a minute? 
    I did try to find what could cause this, but no success. What is going on, any ideas for what to check? 
    I finally deleted my  3G access point in menu->settings->settings->connection->destinations->internet
    This did stopp the phone from connecting and transfering data. 
     Back home I connected to my WiFi at home, used the browser and closed the connection. Guess what, the phone did now connect via the WiFi in the background doing exactly the same type of small data transfer - without asking!? 
    What is this? I downloaded the latest F-Secure mobile version to check for virus, but nothing, it was clean.
    I did shut down the phone, will not use it until I can stop these unwanted connections and transfers. Please help.

    Finally I found the reason for these data transfers. The upgrade of the mentioned files did have something to do with all of this, but the removal of the files did not help. 
    So, I did go through all the settings in again for Connections and the setting for Share Video were set On...? Turning this setting Off did stop the background data transfers. 
    Problem solved perhaps. But I still wonder why the Share Video setting did start sending data while the phone was not in use? A bug? A virus? A hacker trying to activate the webcam?

  • How can I get the Microsoft enhanced Point and Print compatibility driver installed on Win7 LC master?

    We recently migrated from a Windows Server 2003 to Windows Server 2012 print server. When recomposing a linked clone pool with the old 2003 server, drivers were taken care of for the printer when the user printed for the first time after desktop recompose. With 2012, any printer using the Point and Print driver doesn't seem to obtain the driver again from the 2012 server. All of our clients are running Windows 7 which means the Microsoft enhanced Point and Print compatibility driver is not installed in the OS natively.
    I apparently need to figure out a way to get this installed on the host image so it trickles down to snapshots when recomposing the linked clone pool but I haven't been able to dig much information on doing this. Does anyone out there have any insight on how to accomplish this? If I recompose a pool now for a user who is using a new Point and Print driver, they get the following message that is resolved by removing the printer from their account and re-adding it:
    "The 'Microsoft enhanced Point and Print compatibility driver' printer driver is not installed on this computer. Some printer properties will not be accessible unless you install the printer driver. Do you want to install the driver now?"
    I figured the easy solution would be to just install a printer using the Point and Print driver and then remove it...leaving the driver behind (unless it cleaned up after itself). The problem with this is in my testing, even after removing and re-adding a printer that set off installation of this Point and Print driver on the client, any other printer that was using it still required the remove/re-add process in order to work, else I got the same message. That tells me that the driver may be custom for each printer installed?
    Color me a little confused. I do NOT like the way that Server 2012 handles printers. I've come across a few other issues as well (such as duplex capabilities not being remember on the print server for a printer) that I never had with the 2003 server.
    Thanks!!

    I was able to get it to work using your instructions off of here and your other thread
    Thank you!
    Chris
    http://social.technet.microsoft.com/Forums/en-US/864553c2-c8ff-49d2-bd48-eb7b47381111/windows-2012-print-server-problem-with-xp-clients?prof=required

  • HT1296 My drive failed on my iMac and I had to get a new drive but now my iTunes music is gone including all the CD's I added to iTunes, and all of my custom Playlists. All of that stuff is still on my iPhone 4, but how do I get it all onto my iMac again?

    My drive failed on my iMac and I had to get a new drive but now my iTunes music is gone including all the CD's I added to iTunes, and all of my custom Playlists. All of that stuff is still on my iPhone 4, but how do I get it all onto my iMac again? I have CD's on my phone that i no longer have the physical copies of so i can't just re-download them all, plus it would take forever! I just want to know if there is a way to get all of what is still on my phone, back over to my iMac with it's new drive and restore my full iTunes library to the iMac with playlists, CD downloaded music, and my iTunes bought stuff, so i can go back to synching the 2 devices without losing everything that's on my phone that used to be on both devices?

    iTunes Store- Transferring purchases from iOS device or iPod to a computer
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    How to dowload purchased music

  • I have a new MAC Pro and transferred files from a PC. Now I have about 100GB of real information but 300GB of other which I can't ID from summing up each folder and sum of applications, music, pictures etc. What could be occuping the 300GB OF OTHER??

    I have a new MacBook Pro and used the tool to transfer information from my HP Computer to the MAC during set up. THe size of the disk space used on the HP was about 200GB. Now I have 400GB used on the MAC. I have added up all the folders and applications etc. and they total only about 110GB. On the summary the "other " category shows over 300 GB. What could it be. I would like to recover the space.

    Check out :  The Storage Display
    http://support.apple.com/kb/HT1408 How to transfer data from a PC to a Macintosh 
    ===============
    Please read the warranty paperwork that came w/your computer.
    You have 14 days to return the computer w/no questions asked.  Plus you have 90 days of FREE phone tech support on top of your standard 1 year warranty unless you also purchased AppleCare which gives you an additional 2 years of coverage plus FREE phone support.
    Strongly suggest that you take FULL advantage of the above before it runs out.  Let Apple deal w/the problems.

  • ALV GRID: How to change Subtotal and Main total values in standard row

    Hi Experts,
    By using SORT-SUBTOT = 'X' and  FIELDCATALOG-DO_SUM    = 'X', I will get subtotal and Main total.
    My requiremnt is I need be calculate values manually and pass the calculated values to subtotal and maintotal.
    is it possible in ALV GRID?
    By adding extra row we will do this but I am looking standard subtotal and maintotal row change.
    Thanks in advance,
    Mahe

    Hi,
    With function REUSE_ALV_GRID_DISPLAY you cannot do this.
    It´s possible if you create a class inherited from cl_gui_alv_grid and rewrite the method set_data_table, you can do this. Like:
    CLASS xgrid DEFINITION INHERITING FROM cl_gui_alv_grid.
      PROTECTED SECTION.
        METHODS: set_data_table REDEFINITION.
    ENDCLASS.                    "xgrid DEFINITION
    CLASS xgrid IMPLEMENTATION.
      METHOD set_data_table.
    * ....MODIFY data_table ...
        CALL METHOD super->set_data_table
          CHANGING
            data_table = data_table.
      ENDMETHOD.                    "set_data_table
    ENDCLASS.                    "xgrid IMPLEMENTATION
    DATA:    grid  TYPE REF TO xgrid.
      CREATE OBJECT custom_container EXPORTING container_name = mycontainer.
      CREATE OBJECT grid  EXPORTING i_parent = custom_container.
      CALL METHOD grid1->set_table_for_first_display ...
    Best regards,
    Leandro Mengue

  • Unloading point and Goods recipient in Purchase Requisition

    Hi,
    I have a requirement to update Good Recipient and Unloading point in Purchase requisition.
    I am using BAdI ME_PROCESS_REQ_CUST and PROCESS_ACCOUNT Method.
    in PROCESS_ACCOUNT method I am using IM_ACCOUNT_REF and GET_DATA and SET_DATA methods. and this is working fine for me.
    I need your help in resolving below problem.
    If Purchase already planned with some Materials by an individual, is now added more Materials by another individual, the system should assign the values of the Goods Recipient  and Unloading Point of the second individual to the Material items in the document. The Goods Recipient and Unloading Point values of the existing Material items in the document should remain unchanged, unless these values are specifically changed by the user editing the document or the Material number of the original item has been changed by the user, following which the Goods Recipient  and Unloading Point values of the current user should be adopted instead, overwriting the existing values.
    GET_DATA and SET_DATA methods does not have the inforamtion Material number filed.
    I have also checked GET_PERSISTANT_DATA and GET_PREVIOUS_DATA.
    Please let me know which BAdI and method i can use to cater this requirement. or any Enhancement points.
    Thanks in Advance.

    Hi,
    Reason for not getting populated these fields from PR to PO
    through ME59N or ME21N is because in general, in case of service
    environment, these are not available as explained in attached
    note 118008. Their role is taken by the so-called user fields
    since release 4.0 which are declared as text fields and play
    a purely informative role only....
    These two fields have never been included into the standard
    functionalities due to the basic business process which does not
    include these fields for service transactions/functionalities.
    The fields "unloading point" and "Goods recipient" are not available
    for services in R/3.
    >>The same functionality exists for blanket pos.<<<
    One reason for this is that the account-assignment screen is filled
    by the user on sub-item level. The system aggregates this information
    to item level. This is not possible for the unloading point and goods
    recipient, because there can be several unloading points / goods re-
    cipients for one purchase/requisition order item.
    This functionality won't be available in standard R/3.
    See also note
    633986     FAQ: Account assignment in the service
    Br
    Nadia Orlandi

  • Vendor Evaluation-- Points and Scores

    Dear Gurus,
    On what basis are the scores assigned for the percentage that is assigned.  For Eg. what do you mean by the following:
    Percentage   Score
    20.0-        10
    10.0-        65
      2.0-       100
      2.0        100
    10.0         50
    what does 20.0- mean and how is a score of 10 assigned to the same.same is the case for all the entries.
    Kindly explain me the entire process as to what does this percentage mean. Assume that we are evaluating the vendor based on Price.

    Hi,
    The system calculates the scores for vendor evaluation as follows.
    Calculating the Overall Score
    The system derives the overall score from the scores for the various main criteria, taking the
    weighting factors assigned by Purchasing in the system settings for each main criterion into
    account.
    The following example explains this process:
    Example
    The table below shows the scores for a vendor and their weighting factors:
    Main criterion Score Weighting factor
    Price 70 40
    Quality 85 25
    Delivery 50 10
    General service/support 50 5
    Converting Weighting Factors into Percentages
    To make the weighting factors clearer to the user, the system converts them into percentages.
    1. The system adds the factors together and equates the total with 100 %:
    40 + 25 + 10 + 5 = 80 equals 100 %
    2. To express the individual weighting factors as percentages of 100%, the system first divides
    100% by the sum of the weighting factors:
    100 / 80 = 1.25 %
    3. Then the system multiplies the weighting factors the buyer assigned to the main criteria by
    this figure:
    40 x 1.25 = 50.00 %
    25 x 1.25 = 31.25 %
    10 x 1.25 = 12.50 %
    5 x 1.25 = 6.25 %
    4. The following are the results of percentage of overall score
    Main criterion Score Percentage of overall score
    Price 70 50.00 %
    Quality 85 31.25 %
    Delivery 50 12.50 %
    General service/support 50 6.25 %
    However, internally, the system uses the weighting factors to compute the overall score.
    1. The scores for the main criteria are multiplied by their weighting factors.
    70 x 40 = 2800 points
    85 x 25 = 2125 points
    50 x 10 = 500 points
    50 x 5 = 250 points
    2. Total points = 5675.
    3. This total is divided by the sum of the weighting factors:
    5675 / 80 = 70.94 points
    The vendor is awarded an overall score of 71 points
    Please go though this link for clear understanding.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/MMISVE/MMISVE.pdf
    Regards,
    Manik

  • I recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ? or can you run both versions on OS10.9.5 ?

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

  • I recently got new mac air and transfered my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record shows its recieving sound from software inst. but no sound. I checked audio preferences OK

    i recently got new mac air and transferred my old version garageband projects now when I open them in 10.0.2 I can add new tracks but then nothing can record, shows its receiving sound from software inst. but no sound. I checked audio preferences and they are set as they should be. I tried it in all the other older projects and same issue anyone have any experience like this very frustrating.  Can one download old version still ?
    thanks,

    Ok, either my question was too long or nobody seems to have an answer. Sad, either way
    Here's something I found out in the meantime, maybe this is interesting for somebody or maybe - problem's not totally solved - enough info for any of you to give me further advice.
    When I start Logic Core Audio driver de-activated, I can open old songs. Then I save them in a new folder with all audio files and a new name. And I remove all EXS24 instruments as well as the Space Designer. I quit Logic, re-open with Core Audio activated and I can open the song.
    Problem no.1: EXS24 instruments don't find the appropriate samples, but EXSMananger Pro did help me with this. Same problem with Space Designer, which doesn't find the impulse responses, connected to a certain preset.
    Two questions, every idea would be great!
    - Is there any way to teach Space Designer Presets where to look for impulse respones. I can load IR samples directly and create a new preset, but I can't use my old ones.
    - Is it possible to install Logic from scratch over an existing version? Or how should I de-install everything connected with Logic and then install a fresh version from CD?
    Thank you again,
    Joern

Maybe you are looking for

  • HDMI doesn't support HDPC

    I have been renting movies for about 2 weeks now with no problems. Today I rented/downloaded August Rush and it will not play. I got the message HDMI doesn't support HDCP. What gives? I don't have a Component Video Cable. Is it necessary or is there

  • Macbook pro won't boot after installing update 10.9.3

    macbook pro won't boot after installing update 10.9.3

  • Emailing an Image

    Hi, I have written a procedure using apex_mail.send to send updates to database users that are using my APEX System. However i wish to include images retrieved from apex_application_files as attachments in the email. Is there any way to do this? Is i

  • Can't open iWork Apps in Lion

    Since upgrading to Lion and having a defective drive replaced, I can no longer open my iWork applications. I get a crash report message that I can send to Apple. I reinstalled from the original disks without problem. Before I go about trhowing out Pr

  • FM HELPSCREEN_NA_CREATE

    Hi All..           I need replacement for this FM...currently we are working on ECC 6.0 Points are assurred.... Regards, Priya.