Query regarding Application form

Hello,
         If it is possible to change form class of application form??
         Please suggest me.
Thanks,
Tiya

Hello Sanjeev,
     I want to change form class of application form and when after selecting radio button of form class
     i click on change mode error message popup
     Change mode permitted for original language DE only
     by following this i try to change language to DE Edit->Set Language,even though language can,t
     change to DE and i m unable to open form class in change mode.I follow TCODE:EFRM.

Similar Messages

  • Query regarding smart form

    hi all
    how to use existing purchase order smart form...whats the name and whats the print program for that.
    rgds
    anu

    Smartform of PO....
    check this thread.
    in ECC5.0 smartform name :  /SMB40/MMPO_DE.
    for smartforms,you no need to have a seperate print program.total logic will be inside of the smartform(function module).
    Regards,
    Srikanth.
    Message was edited by: Srikanth Kidambi
    Message was edited by: Srikanth Kidambi

  • Query regarding Application Classes.

    While going through the Application classes, I've come accross a code where a Property is defined without a name as follows.
    class BusinessUnitOptions
    property boolean get;
    end-class;
    Can anybody tell me how it works and what is the concept behind it?
    Thanks & Regards,
    Saurabh

    Actually Saurabh, PeopleCode is usually quite strict about the use of keywords. For example, error is a keyword. As such, error cannot be a method of a class. On the other hand, just for a test, I created a class with the methods get(), class(), private(), boolean(), Record(), and CreateRecord() and was able to call those methods from a test program. I tried creating methods named if and error, but those keywords won't compile. Just for fun, I tried creating functions named boolean, class, and private. The functions compile, but I can only call boolean. Even though the class and private functions compile, the code that calls them wont.
    Even though it works, I strongly discourage the practice of using reserved words for method and function names. I'm sure you already know this, but I just want to make it clear to all who read this thread.

  • Query regarding Application Classes - 3

    While going through Application Package EX, I noticed that most of the classes are extending other classes, while some are actually implemeting some classes..
    class ExpenseReport extends EX:Business:Transaction
    end-class;
    class ExpenseReportLine implements EX:Business:TransactionLine
    end-class;
    Initially when I came accross this, I percieved TransactionLine to be an Interface. But upon opening its code, it came out to be a Class.
    Can anybody tell me what is the differencr between extending a class and implementing a class ??

    From ExpenseReportLine, you would think that ExpenseReportLine implements the interface EX:Business:TransactionLine. That is the intent of the implements keyword. If a programmer uses implements then you expect the following name to represent an interface. PeopleCode, however, treats implements and extends the same. In PeopleCode, an interface is actually a shorthand method for declaring a class where all methods are abstract. Put another way, a class that declares all methods as abstract is an interface. Perhaps the base class started as an interface and then the programmer converted it to a class?
    When writing your own code, use implements for interfaces and extends for inheritance. Likewise, use the interface keyword to create interfaces. Don't create classes where all methods are abstract.
    Coding is communication. Word choice is crucial to effective communication. I apologize for the incorrect use of words in these classes. In this case, the computer treats the code the same. Programmers communicate with two audiences: the computer and other programmers. In this case, it appears that the programmer effectively communicated with the computer, but poorly chose words for communicating with other programmers.

  • Query regarding Application Classes - 2

    While going through Classes of Application Package *"EX"*, I have seen that some of the class definitions have a semi-colon after the class-name like:
    class ExpenseHeader;
    end-class;
    While most of the classes are defined without the semi-colon.
    class Transaction
    end-class;
    {color:#000000}+Does this semi-colon make any difference?+{color}

    The PeopleCode AppClass API documentation is silent on this. See [http://download.oracle.com/docs/cd/E13292_01/pt849pbr0/eng/psbooks/tpcr/htm/tpcr07.htm#d0e16363|http://download.oracle.com/docs/cd/E13292_01/pt849pbr0/eng/psbooks/tpcr/htm/tpcr07.htm#d0e16363]. When creating your own classes, don't include the semi-colon after the class name (or implements/extends). When reading someone else's classes, ignore it. In this case, I would say the semi-colon makes no difference. I'm not the definitive reference on this, but that is how I would treat it.

  • Query regarding the fields details in particular form for all the users in

    Dear All,
                  I have one query regarding the fields details in particular form for all the users in company.
    Let take an exapmle if i had created Purchase Order having fields in content tab as 1.Item No. 2.Quantity 3.Unit Proce   4.Total   5. Location.
    While Login in User manager i set these fields only for Purchase order , but when i login from other user and open the similar purchase order the defaults fields are also seen including  above 4 fieds .
    Now my question is how to set the User choice fiels for the particular form that are common to all users.
    Means whenever i login in any user and opens the same document the same fields should be seen....Thanksssss.........

    You have to login with each and every user and do the Form Settings of every forms, so that all the forms look same for all the users.
    This is a manual job and you have do do it with every user login.
    Alternately, you can try out this link that explains
    [How to Copy One Screen Layout to Another User|http://www.sbonotes.com/2008/03/how-to-copy-one-screen-layout-to.html]

  • Help in Ad-hoc query and Hr form editor

    any body have material links of Ad-hoc query(it means how the reports are generated with Ad-hoc query) and Hr form editor(with examples) plz forward it to me???????????

    Hi,
    HR Ad Hoc Query is the special version of InfoSet Query with the HR object selection.
    You can find the system documentation here:
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/f9/cc9138e4a0341fe10000009b38f8cf/frameset.htm
    However I doubt the use of documentation of the query generator. So what is your concrete question?
    Or in any R/3 via application help of transaction SQ01.
    Also HR580 is a good course.
    Regards,
    Michael

  • How to implement enter-query , execute-query in Apex Forms

    Hi,
    I am new to Oracle Application Express. I want to know what is the equivalent of ENTER-QUERY and EXECUTE-QUERY features of Oracle Forms in Oracle APEX? I saw a lot of documentation, but everywhere I found that APEX forms only have 3 database actions, (1) INSERT (2) UPDATE & (3) DELETE.
    Does anybody know how we can do QUERY in APEX Forms? (like we do in Oracle Developer Forms).
    Thanks in advance.

    Oracle APEX is a web/ stateless environment. So you do not have the same functionality/ features as in a Oracle Forms environment which is session/state oriented.
    You can however achieve functionality similar to Enter Query / Execute Query through other means.
    The easiest is to use the Forms with Report wizard. It creates 2 pages, the first one is a report and the other a Form. Clicking on the Report rows takes you to the Form page in Edit mode where as the the Create button takes you to the Form in Insert mode.
    If you want to have the enter-query / execute query on a single page it will require significant effort and skills. Try it when you have acquired some more skills in Apex.
    In APEX , like any other web application, you have to think in the web paradigm and not client-server. Even Forms 11g is essentially client-server like and is session oriented through the forms applet.
    Regards,

  • Custom query button in form

    Hi there,
    I want to create custom query button in a Portal Application form component in 3.0.9. How do I do this? I need to perform a restricted where clause query, therefore the default doQuery option is not sufficient.
    Thanks in advance.
    John

    Hi John,
    You can add a new button from the "Formatting and Validation " section by clicking on the FORM+ at the top of all the table fields.You can not do your own where clause as the query is made which includes all the columns of the form as shown on the form .
    for your own queries what you van do is that you can leave the field blank if you do not want that field to be added in the where clause.If you want to add the field to the where clause you can use operators (against each field in there text boxes) to make your own where clause.More operators support are supported in the
    latest version.
    Hope this give you some Information regarding your doubt.
    rahul

  • Query regarding updation thru a Procedure

    Hi,I have a query regarding updation.
    1.I invoke a procedure in Oracle called submit thru my Java application.
    The submit procedure saves the XML data in the database
    and displays this data in a Front End GUI.
    2. Now,I make a change in my Java application by adding new elements to the same row.This row now contains additional XML elements.
    I would like to display the new row with the new elements in the GUI.
    What is a better option for doing the above?
    1.Delete the row being shown,save the new row with the changes in the database,and re display it?
    2.Or,Update the row dynamically and refresh?
    Any suggestions
    Thanks,

    Hi,I have a query regarding updation.
    1.I invoke a procedure in Oracle called submit thru
    my Java application.
    The submit procedure saves the XML data in the
    database
    and displays this data in a Front End GUI.
    2. Now,I make a change in my Java application by
    adding new elements to the same row.This row now
    contains additional XML elements.
    I would like to display the new row with the new
    elements in the GUI.
    What is a better option for doing the above?
    1.Delete the row being shown,save the new row with
    the changes in the database,and re display it?
    2.Or,Update the row dynamically and refresh?
    Any suggestions
    Thanks,If you delete (it seems to me yours this process is regular and frequent) and re insert the new updated one record then High water mark will cause to scan yours table which may cause to degrade the performance.AFAIK you should go with update.But hold down dont implement it as i suggested lets see what are others solution here which may be more precious then mine.
    Khurram

  • Problems about deploying Oracle web application (Forms, Reports)

    I am going to deploy Oracle web applications (Forms and Reports) and plan to use the same server machine for both Application web server and Database server.
    1. How can I enable SSL (for data encryption) on Application web server for Oracle Forms ?
    2. Since both Application web server and Database server will use the same machine, do I still need Oracle Advanced Security for data transmission between Application web server and Database server if data encryption for transmission is required ?
    3. Can I user Oracle Forms to call Oracle Report on web as I did in Client/Server in the past ?
    Experts like you may have come across such problems. Would you please give me some opinions/ideas ?
    Regards,
    Richard

    1. check the paper about the Forms servlet architecture on otn forms section for SSL tips.
    3. Check the reports and forms integration paper on otn too.

  • 5200: Error executing query: The data form grid is invalid.

    Hi,
    I am getting this error " 5200: Error executing query: The data form grid is invalid. Verify that all members selected are in Essbase. Check log for details.
    com.hyperion.planning.HspException;hasPovDims=1;povXML=<?xml version="1.0"?><datasources><datasource name="Profit " dsid="228af2c3_129ca3dd85c_-77b1" allowEdit="1"><dim name="Period" dimIndex="1" dsName="Profit " keyDimName="Period" memberName="Apr" displayName="Period: Apr"/><dim name="Year" dimIndex="2" dsName="Profit " keyDimName="Year" memberName="FY10" displayName="Year: FY10"/><dim name="Entity" dimIndex="5" dsName="Profit " keyDimName="Entity" memberName="9999" displayName="Entity: 9999"/></datasource></datasources>"
    I have checked that both the systems essbase and planning are same. nothing's different. still i cannot find the exact reason why the report is not working.
    can any please help me.
    btw, i am using Hyperion Planning 9.3.1
    Thanks,
    BIMS

    Hi
    You probably deleted some members from outline that are used by report
    I would recommend you to open you report/grid via rep.client and try to find which elements are abcent
    Regards
    Alexander
    Edited by: Softperson on 19/8/2010 17:38

  • Frm-40505:ORACLE error: unable to perform query in oracle forms 10g

    Hi,
    I get error frm-40505:ORACLE error: unable to perform query on oracle form in 10g environment, but the same form works properly in 6i.
    Please let me know what do i need to do to correct this problem.
    Regards,
    Priya

    Hi everyone,
    I have block created on view V_LE_USID_1L (which gives the error frm-40505) . We don't need any updation on this block, so the property 'updateallowed' is set to 'NO'.
    To fix this error I modified 'Keymode' property, set it to 'updatable' from 'automatic'. This change solved the problem with frm-40505 but it leads one more problem.
    The datablock v_le_usid_1l allows user to enter the text (i.e. updated the field), when the data is saved, no message is shown. When the data is refreshed on the screen, the change done previously on the block will not be seen (this is because the block updateallowed is set to NO), how do we stop the fields of the block being editable?
    We don't want to go ahead with this solution as, we might find several similar screens nad its diff to modify each one of them individually. When they work properly in 6i, what it doesn't in 10g? does it require any registry setting?
    Regards,
    Priya

  • PWB- Connection between selection screen and Application Form

    Hi Experts,
    I need your help regarding PWB.
    My requirement is, I need to fetch date and amount placed on selection screen into application form and those values I need to print through pwb using SAPScript.
    I am new to PWB so not getting how exactly I need to do this. Please help me on this.
    Thanks in advance.
    Regards,
    Abhijeet

    Hi,
    Write LEAVE TO SCREEN 0 in the PAI of screen 500.
    MODULE user_command_0500 INPUT.
      CASE g_ok_code.
        WHEN 'BACK' OR 'EXIT'.
        Goto Selection screen
          LEAVE TO SCREEN 0.
        WHEN  'CANC' .
          LEAVE PROGRAM.
        WHEN OTHERS.
        Do Nothing
      ENDCASE.
      CLEAR : g_ok_code.
    ENDMODULE.

  • How to give input parameter to application form through se38 program?

    Hi all,
    How can i call my application form from within my se38 program?
    is there any way then please tell me?
    and how to pass input parameters to application form through se38 program?
    Thanks and Regards,
    Arpita.

    Hi you can pass the parameter using application program. You can pass the value using the interface of the function module given below.
    parameter p_matnr type  mara-matnr.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = gc_smart_form 'Name of ur smart form
          variant            = ' '
          direct_call        = ' '
        IMPORTING
          fm_name            = lv_fmname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc NE  0.
        MESSAGE ID sy-msgid TYPE 'E'
                          NUMBER sy-msgno
                            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    CALL FUNCTION lv_fmname
    EXPORTING
      control_parameters         = gs_ssfctrlop
      output_options             = gs_ssfcompop
      user_settings              = ' X'
    **---This is where u can pass ur paramter to the smart form*
      matnr                           = p_matnr.
    called from batch job
    EXCEPTIONS
    formatting_error           = 1
    internal_error             = 2
    send_error                 = 3
    user_canceled              = 4
    OTHERS                     = 5            .
    Thanx and hope this would help.
    Regards,
    Aruna
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:24 AM
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:29 AM

Maybe you are looking for

  • Fiori Wave 8 Apps in the HANA Enterprise Cloud (HEC)

    Hi everyone, I am currently in a project, where we have to install the Fiori Wave 8 Apps in a HEC landscape. Unfortuneatly I have only experience with installing Fiori on an On-Premise System. Are there any guys out there, who have allready installed

  • Elements 11 won't play audio mp3 from within slide show

    I've created a slide show and have attempted to insert  an audio mp3 file. Audio file shows that it has been added to slide show but it wil not play. I've added the mp3 multiple ways, by using the add media -- audio from element organizer as well as

  • Total Gate in stock but not issued yet

    Hi all, I am working on a report to show the material come into company with movement 103 during certain duration , and within that duration detail of  stock not issued . (i.e.  Total stock in store but not issued yet ) I am using Mkpf and mseg data

  • Smart Phones with Proxy enabled....

    hi, i have an issue with one of our customer , they have a wireless network were users are using laptops and smart phones as well to access the network. to get internet access users have to enable proxy. using laptops they will connect through wifi a

  • Resizing working very long in method drawImage()

    Hi! i found code for resizing of images .jpg, .gif, .png. And method that described below gave best quality but for some images it's work very long time ~30 second (method drawImage() do it so long), for others (not depended from size of image ~ 300m