Is it possible to extend PT type Infotype like 2005?

Hi~~~....
I wonder that I can extend PT (Time Record) type Infotype like 2005.
We can extend other type infotype using ci_ structure.
But PT type Infotypes have no ci_ structure.
Is it possible to extend???

No, all absence/presence related infotypes can't be enhanced (infotypes 2000-2011).

Similar Messages

  • Extending parameter type in constructor declaration?

    I've come across a couple of places where I really want to have the compiler use a specific implementation for types of generic parms. As things stand now, I write two classes: one that defines a general mechanism, and one (may or may not be derived from the first) that provides a more specific mechanism.
    I know that this isn't possible given the generic type erasure, but I thought I came up with a way to make it work. Of course, this doesn't work either, but I wanted to know what potential misuse causes this syntax to be rejected by the spec.
    public class TNum<T> {
        private T value;
        public TNum(T value) { this.value = value; }
        public <N extends Number & T> TNum(N value) { // compiler rejects this in either order
            this(value);
    }So far, the two cases that I'd use this type of technique:
    1) Comparison functors -- there are two choices generally
    class Less<T> {
        public Less(Comparator<T> comp) {...}
    class Less<T extends Comparable) {
        public Less() {}
    }I could eliminate a class if I could write
    class Less<T>{
        public <T> Less(Comparator<T> comp) { ... }
        public <C extends Comparable & T>Less() {
            this(new ComparableComparator<C>());
    }2) Swing Editors & Renderers: the basic implementation is the same for all parm types, but there are a couple of minor extensions when dealing with Numbers.
    David Hall
    http://jga.sf.net

    I'm not sure about the multiple-inheritance argument:
    there are a number of places where the inferencer is
    working with an empty set of potential classes. For
    example <? extends String>: String being final can't
    possibly have a derived class.
    Given <N extends Number & T>, I would expect due to
    the type erasure rules that the type N would be erased
    to Number for actual class file generation.Granted, but then the problem is the compiler doesn't know what T is here. If T turned out to be (pick any class) "Thread" then you've written N extends Number & Thread, which clearly doesn't work.
    Whether this is the actual problem in this case or not I don't know, but I don't see to allow you to write 'N extends X & Y' unless the compiler could know at least one of X and Y is an interface. Given you have no bounds on T in your example this is impossible.
    ComparableComparator
    I've seen it in a number of libraries in addition to
    JGA and no one has a better name for it. It is an
    attempt to have one visible method of comparing
    objects instead of two.Oh, I see, you're trying to do pattern matching:
    class ComparableComparator<U extends Comparable<U>> implements Comparator<U> {
        public int compare(U x, U y) {
            return x.compareTo(y);
    class Less<T> {
        public Less(Comparator<T> comp) {
        public Less() {
            this(new ComparableComparator<T>());
    BoundToWork.java [33:1] type parameter T is not within its bound
            this(new ComparableComparator<T>());
                                          ^
    1 error
    Errors compiling BoundToWork.This won't compile because T is not bound so the compiler can't know T implements Comparable<T>.
    One could write:
    class Less<T extends Comparable<T>> {
        public Less(Comparator<T> comp) {
        public Less() {
            this(new ComparableComparator<T>());
    }Which compiles but defeats the whole object of what you're trying to do...
    The thing is, I don't understand how you're planning to use this, do you have in mind something like this?
        class NotComp {} //doesn't implement Comparable<NotComp >
        Less<NotComp > l1 = new Less<NotComp>(new NotCompComparator());
        class Comp implements Comparable<Comp> { ...}
        Less<Comp> l2 = new Less<Comp>();Are you essentially trying to say that the no-arg constructor should only be available if the type of the parameter T happens to extend Comparable<T>, and conversely if T is not Comparable<T> then one must use the one-arg constructor of less and explicitly supply a Comparator object?
    If I've understood you correctly then I can't see how this can work. You're basically trying to constrain which constructors are available based on the interfaces implemented by the type parameter (T) in Less<T>. But that can't work... both constructors must be callable for all instantiations of Less<T> ?
    Please forgive me if I've gone off on a total tangent and misunderstood your intent.

  • I have a Cisco/Linksys WRT-54G wireless router and 2 Airport Extremes (the small ones that plug directly into the wall). Is it possible to extend the network from the router using these two AEs? I have a DVD player and Ext HD plugged into the router too..

    I have a Cisco/Linksys WRT-54G wireless router and 2 Airport Extremes (the small ones that plug directly into the wall). Is it possible to extend the network from the router using these two AEs? I have a DVD player and Ext HD plugged into the router too. Any ideas? I'm guessing the only way is to do what I've seen in these community pages which states that it can be done but it will drop the bandwidth by 50%. Thoughts?? Thanks!

    The Cisco/Linksys WRT-54G was one of the very few routers said to be compatible with Apple's implementation of WDS (Wireless Distribution System) settings.
    The info that I have on file indicates that only the WRT-54G versions 4 and under were compatible, so that would be one bridge to cross.
    Even if you find that your Cisco/Linksys might be the right version, Apple never published instructions on how to configure the Express devices with other manufactures, so users were left to their own devices to try to figure out how to get things working. Apple's instructions to connect to other Apple devices are in the link below:
    WDS network
    If you were hoping to use 2 Express devices in this type of configuration...even if it works...the bandwidth penalties will be extremely severe.
    The first Express drops the bandwidth (and speed) on the entire network in half and the second halves everything again. So, the result, in effect would be a "g" wireless network running at 25% speed. Few users would consider installing this type of network.
    At this point, it becomes one of those things where the fact that you might be able to do something does not mean that there would be much value in doing so. But, it is your decision to decide if you want to try to proceed.

  • Is it possible to make a type cast in TestStand?

    I've got the following problem.
    I use a receive function which waits for an undefined package. (struct package).
    The problem is i can't specify the module with the exaxt package.
    Generally in C i define a Pointer and create enough buffer for it. Is it the same in TestStand?
    Is it possible to make a type cast?
    for example:
    i've got these packages
    struct packet;
    struct  data;
    the function does not know which structure to receive.
    err = receive(buffer,maxlen);
    how do i specify the buffer variable?
    can i create a type "void" with a String to have enough buffer.
    and then to make a type cast, for example "Locals.dataobject = ((data)Locals.buffer)"
    any ideas?
    thx for help

    Unfortunately there is no way to do type-casts in TestStand. What you could do is write a wrapper-dll in C, that has for example two parameters for both possible structs. The dll then takes one of the parameters, does the typecast and passes it on to your original dll.
    From TestStand you can pass the struct(or better container in the "TestStand language") you want to use to the accoridng parameter of the wrapper-dll, leaving the other parameter empty or with some default-value.
    Hope this helps!
    André

  • Is it possible to pass some type of parameter/unique id FROM PDF?

    hi there,
    I will try to explain this as best as I can but please bear with me.
    I have Adobe Acrobat X Pro.
    We have drawings linked to each other in pdf.
    When you open a drawing (say, a layout of a house), my boss wants to be able to click on say, a door, and have all the information on that door pop up (size, manufacturer, when it was shipped, etc). The information log is stored in Excel. I know how to hyperlink to open an excel file FROM pdf, but cannot figure out how to open a specific sheet in Excel. So here is my question:
    1. How do I link to a specific sheet in Excel so it opens when I click on a link in the pdf file?
    Having said that, we are going to have around 1500 items and I don't want to have to create 1500 sheets (if that's even possible) to open the details for each one. So here is question #2:
    2.  Is it possible to pass some type of parameter to excel (or even Access) to know what item was clicked on the pdf file so I can write a macro/code in Excel to just fill in the details for that item? (Hence just needing one sheet instead of 1500?).
    Suggestions/path forwards are welcome.
    I hope this was clear and I thank you in advance.
    Thanks,
    Jessica

    There really isn't a way to do that. It would be possible to export an Excel sheet to a tab-delimited (or CSV, XML) file which could optionally be attached to the PDF. JavaScript inside the PDF could read the data file and extract the information for an item so it could be displayed somehow.

  • Is it possible to extend the title of a "DATE" column?

    Hi I have made a table;
    SQL> SELECT * FROM BookCopy;
    BCID BTID DATEACQUI DATEDESTR
    120 9 09-FEB-06
    But the title is meant to say "DATEACQUIRED" but it only says "DATEACQUI"
    Does anyone know if it is possible to extend the title without using VARCHAR, thanks

    Hi,
    In SQL*Plus, you can set the width of a DATE column the same way you do it for a VARCHAR2.
    COLUMN  dateacquired  FORMAT A12
    SELECT  SYSDATE  AS dateacquired
    FROM    dual;produces
    DATEACQUIRED
    29-JAN-09

  • Convert binary bytes to Labview Extended Precision type

    Hello All:
    I am reading a binary file that was written in Windows. One of the types used in the data structure
    is the Delphi extended precision type, which is 10 bytes. When reading this in using Labview's
    "read binary file" VI, there is only one choice, and that is to read it in as an array of 10 bytes
    (Labview's extended precision is 16 bytes.) I have tried using the type cast with no results.
    So....how to convert the data in the 10 byte array to a 16 byte extended precision format in
    Labview? I guess part of the problem is not really understanding how the extended precision
     type is stored in IEEE format.
    Has anyone performed this conversion before that could help out? I'm sure this must have
    been done by someone....somewhere....I have no hair left....
    Any help would be appreciated!
    Thanks,
    Gary.

    Uhm, something must have gone wrong, the link TST sent,
    mentions that LabVIEW stores extended data as 80 bit (10 bytes) on Intel platform.
    Complex double is stored as two doubles (=16 byes). My guess is that Altenbach's latest note mentioning the endianess should help you.
    If the endiannes is right you should be able to just typecast the data:
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • How to send IDOC with extended message type MATMAS

    Hi Experts,
    I am looking for a solution to send open PR & open PO related data for diffrent materials through as IDCO in XML file.
    Scenario is i have to show a report in a 3rd party system for open PR & open PR that too will come after selection some materials. That means select a materials & it will show all the open PO & related data in a report.
    The rough idea for the solution i got is I can save the data in XML file in the system. For this i have to send IDOC. but the problem is there is no message type for PR. IF i am not wrong i can extend the MATMAS05 for a segment that will have PR related info.
    Now what to do with that how to send the IDOC do i need to create another report to send IDOC or i can send the extended one through BD10. I tried it but it shows error message "0 communication idoc sent" so I dont no y such error is coming i think i am not filling the extended idoc. But again my QUestion is how to do that.
    Can i use BAPI also for such work, if then how it can be helpful.
    If anyone have any other solution Please help me out of this.
    Regards,
    Nik

    Hi Mahesh,
    Thanks for your reply.
    My requirement is bit different. i have to send Open PR data for diffrent materials. In a 3rd party application user will search for few materials which will generate a report that will show the PR related data for those material.
    That means for few selected materials there will be few PR's which may be open, i have to show those in my report.
    Eg: material A, B. are in PR 00001 & material B, C in PR 00002.
    After selecting materials A to C report will show
    Material                 PR No                   Item No                Quantity
    A                           00001                    10                             1
    B                           00001                     20                            3
    B                           00002                     10                            3
    C                           00002                      10                           1
    Same thing i have to do for open PO & open Sales order also.
    Can u please help me to provide the solution how can i proceed for it. U have given the Message type & a bapi how it will help in my issue?
    I got a suggesion from someone that extend message type matmas for PR, PO, SD related data & send the idoc. but i am confused how to pass that much data ina single IDOC.
    Regards,
    Nik

  • Is it possible to extend jdeveloper in this way?

    I'm wondering if its possible to extend jdeveloper's source editor, in jdeveloper. For instance if I have a custom file I want to have syntax highlighting (with my own syntax) and I want to add another tab to the file for a different view of the file. I'm talking about the tabs for the source window, like "Source | Design | History"
    Can anyone point me in the right direction for accomplishing and if its possible.
    Thanks!

    Thanks! The answer looks like YES it can be done, however I'm having trouble finding the actual full code samples for "CustomEditor" help file says goto the webpage, and the webpage just lists that the samples exist, but cant find where they are.
    Thanks again!

  • Extending IDOC type

    Hi,
    Iam using the business object BUS20001 (CRMXIF_ORDER_SAVE_M) to create service order in CRM 3.1 system using LSMW. We have an addfiled in the order hence extended the IDOC type (ZCRMXIF_ORDER_SAVE_M02B), creating a new segment and attaching to the IDOC type. When i look into this extended IDOC type in the transaction WE30, all the segments has mapped to a field in the structure  CRMXIF_BUS_TRANS. But the newly created segment has no mapping. This unmapped field is not getting updated in the order created.
    Do i have to extended the structure CRMXIF_BUS_TRANS when i extend the IDOC type.Please advise if i miss any steps in extending the IDOC type.
    Regards
    Dhanapal S

    Hi Dhanapal,
    When there is a change in IDoc structure, you need to re-import in Repository.
    Also, in IDX1 transaction delete the existing meta data for the IDoc and import the meta data once again.
    Regards,
    Uma

  • Sending of dynpro SAPLSTRD 0300 not possible: No window system type specifi

    Hi All
    While working in ERP 6.0 EHP 3 ,navigating to Human Resources and Compensation Planning ,from there opening the Start Budget Administration .
    When trying to save the budget of any unit a BSP page is opening with following error.
    error
    ===================
    Sending of dynpro SAPLSTRD 0300 not possible: No window system type specified
    Exception
    CX_SY_SEND_DYNPRO_NO_RECEIVER
    Error Name
    DYNPRO_SEND_IN_BACKGROUND
    Program SAPLSTRD
    Include LSTRDU30
    ==================
    Can anybody pls let me know what could be reason for this?
    Regards
    Ajay

    Hi ,
    Thanks for your inputs.I had a look of this note earlier as well.
    Bu this error is not on Solution Manager and we cann implement this note.
    We are facing this on ERP system and component mentione di not in uses actually.
    Regards
    Ajay

  • Sending of dynpro SAPLSDH4 0200 not possible: No window system type specifi

    Hello All,
    We have a problem related search help of Preferred supplier. When the preffered supplier is selected, inturn we will get another screen with lot of other options.
    When the search help for Purchasing org ID is selected, we are getting the error as "Sending of dynpro SAPLSDH4 0200 not possible: No window system type specified".
    I have debugged, but did not get any clue. Could any one please let us know if any one have any idea.
    We are using SRM 6.0, Web dynpro ABAP.

    Hi ,
    Thanks for your inputs.I had a look of this note earlier as well.
    Bu this error is not on Solution Manager and we cann implement this note.
    We are facing this on ERP system and component mentione di not in uses actually.
    Regards
    Ajay

  • Sending of dynpro SAPLSPRI 0100 not possible: No window system type is spe

    Upon clicking dictionary search help PREM tagged to "Personnel Number" input field in Web Dynpro ABAP application, error message "Sending of dynpro SAPLSPRI 0100 not possible: No window system type is specified." is encountered. This error message is displayed within the message area and not a short dump. This error message is only occuring for some users.
    Does anyone knows how to resolve this error message?

    Hi,
    I thnk the search help exit is implemented in search help PREM in your system. If the code in exit in written in such a way that under some conditions it is calling any ABAP screen, it will throw error in webdynpro ABAP environment. Condition in the exit might be reaching for some users under certain cases.
    Open the PREM help in SE11 and check the function module mentioned in Search help exit section. It might also contain another call to F.M which might be calling a ABAP screen. If this is the case, this error cannot be fixed as WD ABAP dont support ABAP screen call.
    Regards
    Vishal kapoor

  • Is it possible to Extend the Storage Bin Length from 10 Char to 25 Char

    Dear Experts,
    We have a Requirement for Extending the Storage Bin Length from 10 Character to 25 Character.
    Question 1:
    Is it possible to Extend or Not?
    Question 2:
    Even if we extend what will be Impact on the Current Storage Bin Numbers used now.
    Thanks for your support in Advance.

    No, you can't change length for storage bin field in standard and also it is not suggestable to client. If client forcing on requirement, You can suggest like below.
    create one more field for EXT.storage bin by using enhancement  and do one customized report for show as ,  storage bin number+EXT.storage bin = actual storage bin.
    For only client reference you do this report and in standard reports it will not show like this else tell to client ---> it is not possible, because it is replicating and using at different programmes.

  • Is it possible to use List Type in XML schema within the SOA Rule author?

    Is it possible to use List Type in XML schema within the SOA Suite Rule author? The reason is that with the following XSD, Rule author generates XML facts of type "List" for the element "ResultSet". Basically I want to check the Input facts (Input1, Input2, Input3) for some conditions and then assign action to the element Resultset of type List (array). The output Resultset can contain multiple values based on the input facts. My problem is that I am unable to see the ResultSet in the "Assign" action type of the action block. Is it possible to use the Resultset of type List with the Rule author or is there any limitation on the rule author and any workaround for this?
    <schema xmlns="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestMultipleOutputs"
    elementFormDefault="qualified">
    <element name="TestMultipleOutputs">
    <complexType>
    <sequence minOccurs="0">
    <element name="Input1" type="string" minOccurs="0"/>
    <element name="Input2" type="string" minOccurs="0"/>
    <element name="Input3" type="string" minOccurs="0"/>
    <element name="ResultSet" type="string" minOccurs="0"
    maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    --Thanks a lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Richard,
    I have slightly modified the xml schema you suggested and was able to import into the rule author. the following is the modified XSD. Rule Author created a List type for the "ResultSet" . I still don't see "Resultset" in the assign action, so I tried creating RL function in order to assign the output to the "Resultset", but was unsuccessful so far. can you please let me know how to populate the resultset with the output values? Thanks a lot.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsd:schema attributeFormDefault="unqualified"
    xmlns:ns1="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://www.oracle.com/ns/TestComplexOutputs"
    xmlns:tns="http://www.oracle.com/ns/TestComplexOutputs"
    elementFormDefault="qualified">
    <xsd:element name="TestComplexOutputs">
    <xsd:complexType>
    <xsd:sequence minOccurs="0">
    <xsd:element name="Input1" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input2" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Input3" type="xsd:string" minOccurs="0"/>
    <xsd:element name="ResultSet" type="tns:ResultSetType" minOccurs="0"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:complexType name="ResultSetType">
    <xsd:sequence>
    <xsd:element name="ResultSet" type="tns:ResultSetStructure" minOccurs="1"
    maxOccurs="unbounded"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ResultSetStructure">
    <xsd:sequence>
    <xsd:element name="ErrorReason">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string"/>
    </xsd:simpleType>
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>

Maybe you are looking for

  • HP Pavilion DV6-2025sl Bios Recovery

    Hello Everyone, Sorry For My Bad English. i have a notebook hp pavilion dv6-2025sl wiwh a problem. the PC startup but the screen is black and the led of keyboard light 2 time ( i read on hp site this is a problem with a bios). I try with same method

  • Contacts in "Groups" not syncing correctly on iPhone/iPad

    I am using iCloud to keep my Address Book/Contacts synced between my Mac, iPad and iPhone. For the most part, the service works as advertised, i.e. editing, creating, deleting, etc. across all three devices. However, although all of my 1000+ contacts

  • Migrate attachments to material or equipment

    Anybody around who has migrated the documents that were attached via GOS (service for objects) to a material master or an equipment from one SAP system to another? We are merging SAP systems, and the to be migrated 46c system has some thousand drawin

  • CMYK file size smaller then RGB... Why?

    I have been receiving some very simple files from a colleague and her file sizes are a 10th of what mine are. The confusing part is she is sending them in CMYK and I convert them to RGB. Theoretically they should be smaller. Dimensions and resolution

  • TouchSmart Photo App and Support for PNG files?

    Please, somebody tell me that I'm crazy and that the TouchSmart Photo app really can be made to support PNG file types! If not, who designed this software!? Can't browse the network for content stored on an HP MediaSmart Server. Can't view PNG files