By default disply

hi all
in my module pool pgm, how can i set screen in disply mode by default.
\[removed by moderator\]
Edited by: Jan Stallkamp on Aug 6, 2008 2:39 PM

Hi...
try this in PBO of screen
PROCESS BEFORE OUTPUT.
  MODULE status_9001.
**retriev the data
  MODULE get_data.
*&spwizard: pbo flow logic for tablecontrol 'TABL_SC2'
  MODULE tabl_sc2_change_tc_attr.
*&spwizard: module TABL_SC2_change_col_attr.
+ LOOP AT   lt_eprintactf
       WITH CONTROL tabl_sc2
       CURSOR tabl_sc2-current_line.
    MODULE tabl_sc2_get_lines.
    MODULE edit_disp.
*&spwizard:   module TABL_SC2_change_field_attr
  ENDLOOP.+
in loop of table control(tabl_sc2)..
use a module...eg..MODULE edit_disp.
and then in that module modify the screens
IF NOT gl_edit IS INITIAL.
    LOOP AT SCREEN.
      IF screen-name = 'LT_EPRINTACTF-FLYERID'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-TDNAME'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-TDID'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-TDID'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-TDSPRAS'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-PRIORITY'.
        screen-input = 1.
      ENDIF.
      IF screen-name = 'LT_EPRINTACTF-DESCRIPT'.
        screen-input = 1.
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
regards
vivek

