Change the Layout for Create Change Display and   Alv List

Hi All,
I am working on Custom Development  WD Application for Maintain   Employee.
I need to Get help/advice to hadle the two Problems.
1) In my application I have to provide Create,Change & display Employee.
Customer needs seperate Link/Application for all Create , Change and Display in Portal.
I thought I am planning to Create Three Application in the WD Component(Create,Change & Display) while Pressing the Application I have to find out what is the Application They Pressed in the Componenet Controller to Change the Layout/Field (Edit/Display/Visisble) according to Create/Change/Display Employee.
For this How to Find the Application name of the WD Componenet.
2) To show the Employee List I am having using ALV LIst.
But my List consuists of 35 Fields. Customer not ready for scrolling the List to see all columns.
I thought I am planning to provide Visible/Invisble columns after providing one button.
If they pressed this button It will next set of Columns with out scrollibng.
How to handle this ?
Kindly help/advise  me for both the Problems to proceed further.
Thanks in advance.
Dav

1.For this How to Find the Application name of the WD Componenet.
DATA:
  l_api                           type ref to if_wd_component,
  l_application_api               type ref to if_wd_application,
  l_application_info              type ref to if_wd_rr_application,
lv_name                            type string.
  l_api              = wd_this->wd_get_api( ).
  l_application_api  = l_api->get_application( ).
  l_application_info = l_application_api->get_application_info( ).
  lv_name = l_application_info->get_name( ).
> 2) To show the Employee List I am having using ALV LIst.
>
>  But my List consuists of 35 Fields. Customer not ready for scrolling the List to see all columns.
Are they planning to buy Wide Screen monitor ??
I am not really fan of the solution you propose, at the same time i am not having better idea. I would get the customer on table and see how they would like to have the presentation of 35 columns without scrolling.
ALV provides customization, in that way users can select their own list of columns.

