Is there any option of hiding ( no display)  a field from the output list.?

Hi,
   i have a requirement where  i should not be display the field in the output but need to use the field in the write stmt .
example :
write : / itab-field1 ,
             itab-field2.
but in the output list i dont want the field 2 to be dispalyed  is there any way for this.
kindly help me out.
thanks and regards,
vikram

Hi Vikram,
Just clear the field value before the write statement. It will solve the issue.
Loop at itab into wa.
clear wa-field1. " say suppose if you dont want to display field1 of itab
write  wa-field1 
write / wa-field2
Endloop.

Similar Messages

  • Is there any option to recover a file we saved with the same name that other by mistake in a MAC PC

    is there any option to recover a file we saved with the same name that other by mistake in a MAC PC

    There's a slim chance. +*Stop using the drive IMMEDIATELY.+*
    Then see: [Data Recovery|http://web.me.com/pondini/AppleTips/Recover.html].

  • I have had my iphone 5 stolen and last backed up approx. 2 months ago. I don't think I've ever gone through and set up PhotoStream however it has always appeared on my phone. Is there any way of getting back messages/photos/etc from the past 2 months?

    I have had my iphone 5 stolen/have lost my iphone 5. I haven't backed it up for a while (2 months?!) and I am not sure that I actually set up  Photostream however it's always been on there from what I can tell (icon is there). Is there anyway of getting back contacts/messages/photos/anything from the phone onto my new replacement phone if it hadn't been backed up recently? I've got everything up until the last backup - contacts and messages aren't such an issue for me but the photos mean a lot!!!

    If you are logged in to icloud with your same Apple ID. Go to setting on your phone>Photos & Camera and turn ON my Photo Stream.

  • Is there any way for a basemap to be manipulated from the client side?

    Hello,
    Essentially, we have a basemap (+basemap A+) that contains boundary geography (i.e., county, tract, block boundaries) and we have a theme (+theme A+) that contains housing unit points.
    The idea is that theme A will be a layer that the user will be able to switch on/off. We know how to do this, but the problem comes in where performance is concerned.
    Previously, theme A was actually included in basemap A, and performance was not an issue, but the problem then was that the user was not able to turn that layer on/off.
    Also I have done everything I know in terms of caching as well as using the mapviewer API
    (e.g.,
    test_theme.setClickable(false);
    test_theme.enableInfoWindow(false);
    test_theme.enableInfoTip(false);
    test_theme.enableLabels(false);
    test_theme.enableAutoWholeImage(true);
    test_theme.setMinVisibleZoomLevel(5);),
    but rendering the theme on the client side is still way too slow (even at zoom level 5).
    So, my question boils down to this. Is there any way for a basemap to be manipulated by a user? I.e., Is there a way for a user to pass parameters to a basemap, essentially telling it which themes to turn on/off?
    I know you can specify which zoom level the basemap's themes are visible, but again, we want the user to be able to have control of when a certain theme is shown or not.
    Thank you for any help you can provide,
    John
    Edited by: user641525 on Mar 18, 2009 10:29 AM
    Edited by: user641525 on Mar 18, 2009 10:30 AM

    What you may try is to replicate your base map but take the point theme out of its definition. Then create a second tile layer for the new base map. You can add both tile layers to the client (but set only one of them to be visible). Then simply switch the tile layers' visibility on/off based on user turning on/off the point theme. The built-in Oracle Maps tutorial #22 (Multiple Base maps) has some sample code you might be able to re-use.
    thanks
    LJ

  • Is there any way to recover lost iTune I purchased from the itunes store?

    Is there any way to recover my iTunes Library without re-purchasing all the songs-library was lost in PC problems.

    Go to the iTunes Store, log into your account, and click the Purchases link under the Quick Links. From there you should be able to re-download some or all of your purchased content. Note that not all content has been licensed for re-downloading in all countries at this time; you can see what content you can download here:
    http://support.apple.com/kb/HT5085
    You can also re-download content using an iOS device.
    For more information, see:
    http://support.apple.com/kb/ht2519
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Is there any way to add a credit card number from the iPhone for the app store

    Is there any way to add a credit card to my account from my phone my computer has crashed and I can't update any of my apps

    I don't believe so. I will have a closer look though and report back

  • *** Is There Any Way To Hide RAID "Boot OSX" Volumnes from the Finder? ***

    I have several RAID volumes, and these darn "Boot OSX" guys take up space and distract.
    Couldn't find a utility that will hide them.
    - Ted.

    Hi Nasa,
    Please try the authorization object S_RS_ICUBE. One of the fields is "SubObject". One of the choices for this field is "Data".
    Be sure that your developers do not have this field for the InfoCube/InfoArea in question.
    That might work.
    Another option (if you are on BI 7.0) is turn on authorization relevance for one of the InfoObjects in the Cube.
    Then, be sure that the developers do not have an analysis authorization with this characteristic (or that they don't have 0BI_ALL). This is another layer, and might not stop access in all situations, for example transaction listcube.
    Good Luck
    Rob

  • Are there any good code examples for displaying preview images in the storefront?

    I can gather other info using folio.xxx, but can not find any good examples to use for preview images.  Tried folio.getPreviewImage() with no success.  Oh, I should mention it is version 2.  Plenty of examples for version 1.
    Perhaps if I get a little more specific.
    I am calling up the folios via:
           adobeDPS.libraryService.folioMap.addedSignal.add(function(folios) {
                for (var i = 0; i < folios.length; i++) {
                    addFolio(folios[i]);
            }, this);
    This eventually works into a function where I am gathering and displaying folio data:
         var productId = folio.productId;
        var html  = "<div id='" + productId + "'>";
            html +=     "<a href='#'><img class='shadow' width='120' src='' border=0 /></a>";
            html +=     "<br /><span class='bold'>" + folio.title + "</span>";
            html += "</div>";
        this.$el = $(html);
    folio.title works fine to pull up the title, but I can no longer use folio.getPreviewURL in v2.  What code should I be using to set the src to the preview image?
    Thanks

    Have you looked at the default implementations of the library?
    In FolioItemView's render function, there is a function(follow the nested functions!):
    setTimeout(function(){ scope.loadPreviewImage() }, 100);
    It references this function (this doesn't copy well):
    loadPreviewImage: function() {
    if (this.el.parentElement) {
    var transaction = this.folio.getPreviewImage(135, 180, true);
    transaction.completedSignal.addOnce(this.getPreviewImageHandler, this);
    Going deeper, into the getPreviewImageHandler function is where you see the url value..
    if (transaction.state == adobeDPS.transactionManager.transactionStates.FINISHED && transaction.previewImageURL != null) {
                                  this.$el.find(".folio-thumb").attr("src", transaction.previewImageURL);
    Within the example is also code for supplying a preview when the Adobe API is not available:
    (Within the render function)
    var json = this.model.toJSON();
    $folioThumb.attr("src", json.libraryPreviewUrl);
    If you're making any changes to where the preview is displayed, you can just swap out the class ".folio-thumb" to whatever the class (or id) is of the element you're wanting to render the preview in.

  • There is a webi report "Report1" and "Report2" by mistake "Report2" is been saved as "Report1" . Now is there any option to get back original report "Report1" from server?

    Need help....

    Hi,
      Now again transport Report 1 From Dev/QA system to Prod.
    I dont think there is a possibility to get Report 1 in Prod system other than re-import from DEV/QA
    Hope this Helps,
    Sundar Kumar

  • Is there any way to add a digital signature field at the end of forms?

    I am trying to have my patients fill out the mandatory forms online and have them sign it aswell.
    any help would be great.

    You can easily create a form in FormsCentral that your patients can fill online but FormsCentral doesn't support signature field.
    If you must have a signatures then you can have a look at http://echosign.acrobat.com.
    You can still use FormsCentral to create a PDF form that you can then use with EchoSign but you won't be able to gather data in FormsCentral.
    Gen

  • Is there any way to delete more than one email from the iPhone at a time?

    What if I know I've read everything already online - can I press my Mail icon and instead of opening & deleting one by one, can't I delete everything in my Mail that's there? THANKS!

    Use the edit button, then select all messages you want to delete, and press "Delete" button. You still have to select one by one, but you'd have to do it anyway.

  • Is there any option on Cisco Unified CM Administration 9.1.1 to show caller ID number when using MOBILITY option?

    Dear All,
    I am using Cisco Unified CM Administration 9.1.1 and MOBILITY works fine.
    However  when somebody calls from external phone number into internal user number and MOBILITY option is ON and obviously, forwards the call for the user's cell.....in this case user can see only main company number, but not a caller number.
    So, is there any option to change it?  
    Thank you

    Go to the GW and run some debugs to find out exactly what you're sending, chances are, your telco is overwriting the original called number as it's nor part of your DID range.
    HTH
    java
    if this helps, please rate
    www.cisco.com/go/pdihelpdesk

  • Is there a way to remove one or more words in the dictionary list of auto-completion?

    Is there a way to remove one or more words from the dictionary list of auto-completion?

    Hi Gordon,
    Auto-completion does not involve the dictionary. The process is dynamic, and remembers the text string you have entered into each cell. The auto completion list is constructed using data you have entered into cells above the one you are currently working with. Suggestions presented contain the same character string as a previous entry in that column. Editing the list presented is not possible.
    Auto-Correction does involve the spelling dictionary. It monitors the text as you type. If it finds an 'unregognized word,"' AND has more than one suggestion as to the 'correct' word, it opens a dialogue, giving you a chance to choose one of the suggestions, enter your own corection, or to accept the current spelling. If there is only one suggestion offered, Auto-correction automatically replaces the unrecognized word wth that suggestion.
    Regards,
    Barry

  • Is there any option to display selection screen text in bold or big font?

    Hi all,
    Is there any option to display selection screen text in bold letters or with increase font size?
    Thanks n Regards

    Hi,
    Just give atry in this way..
    open the same program ans selection-screen screen no will be 1000 in se51 screen painter,
    go to properties of the texts u want to change then go to display tab and check the checkbox bright.
    it may or may not work but this will work in module pool .
    just give a try...
    Regards,
    Suresh.

  • Is there any way to have pace displayed in mph?

    This may be a noobish question but is there any way to have pace displayed in mph instead of min/mile? I didn't see anything obvious in settings. I'd like to be able to easily go from the treadmill to the outdoors and have my pace be the same.
    Thanks

    By definition, pace is minutes per mile. Pace is what runners generally use. Most treadmills that I've used will give you pace.
    What your asking for is speed. I don't think it's an option though I could be missing something as well.

Maybe you are looking for