Similar Messages

  • How to Disply One Client As Default Client In the Logon Window

    Hi Experts,
    I have One Doubt.
    When I Stared SAP Logon Window Through SAP GUI, Iam Getting 001 Client As Default Client.
    But I want to Display 100 Client as Default Client in that Place.
    I Tried This Through SU01---> Selected Default Profile
    --->>Extended Maintenance Radio Button.
    Changed 'login/system_client' From 001 To 100.
    Then Click on Copy Button. It Asked For Save, I saved it.
    But Later I Logon in to the window means iam getting 001 Client only.
    If i Went for SU01 Later Means 100 Client is Displaying in 'login/system_client' .
    Please Help me in this Issue
    Regards
    Khanna

    Hi Khanna,
    Go to  transaction RZ10 --> Select DEFAULT profile --> change Parameter login/system_client to 100 from 001. Save and activate the profile. Then stop and start SAP .No need to bounce DB
    Thanks
    Prince

  • How to give default as empty  to save as filename

    Hi all,
    I need to open a excel file on the browser.User has to enter his own filename for Save As-> Filename.
    It is opening successfully.
    while trying to Save As (file->Save As) for filename it is giving like this "quotes.csv?s=%5EIXIC&f=sl1d1t1c1ohgv&e=.xls"
    but I have to give(default) empty space for filename (after opening the excel on the browser tyring to Save As filename)
    this is the problem to give empty space(default) for filename for Save AS.
    My code is in struts action
    <b>
    public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              // getting data from JSP
              String columns = request.getParameter("columns");
              String searchString = request.getParameter("searchstring");
              String srchType = request.getParameter("searchType");
              System.out.println(" Action columns:  "+columns);
              System.out.println("Action searchString:  "+searchString);
              System.out.println("Action srchType:  "+srchType);
              String filename = null;
              try {
                   //getting servlet context for absolute path
                   ServletContext context = getServlet().getServletContext();
                   //creating object for dao
                   RegistrationMigrationDAO dao = new RegistrationMigrationDAO();
                   //getting file path from dao
                   filename = dao.migrateregistration(columns, searchString, srchType,
                             request, context, getServlet().getServletName());
                   //System.out.println("url in action: " + filename);
                   //setting mime type
                   response.setContentType("application/vnd.ms-excel");
                   //setting the header
                   //response.setHeader("Content-Disposition", "attachment; filename="+ filename);
                   //creating fileinputstream object to open the file
                   FileInputStream fis = new FileInputStream(filename);
                   //passing FIS object to work book to open in the form of spread sheet
                   HSSFWorkbook book = new HSSFWorkbook(fis);
                   //creating object for outputstream to disply
                   OutputStream out = response.getOutputStream();
                   book.write(out);
                   //closing the outputstream
                   out.close();
              } catch (Exception e) {
                   e.printStackTrace();
              return null;
    </b>
    by using this
    <b>//response.setHeader("Content-Disposition", "attachment; filename="+ filename);</b>
    I am getting but excel is not opening on the browser separately excel file opening (not on the browser separate window as excel). I want open excel on same window(browser) and for Save As-> Filename as empty.
    this is the thing I have to do.
    Give  me solution to give saveas filename as empty after opening the excel on the browser.
    <b>User has to enter his own filename it is allowing but I ahve to give filename default as empty space.</b>
    Thanks in advance
    Rama Krishna

    Hi,
    try
    response.setHeader("Content-Disposition", "inline; filename="+ filename);
    This should force your browser to open the file in the same window.
    And I had the problem with empty file name in save as, too. For our purposes, it helped to shorten the filename. But as I was told this depends on IE and OS versions.
    Regards, Astrid

  • Is it possible to set default path and filename to the upload UI element  ?

    Hello All,
       Can some advise on if its possible to set a default path and filename to the upload ui element ? I will like to set a default path and filename to be uploaded to the upload UI. The user will then have the option of using that path or clicking on the browse to set another location.
      Any suggestions or advise ? Thank you very much.
    from
    Kwok Wei

    Hello VS,
      So to confirm, from your opinion, you feel that its not possible to have my upload UI elememt to be displyed on the screen with the path and filename preloaded ?
    Btw, do you have an email that I can reach you at ?
    from
    Kwok Wei

  • Default value for af:richTextEditor

    Hi
    Whenever nothing is written in af:richTextEditor null is displyed on screen.
    Is there any way to specify, black space or any default value if nothing is entered in af:richTextEditor.
    I tried doing it with required="true immediate="true" but in my usecase the af:richTextEditor is in declarative component and can be called many times. I also tried with rendered but not sucessuful with my use case.
    So i am looking for solution where i can have default value for af:richTextEditor, where if user entr nothing that default value (black space) is displayed.

    public string getValue1(){
      if(this.value1==null || this.value1.length == 0){
       this.value1=" ";
    return this.value1;
    I tied this, which is good for my usecase. Bt it is still displaying null

  • How eo add default page in portal under home tab in portal

    Hi All,
    I have to make one welcome page for my portal the reason behind is that when i log on to portal under Home role theare is no page assigned so blank view is available that looks very dull..
    What i want to achive is that to createIview and assign that iview to role so that by default when i log on to portal directly that iview is displyed instead of blank view..
    any help will bw appretiated. and rewarded with poinits.
    Regards.
    Vinit Soni

    Hi Vinit,
    What you can do is that create the desired Page or iView and assign it to the "Everyone" Group, which is SAP Provided, as this group is by Default added to every user., so automatically when you will login to the portal that page or iView will be displayed.
    The Everyone group will already have a role "everyone" assigned under itself.So create a Iview adn assign it to a role say "Welcome Page Role" and add this role to Group "Everyone".
    Hope this helps.
    Regards,
    Shailesh Nagar

  • Set default Overfulfillment Tolerance should be 5.5% in service po

    Dear sapers,
    In the service PO,In the item level- under services tab-we can see the the service, if we click on the line item, it will disply the service details, here in the basis data, is it possible to set Overfulfillment Tolerance  5.5% default every time. if yes then where is the setting?
    Regards
    Anjali
    Edited by: anjali s on Sep 22, 2009 11:20 AM

    I dont  think its possible , Theres  no concept  of Purchase value key  in services   to default  such tolerances.
    It may work if you create a Model  service specification (ML10)  and  refer that  in the PO.

  • RECOVERY RATE의 설정 및 DEFAULT RULE에 대한 설명

    제품 : MFG_PO
    작성날짜 : 2004-05-21
    RECOVERY RATE의 설정 및 DEFAULT RULE에 대한 설명
    =======================================
    PURPOSE
    PO DISTRIBUTION의 RECOVERY RATE를 어떻게 설정하는지를
    기술하고자 한다.
    Explanation
    (1) Recovery Rate의 Setup
    Recovery Rate는 Tax Code를 기준으로 Disply된다.
    즉, Recovery Rate는 Tax Code를 설정하는 화면에서 지정하도록
    되어 있다.
    (path : Purchasing/Setup/tax/Tax code/recovery rate)
    만약, Tax Code가 Recovery Rate를 가지고 있다면, 이 Recovery rate는
    자동적으로 PO Distribution window에 Display된다.
    참고로, Tax Code는 어떻게 PO에 설정되는지를 설명드리겠습니다.
    Tax Code는 Tax hierarchy를 기준으로 자동적으로 PO에 설정됩니다.
    이 Tax Hierarchy는 Purchasing Parameter내에서 설정하게 됩니다.
    (path : Inventory/Setup/Organizations/Purchasing Parameter/tax)
    Tax Hierarchy는 Item/ship-to location/ supplier/ supplier site level
    별로 우선순위를 설정합니다.
    note : 만약, PO Distribution을 생성한 후에, Tax code를 임의로 변경
    한 경우, 관련된 Recovery Rate는 새로운 Tax Code에 의해 재설정
    되지 않습니다.
    (2) Recovery Rate의 자동 지정
    Recovery Rate는 다음의 경우에만 자동 Display된다.
    <1> tax code is not null.
    (TAX will be displayed by tax defaulting rule)
    <2> when you move the cursor to Charge account field in
    distributions window,
    recovery rate can be displayed automatically.
    <3> if you save the po form before distributions window open,
    recovery rate can be inserted in distributions window
    automatically.
    (3) recovery rate가 Null일 경우 Check사항
    case1. Setup of recovery rate is invalid.
    ==> you have to check the setup.
    case2. when you change the tax code from old PO, recovery rate can
    not be updated automatically.
    ==> this is a standard process.
    case3. Tax Recovery rate not defaulting for onetime items(without
    item code)
    ==> this is a bug.
    so we needs a one-off patch#1907369 (based on 11.5.4)
    Example
    N/A
    Reference Documents
    -------------------

  • Default Value is not getting displayed in SUN ONE Ldap

    Hello,
    I have created an attribute in slapd.user_at.conf and it is associated in slapd.user_oc.conf.
    The attribute default value is given through SUN ONE Console. But, In our application the default value is not getting displayed.
    We need the default value to run our applicatin. Can anyone help me for this issue
    Regards,
    K. Senthil Kumar

    Hi anandkumar,
    I belive this issue can be resolved by changing the  Query proprties for the perticular field.
    Kindly check the Field proerties in query designer and ensure that Text is enabled ather than Key.
    __Field property check up:__Go to query designer->click onn the field-> Right hand side in properties click on display tab-> select Text in drop down menu of Display as tab.
    FURTHER CHECK UP: check the master data avaiulability for the perticular info object, if masterdata is not available, do the text data for txt data availability in report level.
    Hope this helps you!!
    Best Regards,
    Maruthi

  • NULL and default!!

    hi,
    I have created a table as below.
    CREATE TABLE student
    (      Rollno      CHAR(8),
         Name          VARCHAR2(20),
    Fees          DECIMAL(12,2) DEFAULT 100.00
    can someone please explain the effects of the following insert statements.
    a] insert into student values('c123','Patrick');
    b] insert into student values('c123','Patrick',NULL);
    Will both of them have different effects on the values entered into the table? And what will be entered into the columns in both the cases.
    Message was edited by:
    user593212
    Message was edited by:
    user593212

    SQL> CREATE TABLE student
      2  ( Rollno CHAR(8),
      3  Name VARCHAR2(20),
      4  Fees DECIMAL(12,2) DEFAULT 100.00
      5  );
    Table created.
    SQL> insert into student(rollno,name) values('c123','Patrick');
    1 row created.
    SQL> select * from student;
    ROLLNO   NAME                       FEES
    c123     Patrick                     100                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to get ALL values as default for  a drop down box in JSF

    Hi,
    I have a drop down box in JSF page which retrieves values from LOVCache.java. I have values like Company, Client, User, ALL in the drop down box.
    By default blank value is selected for the drop down box. I want to make ALL(which retrieves data for all the values) as default value for the drop down box.
    Could any body help me? Any help must be appreciated.
    Thanks,
    Aseet

    Thanks Nikhil. But I am fetching the values from the LOVCache.java.
    I am using <af:selectManyChoice>. Is there any way I can use LOVCache.java value for selecting default values instead of hard coding?
    I mean to say can I write
    unselectedLabel="#{LOVCache.entityTypeSelectionList.anyValue}"
    where LOVCache.entityTypeSelectionList is used to populate the drop down box.
    Regards,
    Aseet

  • SRM 5.0 - how to change default password?

    Hello,
    Am trying to install SRM 5.0 Oracle 10g as the DB. In the instllation doc of SRM 5.0 a default password is given to connect to the database and I see the encrypted password is in the jdbc properties. How can we change the default password? How do I get the encrypted value?
    Any help is appreciated.
    Thanks

    Propblem resovled, find the corresponding function group and screen, then change the translation.

  • ACS 5.3 Default Backup Password

    When doing a backup on any of the ACS 5.x appliances by default the backup is encrypted with PGP. What password is used for that? Is it configurable?

    It is not configurable and that information wasnt made public. However, when you restore it should be able to decrypt it just fine.
    You can try opening a TAC case but when I was in TAC wasnt able to find that key either.
    Thanks,
    Tarik Admani
    *Please rate helpful posts*

  • How to change the default JET (JumpStart) password

    I am using JET (Jumpstart Enterprise Toolkit) to jumpstart my servers. The default password, boajrOmU7GFmY, is saved in a encrypted form in jumpstart.conf. I want to change it, how do I know the encrypted form of my new password?
    Tom

    Usage: orapwd file=<fname> password=<password> entries=<users>
    where
    file - name of password file (mand),
    password - password for SYS and INTERNAL (mand),
    entries - maximum number of distinct DBA and OPERs (opt),
    There are no spaces around the equal-to (=) character.

  • Does iTunes have a default password for initial encrypted backups?

    I have an iPhone that was connected to iTunes for the first time today.  It is a company device and IT has set a policy to require backups to be encrypted.
    When I first plugged the phone in, iTunes automatically did a backup as it had never seen the device before.  Due to a software issue, Apple recommended that I do a restore to factory settings and then restore from backup, so once the initial backup was completed, I performed the restore to factory just fine.  However, when I attempted to restore from backup, I was prompted for a password even though I was never prompted for a password when iTunes created the backup.  I have tried every password I can think of including my company domain password, iTunes password, iPhone passcode, etc...etc...to no avail.
    Does anyone know if there is some default password that iTunes using when doing an initial backup without prompting the user for a password?

    Caronold -
    I have the same problem when i updated to iOS6  3days ago from iOS5.1.1. I've tried every passwords i can think of but NO luck.
    Even the folks at genious bar said : good luck!!
    A Third party software that can decrypt?

Maybe you are looking for

  • I want to upgrade my macbook pro's ram from 4 to 6 or 8gb. mine is mid 2010 macbook pro..

    i want to upgrade my macbook pro's ram from 4 to 6 or 8gb. mine is mid 2010 macbook pro.. Configuration 2.4GHz Intel Core 2 Duo 4GB 1066MHz DDR3 SDRAM - 2x2GB 250GB Serial ATA Drive @ 5400 rpm i am looking at http://www.flipkart.com/transcend-ddr3-4-

  • No Update FMIOI and KBLP tables with purchase order

    Hello, We have un serious problem : No Update FMIOI and KBLP tables with purchase order System :  SAP ERP 6.0 /7.0 - EHP 4 Note 965633 was read. 1) First case: The purchase order 4510000673 does not reduce the funds reservation. Purchase order 451000

  • IPod Touch 32 GB and iMac G4 800 Mhz

    Will an iPod Touch successfully connect and function properly with an iMac G4 800 Mhz. I need it to work with no problem. I know it requires a USB 2.0, but it only has 1.0 or 1.1 I believe. Thanks! Please only post with experience regarding this conf

  • Success Factors: re-open a requisition from SAP

    Hi - I'm having some trouble re-opening requisitions in SF from SAP.  Integration is switched on. So we've sent a requisition over to SF, completed it, and set the vacancy as filled in PD infotype 1007 - this closes the requisition in SF. I would hav

  • Problem with a ALC888 Realtek soundcard

    Hey all I have a problem with my pc and soundcard. I have a  HP Pavilion Media Center TV m7739.sc desktop pc with a ALC 888 sound cad. I have set a Nvidia graphic card in the pc. And now have a pc with a lcd screen and a projektor in. But the sound d