Can we create PUBLIC types in version 4.7

Hello All,
Can we create PUBLIC TYPES in in class builder in version 4.7? I know its possible in ecc 6.0. But how to do it in version 4.7??
Thanx
Maya.

>
Uwe Schieferstein wrote:
> As a workaround you may collect your public types into a TYPE-POOL (SE11) which you then refer to in the properties section of your class.
Hi Uwe,
Now i understand why some of the "old" custom classes in our box used this technique instead of using "Public Types" in the Class Builder
BR,
Suhas

Similar Messages

  • Can't create an Apple TV version for HD content on Itunes, Help?

    I can't create an apple TV version of HD Planet Earth. When I go to Advanced the create apple tv version is unable to be selected. Any suggestions??.

    I can't create an apple TV version of HD Planet Earth. When I go to Advanced the create apple tv version is unable to be selected. Any suggestions??.
    1) What is the source file compression format? Generally speaking, iTunes will only convert non-multiplexed compression formats that are conversion compatible with your current QT component configuration.
    2) Was the source file purchased from iTunes? Generally speaking, DMR content cannot be copied/converted.
    3) What are the dimensions and frame rate of the source file? The built-in conversion preset has certain limitations to ensure HD playback compatibility with the older TV1 device.

  • How can I create public AND private access with a wireless VPN router?

    I am thinking about getting one of the new pre-n wireless routers that has a builtin VPN.  I will need to have a private net for my office and a public net for my customers.  On the private side- my employees will need to access all network resources and servers etc.  On the public side, my customers just need to get to the Internet and maybe print on that side too.
    Both sides will be DHCP.
    Can I set this up with 1 device ro do I need 2?  How can I do this?  Any help is greatlu appreciated.
    Thanks all.
    Message Edited by Gman on 10-14-200607:08 PM

    The only safe way to do this is to creat user groups On your server and give specific assess to the users who log into the network.
    Using a single router , bifurcating a public from a private network is not possible.You will not be able to use the VPN since the users hav e to be connected to the VPN to log into your network.

  • Can't create object types in forms 10

    Hello,
    I am trying to use object types in forms 10.
    I have already created successfully two object types and also corresponding object views.
    With one object type A everything works fine in form. But with the other object type B it doesn't.
    I am calling the constructor of object B and after the constructor finshed, forms says that there is a numeric or value error.
    Well, by nbow I have reduced attributes from object B so that they are identical to object A (which works). But still get the same error or if I use a different constructor I get NULL as a return value. I tested the constructors with test script in the database directly and viola - the constructor are working fine.
    Only if I use the constructors in forms environment they fail.
    Any ideas why this might happen?
    Thank you
    Matthias
    Well, I fear to use the object types in my next project cause if I run into trouble if the object types are so easy with less code, what else might happen if they are filled up with much more code?

    Hello again,
    I have tried again and still get the exception.
    Now I provide the code. Perhaps someone can see, why this exceptioon occurs.
    In the database I coded the following:
    create or replace type GenericObject as object
    -- Attributes
    iVersion VARCHAR2(8),
    -- Member functions and procedures
    MEMBER FUNCTION toString(SELF IN OUT NOCOPY GenericObject) RETURN VARCHAR2,
    FINAL MEMBER FUNCTION toString001(SELF IN OUT NOCOPY GenericObject) RETURN VARCHAR2,
    NOT INSTANTIABLE MEMBER PROCEDURE log(pLogger IN OUT MyLogger)
    ) NOT INSTANTIABLE NOT FINAL
    create or replace type body GenericObject is
    -- Member procedures and functions
    MEMBER FUNCTION toString(SELF IN OUT NOCOPY GenericObject) RETURN VARCHAR2 IS
    BEGIN
    RETURN SELF.toString001();
    END;
    FINAL MEMBER FUNCTION toString001(SELF IN OUT NOCOPY GenericObject) RETURN VARCHAR2 IS
    BEGIN
    RETURN 'GenericObject(' || SELF.iVersion || ')';
    END;
    end;
    create or replace type MyTestA UNDER GenericObject
    -- Attributes
    iPk VARCHAR2(16),
    iName VARCHAR2(100),
    iDCN NUMBER,
    -- constructor
    CONSTRUCTOR FUNCTION MyTestA(pName VARCHAR2, pDummy INTEGER) RETURN SELF AS RESULT,
    CONSTRUCTOR FUNCTION MyTestA(pPk VARCHAR2) RETURN SELF AS RESULT,
    STATIC FUNCTION mycreate(pName VARCHAR2) RETURN MyTestA,
    -- Member functions and procedures
    OVERRIDING MEMBER FUNCTION toString(SELF IN OUT NOCOPY MyTestA) RETURN VARCHAR2,
    FINAL MEMBER FUNCTION toString002(SELF IN OUT NOCOPY MyTestA) RETURN VARCHAR2,
    OVERRIDING MEMBER PROCEDURE log(SELF IN OUT NOCOPY MyTestA, pLogger IN OUT MyLogger)
    ) NOT FINAL
    create or replace type body MyTestA is
    -- constructors
    CONSTRUCTOR FUNCTION MyTestA(pName VARCHAR2, pDummy INTEGER) RETURN SELF AS RESULT IS
    BEGIN
    SELF.iVersion := '1.1';
    SELF.iPk := 1;
    SELF.iName := pName;
    SELF.iDCN := 1;
    RETURN;
    END;
    CONSTRUCTOR FUNCTION MyTestA(pPk VARCHAR2) RETURN SELF AS RESULT IS
    BEGIN
    SELECT VALUE(o) INTO SELF FROM v_testa o WHERE o.ipk = pPk;
    RETURN;
    END;
    STATIC FUNCTION mycreate(pName VARCHAR2) RETURN MyTestA IS
    BEGIN
    RETURN MyTestA(pName, 1);
    END;
    -- Member procedures and functions
    OVERRIDING MEMBER FUNCTION toString(SELF IN OUT NOCOPY MyTestA) RETURN VARCHAR2 IS
    BEGIN
    RETURN toString002();
    END;
    FINAL MEMBER FUNCTION toString002(SELF IN OUT NOCOPY MyTestA) RETURN VARCHAR2 IS
    lvText VARCHAR2(1000);
    BEGIN
    lvText := SELF.toString001();
    RETURN 'MyTestA(' || iPk || ', ' || iName || ', ' || 'lvHersteller.toString()' || ', ' || lvText || ')';
    END;
    OVERRIDING MEMBER PROCEDURE log(SELF IN OUT NOCOPY MyTestA, pLogger IN OUT MyLogger) IS
    BEGIN
    pLogger.log(toString());
    END;
    end;
    CREATE OR REPLACE VIEW v_testa OF MyTesta
    WITH OBJECT IDENTIFIER (iPk) AS
    SELECT
    '1.0' iVersion
    ,g.pk iPk, g.NAME iName, g.ora_rowscn iDCN FROM o_geraete g
    DROP TABLE o_geraete;
    CREATE TABLE
    o_geraete
    pk VARCHAR2(16)
    , name VARCHAR2(100)
    , hersteller_FK VARCHAR2(16)
    , zaehlernummer VARCHAR2(20)
    , dummy VARCHAR2(10)
    INSERT INTO o_geraete
    VALUES(
    '100', 'Stromzähler', '1', 'AB-56', 'dumb'
    INSERT INTO o_geraete
    VALUES(
    '200', 'Wasserzähler', '2', 'WS-09', 'dumb'
    In forms I created a form from the view and coded into the on-insert-trigger:
    declare
         lvtest mytesta;
    begin
         message('1');
         lvtest := new mytesta(:blk_testa.iname, 1);
         message('2');
         message('3' || lvtest.tostring());
    exception
         when others then
              message('Exception: ' || sqlerrm);
    end;
    And in that forms block I got the exception.
    Perhaps someone has ANY idea...
    Thanx a lot
    Matthias
    Message was edited by:
    user522343
    Message was edited by:
    user522343

  • How Can I Create This Type of Workflow?

    1. I need to create an editable workflow, for example a workflow that starts once you add  a "Ms Word" document in a folder, then the initiater gets to choose who will be the firts reviewer and the who will be the second reviewer of the
    docuemnt.
    2.  can I have my workflows in a library and applied to multiple folders, where you have different pre maid workflows to choose from and then have your work collegues choose whcih one to pick.

    The first one can be done by creating approval steps that plug into a Person/group look-up from your form.  Have SPD return this as an email address and you can fairly easily configure something that will allow your users to input thier approvers.
    I'll have a think on the second item, I think this will be harder to set-up.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • How can i create this type of texture?

    Hey
    I'm trying to replicate/create the texture in this poster. It looks to me like a fresh paint brush strokes or some plywood.
    Any help would be great thanks (:

    Mylenium is an After Effects kind of a guy, which apparently is the go to app for fractal noise, although Render Clouds and fibers are also considered to be fractal noise.  I actually tried to duplicate the texture, and while I got close, it was not close enough to put up as a suggestion.  This has a base layer of a mid green, with an overlaying layer in which I used Render Clouds with blend mode set to Vivid Light.  The trick is in selecting the right foreground and background colours, and then repeatedly using Ctrl Alt f to reapply render clouds with new random settings.
    This is the same layer with some 90° Motion blur applied, and high settings of Smart Sharpen.  Also set to Vivid Light. 
    Something else to try is adding some noise to your render clouds if you are going to use Motion blur, because it gives motion blur something to work on.  After adding the noise, you need to soften it just a tiny bit (Blur > Blur more).  Then Smart Sharpen again, but you'll need much lower settings this time.
    I know that several requests for better Photoshop fractal noise have been put on the Photoshop feedback site, but the master of this stuff is Bert Monroy, and I can't actually remember him using Render Fibers (the other noise generator along with clouds and difference clouds).  Bert tends to use noise and motion blur, because you get more predictable, and definitely more even results than from render fibers.

  • Can you create this type of circle?

    i am trying to make a logo and have the logo the logo surrounded by a circle.
    the logo has two letters in the center and then a circle going around it.
    is it possible to make the circle thickness the same as the thickness of the strokes in the letters?
    how do you set the parameters for this?

    Easy.
    Measure the stroke width of a letter.
    Maybe copy/paste part of it and use Info to find the value.
    Then enter the same value as the stoke weight of the circle.
    Don't forget to enter the units (cm, mm, in, pt) before you click on Return, otherwise you will get points by default which is probably not the measuring unit that you're using.

  • Create "Object" Type based on columns of a table

    Hi Experts
    is it possible to create an Object Type based on columns of a table?
    for example the syntax for creation of type is
    CREATE OR REPLACE TYPE temp_t
    AS OBJECT (ID number, code number)
    can we create a type that is based on columns of an existing table? so that we donot have to write down all the column names in each type as i have to create types based on 100 and above tables :-s
    Please help me out here!
    Best Regards

    You cannot do that Zia, check below code:
    SQL> create or replace type temp_t as object(object_name all_objects.object_name%TYPE);
      2  /
    Warning: Type created with compilation errors.
    SQL> sho err
    Errors for TYPE TEMP_T:
    LINE/COL ERROR
    0/0      PL/SQL: Compilation unit analysis terminated
    1/35     PLS-00201: identifier 'ALL_OBJECTS.OBJECT_NAME' must be declared

  • Bapi for creating message type in a sales order

    Hi, I am involved in a IS-MAM project for an italian company.
    I need to create or add a message output type in a sales order in a complex batch program. I thought to use a bapi technicality; in particular BAPI_ADMGMTSO_CHANGE in order to change the document.
    How can I create message type in the order? Can I use the same bapi or I need of an other one?
    thanks in advance for your help
    Lucia

    Can you please provide more information...

  • Can we create two different Segments at client and company level

    We have a particular requirement in segments reporting. we have to provide product wise segments reporting at client level and for income tax purpose one of our manufacturing plant has to maintain a separate books of accounts for this purpose we want to create a separate geographically at company level of this plant which is in different state. can we create this type of segments for separate books at company level.
    If there is any other process where we can get separate books of accounts.

    Dear,
    Of course you can do this but only worrysome thing will business users will be confused between the Plant and product line business segment.
    You must have Product Line (for e.g. segment 1000) is manufacture at plant 1000 (segment 2000), so when any expense occur in Plant 1000 for Product Line 1000 which segment should be used???
    So give precedence to segment whichever you want......and costantly monitor entries being posted to thses segment...
    Regards,
    Chintan Joshi

  • Create PIR with Production Version

    Dears ,
    Can I Create PIR with Production Version Specific
    Best Regards
    Rami

    Hy Rami,
    Yes you can select required Prod. Version With PIR itself.
    To do the same follow below Path,
    MD61/MD62 --- > Go to Schd. Line Tab ---> Go to Settings Menu --->
    Production version.
    After pressing that Tab for Prd. Version you will find Column for Prod. version gets Activated and there you can select your required Prd. Version.
    System will explod the BOM and Recipe as per that Selected Prod. Version during MRP run.
    Regards,
    Dhaval

  • How To Create A Re-Installable Version Of Aperture 3 From The App Store?

    Hi...
    Another question regarding Aperture 3 and the App Store.
    In the FAQ section of the Apple site it says this:
    http://support.apple.com/kb/HT4461
    "How do I back up my purchases?
    We recommend backing up the contents of your Mac regularly, including photos, purchased movies, TV shows, and apps, to ensure that you can easily recover them in the event of a loss. If you need to recover a previously purchased app from the Mac App Store, you can redownload it if it is still available."
    The important bit for me is... "if it is still available".
    So... having bought the software... that I own, I can only install / reinstall it for as long as Apple keep it in the App Store. I'm pretty sure Aperture 3 will disappear as soon as Aperture 4 appears, so are we all only ever locked into effectively RENTING the software with the ability only to re-install for a limited duration? (Rhetorical).
    Therefore my question is:
    How can I create a re-installable version, so that if I need to re-install Aperture, but it's no longer available in the App Store, then I can still re-install the software that I've bought and that I own?
    Thanks for the help,
    Clown Guy

    Hi Clown Guy,
    How can I create a re-installable version, so that if I need to re-install Aperture, but it's no longer available in the App Store, then I can still re-install the software that I've bought and that I own?
    The App Store also says you can use the app on another computer merely by copying it to another machine. I believe people here have had success in doing that. I believe you can back up that Aperture app package and just drop it back in to the new computer, but I've never had the cause to do such a thing. The app is all you would need to "reinstall", although it isn't truly an installation program at that point. On the other hand, other people have not had success in doing that.
    nathan

  • HT1926 Can't download iTunes on my laptop receive following error message- an error occurred during the installation of assembly Microsoft vc80.CRT.type="win32", version 8.0.50727. 6195 public key token= ifc8b3b9a1e18e3b process architecture=x86hresult:00

    Can't download iTunes on my laptop receive following error message- an error occurred during the installation of assembly Microsoft vc80.CRT.type="win32", version 8.0.50727. 6195 public key token= ifc8b3b9a1e18e3b process architecture=x86hresult:0073

    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? (For example, 8007000B.)

  • I am unable to install Itunes on Windows 7 as I am getting the message "an error occured during the installation of assembly "Microsoft VC80.CRT Type ="win32" version="8.0.50727.6195",public key token 1fc8b 3b 9a 1e 18e 3b",processorArchitecture="x86".Ple

    I am unable to install Itunes on Windows 7 as I am getting the message "an error occured during the installation of assembly "Microsoft VC80.CRT Type ="win32" version="8.0.50727.6195”,public key token 1fc8b 3b 9a 1e 18e 3b”,processorArchitecture=”x86”.Please refer to Help and Support for more information:"HResult 0x800736FD

    I found htis other post https://discussions.apple.com/thread/3401328?start=0&tstart=0
    I also found this in another post
    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? (For example, 8007000B.)

  • I am unable to install Itunes on Windows 7 as I am getting the message "an error occured during the installation of assembly "Microsoft VC80.CRT Type ="win32" version="8.0.50727.4053,public key token....."HResult 0X8007054f

    I am unable to install Itunes on Windows 7 as I am getting the message "an error occured during the installation of assembly "Microsoft VC80.CRT Type ="win32" version="8.0.50727.4053,public key token....."HResult 0X8007054f

    I found htis other post https://discussions.apple.com/thread/3401328?start=0&tstart=0
    I also found this in another post
    These ones are typically caused by underlying problems on the PC that also often cause Windows Updates to fail to install. If we can fix the Windows Update trouble, we can usually get the iTunes trouble cleaned up en passant.
    Go into your Windows update and try to check for new updates. If updates install, stock up on the ones you're behind on, restarting the PC if requested to do so. After the restart, try installing iTunes again. Does it go through this time for you?
    If windows updates fail to install, go into your Update History and doubleclick the failures. What alphanumeric codes appear for you? (For example, 8007000B.)

Maybe you are looking for

  • Seam on Weblogic 10.3.2: Possible classloader problem?

    Hi all, I have a problem deploying a Seam 2.2.0.GA application on WebLogic 10.3.2. I use JRockit 1.6.0_14, Richfaces 3.2.0.GA and Facelets 1.1.14 and the Server is deployed on Windoes XP 32bit. The application has the following structure: application

  • IDoc, Posting Payments, and Payment Advice

    We are receiving payment advices, some referencing the invoice, some referencing the packing slip #. Our issue is that the ones that come through with the packing slip #, when you post the payment, it does not recognize the line items that reference

  • Difference between parameter id SAG and VRT

    Hello ABAP Experts, I just want to know your insights why when i set my parameter id to vrt it will not skip the first screen of tcode me39 but when i set it to sag it will skip the first screen of me39. When i check the parameter id of tcode me39 it

  • SoD Error in Back system

    Hello, While changing the user in SU01 the following error occured: SAP Adapter has a problem, SOD violations will not be checked !!! Please check with your system Administrator Technical Info: Bean VIRSA/RT_JAVA_RISK_ANALYSISnot found on host ulldev

  • Writing a String to the Parallel Port

    I am a new user of Labview and have very little experience. I am trying to write an arbitrary string (that I can input) to the parallel port. Basically, I need to communicate with a device that connects to it and will accept commands as plain strings