Report in DM module (ISU)for Meter removed that have debts &security charge

I am beginner in  SAP ISU, looking forward for solution , I have a  techno-functional task-  "I need to develope a report in DM module(ISU) for Meter removed that have debts and security charge with generalised Requirement.
Moderator message: please work yourself first on your requirement.
Edited by: Thomas Zloch on Feb 20, 2012

I have just experiences the "beep, beep, beep" after a hard crash.
The computer is overheating.  The RAM gets hot and everything crashes.
The system will not restart, all I get is "beep, beep, beep.....beep, beep, beep.....beep, beep, beep.....beep, beep, beep.....beep, beep, beep.....beep, beep, beep.....beep, beep, beep.....beep, beep, beep"
I pulled the ram, and switched the chips around.  The system is back up without a problem so far.

Similar Messages

  • Notifications are not being generated for any emails that have rules applied to them.

    Notifications are not being generated for any emails that have rules applied to them. Any clues how to fix this?

    In System Center 2012 Operations Manager, the alert notification will be sent when the alert first meets all criteria, regardless of resolution state, unless resolution state itself is a criterion. If alert suppression is enabled for the rule or monitor
    that raises an alert, only one notification will be sent when the subscription criteria are first met. No additional notifications will be sent until the alert is closed and a new alert is raised that meets all subscription criteria.  PLease check
    1) whether your rule has trun on alert supression
    2) Close the alert, craised by rule,  and do it again
    Roger

  • How do I add a recurring event to repeat on the fifth recurring day of the month, for example, an event that only happen on the fifth Sunday of the month for those months that have a fifth Sunday?

    How do I add a recurring event to repeat on the fifth recurring day of the month, for example, an event that only happen on the fifth Sunday of the month for those months that have a fifth Sunday?

    Create one on the first Tuesday, select repeat/monthly and take the option at the bottom.

  • Bpel deployment fails for all processes that have revision other than 1.0.

    Using: Release *10.1.3.3.1*
    Hello All,
    Bpel deployment fails for all processes that have revision other than *1.0*.
    We have been attempting to deploy several BPEL projects via ANT script to a target environment and are encountering failures to deploy for every project which isn’t a (revision 1.0). We are getting the following error whenever we try to deploy a process with a revision other than 1.0:
    D:\TJ_AutoDeploy\BPEL_AutoDeploy_BETA\build.xml:65: BPEL archive doesnt exist in directory "{0}"
         at com.collaxa.cube.ant.taskdefs.DeployRemote.getJarFile(DeployRemote.java:254)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.deployProcess(DeployRemote.java:409)
         at com.collaxa.cube.ant.taskdefs.DeployRemote.execute(DeployRemote.java:211)
         at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
         at org.apache.tools.ant.Task.perform(Task.java:364)
         at org.apache.tools.ant.Target.execute(Target.java:341)
         at org.apache.tools.ant.Target.performTasks(Target.java:369)
         at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1216)
         at org.apache.tools.ant.Project.executeTarget(Project.java:1185)
         at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:40)
         at org.apache.tools.ant.Project.executeTargets(Project.java:1068)
         at org.apache.tools.ant.Main.runBuild(Main.java:668)
         at org.apache.tools.ant.Main.startAnt(Main.java:187)
         at org.apache.tools.ant.launch.Launcher.run(Launcher.java:246)
         at org.apache.tools.ant.launch.Launcher.main(Launcher.java:67)
    The structure of our automated deployment script is as follows:
    First, a batch script calls (Jdeveloper_BPEL_Prompt.bat) in order to set all necessary environment variables i.e. ORACLE_HOME, BPEL_HOME, ANT_HOME, etc for ant.
    Next, the script lists every .jar file within the directory to an .ini file called BPEL_List.ini. Furthermore, BPEL_DIR, ADMIN_USER and ADMIN_PSWD variables are set and initialized respectively to:
    -     “.” – point to directory where script is running from because all the BPEL processes are located here
    -     “oc4jadmin”
    -     “*********” (whatever the password for out environment is)
    We’ve developed a method to have the script prompt the user to select the target environment to deploy to. Once the user selects the appropriate environment, the script goes through the BPEL_List.ini files and a loop tells it that for every BPEL process listed:
    DO ant
    -Dprocess.name=%%b
    -Drev= !Rev!
    -Dpath=%BPEL_DIR%
    -Ddomain=default
    -Dadmin.user=%ADMIN_USER%
    -Dadmin.password=%ADMIN_PWD%
    -Dhttp.hostname=%HOST%
    -Dhttp.port=%PORT%
    -Dverbose=true
    (What’s happening is that the variables in the batch file are being passed on to the ANT script where *%%b* is the process name, !rev! is revision #, and so on…)
    The loop goes through each line in the BPEL_List.ini and tokenizes the BPEL process into 3 parts *(%%a, %%b, and %%c)* but we only extract 2 parts: *%%b* (process name) and *%%c* which becomes !Rev! (revision number).
    Example:
    Sample BPEL process:
    bpel_ThisIsProcess1_1.0.jar
    bpel_ThisIsProcess2_SOAv2.19.0.001B.jar
    After tokenizing:
    %%a     %%b     %%c
    bpel     ThisIsProcess1     1.0.jar
    bpel     ThisIsProcess2     SOAv2.19.0.001B.jar
    *!Rev!* and not *%%c* because *%%c* will return whatever the revision number is + the “.jar” file extension as illustrated above. So to circumvent this, we parse *%%c* so that the last 4 characters are stripped. Such is done like this:
    set RevN=%%c
    set RevN=!RevN:~0,-4!
    Hence, the usage of !Rev!.
    Below is a screenshot post of the ANT build.xml that goes with our script:
    <!--<?xml version="1.0"?>-->
    <!--BUILD.XML-->
    <project name="bpel.deploy" default="deployProcess" basedir=".">
         <!--
         This ant build file was generated by JDev to deploy the BPEL process.
         DONOT EDIT THIS JDEV GENERATED FILE. Any customization should be done
         in default target in user created pre-build.xml or post-build.xml
         -->
         <property name="process.dir" value="${basedir}" />
              <!-- Set BPEL process name -->
              <!--
              <xmlproperty file="${process.dir}/bpel/bpel.xml"/>
              <property name="process.name" value="${BPELSuitcase.BPELProcess(id)}"/>
              <property name="rev" value="${BPELSuitcase(rev)}"/>
              -->
         <property environment="env"/>
         <!-- Set bpel.home from developer prompt's environment variable BPEL_HOME -->
              <condition property="bpel.home" value="${env.BPEL_HOME}">
                   <available file="${env.BPEL_HOME}/utilities/ant-orabpel.xml" />
              </condition>
         <!-- show that both bpel and oracle.home are located (TESTING purposes ONLY) -->
         <!-- <echo>HERE:${env.BPEL_HOME} ${env.ORACLE_HOME}</echo> -->
         <!-- END TESTING -->
         <!--If bpel.home is not yet using env.BPEL_HOME, set it for JDev -->
         <property name="oracle.home" value="${env.ORACLE_HOME}" />
         <property name="bpel.home" value="${oracle.home}/bpel" />
         <!--First override from build.properties in process.dir, if available-->
         <property file="${process.dir}/build.properties"/>
         <!--import custom ant tasks for the BPEL PM-->
         <import file="${bpel.home}/utilities/ant-orabpel.xml" />
         <!--Use deployment related default properties-->
         <property file="${bpel.home}/utilities/ant-orabpel.properties" />
         <!-- *************************************************************************************** -->
         <target name="deployProcess">
              <tstamp>
                   <format property="timestamp" pattern="MM-dd-yyyy HH:mm:ss" />
              </tstamp>
              <!-- WRITE TO LOG FILE #tjas -->
              <record name="build_verbose.log" loglevel="verbose" append="true" />
              <record name="build_debug.log" loglevel="debug" append="true" />
              <echo></echo>
              <echo>####################################################################</echo>
              <echo>BPEL_AutoDeploy initiated @ ${timestamp}</echo>
              <echo>--------------------------------------------------------------------</echo>
              <echo>Deploying ${process.name} on ${http.hostname} port ${http.port} </echo>
              <echo>--------------------------------------------------------------------</echo>
              <deployProcess
                   user="${admin.user}"
                   password="${admin.password}"
                   domain="${domain}"
                   process="${process.name}"
                   rev="${rev}"
                   dir="${process.dir}/${path}"
                   hostname="${http.hostname}"
                   httpport="${http.port}"
                   verbose="${verbose}" />
              <sleep seconds="30" />
              <!--<echo message="${process.name} deployment logged to ${build_verbose.log}"/>
              <echo message="${process.name} deployment logged to ${build.log}"/> -->
         </target>
         <!-- *************************************************************************************** -->
    </project>
    SUMMARY OF ISSUE AT HAND:
    ~ Every bpel process w/ 1.0 revision deploys with no problems
    ~ At first I would get an invalid character error most likely due to the “!” preceding “Rev”, but then I decided to set rev=”false” in the build.xml file. That didn’t work quite well. In another attempt, I decided to leave the –Drev= attribute within the batch script blank. That still led to 1.0s going through. My next thought was deploying something other than a 1.0, such as 1.2 or 2.0 and that’s when I realized that if it wasn’t a 1.0, it refused to go through.
    QUESTIONS:
    1.     IS THERE A WAY TO HAVE ANT LOOK INTO THE BPEL PROCESS AND PULL THE REVISION ID?
    2.     WHAT ARE WE DOING WRONG? ARE WE MISSING ANYTHING?
    3.     DID WE GO TOO FAR? MEANING, IS THERE A MUCH EASIER WAY WE OVERLOOKED/FORGOT/OR DON’T KNOW ABOUT THAT EXISTS?
    Edited by: 793292 on Jul 28, 2011 12:38 PM

    Only thing i can think of is instead of using a MAC ACL , u cud jus use the default class
    Policy Map Test
    class class-default
    police 56000 8000 exceed-action drop
    Class Map match-any class-default (id 0)
    Match any
    You would be saving a MAC-ACL ;-).

  • [svn:bz-trunk] 19866: Set delivery mode to PERSISTENT for JMS destinations that have durable set to true .

    Revision: 19866
    Revision: 19866
    Author:   [email protected]
    Date:     2011-01-21 10:05:44 -0800 (Fri, 21 Jan 2011)
    Log Message:
    Set delivery mode to PERSISTENT for JMS destinations that have durable set to true. If messages aren't persistent they won't be saved by the JMS server. This is kind of important when you want the messages to be durable.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/messaging-config.mods.xml

    According to Bea Customer Support this is the normal behavior. If you kill a durable topic subscriber and reconnect it with the same id to another node, the old subscription is deleted and all messages still waiting to be delivered are gone.
              Lesson learned: If you need failover for the server AND client use JMS queues.
              Peter

  • I bought Logic Express in September for the $200 that Apple is now charging for Logic Pro. Anybody in the same boat? Is it worth another 2 bills for the the Pro? Is there any kind of "upgrade" pricing?  Thanks, all

    I bought Logic Express in September for the $200 that Apple is now charging for Logic Pro. Anybody in the same boat? Is it worth another 2 bills for the the Pro? Is there any kind of "upgrade" pricing?  Thanks, all

    CFRiverdog wrote:
    Is there any kind of "upgrade" pricing?
    Nope
    CCT

  • I never  purchased an Adobe App and I'm being charged $89 for it?? Also there is a charge got $100 for storage icloud that I was OVER CHARGED for. Can someone please get in touch with me about these charges!!!  I've been waiting. Thx

    I never  purchased an Adobe App and I'm being charged $89 for it?? Also there is a charge got $100 for storage icloud that I was OVER CHARGED for. Can someone please get in touch with me about these charges!!!  I've been waiting. Thx

    Change your iTS password!!!!
    Are these charges from Adobe or Apple?
    Are these purchases from the App Store or iTunes Store?
    Contact your credit card company and dispute the charges. Apple and Adobe will do nothing for you - it is your CC issuer that can help.
    As noted these are user to user discussions. None of us here work for Apple or Adobe.
    Contact iTS Customer Service via these links - http://www.apple.com/support/itunes/
    MJ

  • Possible solution for all you that have skipping songs, & scratchy sound

    Hi All,
    After upgrading to 7.02, I was extremely annoyed with the performance. But here's what I found and did. In a nutshell, you uninstall the new version and install a 6.05 version or earlier. I'll include some links to what I found and hopefully it'll help. Here's the first link and it describes what you need to do. Scroll down to the post by marlowe5 posted 10-08-2006, 8:06 A.M. and I also included the exact wording from the post below the link.
    http://www.oldapps.com/forum/archive/index.php/t-228.html
    This is the exact wording:
    Thanks for the advise in this post... after installing iTunes 7, and then 7.01, my computer was running really slow, iTunes was skiping and garbling and acting terribly... so I really needed to go back to 6.05.
    For all of you that need to do the same it's pretty easy:
    I downloaded the 6.05 install file from from oldapps, uninstalled 7.01 and then re-installed 6.05. When I ran iTunes it did give me the error message that the library file was created in a new version and couldn't open, but I then deleted the 'itunes library.itl' file (in My Music > iTunes folder) and then replaced it with the backup that was automatically created when I installed 7.01 (in My Music > iTunes > Previous iTunes Libraries). iTunes then started up fine with all my music and playlists. And all the skipping and CPU bogging is better now.
    Library file note:
    With the library file, when you update iTunes it also updates the library file, which won't work with older versions. So you need to replace this file or create a new one. I would recommend copying/backing up the new library file to a different location to be safe instead of just deleting it. You'll see above where to find the new library file and prior ones. When I made these changes I did two things to be safe, 1) I moved the new "iTunes library.itl" to a backup location instead of deleting it 2) I moved my most recent old library file from(My Music > iTunes > Previous iTunes Libraries) to (My Music > iTunes folder)and renamed it to "iTunes library.itl". It was previously "iTunes library 2006-1-18.itl." Before renaming it, iTunes didn't find the library so renaming it worked. Your file name will most likely have a different date so don't look for the exact file I mentioned. Plus it's probably a good idea to make a copy or back up this library file too.
    If you don't have any previous library files, you may need to create a new one. I don't have the info but I believe the link to the post should have that info.
    After reading through the post and other info, the only thing that it appears might be lost are playlists that have been created since the upgrade. I don't believe any music should be lost but that's why it's safer to backup the new library just in case. I did not lose any music.
    Also, here's a link to where I found old versions of iTunes:
    http://www.filehippo.com/download_itunes/?1249
    Hopefully this helps and good luck. I'm back to normal now.
    Dell Dimension 4550   Windows XP  
    Dell Dimension 4550   Windows XP  
    Dell Dimension 4550   Windows XP  

    Soccerteen,
    Make sure you try all the other remedies mentioned in other posts. If this didn't work for you then try below. I consider it a last ditch effort since it's going back to a previous version, which unfortunately works much better than 7.0x for me.
    Remove & backup your current library file to a different file/location to be safe. Once you do that, uninstall 7.02, and then install 6.05 or any 6 version. Once 6.0x is installed and you've opened it, you'll need to create a new library file. If you've removed the library file from (My Music > iTunes folder)it should load up with a blank slate. What you to do from this point is create a new library file. Read the oldapps link, the post from "Admin" dated 9-30-2006 5:30 PM should help. Most likely all of your music will be under one main file but you might have to add individual folders one at a time depending on how much music you have. Since I didn't have to go this route, I'm not sure if it's the best route but after reading multiple post, this was the most common suggestion. Worst case scenario, you can always reload 7.02 an reinsert the backup library file, which will put you back where you started.
    Hope that works for you and good luck!

  • For those people that have a issue with MSI DVD that won't work right

    I  have an MSI K9 SLI Platium 7250 w/ an AMD Athlon X2 4600+ 2.4 GHz. I have MSIDVD that originaly came with my old Motherboard MS-680E AMD Atlon XP 1700+ 1.4GHz. When I upgraded MSIDVD wouldn't work right and every time I Would insert a a DVD MSIDVD would give a wierd error. But here a hint how to bypass. As long as you have MSIDVD installed you should be able to play DVD's through Windows Media Player without any problems, thats what I was able to do. Or if you still want to use MSIDVD, you need to download a program from AMD, here are the detales, I also done this too
    The Program is called "AMD Dual-Core Optimizer"
    The AMD Dual-Core Optimizer can help improve some PC gaming video performance by compensating for those applications that bypass the Windows API for timing by directly using the RDTSC (Read Time Stamp Counter) instruction. Applications that rely on RDTSC do not benefit from the logic in the operating system to properly account for the affect of power management mechanisms on the rate at which a processor core's
    Time Stamp Counter (TSC) is incremented. The AMD Dual-Core Optimizer helps to correct the resulting video performance effects or other incorrect timing effects that these applications may experience on dual-core processor systems, by periodically adjusting the core time-stamp-counters, so that they are synchronized.
    Heres the link http://www.amd.com/us-en/Processors/TechnicalResources/0,,30_182_871_13118,00.html

    OK, well - I installed Tiger back on a separate disk and will reboot into that when I want to watch a movie. Cheers, all.

  • Broadcast Date for TV Shows that have been converted from DVD

    How do you put Broadcast Date(s) for episodes of TV Shows that have be converted(using converted software) from a DVD on iTunes.

    You have to have a valid credit card that is registered to an address in which that credit card is issued. So if you want to use the U.S. App Store or iTunes store on your iPad, your credit card must be a U.S. registered card with a U.S. Billing address.
    If you want to change the store to the U.S. store, go iTunes and tap the Music tab. Swipe down to the bottom of the screen and tap on the ID in the lower left corner. If your friend's ID is showing you have to sign out of that ID and sign in with your own. After you are signed in to your account. Tap View Apple ID. Enter your password. Swipe down to Country/Region and you can change to the U.S. store in there. You can also edit the credit card information in there as well to add your credit card.
    You can delete TV shows by launching the Videos App and then tap and hold down on the icon of the TV shaow that you want to delete until the X pops up.Tap the X to delete the show.

  • Function Module/BAPI  for Meter Reading Entry(EL28)

    Hi Experts,
    Can anyone tell me about BAPI/Function Module for EL28(Meter Reading Entry).Standard FM is preferable.
    Thanks & Regards,
    Radharaman Haldar
    Moderator note - Thread locked, no research.
    Edited by: William Eastman on Mar 8, 2011 5:17 PM

    ISU_VALIDATION_DEPENDENT & ISU_DETERMINE_VALIDATION.
    The above two function module is used for the validation of Plausible or Implausible meter reading.

  • How to Run a Report for Blanket PO that have been OVER Invoiced (over limit

    Hi All,
    How do I run a report in ME2N, where I would want to see all the Blanket POs (Framework Orders) that has a "Actual Value" (the amt invoiced so far) which is Greater than the Overall Limit (specified in the "Limits" tab)?
    Are there any fields in the Dynamic Selection in ME2N? I coudn't Find any......How can I compare two fields in the Blanket PO, for example "Overal Limit' > "Actual Value"?? How to put this selection criteria in ME2N
    Edited by: Duke Dukester on Sep 17, 2008 10:31 AM

    You will not get this information via ME2N but you can get via ME2S
    once you execute the ME2S you will see the PO lines and if oyu double click on it than you will get the all information you are looking but the exact query directly not possible with ME2S
    The best way is write the query using table ESUH and EKPO
    joint EKPO to ESUH and do the query based on your requirements.
    you can get the package number from EKPO and based on the package number you can retrive the data form ESUH table

  • Icalendar keeps sending notification reminders for past events that have deleted. These were set up as reoccurring, but I no longer need. I have a mac which has my calendar synced. Also use google calendar. What do I need to do to fix this?

    PLEASE HELP

    Doing that to hold an application to a desktop seems to work for me, but a more annoying problem is when I assign Mail to the far left desktop space and then then go full screen.  Mail is suddenly shoved to the far right desktop.  I gotta say, as a Unix admin that remembers the wonderful simplicity of OpenLook, this is really annoying. 
    And why can't I use a 2D grid anymore for my spaces?
    Mission Control looks pretty, but it is a huge step backwards compared to what virtual desktop software could do 16 years ago.

  • For the people that have gold iPhones

    For those of you who own the gold iPhone 5s, do you guys ever get the feeling that the gold fades away. My iPhone 5s looks more like a very light rose gold, if not, almost silver color. Is this normal?

    Mine hasn't faded at all.

  • Is there a lifeboat for iPod tunes that have been "sync'd away"?

    My computer crashed. Yes, just like the commercial it is a PC running windows XP(my other computer is a Mac mini). I had to reformat the hard drive of the PC. All my songs remained on my iPod without any other digital back up. I reinstalled iTunes albeit with an empty library. I had downloaded a few songs to the new library. When I connected the iPod it automatically sync'd with the "new" library completely removing any access to songs that were already on the iPod disk. Is there any way of retrieving or gaining access to the songs on this iPod that in reality have not been erased?

    Unlikely. There are data recovery programs that you can buy to possibly retrieve the songs, but none that I know of have been proved to be anywhere near successful.
    What makes it even harder is that you've now begun to overwrite what was previously on your iPod.
    If you want to try any of these programs, they're mentioned in this post.
    http://discussions.apple.com/thread.jspa?messageID=931813&#931813

Maybe you are looking for

  • Writing in between a text File

    Hi all, During a task, I am facing an interesting problem, this came first time since my 2 years development in Java. In always use BufferedReader in = new BufferedReader(new FileReader("/home/oracle/init1.txt")); to read from file and, PrintWriter o

  • When I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

    when I send emails, my friends told me my name doesn't appear in the "from" column. How do I solve this problem?

  • WLC 5508 centrally switched client errors

    Hello, I am having trouble with a newly configured install.  Basically it seems that my centrally switched guest SSID is not functioning.  As you change AP groups, which should change the interface associated with the SSID and also the dhcp client ad

  • Can't install cd 2- rejects my serial number

    can someone please help me, I am already kind of computer clueless and I thought installing this would be easy. I installed the first cd no problem, set up my account, and it accepted the serial number (I purchased it from Walmart just today) but whe

  • Disable lock screen?

    Is it possible to do this? I would prefer that the phone turn on to the current app when I push one of the hard buttons, rather than to the lock screen. That extra swipe before I do anything is annoying.