IT0027, examples for implementation

Estimados todos, actualmente necesitamos hacer la distribución de costos por Orden de Trabajo para los empleados, sin que esto implique cambiar su centro de costos asignado en el IT0001. Tendran algun link o manual de referencia con ejemplos de uso del IT0027 a fin de configurar la que mas se adapte al negocio.

English Translation for Steve:
Dear all, now we need to make the distribution of costs by Order of Labor for employees, without implying change their cost center assigned in IT0001. Will any link or reference manual with examples of use of IT0027 to configure it more suited to the business.

Similar Messages

  • Practical example for implementing BADI

    Hi all,
    Can anybody give me a link or documentatiom for implementing BADI with an example not theoritical practical.
    with regards,
    chandu.

    hi this thread will explain u the badi implementation related to purchase order...
    ME21N - PO Enhancement using BADI
    Just go thru that to get some idea on badi enhancement
    SAP help on BADI enhancement with sample badi
    http://help.sap.com/saphelp_nw04/helpdata/en/3e/0e1089c24611d1ad09080009b0fb56/frameset.htm
    regards
    gv
    Message was edited by: Venkat

  • Example for Implementing SQL Authenticator

    Hi,
    I am using JDev - 11.1.1.5.0 and WLS - 10.3
    I have a standalone ADF Application which is assessed by users registered in Oracle Application System (11i/R12). I need to authenticate the users using entries in "fnd_user" and "fnd_responsibility" tables.
    Since the password in "fnd_user" table is encrypted, I need a way to authenticate using username and password given in plain text in the login page. Taking these values I need to validate the user and the responsibility and then allow the user into the application.
    Please let me know suitable example or document containing SQL Authentication with encrypted password i.e. using "fnd_user" table for authentication.
    Thanks
    Rathnam

    Hi,
    Maybe you are talking about hashing of passwords (but not about password encryption), because SHA-1 is not an encryption algorithm but a hashing one. If your table contains hash digests of passwords (e.g. MD5 or SHA-1 digests), you should set a statement similar to the one below into authenticator's parameter "SQL Get User Password":
    <tt>SELECT '{SHA-1}' || UTL_RAW.CAST_TO_VARCHAR2( UTL_ENCODE.BASE64_ENCODE( password ))
    FROM users_table
    WHERE username = ?</tt>
    This statement assumes that a SHA-1 digest of the password is stored in a DB column <tt>users_table.password</tt> of datatype RAW. If your algorithm is MD5, then replace <tt>{SHA-1}</tt> with <tt>{MD5}</tt> in the statement above. If your column is not of datatype RAW, then modify the SELECT statment accordingly.
    Dimitar

  • Examples for JMS Error Queue implementation in BPEL

    Hi ,
    Please anyone provide me examples for JMS error queue implementaion in BPEL.
    Regards
    Narsi p

    Hi Narsi p,
    Please remember to mark answers accordingly... Helpful or correct, following the forum rules
    https://forums.oracle.com/forums/ann.jspa?annID=330
    Can you tell us more about what are you trying to achieve here?
    If you are just trying to configure an error queue to put the messages that couldn't be delivered, you can do this in weblogic directly.
    Configuring an Error Destination for Undelivered Messages
    http://docs.oracle.com/cd/E17904_01/web.1111/e13727/manage_apps.htm#JMSPG254
    Cheers,
    Vlad

  • Any example for a MFC, WTL or Win32 without Measurement Studio?

    It seems that NI wants you buy their Measurement Studio which can easily cost you a fortune. I am looking around a simple example for MFC, WTL without touching the measurement studio. But if you do not have measurement studio, NI only gives you very old examples in ANSI C which is difficult to implement to MFC or WTL. Apparently they want to increase their revenue by forcing you to buy the Measurement Studio. But I will not buy their hardware in the future if this is their strategy.
    Anyone successfully implement the ANSI C example to MFC or WTL without measurement studio? Can you share an example?

    Junqi,
    Im a little confused with this request in general. What development environment are you using? Visual Studio? Also, what language are you coding in? We provide C, C#, VB.net, and legacy VB6 examples with our DAQmx driver that do not require measurement studio. They can be found in documents\National Instruments\NI-DAQ\Examples 
    Now forgive me if Im misinformed about this, but MFC and WTL are just libraries that have some of the windows API wrapped into them, correct? If so, I dont see how interfacing with them is any different than interfacing with any other library, or why this would cause issues with doing DAQ calls. If you need help with the MFC or WTL library, there are many good places to find help with on the internet. MSDN, codeproject.com, and many others come up as having examples of using MFC in various projects.   
    The MS examples dont install withough MS because they wouldnt be able to be used because they use libraries that are installed with measurement studio, so they would be nonfunctional and largely useless. 
    Regards,
    Kyle Mozdzyn
    Applications Engineering
    National Instruments
    Regards,
    Kyle M.
    Applications Engineering
    National Instruments

  • Are there any good code examples for displaying preview images in the storefront?

    I can gather other info using folio.xxx, but can not find any good examples to use for preview images.  Tried folio.getPreviewImage() with no success.  Oh, I should mention it is version 2.  Plenty of examples for version 1.
    Perhaps if I get a little more specific.
    I am calling up the folios via:
           adobeDPS.libraryService.folioMap.addedSignal.add(function(folios) {
                for (var i = 0; i < folios.length; i++) {
                    addFolio(folios[i]);
            }, this);
    This eventually works into a function where I am gathering and displaying folio data:
         var productId = folio.productId;
        var html  = "<div id='" + productId + "'>";
            html +=     "<a href='#'><img class='shadow' width='120' src='' border=0 /></a>";
            html +=     "<br /><span class='bold'>" + folio.title + "</span>";
            html += "</div>";
        this.$el = $(html);
    folio.title works fine to pull up the title, but I can no longer use folio.getPreviewURL in v2.  What code should I be using to set the src to the preview image?
    Thanks

    Have you looked at the default implementations of the library?
    In FolioItemView's render function, there is a function(follow the nested functions!):
    setTimeout(function(){ scope.loadPreviewImage() }, 100);
    It references this function (this doesn't copy well):
    loadPreviewImage: function() {
    if (this.el.parentElement) {
    var transaction = this.folio.getPreviewImage(135, 180, true);
    transaction.completedSignal.addOnce(this.getPreviewImageHandler, this);
    Going deeper, into the getPreviewImageHandler function is where you see the url value..
    if (transaction.state == adobeDPS.transactionManager.transactionStates.FINISHED && transaction.previewImageURL != null) {
                                  this.$el.find(".folio-thumb").attr("src", transaction.previewImageURL);
    Within the example is also code for supplying a preview when the Adobe API is not available:
    (Within the render function)
    var json = this.model.toJSON();
    $folioThumb.attr("src", json.libraryPreviewUrl);
    If you're making any changes to where the preview is displayed, you can just swap out the class ".folio-thumb" to whatever the class (or id) is of the element you're wanting to render the preview in.

  • Jax-ws:  Examples for @ResponseWrapper @RequestWrapper...and Issues!!!

    Hi,
    i'm trying to use on my web services this annotations:
    @ResponseWrapper @RequestWrapper, but without any success!
    I have this example
    For HelloWorld.java:
    package demo.spring;
    import javax.jws.*;
    import javax.xml.ws.*;
    @WebService
    public interface HelloWorld {
         // Meta-Attributes//
         @WebMethod(operationName="getSay")
         @RequestWrapper(className = "java.lang.String")
         @ResponseWrapper(className = "demo.spring.AddressWrapper")
         AddressWrapper sayHi(String text);
    // END SNIPPET: service
    For HelloWorldImpl.java:
    import javax.jws.*;
    import javax.xml.ws.*;
    @WebService(endpointInterface = "demo.spring.HelloWorld")
    public class HelloWorldImpl implements HelloWorld {
    public AddressWrapper sayHi(String text) {
    return new AddressWrapper("Hello " + text);
    // END SNIPPET: service
    AddressWrapper.java:
    public class AddressWrapper {
    //Properties//
         String nome;
         public AddressWrapper () {}
         public AddressWrapper (String valor)
              this.nome=valor;
         public String getNome()
              return nome;
         public void setNome(String me)
              nome=me;
         public String toString()
              return nome;
    What happens here? The webservice doesn't return anything! But, without @RequestWrapper, @ResponseWrapper, everything is ok!
    Why that?
    Thanks a lot!
    Orlando Agostinho

    Updating myself....
    I now believe that the <xs:annotation><xs:appinfo> is for when you are modifying the schema so that you don't need the external bindings file. As a result I have modified my xjb as follows:
    <bindings xmlns="http://java.sun.com/xml/ns/jaxb"
              xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance"
              xmlns:xs="http://www.w3.org/2001/XMLSchema"
              xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" jaxb:extensionBindingPrefixes="xjc"
              xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
              version="2.1">
           <jaxb:globalBindings>
              <xjc:treatRestrictionLikeNewType/>
           </jaxb:globalBindings>
    </bindings>This removes the error that xs:annotation is not associated with any schema element but results in the same error -
    [ERROR] Base complex type "A" is derived by restriction, while this complex type "B" is derived by extension. This is not currently handled by XJC, but we are seeking input on this issue. Please report this to the JAXB team.So it seems that my bindings file is either being ignored by wsimport or is still just plain wrong. Any suggestions.
    Thanks

  • [svn] 3891: Adding a DataGroup and Group Flex Explorer example for Steve S.

    Revision: 3891
    Author: [email protected]
    Date: 2008-10-24 16:32:40 -0700 (Fri, 24 Oct 2008)
    Log Message:
    Adding a DataGroup and Group Flex Explorer example for Steve S.
    Linked these examples to the ASDoc.
    Modified Paths:
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/DataGroup.as
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/src/mx/components/Group.as
    flex/sdk/branches/gumbo_alpha/samples/explorer/explorer.xml
    Added Paths:
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/asdoc/en_US/mx/components/example s/DataGroupExample.mxml
    flex/sdk/branches/gumbo_alpha/frameworks/projects/flex4/asdoc/en_US/mx/components/example s/GroupExample.mxml

    Is this the webpage you're referring to: http://www.ngeneng.com/services/default.html
    If so, consider using <h2> <h3> <h4> tags for headings and use <p> only for paragraphs.
    Something like this:
    <h2>Services</h2>
                <h4>
                Watershed Planning and water rights</h4>
                <p>
                NextGen staff have worked on watershed assessments and management
                plans from data collection to reporting and implementing
                recommendations, as watermaster staff in adjudicated basins (San
                Gabriel River, and Central Basin), and participated in the court
                process to determine water rights (Santa Maria groundwater rights).
                This understanding can be helpful in any water conflict negotiation
                or planning process.</p>
                <h4>Creek Restoration, Levees, Embankments and
                Bio-Engineering</h4>
                <p>
                Planning and design of creek restoration and flood protection
                facilities including river embankments, open channels, underground conduits, levees, debris and
                detention basins, use of bio engineering methods to retain and
                enhance environmental values of project sites. Designs include use
                of spurs, dikes, large wood debris (LWD),
                vegetation and natural
                materials.</p>
    Your markup has lot of redundant spaces in form of   tags. Clean your markup first. Then style the page with CSS.
    Define your CSS properly and call them as classes or IDs within your html constructs. Do not ever use inline styling.

  • Project Plan Example for a Office 365

    Hi, 
    Help, please. 
    I need a Project Plan Example for a Office 365 implementation.
    Thanks in advanced.

    Hi Efebo,
    Please refe to the link below.
    http://www.aventurasoft.com/Office365Migration-DetailedProjectPlan.pdf
    Regards,
    Charlie Liao
    TechNet Community Support
    Thank you very much!!!

  • What r the prerequisites for implementation scm-apo in ECC 6.

    HI,
    what r the prerequisites for implementation scm-apo in ECC 6.
    Thanks,
    Ashutosh
    9891595497

    Hi Ashutosh,
    you can find all informations about the implementation (installation /upgrade) of SCM on the SAP help portal.
    In http://help.sap.com choose in "SAP Business Suite" the "SAP Supply Chain Management".
    In Knowledge Center for SAP Supply Chain Management (SAP SCM) choose the required SCM release e.g. SAP SCM 5.0  and open it.
    Here under "Installation, Upgrade, Master and Operation Guides" you can find all necessary information about the installation, technical upgrade and operation of SAP SCM.
    The Master Guide for SAP SCM provides important information about the installation of the relevant scenarios and the components. It links to all other documents that are required for the implementation of a specific scenario, for example to the Upgrade Master Guide, which is the important overview guide for upgrading scenarios . 
    I hope I could help you with these informations.
    Regards,
    Tibor

  • Any LabWindows/CVI examples for SPI communication using DAQmx?

    I have a PXIe-6363 module in a PXI running as a real time target, and I'm trying to talk to an accelerometer that communicates with SPI.  I know the 6363 isn't one of the special modules built for SPI, but my understanding is it should be capable; the issue is just the programming.  I've seen examples of this for LabVIEW using DAQmx.  Are there any examples out there for doing it in LabWindows/CVI?
    I'm looking to save time and avoid reinventing the wheel here.  SPI is easy on an Arduino, so it should be doable in LabWindows/CVI, right?  
    Thanks,
    Matt

    Hey Matt,
    I was unable to find any full examples of SPI communication with DAQmx in C. My best suggestion would be to use the LabVIEW examples and implement the same series of function calls to implement the LabVIEW code in C. The DAQmx C API is good about keeping a standard with naming conventions to map with the function names in LabVIEW.

  • Any example for Timed ShellScript Discovery with PowerShell Discovery Probe?

    Hi all,
    Kris Bash provided a unix authoring library with many examples for dynamic discoveries for Unix/Linux (Unix/Linux Authoring
    Library). What I am missing here is a timed shell script discovery, using a powershell discovery probe for creating discovery data. There is only a PropertyBag Discovery available.
    Maybe one of you has already implemented such a discovery and can provide this as an example? I tried some things but so far it is not working.
    The idea behind this is to execute a shell script on a linux host that returns several lines. The output should then be parsed by a powershell script that - depending on the output - creates different class instances. Any ideas?
    Regards,
    Holger

    Holger,
    See the blog post here (http://operatingquadrant.com/2011/03/24/operations-manager-%e2%80%93-extending-unixlinux-monitoring-with-mp-authoring-%e2%80%93-part-iii/)
    for an example of using the PowerShellDiscoveryProbe.  It doesn't matter whether this follows a Shell Command or a Shell Script probe, as in both cases you are passing the StdOut output as a parameter to the PowerShell script.  You would parse StdOut
    just as you do in the PropertyBag examples, but use the MOMApi calls to create and return the class instances and properties.
    I hope this helps,
    Kris
    www.operatingquadrant.com

  • Bar Code Sample Example for Usage in Smarform

    Dear Experts,
    We are trying to print the barcode on the Manufacturing Sheet and should contain the PART code, Serial Number and the Mfg. Date embeded in the bar code.
    Can somebody share the sample  Bar Code Example for Usage in Smarforms.
    I never got a chance to work on such development. We are getting different answers from our development partner and sould like to excersize this on my own.
    Appreciate your help
    Regards,
    Ravati

    Hi Ravati,  It's simple!!
    Follow the example below for printing barcode in smartform .
    There are some SAP standard barcodes(for ex.ARTNR,AUFNR ..etc) and also we can create our own barcode for it by using transaction code SE73.
    1. Steps for using existing barcode in Smartform
    For Printing Barcode in Smartform, you need to have the style with barcode active in it. So define new style where the standard settings should define the barcode that you want to use in the smartform.
    For example, For product information display I use the Style as ZMFG_BARCODE.
    Create paragraph & character format as "P1 - Product Description". In standard setting of character format P1, select the standard or custom defined barcode. This will ensure the printing of Product Information in Barcode format.
    Now Create Smartform with output options specifying style name which you have created with Barcode active.
    Complete your smartform coding, and when you want to display the information in barcode, concatinate all the required information and enclose that text in character format like,
    for Product Code assuming the technical field name as mara-matnr, it should be printed as below:
    <P1>&mara-matnr&</>
    2. Steps to create new barcode using SE73 - SAPScript Font Maintenance.
    In SE73, Select radio button "System barcode" to create new barcode.  While creation of this barcode, you have to describe the new barcode, select technology new, barcode symbology and barcode alignment.
    You may also chage the barcode parameter if required.
    Now follow the same steps to implement this new barcode.
    Hope this will help you.
    Regards,
    Pravin

  • Any examples for drawing image in comboBox?

    Hi,
    I don't know how can I list some images in comboBox, can some of you provide an example for me?
    Actually, If I make an own class, which save some parameters and implement the onpaint. Can this object to be drawn in comboBox?
    thanks a lot

    my deadline is coming.., so I need urgent help...
    here is some of my code, can any experts give me suggestions?
    I created a listdata class, to store each items for comboBox:
    class listData
        protected ImageIcon m_icon;
        protected int m_index;
        protected boolean m_selectable;
        protected String m_data;
        public listData(ImageIcon icon, int index, boolean selectable, String data)
            m_icon = icon;
            m_index = index;
            m_selectable = selectable;
            m_data = data;
        public ImageIcon getIcon()
            return m_icon;
        public int getIndex()
            return m_index;
        public boolean isSelectable()
            return m_selectable;
        public String getString()
            return m_data;
    }and I implemented the ComboBoxRenderer as :
    class ComboBoxRenderer extends JLabel implements ListCellRenderer
        public ComboBoxRenderer()
            setOpaque(false);
        public Component getListCellRendererComponent(
                JList list, Object obj, int index,
                boolean isSelected,   boolean cellHasFocus)
            if(obj == null)
                return this;
            boolean selectable = true;
            if(obj instanceof listData)
                listData ldata = (listData)obj;
                selectable = ldata.isSelectable();
                setIcon(ldata.getIcon());
            else
                setIcon(null);
            return this;
    /code]
    and how I setup the comboBox is :....
    if(this.images != null)
    for(int i=0; i<images.length; i++)
    jComboBox_Page.addItem(new listData(images,i,
    true, images[i].getDescription()));
    ComboBoxRenderer renderer = new ComboBoxRenderer();
    renderer.setPreferredSize(new Dimension(86, 86));
    this.jComboBox_Page.setRenderer(renderer);
    am I wrong in some parts ?? Can you help ??
    Thousand Thanks !!!!!

  • Example for Using WDR_SELECT_OPTIONS and SALV_WD_TABLE in one View

    Hello,
    I need an Example for Using the WD-Components WDR_SELECT_OPTIONS and SALV_WD_TABLE
    in one view. Can anybody help me?
    Thanks
    Toto

    Hello,
    Please see these:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3439404a-0801-0010-dda5-8c14514d690d]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/21706b4b-0901-0010-7d93-c93b6394bc1d]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/39c54fe7-0b01-0010-0eb6-d63ac2bdd637]
    [/people/rich.heilman2/blog/2005/12/20/using-select-options-in-a-web-dynproabap-application]
    [/people/thomas.jung3/blog/2005/12/21/webdynpro-abap-alv]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1]
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/bd28494a-0801-0010-45a3-fc359d82d3e8]
    Regards.

Maybe you are looking for

  • Stylesheet images not "PUT" - any solution?

    I have a stylesheet that includes calls to image files but those css image files are not being "Put" to the Remote site when I update the local files and then 'put' those files to the remote and testing locations In the site template, I have this: <l

  • Purchase Order from a Contract in error

    Hi to everybody, we've implemented an SRM extended classic scenario with SAP R/3 as the back-end system. Sometimes, when I create an order from a contract, the transmission of that document to the R/3 system fails due to a "different kind of material

  • Can we pull two addresses for 0Person OR 0Employee ?

    Hello all, I was checking in R/3 side in tcode PA30 that for 0EMPLOYEE there can be multiple address like permanent address, temporaray address, mailing address. How can we pull all these address in BW system. I do not see any mapping for address fie

  • I cannot download any files from the internet

    Hi- I am operating on Windows 7 Home Premium IE 9.1 Model PSKA8U-02900R Norton AntiVirus I get an error message every time I try to download a file from the internet. All types,This has been happening for about 6 months, but I've used my work compute

  • BB Bold Device Software v5.0.0.822

    I just upgraded the device software last night.  When I tried to reset my message alerts, I was unable to set a ringtone.  Now, all I can do is set "vibrate with ring tone" off so that the unit vibrates and flashes the LED.  If I turn vibrate off, on