Similar Messages

  • HT5622 After both (1) changing the password for my Iphone 4S and now (2) loading latest system for it (and restoring when Itunes said I must) it will no longer restore all the apps I bought with the old password.  How to get them please?

    After both (1) changing the password for my Iphone 4S and now (2) loading system 6.1.3 for it (and restoring when Itunes said I must)
    - Itunes it will no longer restore all the apps I bought with the old psasword.
    How to get them please?
    ===========================
    Sorry - no - all well, they seem to be all coming back -  back just after I put this question.
    Mysterious to me but very satisfactory.
    Profile doubtless that of an ignoramus.

    Ok, so I was able to find one but the one i'm most diappointed is the "free music" app i purchased and it had hundreds of songs that i didn't put on my desk top to save.  So just so we're clear, I cannot get that app back again with all my songs if it wasn't in the "purchased" place?
    Also,
    my husband has a iphone 4 and i've been trying to connect it to our Garmin GPS through bluetooth.  Now both devices recognize it but once a call is made or received, nothing goes through the GPS.  I've had it working before but it was before a couple of upgrades.  It is currently on ios7.2 upgrade.  Is that why it won't work?
    Thanks

  • I changed the password for my Apple ID and now my iPhone won't send my texts

    I changed the password for my Apple ID and now my iPhone won't send out my texts....says they are undeliverable unless I send them out manually as texts.

    Hi sbiermann,
    If you have recently changed the password on your Apple ID account, you may need to manually sign out and sign back in to your Apple ID on your device for the change to take effect. You may find the following article helpful:
    iOS: Sign in with a different Apple ID in the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht1311
    Regards,
    - Brenden

  • I recently changed the password for my home network and now my MP495 printer will not connect.

    Hi, First time caller, long time listener............
    I am running Win 7 on all of the pcs in the house with an Android or two as well. I had to change the pw for my linksys router this past weekend and I noticed today that I can not get on as the "printer is offline". I have done the obvious cycling of pcs , router and printer. I have also tried checking / unchecking the use printer offline. Do I need to redownload the drivers and attach the printer by usb and reinstall it? Its been a while since I installed it and I can't remember if it needed a password to connect or not.
    Thank you, I appreciate your time.

    Hi Trilo,
    Since you changed the password to your wireless router, you will need to reinstall the drivers on your computer to reconnect the printer to your network.  Prior to reinstalling, you will want to ensure that the wireless LAN setting on the printer is enabled. To do this, press the Maintenance button on the printer (looks like a pair of pliers and a screwdriver) repeatedly until the symbol that looks like "G" appears in the LCD, then press the <COLOR> button to enable wireless LAN.
    Once the wireless LAN has been enabled, please click here to go to the DRIVERS AND SOFTWARE page for the PIXMA MP495.  Once on the initial download page for your model, please do the following:
    1. Verify that the operating system detected in the "OPERATING SYSTEM" drop-down menu is correct, and if it is not, please click the drop-down menu to select your operating system.
    2. Next, please click on the red arrow next to the "RECOMMENDED FOR YOU" section and click the MP drivers file. When you do, a red DOWNLOAD button will appear. Please click on the checkbox below the DOWNLOAD button, then click the red DOWNLOAD button to begin the download. The time for the download process may vary depending on the speed of your Internet connection and the size of the file being downloaded.
    Once the file has been downloaded, please double-click on it to reinstall the printer wirelessly.
    Hope this helps!
    This didn't answer your question or issue? Please call or email us at one of the methods on the Contact Us page for further assistance.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • I change the country for my itunes app and store and i dont kow how to put ir back

    i change the country on my itunes app and now i dont know how tu put itback

    Change iTunes Store Country on an iDevice
    1. Tap Settings;
    2. Tap iTunes & App Stores;
    3. Tap View Apple ID;
    4. Enter your user name and password;
    5. Tap Country/Region;
    6. Tap Change Country/Region;
    7. Select the region where you will be located;
    8. Tap Done.
    Also, see How to Change Your iTunes Store Account Location | eHow.com.

  • I need the code for creating popup windows and code for open and close

    I can write the code for creating popup window , i am getting problem while trying to open and closing that popup windows.
    Can anybody help me in that pls ?
    Regards
    Sreeni.

    Hi
    For pop up window
    IWDWindowInfo windowInfo = (IWDWindowInfo)wdComponentAPI.getComponentInfo().findInWindows("PopWin");
    IWDWindow window = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    window.setWindowPosition (300, 150);
    window.show();
    wdContext.currentYourNodeElement().setPopupAttribute(window);
    For closing window code
    IWDWindow window = wdContext.currentYourNodeElement().getPopupAttribute();
    window.hide();
    window.destroyInstance();
    For more infornation refer this link
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20d2def3-f0ec-2a10-6b80-877a71eccb68&overridelayout=true
    This link is very useful for you.
    Regards
    Ruturaj
    Edited by: Ruturaj Inamdar on Aug 13, 2009 9:10 AM

  • Changing the editor for Multi-File Find and Replace

    When I click edit on a file it opens it up inside Word. Anyway to get this tool to open the topic inside RH? Or inside another text editor like Notepad++? I don't trust Word to leave my code like I want it.
    Thanks in advance,
    Jared
    RH 7 (latest patches) authoring in RoboHTML
    Win 7 64-bit machine

    I just thought I would resurrect this thread, because I am encountering the same issue, except for me the Edit button just opens the topic IE.  As such, the only way to edit the topic is to right-click and choose View Source, then do another Find to get to the bit I wanted to edit, which is a bit of a faff.
    I'm running Windows 7 64-bit with IE9 and RH8.  As well as the suggestions made here, I have tried changing IE's HTML editor from the developer window (as described here), which works for IE itself, but not RH.  I've also tried editing the Registry and adding the path to Notepad++ to HKEY_CLASSES_ROOT\.htm\OpenWithList\Notepad++.exe\Shell\edit\command.  Again, this makes no difference, which leads me to think there is no association between IE9 and RH8. 
    The twist for me is last time I used this tool I'm sure it worked, but it has been a while and I cannot remember what other software changes have taken place that could affect RH.
    Regards
    Matt

  • Changing the regedit for creating new folder on desktop

    Below is the registry subkey I need to change.  However, I get to the ContextMenuHandlers and can not find the New.  How do I add New to the directory string???
    2. Locate and then click the following registry subkey:
    HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\New\

    Below is the registry subkey I need to change.  However, I get to the ContextMenuHandlers and can not find the New.  How do I add New to the directory string???
    2. Locate and then click the following registry subkey:
    HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\New\
    You say you want to change the key ‘New’, somehow I suspect that ‘New’ is a reserved word and would not be used as a key name, perhaps it should be New Folder.
    However, if you want to add an entry named New, it can be done by right-clicking ContextMenuHandlers and choosing Key (if it is to have sub entries) or any of the other types, e.g. String Value (you have to know this otherwise it probably won't work). If
    it doesn’t work, it can be deleted by right-clicking it and choosing delete.
    You cannot mess up anything by adding an entry, but it is advisable to backup the registry or create a system restore point before making any changes.

  • Can we change the branding for iTunes U support and discussions?

    Take a look through the iTunes U discussions. Especially around September and December 25th when everyone gets new devices.
    There are WAY too many iTunes questions in the iTunes U discussion area.
    Can we use some different branding to uniquely differentiate between the two forums?
    Or at least give us a button that, when logged in, will flag the post as "not itunes u related" or something?
    Just a thought. Let me know what you think!

    We use this for different things.
    Changing from anuerical field to add additional data to become a text field.
    In the integration repository, open up your message mapping for this part.
    Select sending field, select receiving field and then add the following:
    In functions: select Conversion,  and select value mapping

  • When you change the password for your apple Id and you loose all your messages can you get them back?

    So my stupid mum decided to change the password instead of waiting for me to get up -_- and now I have lost all my iMessages that were very important and I can't find them I recently tried to back all my iPod up to my laptop but I had a look and couldn't find anything to do with messages can someone help

    You only way is to restore from backup if you have backed up after the Messages were on the iPod but before you "deleted" them. iTunes only retains the last backup.
    See the restore topic of:
    iOS: How to back up

  • Can not modify the layout for my Default Display Form, inside an issue tracking list. the form will be blank after adding the cusotm styles

    I am working on an Issue Tracking list inside SharePoint 2013. but when a user clicks on an item , the description field will occupy only a small area of the page , while most of the page will be blank as follow:-
    so using F12 Developer Tools on IE i detect the marckup for the Description field as follow:-
    where it is mentioned that it have a Width=350, so i add a Script Editor web part to the displayform and i specify the following to expand the field from 350 to 1000:-
    <style>
    #SPFieldNote
    {width: 1000;
    <style>
    but the result is that the display form will display nothing when clicking on an item as follow:-
    Of course if i remove the ScriptEditor web part the form will be shown again..
    so can anyone advice from where i can force the default display item view to occupy the whole page size ? Thanks

    Hi John,
    Since width is mentioned in 'td' itself, so using styles we can't overwrite the width. For that you can implement javascript or jQuery code to set the width on td element.
    $('#SPFieldNote').width('1000px');
    Regards,
    Brij K

  • Workflow for creating new item and updating list

    I believe that the answer is easy, but because I am already having trouble with this issue for few days I am getting blind to see the solution:)
    I have two lists and a workflow running behind. Basically when new item is created in first list, workflow makes a copy in second list. Because this workflow works only when new item is added, I have a problem when item is updated, items in second list just
    disappear - are empty. I believe that I have a problem with workflow, because somehow I should also have in to update list in case of change.
    Please help.
    Thanks in advance

    Hi,
    According to your description, my understanding is that the workflow you created was not started when an item was updated in first list.
    Did you check the option “Start workflow automatically when an item is changed” in SharePoint Designer?
    Did you sign in as system accout?
    Please use another list to check whether this issue occurs.
    If this issue still occurs, please provide screenshot about the details of the workflow in order to find out what goes wrong.
    Thanks,
    Dean Wang

  • How to change the content of a cell in an ALV-List?

    Hi,
    knows anybody a way to change the cell-content in an ALV-List?
    In my case, I want to give the user the posibility to click on a pecific cell
    in the list and change in an edit-mode or similar else!?
    Thanks for your ideas!

    Get the existing field catalog using the method cl_gui_alv_grid->get_frontend_fieldcatalog. Change the edit property in the field catalog and refresh it using the method cl_gui_alv_grid->set_frontend_fieldcatalog.
    Hope this helps.
    Regards,
    Nithya

  • I recently changed the password for my apple id  and now my apple tv keeps asking me to turn on home sharing even after giving it the new id password

    I change my Apple ID password and now my apple tv will not recognize my itunes library even after updating my password for home sharing on both the computer and the apple tv.  the apple tv keeps asking me to turn on home sharing in itunes which has been done repeatedly.  ive even tried resetting my apple tv.

    Hello there, ozibw.
    The following Knowledge Base article offers some great steps for troubleshooting Home Sharing:
    Troubleshooting Home Sharing
    http://support.apple.com/kb/ts2972
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • How to change the layout of an input file and write to an output file

    Hi
    I have a .csv file which has a layout as schoolNo. , county1,county2,county3,county4,county5
    It will need to go into an output file as schoolNo. repeated and a county on each record .
    ie., schoolNo.,county1
    schoolNo.,county2
    schoolNo.,county3
    schoolNo.,county4
    schoolNo.,county5
    I wrote the java program as follows ..which results in this error
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException
    BECAUSE :--
    i know bec., the first record doesnot have county3,county4,county5 . So when the if loop for county3 lenght is checked it gives this exception .
    Pls help me write this program ..thanks in advance .
    /Here I open the input file and read in record by record                                                                                                                        
              BufferedReader readin;
              try {
                   readin = new BufferedReader(new FileReader(InFile));
                   String firstLine = readin.readLine();
                   String[] headers = firstLine.split(",");
                   columnCount = headers.length;
                   System.out.println("Columns in ZIP Master File: "+columnCount);
                   for(String input ;(input = readin.readLine()) != null; ){
                        recCount++;
                        input = input.substring(1);               
                        String[] column = input.split(",");
                        if(columnCount == 10){
                             eachIP++;
    //                               OUTPUT FILE
                                    if(column[1].length()> 0) {
                                       String mainStr = column[0] + "," + column[1] ; 
                                       Count++;
                                       totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                    if(column[2].length()>0){
                                         String mainStr = column[0]+ "," + column[2];
                                         Count++;
                                         totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                    if(column[3]..length()>0){
                                         String mainStr = column[0]+ "," + column[3];
                                         Count++;
                                         totalcolumns++;
                                       writeOutFile.write(mainStr);
                                       writeOutFile.newLine();
                                  else{
                                  bypassedCount++;
                                 }

    There are two split( ... ) methods; check the other one (the one with two arguments), it allows for empty entries to be counted, i.e. split(inputString, -1) gives you the wanted results.

Maybe you are looking for

  • How to resize a table in Pages 5?

    How to resize a table in Pages 5? It can be resized vertically but not horizontally.

  • How to modify a CHECK constraint.

    We need to modify a check constraint to allow new values. Is there a way we can modify the existing constraint or should we drop and recreate including new values. Example: We have a table SLOG and SNO is a column accepting numeric values. Currently

  • HDV Widescreeen FCP to PAL SD Widescreen DVD?

    We have a film that is finished in HDV 1080i50 on FCP at 1440 X 1080 (16:9). We now want to create a PAL SD DVD that gives us pure 16:9 rather than 4:3 letter boxed. What are the exact sizings for this and where should i be resizing? I have found ano

  • SSH Differences between Solaris 9 and Solaris 10

    I use public key authentication when connecting via SSH but have noticed a difference between Solaris 9 and Solaris 10 and wondered if it's an environment setup issue. I keep my keys in $HOME/.ssh When connecting from Solaris 9 I can provide an ident

  • How to speed up PS CC

    I recent;y downloaded PS CC.  Running on 12 GB, but it doesn't seem to matter if I allocate 10% or 90% of my CPU, Photoshop is sluggish.  @@