Re: converting local object to a package

hi to all,
i developed asmartform and saved as alocal one.
  but now i want it to assign to a package.
thanks for ur reply.
is there any way to change the name of the existing smartform without copying?
help me in this regard
  thanks
  sun
Message was edited by: sun deep

Hi,
From SMARTFORMS initial screen, goto--> object attributes, now go to the change mode and enter your package name. Save it , you`r done.
Reward if helpful.
Regards

Similar Messages

  • Script-change from local object to package

    Hi Experts,
       I have created a script.My problem is i have saved the script in local  object,but i want in  package.
                How to change from local object to a package? Pls advice me on this issue.
    With Regards,
    Sharmila.S

    Hi,
    Go to SE03.
    Go to Object Directory-->Change Object Directory Entries
    Put the object type as FORM and press enter.
    Then enter the sap script name in the object name.
    Run and then change the package.
    Regards,
    Ankur Parab

  • A question about creating packages as local objects in ABAP

    Hi,
    I have a question about creating packages with SE80. Whenever I create a new package it is assigned a new transport request. After that, I can create new programs inside this package, and each time I can choose whether to assign the new program to a transport request or just save it as a local object (I often do this for test programs that I don't transport and I remove them once my tests have been done).
    What I would like to ask is that, is it possible to create a package (and not just programs inside a given package) as a local object? so that every new object created in this package will be considered as a local object?
    Thanks in advane,
    Kind Regards,
    Dariyoosh

    Thomas Zloch wrote:
    Please also check the F1 help for the package field e.g. in SE80, SAP standard is in range A-S and U-X, namespaces start with "/", so you should be save. I am using the T namespace for temporary stuff since a long time and did not have a problem so far.
    > Thomas
    >
    > P.S. this applies to the package name only, of course
    Thank you very much for this remark, I checked F1 help for the package field and in fact as you mentioned these ranges are for local objects.
    Once again, thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • Screen 910 getting saved in Local object - not even asking for Package

    Hi ABAPers,
    I am using Enhancement CONFPP07 and for this created Z project in CMOD.
    When I am creating the screen 910 for the screen exit SAPLCORU_S of that Z Project, that 910 is getting created in Local object not even asking for the Package and the request.
    I tried to create that screen from the SE80 in the function group XCOF, there also it is getting saved in local object.
    I tried to do it from SE51 also, but arrived that screen in the local object only.
    Please Suggest me with your valuable comments.
    Thanks and Regards
    Pinaki Mukherjee

    Do a version management on the screen and see if it was ever created before and then deleted. If so, reassign it to the package you want.
    Rob

  • SPECIFY THE PACKAGE OR FLAG IT AS A LOCAL OBJECT

    Dear Experts,
    My info packages are getting failed for the Z data sources with the below given error message.
    Please guide me to resolve this issue at the earliest, as it is related to production system.
    Error Message:
    The object R3TR AQQU SYSTBWGENER0SY000000000095 does not exist
    Assign a package
    Specify the package or flag it as a local object
    Job cancelled after system exception ERROR_MESSAGE
    Thanks and Regards,
    Suresh Reddy.

    Hi,
    some notes/patches are applied your ECC. so its shows your objects are in $Tmp.
    Your error indicates that name which it specified it exist in $TMP package.
    How to check whether its in $tmp or not.
    ECC side, RSA6--> double click on data source-->double click on extract structure--> menu go to--> direct object entry.
    or
    at BW prod, go to RSA1->transport conection,
    Find your data source or source system and drag into right pane,
    You can see package as $tmp.
    Can you check at dev system, if its works well there,
    please do the follow things.
    1. Collect ecc data source into transports move up to prod.
    2. Replicate transported data source from ECC prod to BW Prod.
    3.Collect data source form bw dev into transports move upto prod.
    4. Once your data source was active bw prod, try to run your info pack. it it works then no issue.
    if its required you can transport whole further data flow like target,transformations,info pack and dtp.
    Thanks

  • Package and local object?

    Hello Gurus,
    While crating condition table(M/03), I am selecting field combinations(vend, plant, matl etc). After that, I am clicking on Generate button, it is asking me package name(pop up window). If i m avoiding that and clicking on local object, it is allowing me to create condition table.
    My doubt is :
    what is the use package name and local object in this context and why it is asking?

    Hello,
    You have to assign all the transportable development objects to any package (formerly called Development Class) and then only it becomes transportable. If you assign to $TMP package, then it will become local oject which is not transportable and no change request will be generated when your try to save the object.
    Package is nothing but a logical grouping of development objects.
    Thanks,
    Venu

  • Local object to transport request for a form

    Hi,
    I have a form saved as local object and want to convert it as transport request.
    how to save this form created by se71 as a transportable object.
    thanks!

    Hi,
    I dont think this can be done through SE71.Please follow the following procedure.
    First create a new Transport request in SE01.
    Goto SE80-->Local objects
    Here right click on your object name and reassign the package to your desired package name.
    Here it will ask for the Request.Give your previously request here.
    This will assign your form to the new request you created.
    Regards
    Avinash

  • How can I convert table object into table record format?

    I need to write a store procedure to convert table object into table record. The stored procedure will have a table object IN and then pass the data into another stored procedure with a table record IN. Data passed in may contain more than one record in the table object. Is there any example I can take a look? Thanks.

    I'm afraid it's a bit labourious but here's an example.
    I think it's a good idea to work with SQL objects rather than PL/SQL nested tables.
    SQL> CREATE OR REPLACE TYPE emp_t AS OBJECT
      2      (eno NUMBER(4)
      3      , ename  VARCHAR2(10)
      4      , job VARCHAR2(9)
      5      , mgr  NUMBER(4)
      6      , hiredate  DATE
      7      , sal  NUMBER(7,2)
      8      , comm  NUMBER(7,2)
      9      , deptno  NUMBER(2));
    10  /
    Type created.
    SQL> CREATE OR REPLACE TYPE staff_nt AS TABLE OF emp_t
      2  /
    Type created.
    SQL> Now we've got some Types let's use them. I've only implemented this as one public procedure but you can see the principles in action.
    SQL> CREATE OR REPLACE PACKAGE emp_utils AS
      2      TYPE EmpCurTyp IS REF CURSOR RETURN emp%ROWTYPE;
      3      PROCEDURE pop_emp (p_emps in staff_nt);
      4  END  emp_utils;
      5  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY emp_utils AS
      2      FUNCTION emp_obj_to_rows (p_emps IN staff_nt) RETURN EmpCurTyp IS
      3          rc EmpCurTyp;
      4      BEGIN
      5          OPEN rc FOR SELECT * FROM TABLE( CAST ( p_emps AS staff_nt ));
      6          RETURN rc;
      7      END  emp_obj_to_rows;
      8      PROCEDURE pop_emp (p_emps in staff_nt) is
      9          e_rec emp%ROWTYPE;
    10          l_emps EmpCurTyp;
    11      BEGIN
    12          l_emps := emp_obj_to_rows(p_emps);
    13          FETCH l_emps INTO e_rec;
    14          LOOP
    15              EXIT WHEN l_emps%NOTFOUND;
    16              INSERT INTO emp VALUES e_rec;
    17              FETCH l_emps INTO e_rec;
    18          END LOOP;
    19          CLOSE l_emps;
    20      END pop_emp;   
    21  END;
    22  /
    Package body created.
    SQL>Looks good. Let's see it in action...
    SQL> DECLARE
      2      newbies staff_nt :=  staff_nt();
      3  BEGIN
      4      newbies.extend(2);
      5      newbies(1) := emp_t(7777, 'APC', 'CODER', 7902, sysdate, 1700, null, 40);
      6      newbies(2) := emp_t(7778, 'J RANDOM', 'HACKER', 7902, sysdate, 1800, null, 40);
      7      emp_utils.pop_emp(newbies);
      8  END;
      9  /
    PL/SQL procedure successfully completed.
    SQL> SELECT * FROM emp WHERE deptno = 40
      2  /
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM
        DEPTNO
          7777 APC        CODER           7902 17-NOV-05       1700
            40
          7778 J RANDOM   HACKER          7902 17-NOV-05       1800
            40
    SQL>     Cheers, APC

  • How to pass a locale object into another function?

    Greetings,
    i like to pass a locale object into another function. These are my code below
    import java.util.*;
    public class Locales{
         public static void main(String[] args){
              Locale locale= new Locale("EN", "US");
              convert(locale);
    public void convert(Locale convert)
         String language = convert.getDisplayLanguage();
         System.out.println(language);          
    }I got this error:
    Locales.java:6: non-static method convert(java.util.Locale) cannot be referenced from a static content
                    convert(locale);
                    ^How do i correct it?
    Thanks

    Did you bother to do a search?
    Did you bother to read any of the material that the search would have linked you to?
    If you had then you would be able to understand where you are going wrong and how to fix it yourself. Instead of being spoonfed by us.

  • Cancel 'Local object' status

    Hi Everybody,
    During installation of DataSource from Business content (RSA5), the status of DataSource was accidentally switched to 'Local Object'. As a result it's not possible to modify the DataSource in Customizing cockpit (LBWE) and replicate it to BW.
    Is there any way to revoke 'local' status and setup the DataSource for transfer to BW?
    I would appreciate any help.
    Mike

    Option "Object directory entry" should be able to change the package;however if you are at the start of project and in Sbox/Dev ,try deleting these DS in RSA6 and re-installing from RSA5,saving it in proper package and then replicating the DS in BI.
    Hope it Helps
    Chetan
    @CP..

  • Change local object

    Hi I have a process chain in already in Production. I made few changes in Dev for testing and saved as local object. Now, I need to transport those changes to prod. So, I need to change in BW package not in local object. I I don't know how to change it..I am deleting the changes and redoing it to see if the pop-up would come so that I can save not in local object...but it's not poping up anything..could anyone please help me.
    thanks.

    So if you follow the steps that I wrote, you will not actually be doing the transport...it will just collect all objects required to do a successful transport (variants, processes and InfoPackages etc). At the top will be the process chain name. You can select it and right click and choose Change Package. When you chnage the package and save, it will pop up for the request. Assign the same request to all other objects that may be $tmp. Then you can hand over this request number to your Basis team.
    Hope this helps...

  • LOCAL OBJECT....

    hi frnds,
    i have assigned one enhancemnt to project. in that screen exit is stored as a local object and package name as ME and Owner is SAP. now i need to transport this to prodction. its not allowing to create the new request as well as changing the Package name.
    except this screen exit, all other things.. like include tables and function exits are moved into prodcution.
    points will be rewarded for helpful answers.
    regards,
    Balu

    Hi KBS,
    Please follow steps mentioned below
    1. Go to transaction CMOD and enter your enhancement
       (Don't press enter or and any other function)
    2. Now on the same screen i.e CMOD screen click on
       following standard menu path
         GO TO -> Object Directory Entry
    3. On the pop window box..click on pencil icon to switch
       to change mode
    4. Now change the directory from local to your package
    5. It will ask for request while doing so...lock in some request and transport the same to production.
    Hope this solves your problem..let me know if you any prob in this...
    Enjoy SAP.
    Pankaj Singh

  • About local object

    Hi,
      I don't know if here is the place correct to ask this but maybe someone can help me. Where can I see the local objects?? Because I save a program in local object but I need it to change the package but I can't.
      Well I hope someone can help me
    Thanks

    go to tx: se80
    on left side select local objects
    and give your login name
    you will get list of objects saved locally by this login
    to change package:
    right click(context menu) on your object(program etc)->more functions->change package.
    regards
    Message was edited by: Hemendra Singh Manral

  • Local Object Program Transport to Request

    Hi Friends,
    I was created one "Z " Report  in local object package and Created new Request . But I do not know how to transport local object package to Request package.
    Please give me clear information,
    Thanks
    Saravanan R

    Hi Saravanan,
    open your code in SE38.
    then in menu bar click GOTO->OBJECT DIRECTORY ENTRY
    it will now show you the current package which y\would be $TMP for you.
    change it to a package. click F4 on that field if you have a Z package better use it.
    then when you click save it will ask you a transport request number. either you can select a transport request which you have created before or you can create there it self clicking the create button.
    after the TR is assigned, activate the code again.( as now it will be inactive status)
    now you can release the TR from TCODE: SE01 or SE09 or SE10. for releasing you have to release the task first and then the TR.
    after it is released you can import it from the server to which the target has been set.
    Hope this helps
    Somu

  • How to change local object to own dev class

    in the table maintenance generator my object is stored under local object how to change loacal object to our own development class and how to change the function group in table maintenance generator

    Hi Narendra,
    In order to change the function group, you need to delete the table maintenance generator first.
    Then you create a new table maintenance generator.
    To change the package of your object :
    1. for Function Group
       - tcode SE80
       - right click on the Function Group
       - choose : More Function - Object Directory Entry
    2. for Table / Function Module
       - tcode se11 / se37 / se38
       - in the upper menu : choose : Goto -- Object Directory Entry
    Hope this helps.
    best regards

Maybe you are looking for

  • What mac to get?

    I am debating between the 15" and the 17". I record audio and video and stuff. Logic/Final Cut, etc... Do I need the expresscard/34 thing so I can do SATA? Do I use that for an external HD or for the interface? Give me advice. peace.

  • Firefox sync gets as far as code then the next button is greyed out so i cant click

    when i try to sync my laptop i click on already got account and it then gives me a code to use but i cant click next as the box is greyed out i have tried all versions of firefox and the same

  • Oracle Apps Integrationn Question

    We are planning to integrate our corporate website with Oracle Apps for creation of Appointment/Task,I have the following questions 1)How the security is to be taken care of if we want to call the Oracle API via database link or some gateway? 2)The c

  • ITunes corrupting music?

    I've been using iTunes for a long time now, but am just so fed up with it and have naturally moved on to Enqueue. However, it still affects me because the other music software takes the files from the iTunes folder, and my iPhone still has to sync, s

  • Iw56-action box

    Hi We have a below requirement We are using IW56 for creating service notification. In the service notification,header tab,we use service order function,create to do autamatic service order creation iw31 . We would require to use this function in act