Securities-Module example of work natur

Hi All,
            I am going to handle securities module from abap side.I want to how the abap work will be in security module.
I dnt about Security module even single transaction codes also.
I am requesting all , please kindly send some docs and abap related issues or objects in security module.
Please give me step by step work process from abap side for security module.
I am in tense , please send the piece of code if possible.
Thanks and Regards,
PJ

Hi All,
            I am going to handle securities module from abap side.I want to how the abap work will be in security module.
I dnt about Security module even single transaction codes also.
I am requesting all , please kindly send some docs and abap related issues or objects in security module.
Please give me step by step work process from abap side for security module.
I am in tense , please send the piece of code if possible.
Thanks and Regards,
PJ

Similar Messages

  • Has anyone got the Comsoft Profinet example code working??

    Hello!
    I have a cRIO Profinet card and I'm attempting to get the example code working.
    I have followed the instructions in GettingStarted_cRIO_PN_IO_Device.pdf
    I have created an empty project with just the 9023 and 9113 present, and copied the 3 items from the example project cRIO PN IO-Device (LV 2012) as per the documentation.
    When I try to compile I get the error shown attached.  I cannot view the error as the VI is password protected.
    In 5 years of working with cRIO using many different c-series modules from NI and 3rd parties I have never come across a password protected example Vi - this is very disappointing!  I don't see how it will be possible to use the card without being able to access this VI, and clearly it is impossible to use it without this VI as they are unwilling to share its functionality.
    Has anyone got this working on anything other than a 9104 (which the example uses?)  Does anyone know the password?  Is it possible to use the card without using this example code?
    I will be communicating with a Siemens PLC (acquiring a load of U16s and logging on the cRIO at 20ms intervals).
    Many thanks for any input, or any experiences of using this card.
    Aaron
    LabVIEW/RT/FPGA 2012
    NI-RIO 12.0.1
    cRIO 9023 controller and 9113 chassis with COMSOFT PN module in slot 1.
    Attachments:
    PN_error.png ‏44 KB
    PN_error2.png ‏20 KB

    Just for the record, I am using the CRIO-PN with cRIO-9081 and cRIO-9068 integrated chassis successfully.
    LabVIEW (RT/FPGA) 2013 SP1.
    I didn't use the higher level ComSoft example code directly, as the VIs use so many control/indicators that the FPGA usage is sky high. I rewrote them to pass the I/O data via DMA FIFOs.

  • AVI Compressor Comparison Example not working with Flame.avi

    Hello,
    I downloaded the NI Vision module for a trial to see what it could do. I will be owrking with black and white files (AVI or other) so I tried the "AVI Compressor Comparison Example.vi" along with the "Flame.avi" from "C:\Program Files\National Instruments\Vision\Examples\Images\AVIs". Basically, the example decompresses "Flame.avi" and then compresses the same file using all of the installed codecs.
    When I run the example and then try to play the avi files, all of them are blank (black) and reflect a much shorter playing time than the 16.6 seconds of the original (before decompression) avi which I can play on VLC and QuickTime but not Windows Media Player. When I look at the original video properties in LV, the file format is RGB even
    though it is B&W. When I look at the video properties in VLC or
    QuickTime, it shows it as Motion JPEG OpenDML, 200 x 340 with millions of colors.
    All of the other avi files in the example folder work fine.  Does anyone have any ideas of what might be going on? Thanks.
    Michael Froehlich
    I am running LabVIEW 8.5 on a Windows 32 bit XP Service Pack 2 PC.  I have DirectX 9.0c installed.

    Hey Michael,
    I am a little confused by your post. However, first things first. You can have an image that is of RGB type and it still appear B&W.  So, that Flame.avi file, though it appears B&W, is actually a color picture. Instead of a single numeric value to represent a grey level, there are three numeric values (RGB) that combine to represent a grey level. Possible reasons for this I am not quite sure. It could be to give a larger avi file to better test the different codecs.  In terms of playing the avi files again. This depends on the codecs being used and whether or not the tool you are using to play them supports that particular codec. You had mentioned that the other avi's work fine, particularly, which avi files are you referring to? 
    Also, if you manually read in the Flame.avi and then write it again using a codec to compress your avi do you see the same problems introduced by the AVI compressor Comparison Example?
    Hope this helps.
    -Ben
    WaterlooLabs

  • I am having horrible problems getting some examples to work

    I am trying to get a couple examples to work from out of Java Examples in a Nutshell, but they are programmed oddly and will not work. I am using a windows 2000 platform with JDK 1.3.1 installed and working properly.
    I have so far typed in these 2 examples:
    import javax.swing.*;
    import java.awt.*;
    public class Containers extends JPanel
    { public Containers()
    { this.setBackground(Color.white);
    this.setFont(new Font("Dialog", Font.BOLD,24));
    JPanel p1 = new JPanel();
    p1.setBackground(new Color(200, 200, 200)); // Panel1 is darker
    this.add(p1); //p1 is contained by this component
    p1.add(new JButton("#1")); //Button 1 is contained in p1
    JPanel p2 = new JPanel();
    p2.setBackground(new Color(150,150,150)); // p2 is darker than p1
    p1.add(p2); // p2 is contained in p1
    p2.add(new JButton("#2")); // button 2 is contained in p2
    JPanel p3 = new JPanel();
    p3.setBackground(new Color(100,100,100));
    p2.add(p3); // p3 is contained in p2
    p3.add(new JButton("#3")); // button 3 is contained in p3
    JPanel p4 = new JPanel();
    p4.setBackground(new Color(150,150,150));
    p1.add(p4);
    p4.add(new JButton("#4")); //button 4 is contained in p4
    p4.add(new JButton("#5")); //Button 5 is also contained in p4
    this.add(new JButton("#6")); // button 6 is contained in this component
    And this program
    //ShowComponent.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.beans.*;
    import java.lang.reflect.*;
    import java.util.Vector;
    public class ShowComponent extends JPanel
    public static void main(String[] args)
    {  // process the command line to get the compenents to display
    Vector components = getComponentsFromArgs(args);
    // Create a frame (Window) to display the components to display
    JFrame frame = new JFrame("ShowComponent");
    // Handle window close requests by exiting the VM
    frame.addWindowListener(new WindowAdapter() { //anonymous inner class
    public void WindowClosing(WindowEvent e) { System.exit(0); }
    // set up a menu system that allows the user to select the Look And Feel
    // of the component from a list of installed PLAF's
    JMenuBar menubar = new JMenuBar(); // create a menu bar
    frame.setJMenuBar(menubar); // tell the frame to display the menubar
    JMenu plafmenu = createPlafMenu(frame); // create a menu
    menubar.add(plafmenu); // Add the menu to the menubar
    // Create a JTabbedPane to display each of the components
    JTabbedPane pane = new JTabbedPane();
    // Now add each component as a tab of the tabbed pane
    // use the unqualified component classname as the tab text
    for(int i = 0; i < components.size(); i++)
    { Component c = (Component)components.elementAt(i);
    String classname = c.getClass().getName();
    String tabname = classname.substring(classname.lastIndexOf('.')+1);
    pane.addTab(tabname,c);
    // Add the tabbedpane to the frame. Note: the call to getContentPane()
    // This is required for JFrame, but not for most swing components
    frame.getContentPane().add(pane);
    // Set the frame size and pop it up
    frame.pack(); //Make the frame as big as its children need
    frame.setVisible(true); // Make the frame visible on the screen
    // The main() method exits now but the Java VM keeps running because
    // all AWT programs automatically start an event-handling thread.
    //** this static method queries the system to find out what **
    //** Pluggable LookAndFeel (PLAF) implementations are available **
    //** then it creates a JMenu component that lists each of the **
    //** implementations by name and allows the user to select one **
    //** of them using JRadioButtonMenuItem components. When the **
    //** user selects one, the selected menu item traverses the **
    //** component hierarchy and tells all components to use the new**
    //** PLAF. **
    public static JMenu createPlafMenu(final JFrame frame)
    { //Creates the menu
    JMenu plafmenu = new JMenu("Look and Feel");
    // Create an object used for radio button mutual exclusion
    ButtonGroup radiogroup = new ButtonGroup();
    //Look up the available look and feels
    UIManager.LookAndFeelInfo[] plafs = UIManager.getInstalledLookAndFeels();
    //Loop through the plafs, add a menu item for each one
    for(int i = 0; i < plafs.length; i++)
    { String plafName = plafs[i].getName();
    final String plafClassName = plafs.getClassName();
    // Create the menu items
    JMenuItem item = plafmenu.add(new JRadioButtonMenuItem(plafName));
    // tell the menu item what to do when it is selected
    item.addActionListener(new ActionListener()
    { public void actionPerformed(ActionEvent e)
    { try
    { // Set the new Look And Feel
    UIManager.setLookAndFeel(plafClassName);
    // tell each component to change its look and feel
    SwingUtilities.updateComponentTreeUI(frame);
    //tell the frame to resize itsself to its childrens
    // new desired services
    frame.pack();
    catch(Exception ex) {System.err.println(ex);
    // Only allow one menu item to be selected at once
    radiogroup.add(item);
    return plafmenu;
    //** this method loops through the command line arguements looking for **
    //** class names of components to create and property settings for those**
    //** components in the form name=value. this method demonstrates **
    //** reflection and JavaBeans introspection as they can be aplied to **
    //** dynamically created GUI's **
    public static Vector getComponentsFromArgs(String[] args)
    { Vector components = new Vector();  // List of Components to return
    Component component = null; // the current component
    PropertyDescriptor[] properties = null; // Properties of the component
    Object[] methodArgs = new Object[1]; // we'll use this below
    nextarg: // this is a labeled loop
    for (int i = 0; i < args.length; i++)
    { // loop through all the arguments
    // if the argument does not contain an equal sign, then
    // it is a component class name. Otherwise it is a
    // property setting
    int equalsPos = args[i].indexOf('=');
    if (equalsPos == -1)
    { // Its the name of a component
    try { //Load the named component class
    Class componentClass = Class.forName(args[i]);
    //Instantiate it to create the component instance
    component = ((Component)componentClass.newInstance());
    //Use Java beans to introspect the component
    //And get the list of properties it supports
    BeanInfo componentBeanInfo = Introspector.getBeanInfo(componentClass);
    properties = componentBeanInfo.getPropertyDescriptors();
    catch (Exception e)
    { // If an step failed, print an error and exit
    System.out.println("Can't load, instantiate, " +
    "or introspect: " +args[i]);
    System.exit(1);
    //If we succeeded, store the component in the vector
    components.addElement(component);
    else { // the arg is a name=value property specification
    String name = args[i].substring(0, equalsPos); //property name
    String value = args[i].substring(equalsPos+1); //property value
    // If we do not hava component to set this proerty on, skip!
    if (component == null) continue nextarg;
    // Now look through the properties descriptors for this
    // Component to find one with the same name
    for(int p = 0; p < properties.length; p++)
    { if (properties[p].getName().equals(name))
    { // okay, we found a property of the right name
    // now to get its type, and the setter method
    Class type = properties[p].getPropertyType();
    Method setter = properties[p].getWriteMethod();
    //check if property is read- only !
    if (setter == null)
    { System.err.println("Property " + name+ "is read-only");
    continue nextarg; // continue with the next arguement
    // try to convert the property value to the right type
    // we support a small set of common property types here
    // Store the converted value in an object[] so it can
    //be easily passed when we invoke the property setter
    try { if (type == String.class)
    { // no conversion needed
    methodArgs[0] = value;
    else if (type == int.class)
    { // String to int
    methodArgs[0] = Integer.valueOf(value);
    else if (type == boolean.class)
    { //to boolean
    methodArgs[0] = Boolean.valueOf(value);
    else if (type == Color.class)
    { // to Color
    methodArgs[0] = Color.decode(value);
    else if (type == Font.class)
    { // String to Font
    methodArgs[0] = Font.decode(value);
    else { // if we cannotconvert, ignore the proprty
    System.err.println("Property " + name+ " is of unsupported type "
    + type.getName());
    continue nextarg;
    catch (Exception e)
    { System.err.println("Can't set Property: " + name);
    // NOw go to next command-line arg
    continue nextarg;
    // If we get here we didn't find the named property
    System.err.println("Warning: No such property: " + name);
    return components;
    //** A component subclass that demonstrates nested containers and components.
    //** It creates the hierarchy shown below, and uses different colors to
    //** distinguish the different nesting levels of the containers
    //** containers---panel1----button1
    //** | |---panel2----button2
    //** | | |----panel3----button3
    //** | |------panel40---button4
    //** | |---button5
    //** |---button6
    They both compile fine but when I go to run them together I get an error. the command given in the book to run them both together is:
    java ShowComponent\Containers
    But it does not work. I also tried to append Containers to the bottom of ShowComponent and I got an error that said public class Containers extends JPanel needs to have its own file called Containers.java . . I do not understand that as the file was named correctly for ShowComponent.java. I need to knw either what the true command is for running the programs together or what to name container.java that will make it run inside of ShowContainer.java
    this is very frustrating as I need to know these answers for work and no one here in the IT department knows how to program in Java but me

    Hi,
    I tried the example and got some weird error messages as follows:
    ********* error messages*********
    ShowComponent.java:90: cannot resolve symbol
    symbol : method getName ()
    location: class javax.swing.UIManager.LookAndFeelInfo[]
    { String plafName = plafs.getName();
    ^
    ShowComponent.java:91: cannot resolve symbol
    symbol : method getClassName ()
    location: class javax.swing.UIManager.LookAndFeelInfo[]
    final String plafClassName = plafs.getClassName();
    ^
    ShowComponent.java:139: cannot resolve symbol
    symbol : method indexOf (char)
    location: class java.lang.String[]
    int equalsPos = args.indexOf('=');
    ^
    ShowComponent.java:143: cannot resolve symbol
    symbol : method forName (java.lang.String[])
    location: class java.lang.Class
    Class componentClass = Class.forName(args);
    ^
    ShowComponent.java:161: cannot resolve symbol
    symbol : method substring (int,int)
    location: class java.lang.String[]
    String name = args.substring(0, equalsPos); //property name
    ^
    ShowComponent.java:162: cannot resolve symbol
    symbol : method substring (int)
    location: class java.lang.String[]
    String value = args.substring(equalsPos+1); //property value
    ^
    6 errors.
    *****end of error messages*****
    I use jdk1.3 and Win2000. Can anybody tell me how to delete above error messages?
    Thanks a lot.
    Li

  • HT5177 How can two people edit the same FCPX file? One company, so both people/computers share the same license. Example: I work on revision A and my boss takes it and makes revision B and gives it back to me using two separate computers.

    How can two people edit the same FCPX file? One company, so both people/computers share the same license. Example: I work on revision A and my boss takes it and makes revision B and gives it back to me using two separate computers.

    Have the project, events and media on one drive which is common to both macs.
    You can download FCP X to both macs using the same Apple ID that it was purchased with.
    Andy

  • Function module is not working properly in background

    Hi  all,
    i have used one Function module 'PRICING' in user exit SAPMV45A to calculate pricing for sales order.
    i am using BAPI_SALESORDER_CHANGE to change the sales order pricing.
            when i run the program in foreground, all condition records for pricing is updated correctly. but it is not updating
    correctly when i run the program in background.
       Please tell me wheather 'PRICING'  or  'BAPI_SALESORDER_CHANGE'  function module is not working properly in background ?
       or any other reason?
    Thanks
    babu

    Hi Pabitra,
    Can you provide some more information as to the type of error you are getting? Or can you check the log entries and give some more information so that it would be possible to provide a solution.
    And, try to put questions in proper Forum for quick and prompt reply.
    Hope this helps.
    Thanks,
    Samantak.

  • ITunes Helper Module has stopped working

    I just downloaded the new version of iTunes and now iTunes and Quicktime wont open at all. When I click on iTunes or when I first turn the computer on, a window pops up that says the iTunes Helper module has stopped working. Then another window pops up right after that says "iTunes has stopped working". It checks for a solution to the problem and then says "A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available." When I try to open QuickTime, it says "Runtime error! Program:C:\Program Files\QuickTime\QuickTime Player.exe This application has requested the RunTime to terminate it in an unusual way." I have Vista which seems to cause problems with the firewall and iTuens, so I turned off the firewall from my security software, switched on the windows firewall, and made sure the settings were right. I even tried doing a System restore to the previous version (same problems) and then tried reinstalling the new version (Still same problems). Anyone have any suggestions?!?!

    hey stess,
    I have the exact problem you have. I tried deleting (went into program files and deleted the folders ) from my system and reinstalling it. It worked until i rebooted my system, I am still on xp. The restore doesnt help either. It cant be my ipod ( its quiet old!) as it isnt even connected to my system at start up. I think maybe a bug with the new version that will eventually have more and more users affected when they update. I f i find a solution I will post asap... good luck

  • How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    How do you copy, for example I work with blue prints and I want to copy a section and copy into another new page?

    Forgot to add that it would be an adjustment layer with some kind of mask on it already. The mask is uncentered when copy and pasted which throws it off.
    I guess the same question would go towards doing the same for an object. How to copy and paste it over to a new doc, keeping its position within the document? is this possible?

  • Can't get Tag Library example to work

    I'm doing the tutorial on this page
    http://java.sun.com/products/jsp/tutorial/TagLibraries15.html
    And downloaded the war files and have them correctly in my Tomcat Directory.
    All I did was jar xvf iteration.war and jar xvf template.war
    And now it seems like it's not picking up the locations to any of the tags.
    When I do my http://localhost:8080/iteration
    I get:
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 12 in the jsp file: /index.jsp
    Generated servlet error:
    [javac] Warning: org/apache/jsp/index_jsp.java modified in the future.
    [javac] Compiling 1 source file
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:66: cannot resolve symbol
    symbol : class Organization
    location: class org.apache.jsp.index_jsp
    Organization org = null;
    ^
    An error occurred at line: 12 in the jsp file: /index.jsp
    Generated servlet error:
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:68: cannot resolve symbol
    symbol : class Organization
    location: class org.apache.jsp.index_jsp
    org = (Organization) jspxpage_context.getAttribute("org", PageContext.PAGE_SCOPE);
    ^
    An error occurred at line: 12 in the jsp file: /index.jsp
    Generated servlet error:
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:70: cannot resolve symbol
    symbol : class Organization
    location: class org.apache.jsp.index_jsp
    org = new Organization();
    ^
    An error occurred at line: 17 in the jsp file: /index.jsp
    Generated servlet error:
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:81: cannot resolve symbol
    symbol : class IterationTag
    location: class org.apache.jsp.index_jsp
    IterationTag jspxth_tlt_iteration_0 = (IterationTag) jspxtagPool_tlt_iteration_type_name_group.get(IterationTag.class);
    ^
    An error occurred at line: 17 in the jsp file: /index.jsp
    Generated servlet error:
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:81: cannot resolve symbol
    symbol : class IterationTag
    location: class org.apache.jsp.index_jsp
    IterationTag jspxth_tlt_iteration_0 = (IterationTag) jspxtagPool_tlt_iteration_type_name_group.get(IterationTag.class);
    ^
    An error occurred at line: 17 in the jsp file: /index.jsp
    Generated servlet error:
    /home/abcweb/tomcat/work/Catalina/localhost/iteration/org/apache/jsp/index_jsp.java:81: cannot resolve symbol
    symbol : class IterationTag
    location: class org.apache.jsp.index_jsp
    IterationTag jspxth_tlt_iteration_0 = (IterationTag) jspxtagPool_tlt_iteration_type_name_group.get(IterationTag.class);
    ^
    6 errors
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:127)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:351)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:415)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:458)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:553)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    Has anyone else had problems with getting this example to work?

    Ok, I've just taken a quick look at it, and its not going to work right out of the box.
    The examples are kinda old now.
    The thing which is stopping it from running is a change with Java 1.4
    Tomcat can no longer access classes in the "unnamed" package.
    Thats why it can't find the class Organization, or Iterator or any of the others.
    All java classes must now be in a package for Tomcat to find them.
    Also the IterationTag.class is sitting in the web-inf/lib directory which just seems wrong to me - only jar files should be there in my experience.
    In short, I would go looking for a more up-to-date tutorial.
    Try http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags.html for j2ee 1.3
    and http://java.sun.com/j2ee/1.4/docs/tutorial/doc/index.html for the latest stuff.
    Cheers,
    evnafets

  • Re: Pressing FN+F5 message: IGFXEXT module has stopped working

    When i press Fn F5 i get the message IGFXEXT module has stopped working and i cannot change my monitor configuration. I briefly see the icons but when i cancel the error message they disappear.
    I have downloaded and install ed the 09/10/08 Intel Driver from the Toshiba download.
    What is the problem and how can i fix it. It has been present since i bought the machine.

    Hello
    The fact is that all drivers, tools and utilities must be installed in the right and defined order. Toshiba people do exactly the same and later made recovery image. For your own installation the principle is the same. All offered stuff on Toshiba support and download page should be installed following Installations Instructions document.
    Unfortunately this document is not available for this Portege. So, try please to install and configure Vista following this installations order:
    Windows Vista SP1
    Intel(R) Chipset Module V8.3.0.1014
    Intel(R) Robson(Intel iMSM Driver) V1.5.0.1013
    Intel(R) Crestline-GM / UMA Driver V7.14.10.1329
    or
    AMD M82XT /M86 Driver V8.452.2
    Conexant CX20561 Audio Driver V4.36.6.0
    Marvell 8040/8055 LAN Driver V10.51.4.3
    Synaptics Touch Pad Driver V10.1.7.0
    Alps Touch Pad Driver V7.0.302.8.1
    Modem Driver V7.70.00.00
    Netwaiting V2.5.52
    Intel Golan/Kedron Wireless LAN Driver V11.5.0.32 or
    Atheros Wireless LAN Driver V7.4.2.40.32.1
    Realtek RTL8187B Wireless LAN Driver V6.1116.1226.2007
    Chicony Camera Software V6.2.238.1217
    Bluetooth Stack for Windows by Toshiba V6.10.02T
    CIR Port Driver V7.1.62.2012
    TOSHIBA Value Added Package V1.1.14
    TOSHIBA Hardware Setup Utility V3.0.1.0
    TOSHIBA Supervisor Password V3.0.1.0
    TOSHIBA SD Memory Utilities V1.8.1.1
    Authentec AES1610 Fingerprint Utility V7.9.0.4(20080202)
    TOSHIBA ConfigFree V7.1.26
    TOSHIBA WPS Library V1.003
    TOSHIBA Assist V2.01.05
    TOSHIBA Speech System V1.00.2514
    TOSHIBA Extended Tiles for Windows Mobility Center V1.01
    TOSHIBA Remote Control Manager V2.3.0.8
    CD/DVD Drive Acoustic Silencer V2.02.00
    Toshiba HDD Protection V2.0.2.3
    TOSHIBA Face Recognition V1.0.3.32
    TOSHIBA TRS Driver V4.0.2007.1115
    I hope this will help you.

  • Pressing FN+F5 message: IGFXEXT module has stopped working

    Pressing FN+F5 message: IGFXEXT module has stopped working
    I am using Vista
    Model - Portege M700

    With FN+F5 you can switch between the monitors.
    The igfxext.ext belongs to the Intel common user interface and its stored in the path %system%\igfxext.exe.
    So in your case I would try to update the display driver. I think this causes the error.
    You can find it on the Toshiba website:
    http://eu.computers.toshiba-europe.com

  • Reg:Function module SAPWL_GET_SUMMARY_STATISTIC not working in CRM ABAP 6.0

    Hi All,
      When i execute the function module SAPWL_GET_SUMMARY_STATISTIC in CRM ABAP 6.0 passing the values below,
    PERIODTYPE                    
    HOSTID                         
    STARTDATE  
    it's not showing any values in the summary.
    it's showing the exporting parameters as,
    RFC_ERROR_TYPE                  L
    SUMMARY_AVAILABLE               N
    HITLISTS_N_PROFILES_AVAILABLE   A
    if this function module will not work means kindly provide me the solution for calculating
    Average Response Time as in tcode st03 - Instance - total - Workload Overview.
    Average CPU Time and some more fileds.
    Regards,
    Suresh

    Hi
    I used the FM mentioned and found the details as below:
    VKORG
    TABNAME                        TVKO
    FIELDNAME                      VKORG
    LANGU                          EN
    POSITION                       0001
    OFFSET                         000006
    DOMNAME                     VKORG
    ROLLNAME                    VKORG
    CHECKTABLE
    VTEXT
    TABNAME                        TVKOT
    FIELDNAME                      VTEXT
    LANGU                          EN
    POSITION                       0002
    OFFSET                         000014
    DOMNAME                        TEXT20
    ROLLNAME                       VTXTK
    CHECKTABLE
    LENG                           000020
    Shiva

  • Check Function Module is not working

    Hi All Expert,
    I'm new in workflow and  develop custom workflow for Transaction FB65 ( Vendor Credit Memo) and using business object FIPP , event CREATED.
    Actually  requirement is that when user  click on park button in FB65 then should  be trigger workflow only for particular vendor code .
    Now my workflow is working fine for all vendor code.
    For particular vendor code, I have created an new entries in  SWE2 and assigning a check function module to that
    Refer Link :         http://www.****************/Tutorials/Workflow/checkfunctionmodule/demo.htm
    and also same entries create in SWETYPV But Check Function Module is not working before workflow trigger.
    Appreciate your help and support.
    Regards
    Saurabh

    Hi
    : Check FM  : ZWF_DR_CR_MEMO 
    SourceCode :
    FUNCTION ZWF_DR_CR_MEMO.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(OBJTYPE) LIKE  SWETYPECOU-OBJTYPE
    *"     VALUE(OBJKEY) LIKE  SWEINSTCOU-OBJKEY
    *"     VALUE(EVENT) LIKE  SWETYPECOU-EVENT
    *"     VALUE(RECTYPE) LIKE  SWETYPECOU-RECTYPE
    *"  EXPORTING
    *"     REFERENCE(RESULT) TYPE  C
    *"  TABLES
    *"      EVENT_CONTAINER STRUCTURE  SWCONT
    *"  EXCEPTIONS
    *"      NOT_TRIGGERED
    BREAK-POINT.
    TABLES : VBSEGK.
      DATA : LV_VEND TYPE VBSEG-LIFNR.
      CLEAR : LV_VEND.
      SELECT SINGLE  LIFNR FROM  VBSEGK INTO LV_VEND WHERE BELNR EQ OBJKEY.
        if sy-subrc eq 0
          IF LV_VEND = '0000120510'.
            RAISE NOT_TRIGGERED.
          ENDIF
      endif.
    ENDFUNCTION.

  • Function module is not working

    Hi Experts,
    There is one function module "RH_READ_INFTY_1001" is working fine with developement server but not working with Quality server.
    In development server the value of sy-subrc is 0. But in quality server it is not working.
    Error comes NO MSGTYPE " " FOUND.
    Thanks....

    Hi,
    I guess the message type is not getting populated.
    Use your own message
    Message 'Error' TYPE 'E'. "--> Message type must be in CAPS
    Regards

  • ABAP Function Module Example to move data from one Cube into Another

    Hi experts,
    Can any please help out in this ..?
    A Simple ABAP Function Module Example to move data from one Cube into Another Cube
    (How do i send the data from one client to another client using Function moduel).
    Thanks
    -Upen.
    Moderator message: too vague, help not possible, please describe problems in all technical detail when posting again, BI related? ("cube"), also search for information before asking.
    Edited by: Thomas Zloch on Oct 29, 2010 1:19 PM

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

Maybe you are looking for