Changing objects

how do i change my structures, function modules, api and all other objects i created as Local objects to transportable objects and to a package. Also how do i create my own new package.

You can't transport local objects, so create a Z<program> and save them under a new task request. Now these objects are transportable......
And regarding how to create a package, is,
GOTO SE80, and then press the EDIT OBJECT button, now
goto -> Development Coordination tab. Give a name and then press create....
Regards,
Pavan

Similar Messages

  • How to change object background color on  java run time

    Hi,
    I create object loading program. my problem is run time i change object background color using color picker. i select any one color of color picker than submit. The selecting color not assign object background.
    pls help me? How to run time change object background color?
    here follwing code
    import com.sun.j3d.loaders.objectfile.ObjectFile;
    import com.sun.j3d.loaders.ParsingErrorException;
    import com.sun.j3d.loaders.IncorrectFormatException;
    import com.sun.j3d.loaders.Scene;
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import java.io.*;
    import com.sun.j3d.utils.behaviors.vp.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.awt.Graphics ;
    import javax.swing.*;
    public class ObjLoad1 extends Applet implements ActionListener
    private boolean spin = false;
    private boolean noTriangulate = false;
    private boolean noStripify = false;
    private double creaseAngle = 60.0;
    private URL filename = null;
    private SimpleUniverse u;
    private BoundingSphere bounds;
    private Panel cardPanel;
    private Button Tit,sub;
    private CardLayout ourLayout;
    private BorderLayout bl;
    Background bgNode;
    BranchGroup objRoot;
    List thelist;
    Label l1;
    public BranchGroup createSceneGraph()
    BranchGroup objRoot = new BranchGroup();
    TransformGroup objScale = new TransformGroup();
    Transform3D t3d = new Transform3D();
    t3d.setScale(0.7);
    objScale.setTransform(t3d);
    objRoot.addChild(objScale);
    TransformGroup objTrans = new TransformGroup();
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    objScale.addChild(objTrans);
    int flags = ObjectFile.RESIZE;
    if (!noTriangulate) flags |= ObjectFile.TRIANGULATE;
    if (!noStripify) flags |= ObjectFile.STRIPIFY;
    ObjectFile f = new ObjectFile(flags,(float)(creaseAngle * Math.PI / 180.0));
    Scene s = null;
         try {
              s = f.load(filename);
         catch (FileNotFoundException e) {
         System.err.println(e);
         System.exit(1);
         catch (ParsingErrorException e) {
         System.err.println(e);
         System.exit(1);
         catch (IncorrectFormatException e) {
         System.err.println(e);
         System.exit(1);
         objTrans.addChild(s.getSceneGroup());
         bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
    if (spin) {
         Transform3D yAxis = new Transform3D();
         Alpha rotationAlpha = new Alpha(-1, Alpha.INCREASING_ENABLE,0,0,4000,0,0,0,0,0);
         RotationInterpolator rotator = new RotationInterpolator(rotationAlpha,objTrans,yAxis,0.0f,(float) Math.PI*2.0f);
         rotator.setSchedulingBounds(bounds);
         objTrans.addChild(rotator);
    //Background color setting
    Color3f bgColor = new Color3f(100,200,230);
    bgNode = new Background(bgColor);
    bgNode.setApplicationBounds(bounds);
    objRoot.addChild(bgNode);
    return objRoot;
    private void usage()
    System.out.println("Usage: java ObjLoad1 [-s] [-n] [-t] [-c degrees] <.obj file>");
    System.out.println("-s Spin (no user interaction)");
    System.out.println("-n No triangulation");
    System.out.println("-t No stripification");
    System.out.println("-c Set crease angle for normal generation (default is 60 without");
    System.out.println("smoothing group info, otherwise 180 within smoothing groups)");
    System.exit(0);
    } // End of usage
    public void init() {
    if (filename == null) {
    try {
    URL path = getCodeBase();
    filename = new URL(path.toString() + "./galleon.obj");
    catch (MalformedURLException e) {
         System.err.println(e);
         System.exit(1);
         //setLayout(new BorderLayout());
         //setLayout(new GridLayout(5,0));
         //setLayout(new CardLayout());
         //setLayout(new FlowLayout(FlowLayout.LEFT, 5, 5));
    GraphicsConfiguration config = SimpleUniverse.getPreferredConfiguration();
    Canvas3D c = new Canvas3D(config);
    add(c);
    BranchGroup scene = createSceneGraph();
    u = new SimpleUniverse(c);
    ViewingPlatform viewingPlatform = u.getViewingPlatform();
    PlatformGeometry pg = new PlatformGeometry();
    Color3f ambientColor = new Color3f(45,27,15);
    AmbientLight ambientLightNode = new AmbientLight(ambientColor);
    ambientLightNode.setInfluencingBounds(bounds);
    pg.addChild(ambientLightNode);
    Color3f light1Color = new Color3f(111,222,222);
    Vector3f light1Direction = new Vector3f(1.0f, 1.0f, 1.0f);
    Color3f light2Color = new Color3f(1.0f, 1.0f, 1.0f);
    Vector3f light2Direction = new Vector3f(-1.0f, -1.0f, -1.0f);
    DirectionalLight light1 = new DirectionalLight(light1Color, light1Direction);
    light1.setInfluencingBounds(bounds);
    pg.addChild(light1);
    DirectionalLight light2 = new DirectionalLight(light2Color, light2Direction);
    light2.setInfluencingBounds(bounds);
    pg.addChild(light2);
    viewingPlatform.setPlatformGeometry(pg);
    viewingPlatform.setNominalViewingTransform();
    if (!spin) {
    OrbitBehavior orbit = new OrbitBehavior(c,OrbitBehavior.REVERSE_ALL);
    BoundingSphere bounds = new BoundingSphere(new Point3d(0.0, 0.0, 0.0), 100.0);
    orbit.setSchedulingBounds(bounds);
    viewingPlatform.setViewPlatformBehavior(orbit);     
    u.addBranchGraph(scene);
         public ObjLoad1(String[] args) {
              if (args.length != 0) {
                   for (int i = 0 ; i < args.length ; i++) {
                        if (args.startsWith("-")) {
                             if (args[i].equals("-s")) {
                                  spin = true;
                             } else if (args[i].equals("-n")) {
                                  noTriangulate = true;
                             } else if (args[i].equals("-t")) {
                                  noStripify = true;
                             } else if (args[i].equals("-c")) {
                                  if (i < args.length - 1) {
                                       creaseAngle = (new Double(args[++i])).doubleValue();
                                  } else usage();
                             } else {
                                  usage();
                        } else {
                             try {
                                  if ((args[i].indexOf("file:") == 0) ||
                                            (args[i].indexOf("http") == 0)) {
                                       filename = new URL(args[i]);
                                  else if (args[i].charAt(0) != '/') {
                                       filename = new URL("file:./" + args[i]);
                                  else {
                                       filename = new URL("file:" + args[i]);
                             catch (MalformedURLException e) {
                                  System.err.println(e);
                                  System.exit(1);
    public void actionPerformed(ActionEvent e)
         if (e.getSource() == Tit)
    //Color Picker tool
              Color c1 = JColorChooser.showDialog(((Component)e.getSource()).getParent(),"Zaxis Color Picker", Color.blue);
              cardPanel.setBackground(c1);
              objRoot.removeChild(bgNode);
              int a = c1.getRed();
              int b = c1.getBlue();
              int c = c1.getBlue();
              System.out.println(a);
              System.out.println(b);
              System.out.println(c);
              Color3f ccc = new Color3f(a,b,c);
              bgNode.setApplicationBounds(bounds);
         objRoot.addChild(bgNode);
         else
              System.out.println("mathi");
    public ObjLoad1()
    Tit = new Button("BG Color");
    sub = new Button("Object Color");
    cardPanel = new Panel();
    cardPanel.add(Tit);
    cardPanel.add(sub);
    //cardPanel.add(l1);
    //cardPanel.add(thelist);
    sub.addActionListener(this);
    Tit.addActionListener(this);
    // thelist.addActionListener(this);
    //setLayout for applet to be BorderLayout
    this.setLayout(new BorderLayout());
    //button Panel goes South, card panels go Center
    this.add(cardPanel, BorderLayout.SOUTH);
    //this.add(cardPanel, BorderLayout.CENTER);     
    this.setVisible(true);
    public void destroy() {
    public static void main(String[] args) {
         new MainFrame(new ObjLoad1(args),400, 400);

    hi,
    i am using setColor(Color3f color) method
    like
    if (e.getSource() == Tit)
              Color c1 = JColorChooser.showDialog(((Component)e.getSource()).getParent(),"Zaxis Color Picker", Color.blue);
              bgColor = new Color3f(c1);
              System.out.println(bgColor.get());
         bgNode.setColor(bgColor);
         bgNode.setApplicationBounds(bounds);
         objRoot.addChild(bgNode);
    but error will be displayed
    like
    javax.media.j3d.CapabilityNotSetException: Background: no capability to set color
         at javax.media.j3d.Background.setColor(Background.java:307)
         at ObjLoad1.actionPerformed(ObjLoad1.java:230)
         at java.awt.Button.processActionEvent(Unknown Source)
         at java.awt.Button.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    pls help me

  • Creation of Custom Change Object

    Hi all,
    I tried to create a custom change object from tcode- SCDO,but its asking for name space,
    and even i dont know to create it like the tables it asking for.
    I have successfully triggered a WF using standard change Object,but am not able to create custom
    Change object.
    Any one of you if have answer please help me.

    Hi Nivedita Yadav,
                               go through this link.
    http://sample-code-abap.blogspot.com/2008/02/applying-change-document-technique-on.html
    Regards,
    Dheepak
    Edited by: dheepak on Jan 21, 2009 4:03 PM
    Edited by: dheepak on Jan 21, 2009 4:28 PM

  • [CS3 JS] Find/Change Object Problem

    app.changeObjectPreferences = NothingEnum.nothing does not seem to clear the change object preferences for me.
    app.findObjectPreferences = NothingEnum.nothing works as expected, as do both app.findTextPreferences = NothingEnum.nothing and app.changeTextPreferences = NothingEnum.nothing.
    Does anyone else use the new Find/Change Object?

    Hello. I'm new here but it seems to be the only place where I can post this question to.
    I'm working in a C# application that uses InDesign CS3 scripting. I'm trying to create an index automatically from a tabbed list of words in a text file.
    As C# is a strongly typed language, I have to cast all objects to the right type. I'm having problems when I try to add the page numbers to the created index entries using the following code (I've used the CreateIndexEntry.jsx scrip as a starting point).
    //Find all occurrences of the word or set of words (the topic name)
    ((InDesign.FindTextPreference) app.FindTextPreferences).FindWhat = topic.Name;
    InDesign.Objects foundTexts = doc.FindText(System.Reflection.Missing.Value);
    It's supposed to be an Array of Text objects (InDesign.Text) but when I try to cast each object using this
    //Code is forced because I've tried everything here
    //Loop through each finding and add page numbers to topic
    IEnumerator textEnum = foundTexts.GetEnumerator();
    while (textEnum.MoveNext())
    object text = textEnum.Current;
    topic.PageReferences.Add((InDesign.Text)text, InDesign.idPageReferenceType.idCurrentPage, System.Reflection.Missing.Value, System.Reflection.Missing.Value);
    I got the following exception (translated).
    text is not an InDesign.Text object (Interfaces doesn't match)
    So the question is what object type should I use to cast each object resulting by calling the Document's FindText method.
    Every suggestion will ve very welcome.
    Thank You very much.

  • Find/Change object size width

    Hi guys,
    So this is the problem:
    I have over 900 pages long catalog and I made a little changes to a textframe options and other object styles, but bottomline is that now I have to change all the textframes width to 62 mm (its now 61 mm). I have tried the Find/Change "Object" options, but I just can't find the right way to do it. Is it even possible to do it with the Find/Change Object? I have to change over 6000 textframes manually if this dosen't work :/
    Do I have to do this with Grep scripting and how is that possbile if I have to do it with it?
    Thanks beforehand if you reply to this problem!

    Ha!
    I found the solution(ish), basically it's possible to change object dimensions with the "Find/Change Object". Thanks Bart Van de Wiele for the "Columns Fixed width" tip.
    ."Find Object Format" -> What kind of "Object style" you are looking for and then put "Text Frame Options" -> Width (exp. 55 mm)
    "Change Object Format" -> go to "Text Frame General Options" -> "Columns: Fixed width" -> width (exp. 56 mm, I have 3 mm inset spacing left&right so 56 + 6 is 62 mm).
    Change the desired textframes, BUT THEN you have this kind of problem where you can not change the textframes width sizes because they are "fixed sized".
    Click one of the changed textframes and go to "Style options" where you get that "+" -sign. Click in the options "Clear overrides".
    Now you have changed the all desired textframes and you can change the width too.

  • Find/Change object size

    We have a document where each page header/number needs to be changed to a different language. We can find change the text ok but when the text is changed the text box is too small. Unfortunately the headers are not on master pages and the colours vary depending on the background colour.
    How can we do a find/change for the size of the text box?
    We want a text box of size 5mm x 20mm to change to 5mm x 35mm, expanding to the right.
    As far as I can see there is no way to do this with the inbuilt find/change object. Any ideas?

    I think you're doing it a weird way, but who am I to criticise, I've done far weirder things.
    If you don't want to add this to the master page then that's fine, I think you'd be better off and it would make things easier in the long run.
    For changing the width of a frame you'd need a script to that, and I really cannot help you on that one, scripts are not my forté.

  • Changing Object Selection

    Hi SDN,
    How can I change object selection for a callable Object that has its source form a webDynpro application?
    eg.
    Per_Address_US (from package: com.sap.xss.hr.per.us.address)  to
    Per_Address_IN (from package: com.sap.xss.hr.per.in.address)
    Thanks,
    Vamshi

    Hi,
    Check the following links for ESS,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    /people/srinivasarao.gv2/blog/2005/06/11/configuring-ess-in-sap-enterprise-portal-60
    /people/siddhartha.jain/blog/2006/04/10/configuring-the-business-package-for-employee-self-service-ess-mysap-erp-2004
    /people/sap.user72/blog/2003/08/18/going-live-with-ess

  • Changing Object Selection in Guided Procedures(ESS)

    Hi SDN,
    How can I change object selection for a callable Object that has its source form a webDynpro application?
    eg.
    Per_Address_US (from package: com.sap.xss.hr.per.us.address)  to
    Per_Address_IN (from package: com.sap.xss.hr.per.in.address)
    Thanks,
    Vamshi

    Hi,
    Check the following links for ESS,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/21eb036a-0a01-0010-25a3-b2224432640a
    /people/srinivasarao.gv2/blog/2005/06/11/configuring-ess-in-sap-enterprise-portal-60
    /people/siddhartha.jain/blog/2006/04/10/configuring-the-business-package-for-employee-self-service-ess-mysap-erp-2004
    /people/sap.user72/blog/2003/08/18/going-live-with-ess

  • Change objects in database

    Hallo,
    I've an oracle sqlj type, which implements the SQLData interface. To use it in a Java application, I use an other implementation of SQLData, which calls the methods of my oracle object via JDBC. So the functionallity is done in database.
    In my java application, I get the database objects with queries like this and bind the results to my java class.
       SELECT objectX
       FROM tableX
       WHERE id = x;Now I want to call member procedures of my object type (which eventually are executed in database). These procedures change some of the attributes of my oracle type. According to the documentation, it is necessary to call an update statement in the server implementation, to write these changes to the database. The code could look something like this:
       PreparedStatement pstmt = conn.prepareStatement
        ("UPDATE tableX     SET objectX = ?    WHERE ID = x");
       pstmt.setObject(1, obj);   // obj is java representation of objectX
       pstmt.executeUpdate();So far it works fine. The problem is, that my oracle object itself must know about the query, it originates from. Is there any way, to update the changed object in database without this knowledge?
    My ultimativ goal is a member procedure in the server implementation like this:
        void writeObject() {
           PreparedStatement pstmt = conn.prepareStatement
           ("UPDATE ?");
           pstmt.setObject(1, this);
           pstmt.executeUpdate();
        }I hope, my problem is clear and you have any ideas for me.
    Thanks, Christian

    Christian,
    Are you aware of the JPublisher utility? Once you have types defined in the database, JPub can generate Java classes that map to the defined types. To learn more, check out the online doc at http://download-west.oracle.com/docs/cd/B10501_01/java.920/a96658/toc.htm.
    There are many examples in the doc to give you better picture of how it works.
    Regards,
    Geoff

  • Why org vaues is not updating the Changed Objects

    hi all,
    we have a master role with some some objects as maintained and some as changed  and some as standard.
    when i derived some 10 child roles and added org values. this org value is not pusing for the changed objects, even when i add it in the field, once if i make any other  modification in the master role and distribute it to child roles then all the org values for the changed objects are going to blank again
    so, org values wont push or work for changed objects?  please help
    thanks,
    SSS

    >
    sun wrote:
    > can you tell the difference between maintained and changed in PFCg
    >
    Hi Sun,
    Is it a coincidence that the objects having ORG level fields are in changed state in the master role or is it becasue of the SAP feature?
    When we directly maintain ORG fileds in objects and NOT in the specified ORG window, then
    first - > the object status goes to changed
    second -> when you create derived roles, that field will not be maintained in the derived role even though you maintain ORG values in derived roles. The value maintained in the master role is passed to the child role.
    What you need to do is follow what Jurjen said..... first ... fix the messed up master role, and then maintain the ORG values in the derived roles.
    Hope this helps
    Abhishek

  • Change Object ID in EP 6.0

    Does anybody out there have a tool that can change object IDs? I want to change iView and page ids and I know people at SAP has this kind of tool. If anybody out there has it please let me know. It would make myself so much easier. thank you in advanced.

    Hi Jeremy,
    the situation didn't change since beginning of November, and my words (it would be great also to offer the read/write version) seem to be unheard.
    The read version is offered here: https://www.sdn.sap.com/sdn/downloaditem.sdn?res=/html/PCDInspector_download.htm
    The read/write version is offered by your best friend at SAP
    If this one doesn't exist, you can try to follow Dagfinn's hint.
    Hope it helps & have a nice weekend
    Detlev

  • Re: change object

    Hello,
    I don't know what is this change object concept(cdhdr,cdpos).Please can anybody explain clearly.
    rgds
    p.kp

    Hi paluri,
    "CHANGE DOCUMENTS" in SAP Terminology
    Eg. :
    Any change
    in the material master will be detected
    and a mail will be sent to the concerned
    employee.
    THIS WILL ALSO DETECT WHICH FILEDS HAVE CHANGED.
    IT CAN ALSO GIVE, The Old Value, And The New Value.
    2. This Mechanism is called CHANGE DOCUMENTS in
    SAP Terminology
    3. 2 Fuction Modules are Required.
    (They will fetch necessary data from CDHDR,CDPOS)
    CHANGEDOCUMENT_READ_HEADERS
    CHANGEDOCUMENT_READ_POSITIONS
    4. The First FM gives list of all
    records ( with change no) which have changed.
    5. Loop at the above and the second FM will
    provide the details (old-val, new-val) for
    each record.
    6. While using 1st Fm, give docclass as 'MATERIAL'.
    BCOS
    the concept of change documents is applicable
    to other type of documents also (depends upon
    customization)
    The tables are
    cdhdr  (header table)
    cdpos  (detail table)
    HOPE THE ABOVE HELPS.
    regards,
    amit m .

  • Changing object names during expdp or impdp

    I'm curious to know if expdp or impdp is able to change object names during the process. What I mean by this is... can I export out procedures:
    procedure1
    procedure2
    procedure3
    Then import them like this:
    test_procedure1
    test_procedure2
    test_procedure3
    I'm not sure the expdp or impdp has that ability, but I could have missed it. I know how to remap a schema, but that only changes the schema name.

    You can refer below link for example
    http://www.dba-oracle.com/t_data_pump_sqlfile_parameter.htm
    http://www.iselfschooling.com/board/index.php?topic=355.0
    Regards,
    http://www.oracleracexpert.com
    Oracle Premier, Extended and Sustaining Support Info
    http://www.oracleracexpert.com/2013/02/oracle-premier-extended-and-sustaining.html
    ORA-07445 exception encountered, ORA-04030 out of processes memrory
    http://www.oracleracexpert.com/2013/02/ora-07445-exception-encountered-ora.html

  • How to change "Object Causes Wrap" and a "Picture Frame" as a default properties when importing images in Autor

    When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
    I don't want that and couldn't find where can I change it in the Preferences. Anyone has an idea?

    I've sent a feature request for a new version of Author:
    When I place images in iBook Author, they are automatically assigned these properties: "Object Causes Wrap" and a "Picture Frame" stroke.
    It would be great if I could be able to change it in the Preferences to "No wrap" and "No Frame" so I don't have to manually adjust every single image of my book - there are lots of them.
    It would be really nice if Author implements "Layer's" concept like almost all graphic programs like Photoshop, Flash, Illustrator, etc.

  • Changing object directory entry from $TEMP to a different package

    I have saves SAPscript in $TEMP. How do I change it to a particular object directory ?
    Thanks.
    Regards,
    Tushar.

    Rajesh,
    Go to SE80 -> Give Development class = $TMP
    and you get all the objects under that class, select the desired object and right click on that one, you can see REASSIGN.. if you entered the desired development class then it will be reassigned.
    Suresh

  • How to change objects in object library?

    I saved an object in the object library and used it as parent object to create some subclass objects in several form modules. Now I want to modify the object in the object library so all the subclass objects can inherit the changes made in the parent object. How can I change the object saved in the library?

    1- Open New Form
    2- Drag the object you want to modify to it
    3- Modify it in the opened Form
    4- Drag it back to the Object Library
    Rem: Be sure all Forms that are using this object are closed when you start this procedure.
    Hope this help,
    Ahmed.

Maybe you are looking for

  • Initialized on a Mac but want to use on a PC

    We bought the new 30 gig iPod in Phoenix when we were there visiting friends. Our friend initialized it and loaded all of her music onto it from her Mac. When we got home and tried to connect it to our PC it does not recognize anything. We can't "Res

  • IWeb won't open--has error message

    iWeb is on my dock...when I click the icon this error message appears: Can't open file "~/Downloads/session-2.cgi." I have two large websites on it and can't lose all my work! Help!

  • /usr/lib/libjpeg.so.62 seems to be missing

    After an upgrade, various applications, such as KDE, Amarok, and wine complained about libjpeg.so.62 missing. I checked /usr/lib...and libjpeg.so.62 is missing, even though I have libjpeg installed. How do I fix this?

  • Workflow Permissions with Custom 2013 workflows

    Hello,  A user can design and publish a workflow.  However, unless they are a Site admin the workflow never kicks-off. I've tried manually triggering and triggering when a new item is added to a library. The workflow I am using for testing purposes i

  • Facing problem in Layout-BPS 4.O

    Hi All, I am facing one problem in BPS Layout...   The problem: Some Company codes are valid entire the year and some company codes are not valid entire the year (valid few months in a year) (Ex:Comp Code:ABC(Valid thru 01/2008-12/2999) and Comp Code