DataGrid Header Problem

Dear All,
I have some problem with accessing DataGrid HeaderText, When one column is visable false.
"Click on column content and the code will show col # and header name. Do the same After Hide Colun  is clicked"
Please check the following code
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
    <![CDATA[
        import mx.controls.listClasses.BaseListData;
        import mx.controls.dataGridClasses.DataGridListData;
        import mx.controls.dataGridClasses.DataGridItemRenderer;
        import mx.events.ListEvent;
        import mx.controls.*;
        function grd_click(e:ListEvent):void{
                var icol:int = e.columnIndex;
                var column:DataGridColumn = DataGridColumn(grid1.columns[icol]);
                var headerTxt:String = column.headerText;
                Alert.show("Header text = " + headerTxt)
        function hideCol(index:int):void{
              var c:DataGridColumn = DataGridColumn(grid1.columns[index]);
              c.visible = false;  
        var items:Array = [
            {name:"vlad",lname:"collak"},
    ]]>
</mx:Script>
    <!--<mx:DataGrid x="90" y="99" itemClick="test(event)" id="grid1" dataProvider="{items}">-->
    <mx:DataGrid x="90" y="99" itemClick="grd_click(event)" id="grid1" dataProvider="{items}">
        <mx:columns>
            <mx:DataGridColumn headerText="Column 1" dataField="name"/>
            <mx:DataGridColumn headerText="Column 2" dataField="lname"/>          
        </mx:columns>
    </mx:DataGrid>
    <mx:Button x="90" y="262" label="Hide Column" click="hideCol(0)"/>
    <mx:Label x="90" y="56" text="Click on column content and the code will show col # and header name. Do the same After Hide Colun  is clicked" width="642" height="35"/>
</mx:Application>
Regards,
Sri

I think the column still exists even if you set its visibility to false. You could try something like this
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*">
    <mx:Script>
    <![CDATA[
        import mx.controls.listClasses.BaseListData;
        import mx.controls.dataGridClasses.DataGridListData;
        import mx.controls.dataGridClasses.DataGridItemRenderer;
        import mx.events.ListEvent;
        import mx.controls.*;
        private function grd_click(e:ListEvent):void{
                var icol:int = e.columnIndex;
                var column:DataGridColumn = DataGridColumn(grid1.columns[icol]);
                var headerTxt:String = column.headerText;
                Alert.show("Header text = " + headerTxt)
        private function hideCol(index:int):void{
          if(index == 0)
              grid1.columns = [column1];
          else
              grid1.columns = [column2];
        [Bindable]private var items:Array = [
            {name:"vlad",lname:"collak"},
    ]]>
</mx:Script>
    <mx:DataGrid x="90" y="99" itemClick="grd_click(event)" id="grid1" dataProvider="{items}">
        <mx:columns>
            <mx:DataGridColumn id="column1" headerText="Column 1" dataField="name" />
            <mx:DataGridColumn id="column2" headerText="Column 2" dataField="lname"/>         
        </mx:columns>
    </mx:DataGrid>
    <mx:Button x="90" y="262" label="Hide Column" click="hideCol(0)"/>
    <mx:Label x="90" y="56" text="Click on column content and the code will show col # and header name. Do the same After Hide Colun  is clicked" width="642" height="35"/>
</mx:Application>

Similar Messages

  • Any way to keep faxing/scanning after "Print-head problem"??

    We've got a "Print-head has problem" message.  Ordered new print-head (before seeing another poster's message saying "I did that twice and it didn't help!) but it won't arrive for several days. Meanwhile we'd love to still be able to use this alleged "all in one" to scan and fax.
    Problem is, there doesn't seem to be a way to escape from the "print-head problem" message--none of the "cancel" or fax buttons will work.  Cycling the power just recovers the same message again, and otherwise locked up.
    I'm hoping some old hand at HP may actually read this and know the magic fix.
    So the question:  Is there any way to keep using the 7780's fax and/or scan functions after getting a "print-head has problem" message?
    BTW, we've had several problems with the 7780 in the 3 years we've had it.  Had to send one back, and the auto-feeder has been hit-and-miss.  But we've been able to work thru the problems with HP support--though certainly at a high cost in our time.  Then with the problems getting a new Windoze-7 computer to work with it (certainly not entirely HP's fault but your customers could have used some better planning for the thing), we're starting to look at other manufacturers.
    If any HP managers or execs ever read these boards, you might keep in mind that a reputation, once lost, is extremely hard to recover.
    In any event, any help greatly appreciated.  Thanks.

    Hey Kappy, While my network is the only one in my preferred list, it's not the only one that the airport "sees". When I click on the wireless signal strength icon in the upper right part of the menu, when connected to my network, it says at the top of the pop up list "Airport: Scanning". It then lists about 10 wireless networks that are in range.
    What I want it to do is stop "scanning" for other networks and simply lock on to my network once connection has been established. Is there a way to do this do you know? Thanks, Dan

  • Remove Flex DataGrid Heading Rollover Color

    Hi,
    How can i stop rollover color change in Flex 3 DataGrid heading ?
    Can i override the following mehtod if yes how can i do this ?
     drawHeaderIndicator(s, r.x, 0, visibleColumns[i].width, cachedHeaderHeight - 0.5, getStyle("rollOverColor"), r);
    Thanks,
    -Shrban

    To do what you want to do requires a fair amount of work as the rollover color is set as a style, you can change the color but it seems the rollover can't be disabled(not without a custom datagrid).
    A quick fix is to try and at least reduce the difference in the rollover color, this could be done as per below, which basically makes the rollover color the same as the lighter shade of the header gradient.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="955" minHeight="600" creationComplete="appHandler(event)">
    <mx:Script>
    <![CDATA[
    import mx.controls.Label;
    import mx.events.FlexEvent;
    protected function appHandler(event:FlexEvent):void
    var colors:Array = dg.getStyle("headerColors");
    dg.setStyle("rollOverColor",colors[0]);
    ]]>
    </mx:Script>
    <mx:DataGrid id="dg" x="234" y="198" width="619" height="360">
    <mx:columns>
    <mx:DataGridColumn headerText="Column 1" dataField="col1" />
    </mx:columns>
    </mx:DataGrid>
    </mx:Application>

  • Add categories to DataGrid header

    Is there a simple way to add categories to the DataGrid header? Basically, instead of just a single row with headers, I want an additional row that sits above that row and describes sections of the grid (rather than individual columns). E.g., in html, I could do something like this:
      <table>
        <tr><th colspan="2">Name</th><th colspan="2">Data</th></tr>
        <tr><th>first</th><th>last</th><th>age</th><th>gender</th></tr>
        <tr><td>john</td><td>doe</td><td>26</td><td>male</td></tr>
      </table>
    Is there a reasonable way to do something like that in Flex? I've looked at Alex Harui's DataGrid footer, but after playing around with it a bit, it doesn't seem that it would be easily adapated.

    So I'm trying to generalize this to more than two subcolumns. I got the item renderer working fine, but when I include the modified SplitDataGridHeader as a custom header renderer, it fubars the whole grid (even the other columns). I assume something I'm doing is making the Player very unhappy, but I don't see any errors when debugging in FlexBuilder: the entire Grid just shows up as plain white, with no styles applied and no data at all (even for the columns using standard renderers). Any idea what could be causing issues like this?

  • Multiple rows in Datagrid header

    Hi,
    Can anybody help me in creating a datagrid header as shown in
    the below link.
    http://i12.tinypic.com/52lbtde.jpg
    Thanks in advance...

    Upgrade to Flex 3 beta 1 and use AdvancedDataGrid component
    or use the technique shared by Alex Harui:
    http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html#comments

  • How to turn off DataGrid header rollover?

    Does anybody know how to turn off the background rollover
    color in a DataGrid header? I have seen how to set
    useRollOver=false to turn it off in the body of the DataGrid but so
    far I can't see how to turn this off in the header. Thanks.

    I found a way to fix this but it seems like a kludge. In the
    table's style:
    headerColors: #D4DBE1,#D4DBE1;
    useRollOver: false;
    rollOverColor: #D4DBE1;
    useRollOver:false works for the data rows, not the header.
    Then setting rollOverColor will be ignored by the data rows, but
    will turn off the rollover for the headers, as long as the color is
    the same as the header colors.

  • [svn:fx-3.x] 8510: Eliminating Datagrid header flicker which occurs under various circumstances .

    Revision: 8510
    Author:   [email protected]
    Date:     2009-07-10 11:48:49 -0700 (Fri, 10 Jul 2009)
    Log Message:
    Eliminating Datagrid header flicker which occurs under various circumstances.
    Reviewer: Alex
    Bugs: SDK-14571.
    QE Notes: Opened a new item to track the remaining performance item (e.g. header is still regenerated too often).
    Doc Notes: None.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-14571
    Modified Paths:
        flex/sdk/branches/3.x/frameworks/projects/framework/src/mx/controls/DataGrid.as

  • Help please! - Hard disk Volume Header problems and 'Beach Ball' hangs

    Hi all
    I was wondering if anyone can help me out with my hard drive problems. Until recently, everything was going fine with my Powerbook after upgrading to 10.4.2. Then all of a sudden, one day, at the login screen I got a beach ball hang which lasted around 4 minutes. When the dock is launched, I get another beach ball hang for an additional 3 or 4 minutes.
    When it finally finishes logging in everything is fine, I can access all my files and do whatever I want to do at full speed, that is, until an app asks me for my administrators password which welcomes back the beach ball and a system hang for another 3-4 minutes or so.
    Disk Utility says that I have minor Volume header problems but will not fix it as it abruptly quits before it finishes diagnosing the drive.
    I have Disk Warrior 3.0.3 and have tried to use it but when I boot off the CD it does not recognise my hard drive for fixing puroposes but still displays the hard drive in the Hardware tab.
    The SMART status of the drive is verified and there doesnt seem to be any problems in that respect.
    I have repaired permissions, ran all the processes in Onyx and still no joy.
    Finally, I have tried to use TechTool Pro but on a surface disk check it fails halfway through after shifting a few bad sectors around.
    Everything seems to be fine if you ignore all these beach ball hangs but I'm worried about a very imminent hard drive fail. I am now in the process of zeroing all the empty spaces on my hard disk to see if the badsector problems can be fixed in this way.
    When the beach ball appears I can hear the hard disk making a scraping sound if this helps at all.
    Please help me! Its driving me nuts! I am also currently working abroad hence I don't have my Mac OS X Tiger install disks on me otherwise I'd just do an archive and reinstall.
    Is this a physical problem? Volume header problem? I'm so confused!
    Any help greatly appreciated! Many thanks...

    It sounds as if you've attempted the appropriate fixes for your drive... Disk Utility, Disk Warrior, TechTool Pro and Onyx. If none of these utilities have repaired the problem then perhaps there is a hardware failure of some sort... perhaps a head crash has done some physical damage.
    How old is this hard drive? Is it the original?
    It's unfortunate that you don't have your Tiger install discs as a reinstall of the OS might relieve the problem. But I doubt it since, as you say, "the disc makes a scraping sound". That suggests to me the problem may be physical damage or wear of the hard drive.
    If I were in your shoes, I would backup any critical files now, before the drive fails completely.
    I'd replace the drive, and probably buy an external enclosure (USB or Firewire) for the old drive to allow for data retrieval until it failed.
    Unfortunately, replacing the drive will require your software install discs... =( ... can't help you there.
    TiBook G4 1G, PMac G4 dual 1G, MacPlus   Mac OS X (10.4.4)  

  • DataGrid Header shadow Problem.

    Hello,
    Here is my problem: I have this DataGrid with all kind of
    custom styles, backgroud colors, cell colors, fonts. etc. I can't
    figure out how to get rid of the black line right under the header.
    It's like a 1px stroke solid black........Am I on Crack, is this
    even possible? I know you can hide the header, but I want to keep
    it for sorting purposes. Thanks for any help.

    I think the column still exists even if you set its visibility to false. You could try something like this
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:local="*">
        <mx:Script>
        <![CDATA[
            import mx.controls.listClasses.BaseListData;
            import mx.controls.dataGridClasses.DataGridListData;
            import mx.controls.dataGridClasses.DataGridItemRenderer;
            import mx.events.ListEvent;
            import mx.controls.*;
            private function grd_click(e:ListEvent):void{
                    var icol:int = e.columnIndex;
                    var column:DataGridColumn = DataGridColumn(grid1.columns[icol]);
                    var headerTxt:String = column.headerText;
                    Alert.show("Header text = " + headerTxt)
            private function hideCol(index:int):void{
              if(index == 0)
                  grid1.columns = [column1];
              else
                  grid1.columns = [column2];
            [Bindable]private var items:Array = [
                {name:"vlad",lname:"collak"},
        ]]>
    </mx:Script>
        <mx:DataGrid x="90" y="99" itemClick="grd_click(event)" id="grid1" dataProvider="{items}">
            <mx:columns>
                <mx:DataGridColumn id="column1" headerText="Column 1" dataField="name" />
                <mx:DataGridColumn id="column2" headerText="Column 2" dataField="lname"/>         
            </mx:columns>
        </mx:DataGrid>
        <mx:Button x="90" y="262" label="Hide Column" click="hideCol(0)"/>
        <mx:Label x="90" y="56" text="Click on column content and the code will show col # and header name. Do the same After Hide Colun  is clicked" width="642" height="35"/>
    </mx:Application>

  • DataGrid rendering problem

    I have an ApplicationControlBar above a data grid.  The data grid has widths specified and is bound to a data source that is populated by a service call.  The mark up below causes the description column to disappear and the header row is about 10 times taller than it should be.  If I put an empty label inside  the application bar it all loads as expected.  I tried putting an updateComplete handler on the grid but I found two problems.  Adding a trace to the method handler showed that it just kept firing over and over.  It also prevented resize of the grid columns.
    <mx:VBox 
    height="100%" width="80%" horizontalScrollPolicy="off" verticalScrollPolicy="off">
    <mx:ApplicationControlBar width="100%" horizontalGap="0" id="docsAppBar">
    <mx:Button click="browseForDocs()"                  id="
    docsTabUploadButton"                  label="
    Upload Document"                  enabled="
    {MediaManagerModel.activateUploadButton}"/>
    </mx:ApplicationControlBar>       
    <mx:HBox width="100%" height="100%">
    <mx:DataGrid dataProvider="{tabMediaList}"                  id="
    docGrid"                   width="
    100%"                   height="
    100%"                  verticalGridLines="
    true"                   variableRowHeight="
    true"                   wordWrap="
    true"                   sortableColumns="
    false"                  editable="
    false"                  allowDragSelection="
    true"                   dragEnabled="
    true"                   dragMoveEnabled="
    true"                   dropEnabled="
    true"                  dragComplete="updateRowPositions()"
                      itemClick="updateCurrentMediaObject()"
    >
    <mx:columns>
    <mx:DataGridColumn width = "20" id="displayOrderCol" headerText="#"  dataField="displayOrder" labelFunction="MediaManagerModel.getMediaDisplayOrder"/>
    <mx:DataGridColumn width = "250" id="mediaNameCol" headerText="File Name" dataField="mediaName" />
    <mx:DataGridColumn width = "120" id="mediaTypeCol" headerText="Type"  dataField="mediaType" labelFunction="MediaManagerModel.getMediaTypeDisplay"/>
    <mx:DataGridColumn width = "60" id="buyerCol" headerText="Public" dataField="buyer" labelFunction="MediaManagerModel.getPublicDisplay" textAlign="center"/>
    <mx:DataGridColumn width = "50" id="mediaSizeCol" headerText="Size" dataField="mediaSize" labelFunction="MediaManagerModel.getMediaSizeDisplay" textAlign="center"/>
                           <mx:DataGridColumn width = "90" id="inputDateCol" headerText="Date Added" dataField="inputDate" labelFunction="MediaManagerModel.getMediaInputDateDisplay" textAlign="center"/>
                           <mx:DataGridColumn width= "240" id="mediaDescrCol" headerText="Description" dataField="mediaDescr" />                          
    </mx:columns>
               </mx:DataGrid>
         </mx:HBox>
         </mx:VBox> 
    If I add <mx:Label/> inside the ApplicationControlBar everything renders fine.  Any ideas? 

    How are you re-assigning the dataProvider from the
    RemoteObject result?
    Tracy

  • XML Publisher Arabic Report Display and missing header problem

    Hi All
    We are in apps. 11.5.9 with English and Arabic language support.Even though we have all our data and reports in English we are in need of an Arabic Invoice report.
    Since Titles cannot be typed in oracle report builder we decided to build the report in Xml Publisher.
    Every thing is done to run the report in xml publisher but we face two probles in the final xml output.
    Problem1. Header and footer are not displaying in the report.
    Problem2. Arabic characters are not displaying properly in the report.
    Here what ever titles we gave in Arabic are displaying good.
    If I save the xml file and load it in the templete and view output shows the correct arabic wordings.
    But when during taking the output directly from apps. then the problem comes. The Arabic fonts are not dispaying correctly.
    Any Idea about this.
    If any one come across this issue please mail me at [email protected]
    Habeeb

    Try to load the arabic fonts into XML Publisher Admin. Check Tim's blog for more info (http://blogs.oracle.com/xmlpublisher/2006/06/how_to_install_a_font_using_xm.html)

  • How to include a custom bkgd in the spark datagrid header

    I have a CustomDatagridSkin.mxml, which is based upon the default DataGrid.
    I'm looking at the code, and I'm a noob, trying to make heads or tails out of it. If I could just figure out how to change the header color I would be happy. But what I'd really like to know is how to apply a graphic to the background of the header.
    Is there some example on the net that I can follow, because I'm having a hell of a time finding something useful.
    The demo that Deepa had was awsome (corkboard and postit notes looking thing).
    How was that done?
    Thanks
    Kristin

    Hi,
    Do you want a custom background for the entire header bar? or for each individual header renderer? I would take a look at the DefaultGridHeaderRenderer class to see how we do headers. These header renderers are used by the GridColumnHeaderGroup to create the column headers. You can modify it to have your own custom background graphic. If you just want to tweak the color, you can apply the chromeColor style to the DataGrid.
    I can try to cook up an example for you when I have a bit of time, but not at the moment. Hope this points you in the right direction.
    -Kevin

  • New MBP 15" Weird Freezing & Disk (Volume Header) Problems, related?

    Hi all
    I hope someone can help me, and I hope I don't have a faulty Mac!
    I bought a 15" MBP a week ago and while it's awesome, I have a problem where the system will completely freeze, except for the mouse cursor.
    Nothing on the keyboard works, force quit doesn't come up, plugging in / removing the power supply doesn't change the battery icon, there's no spinning beach ball. Literally the whole system is unresponsive except for the mouse cursor which seems to be moving fine. None of the hardware controls work either, i.e. eject button
    The only consistency that I can think of is that of all the times that it has happened, Firefox was open (ver. 2.0.0.2), except once where Firefox had just started (it froze with Firefox darkened in the dock)
    Since then I've reinstalled Firefox but I have another problem and wonder if they're related.
    Fresh out of the box I tried to install Windows through Boot Camp but when Boot Camp tried to partition my disk it gave me an error and referred me to Disk Utilities. Disk Utilities gave me a "Volume Header needs minor repair" error, so I fixed it from an older Mac that I have with the MBP mounted in disk mode.
    This fixed it, Boot Camp then installed fine, I managed to get myself a virus so I deleted the Windows partition through Boot Camp and tried to partition the disk again with the intent of installing Windows and not get a virus this time
    However, Boot Camp gave me the same "Volume Header needs minor repair" error!
    The consistency of these errors is making me concerned about the quality of the hdd that's in my MBP!
    Some info you might need to know about my MBP
    15" MBP Core2Duo
    2.33 ghz
    Boot ROM ver: MBP22.00A5.B01
    SMC Version: 1.12f5
    HDD: Toshiba MK2035GSS
    Revision: DK021B
    The Disk Utility error:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    Volume Header needs minor repair
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Also, I'm not sure if this has any bearing but I migrated all the info from my old 12" PB onto this.
    I hope someone can tell me that everything's ok!!
    15" MBP, Core2Duo, 2.33; G5 iMac, no iSight; 12" Powerbook 867 Mac OS X (10.4.8)

    Hi all
    I hope someone can help me, and I hope I don't have a faulty Mac!
    I bought a 15" MBP a week ago and while it's awesome, I have a problem where the system will completely freeze, except for the mouse cursor.
    Nothing on the keyboard works, force quit doesn't come up, plugging in / removing the power supply doesn't change the battery icon, there's no spinning beach ball. Literally the whole system is unresponsive except for the mouse cursor which seems to be moving fine. None of the hardware controls work either, i.e. eject button
    The only consistency that I can think of is that of all the times that it has happened, Firefox was open (ver. 2.0.0.2), except once where Firefox had just started (it froze with Firefox darkened in the dock)
    Since then I've reinstalled Firefox but I have another problem and wonder if they're related.
    Fresh out of the box I tried to install Windows through Boot Camp but when Boot Camp tried to partition my disk it gave me an error and referred me to Disk Utilities. Disk Utilities gave me a "Volume Header needs minor repair" error, so I fixed it from an older Mac that I have with the MBP mounted in disk mode.
    This fixed it, Boot Camp then installed fine, I managed to get myself a virus so I deleted the Windows partition through Boot Camp and tried to partition the disk again with the intent of installing Windows and not get a virus this time
    However, Boot Camp gave me the same "Volume Header needs minor repair" error!
    The consistency of these errors is making me concerned about the quality of the hdd that's in my MBP!
    Some info you might need to know about my MBP
    15" MBP Core2Duo
    2.33 ghz
    Boot ROM ver: MBP22.00A5.B01
    SMC Version: 1.12f5
    HDD: Toshiba MK2035GSS
    Revision: DK021B
    The Disk Utility error:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    Volume Header needs minor repair
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    Also, I'm not sure if this has any bearing but I migrated all the info from my old 12" PB onto this.
    I hope someone can tell me that everything's ok!!
    15" MBP, Core2Duo, 2.33; G5 iMac, no iSight; 12" Powerbook 867 Mac OS X (10.4.8)

  • Main window header problem

    Hi All,
    My header in the main window is getting printed at the end of the page even if it contains no data in the main area.
    I have given a porgram code in the header, becos based on that my header data should be printed and a page break in the main (sort end event).
    What should i do to avoid the extra header.

    hi
    good
    go through these links which ll give you complete idea about the printing of the header in the main window,hope this would help you to solve your problem
    http://www.supinfo-projects.com/fr/2005/forms_sapscript_en/7/
    http://help.sap.com/saphelp_nw04/helpdata/en/d6/0dba4e494511d182b70000e829fbfe/content.htm
    thanks
    mrutyun^

  • Bex dynamic header problem

    Hi All,
    I have 2 problems..
    1) I have to print the vendor statement of account for 1 year. Now for each vendor the vendor code name and address comes followed by other columns of account information related to it. My requirement is that i want the vendor code name and address to appear in header line and then all other information for that vendor comes beneath it. Meaning the vendor name and address comes in 1st line , and from 2nd line all account information related to that vendor comes. then say on 60th line another vendor name and address comes...and from 61st line accoutn information of the 2nd vendor comes.
    How to do it???
    2) i want to ghet dynamic header in the bex report based on the iunformation filled in the selection option. Eg: if user entered a posting date then that posting date should appear in the report header.
    both these are urgent requirements....Plz help soon
    Thanks & regards
    Akash

    Hi , thanks for ur reply but the Report designer is not working , givng me error
    RFC destination NOT_CONFIGURED.
    The main problem is i have to display the name and address of Vendor in a separate row i.e. vendor name and address shud appear in the row and then in following rows the other details.
    Eg.
    11000 Shashi Kapoor  Jaipur         31.12.2006     doc no type etc
    12000 Kamla Verma    Mumbai      12.10.2006    doc no type etc
    Now final putput will be like
    11000
    Shashi Kapoor
    Jaipur
    31.12.2006    .................................
    12000
    Kamla Verma
    Mimbai
    12.10.2006.........................................
    Thanks .

Maybe you are looking for

  • How to connect Satellite Pro L10 to TV?

    Hi, I have a Satellite Pro L10 which has a VGA out put but no s-video out put and I would like to stream on to my TV! Does anyone know what I need to get or have to do to enable me to do this? I have a VGA to SCART led but this dose not seems to work

  • Can't delete master spread

    Dear All, I'm trying to delete a master page but the option DELETE MASTER SPREAD is greyed out.  It is not in use on any page, but still won't let me delete -- any idea why? InDesign CC seems to be very quirky! Small Town Gal

  • Transaction GS01: Is Exclude possible?

    Hi ABAPers, Transaction GS01 is used to create SETS. This involves creation of ranges which can specify a 'FROM VALUE' And a 'TO VALUE'. Can I exclude a specific value from this range in this set? If possible, please let me know. Help is much appreci

  • Screen layout changes document flow

    Hi Experts, I came across one specific need of customer where as he wants to supress 'service document'  tab field on document flow screen, I am not sure if that is at all possible and will appreciate your views and solution in detail. Thanks in adva

  • How do I set photoshop CC as the default for Bridge CC?

    How do I set photohsopCC as the default for Bridge CC?