Smartform-NACE-Local Object

Hi Folks,
I have a program which is a local object(not assigned to any package).
I am developing a smartform which needs to be called through this
program.Without attaching it in NACE can we be able to call this
smartform in the program which is declared as a local object.
I don't want to create any transport request but wanna test the smartform with a program which is a local object.
Thanks,
K.Kiran.

Hi Folks,
Kindly Opine.
I was able to test the Script through a program(local object) without attaching it in NACE.Can't we able to test a smartform in the same way.
Thanks,
K.Kiran

Similar Messages

  • Changing smartform from local object to a transport request

    Hi ,
          Can any one please let me know how to change  smartform from local object to a transport request.
    Regards,
    Ashok kumar

    Hi,
    GOTO transaction SMARTFORMS.
    Enter the name of the smartform.
    Then GOTO -> OBJECT DIRECTORY ENTRY.
    There give ur package then it will ask for the request.
    Then create the request.
    Hope it helps u.
    Regards,
    KK

  • How to get Date Format from Local Object.

    Hi All,
    I am new to Web Channel.
    I need to know Date format From date of locale.
    suppose there is a date "01/25/2010" date in date field I want to get string "mm/dd/yyyy". Actually I have to pass date format to backend when I call RFC. 
    Is there any way to get Date format from "Locale" object. I should get date format for local object
    I get local object from "UserSessionData" object but how to get Date format from it.
    I am not looking for Date value. I am looking for current local date format ("mm/dd/yyyy or dd/mm/yyyy or mon/dd/yyyy) whatever local date format.  I could not find example which show how to get date format from "Locale" object.
    Any help will be appreciated with rewards.
    Regards.
    Web Channel

    Hi,
    You can get it from "User" or "Shop" business object.
    Try to get User or Shop Business Object as shown below.
    BusinessObjectManager bom = (BusinessObjectManager) userSessionData.getBOM(BusinessObjectManager.ISACORE_BOM);
    User user = bom.getUser();
    char decimalNotation = user.getDecimalPointFormat().getGroupingSeparator();
    If you are seeing "1,234.00" then above code will return "."
    I hope this information help you to resolve your issue.
    eCommerce Developer.

  • How to append contents of a local object to dynamic internal table ?

    Dear ABAP-Specialists,
    i am trying to append contents of a local object to a dynamic table. The most relevant lines are the ones written in bold
    I guess the append is the problem due to the reason that a unknown format has to be assigned to a fixed format somehow.
    +METHOD wddomodifyview .+
      +DATA lo_ui_root                TYPE REF TO  if_wd_view_element.+
      +DATA lo_container              TYPE REF TO  cl_wd_uielement_container.+
      +DATA lo_table                  TYPE REF TO  cl_wd_table.+
      +DATA lo_table_column           TYPE REF TO  cl_wd_table_column.+
      +DATA lv_tabname                TYPE         tabname.+
      +DATA lt_output                 TYPE TABLE OF sychar512.+
      +DATA lo_data TYPE REF TO data.+
      +DATA:+
        +lo_node_output_data                    TYPE REF TO if_wd_context_node,+
        +lo_node_table_list                     TYPE REF TO if_wd_context_node,+
        +lo_node_differences                    TYPE REF TO if_wd_context_node,+
        +lo_node_output                         TYPE REF TO if_wd_context_node,+
        +lt_all_elem_differences                TYPE        wdr_context_element_set,+
        +lo_elem_table_list                     TYPE REF TO if_wd_context_element,+
        +lo_elem_differences                    TYPE REF TO if_wd_context_element,+
        +ls_differences                         TYPE        if_table_differences=>element_differences,+
        +lt_differences                         TYPE STANDARD TABLE OF if_table_differences=>element_differences.+
      +FIELD-SYMBOLS:+
                     +<ls_output> TYPE ANY,+
                     +<lt_output> TYPE ANY TABLE.+
    +     ....+
        +*CREATE DATA lo_data TYPE TABLE OF (lv_tabname).*+
        +*ASSIGN lo_data->* TO <lt_output>.*+
        +*LOOP AT lt_differences INTO ls_differences.*+
    +**      APPEND ls_differences-ct_line TO lo_data->*.*+
        +*ENDLOOP.*     ....+
    +ENDMETHOD.+
    Thanks a lot in advance for your Ideas.
    Best regards
    Carsten Klatt
    Please post in the correct forum and use code tags to format your code
    Edited by: Rob Burbank on Oct 1, 2010 1:27 PM

    This might help - you should not reference the data reference directly:
    DATA: lt_t001 TYPE TABLE OF t001,
          ls_t001 TYPE t001.
    DATA: lr_dref    TYPE REF TO data.
    DATA: lv_tabname TYPE tabname.
    FIELD-SYMBOLS: <lfs>      TYPE table,
                   <lfs_line> TYPE ANY.
    lv_tabname = 'T001'.
    TRY.
        CREATE DATA lr_dref TYPE TABLE OF (lv_tabname).
        ASSIGN lr_dref->* TO <lfs>.
      CATCH cx_sy_create_data_error.
    *     Do something
    ENDTRY.
    SELECT * FROM t001 INTO TABLE lt_t001.
    LOOP AT lt_t001 INTO ls_t001.
      ASSIGN ls_t001 TO <lfs_line>.
      APPEND <lfs_line> TO <lfs>.
    ENDLOOP.

  • A perticular Project automatically saving in the local Object

    Hi,
    I have an issue regarding ther local Object .. I have different projects need to save in Transport Requests. I observed a perticular project while saving it is generating a transport request number but saving in local object.
    Can you please give me more suggessions to solve this problem ...
    Thanks in advance ..
    Shashi,Samal

    Hi Shashi,
    If it is getting assigned to a TR then it can't be local object.
    Can you give some more details. Also which system, version you are on.
    Regards,
    Atish

  • 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

  • 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.

  • 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

  • Copying from client through se71 is getting saved as local object only?

    hi.
    i am copying the form from std to z form through se71.but after doing copy from client,it is getting saved automatically s a local objct $tmp.
    Also,there is no option enabled to save it to transportable object.
    in se80,in the object list also that object is not reflecting.

    check it
    Re: local object to transport request for a form
    just go to SE03  > object  Directory > change object directory entries

  • Problem in saving 'Z' develpments to Local Object

    Hi Experts,
    Let me explain my the client settings first -
    I'm working on a implementation project. We have a development server having four clients as 311 sandbox, 322 - customizing client (Without transactions and masters), 411 - Testing client and 422 as a golden master with all configuration and master data.
    The path is  322 >> 411 >> 422
    We do not have configured TMS till now.
    While i'm creating any 'Z' development whether report or table or do any changes on the 311 client i.e. sand box and saving it as a local object or save in a request the changes or newly created reports can directly affect the upto client master i.e. 422 without transporting the request.
    Because of this i'm facing problems as if i created any report just for testing on 311 i.e. sandbox it directly appears on every client without transporting request even when it has been saved in the local object. Also if i do any changes in any sap standard screen, program or in any object as per SAP notes on 311 they directly affects whole development system.
    Please guide me how to set the system landscape to avoide this.
    Thanks
    Amol

    Hi,
    all development and client independend customizing is visible at once at all clients of an SAP instance.
    You have create separate instances like YA1(100) = DEV; YA2(100) = TEST; and YA3(100) = PROD. As a customizing sandbox in DEV a separate cleient might be helpfull.
    All instances could be created at the same server in an early stage of the project. Later at least for production a separate server should be used.
    Some consultants with some experience could save costs in such a project.
    Kind regards,
    HP

  • 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

  • Cannot save query as local object

    Dear community,
    One of our users is not able to save a query change as a local object (not to be transported).  While another user is able to do this.
    Since we don't want the query changes to be transported, I must find a way to allow the save as local object in $TMP.
    An authorizations trace shows everything is OK from job role perspective.
    When the user changes a query in development and chooses "Save As", she is prompted for a transport.  At this time if she chooses "local object" then she is taken to the create a transport dialog.
    For another user this is not the case, and the 2nd user is able to save query changes locally without a transport request.
    Any thoughts on what might be the cause for this ?

    Hi Keith,
    without knowing the details of you system settings and the system where it happens (prod, dev, ...). One general remark:
    If you save a query lots of repository objects are generated an written to a transport request (i.e. structures, selections, ...), not only one for the query itself. Maybe in your case, the original query uses a globally defined structure in the columns or rows. If you now want to "save as" new query, many objects are checked for transportation. The global structure can not be saved as local object, because it was already transported before. Whilst the new query itself can be stored as local object. Means not all objects of the new query can be saved as local, because some are already transported.
    One way to check if this could also be your problem, both of your mentioned example users should try to save exactly the same query as new local query.
    Regards
    Adios

  • How to attach a smartform in BOR object

    Hi,
    I want to know how to attach a z smartform to BOR object? I tried to search out here but not able to have the result.
    Kindly provide the guidelines for it....
    Regards,
    Rickky

    Hi,
    In the BOR object, create a method say display_SF. Now in the ABAP properties for that method give "OTHER" option.
    Now in the BOR object, you can find the program which is used. Inside that program, You need to write the code to fetch the required data (ONLY BASIC REQUIRED DATA WILL BE ENOUGH) and call the smartform by passing all the print parameters and all the required data for that smartform.
    Now inside the smartform, with imported required data, you can write all the logic and data fetch etc for the printouts.
    The following sysntax can be used to fetch the required data into the method and can use to pass the same while calling the smartform.
    SWC_GET_ELEMENT CONTAINER 'Plant' PLANT.
    Regards,
    Harish

  • 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..

  • Request  Or local object ?

    Hi all,
    Let me explain the scenario. I have to two fields to my existing customizing report. they have used some global structure in that i have added two fields . for testing purpose i have copied the same report and saved as local object its working with updated fields in OOALV.
    After that i have made the same changes in my original report and saved under some request now its not working . Even i have copied all the lines from local object then also its not working. Could any one of you please resolve my issue..
    thanks in advance...
    regards
    Vardhan.

    Hi,
    I am sure u missed some thing while copying. Just debug both programs parallelly and see where is wrong.
    Single statement can cause the difference.
    U can also compare the programs in parallel screens using tcode SE39. Check this and get back in case of issues.
    Thanks,
    Vinod.

Maybe you are looking for

  • Print Bold Character in Character Mode Report

    I design report in character mode. but i want to print one filed in bold character and one column with underline. i am using epson lq-2180 printer. i tried to use printer file code but it is not working. so can anyone help me. if possible than write

  • Service order number range creation

    Hi, Could anyone please tell me how can we create service order number range if we have done a new service order type creation, and what should we do: should we create the number range in development and then transport it to the production or we shou

  • Error installing premier elements 10 on mac pro

    installation error when installing adobe premier elements 10 on new mac pro: Receive the following errors: Error DW050:  Smartsound 3 install failed Error DW050: Photoshop Camera Raw fr Elements 10 install failed Error DW050:  Adobe premiere elemets

  • Published message could not be routed because no subscribers

    I have avery basic BT application , very simple Orchestration, Receiveshape, Transform shape and send shape. the schema is validated and generated an instance. Compiled the application, created 1 receive port and 1 send port which are bound tp the 2

  • Need SQL statement to generate a sequence number in the output rows

    Hi folks. I need to create an SQL statement that generates a sequence number column in the output rows (records) such that the first returned row has this column set to 1, second returned row has the column set to 2, etc. For example, consider the qu