ALV FONT AND STYLE CHANGE .

Hi all !
DO you know if it is possible to change the font/style  in an ALV grid display ? if there is a way i will be glad to hear
about it .
I searched alot and still didn't find something useful .
thanks ,
azit .

Hi,
Eg to change Font style in ALV
*& Report  Z_DEMO_ALV_JG                                              
&----REPORT  z_demo_alv_jg                           . Include for all style values
INCLUDE <cl_alv_control>.* Internal table for final output data
DATA: i_flight TYPE STANDARD TABLE OF sflight.* Internal table for field catalog info
DATA: i_fields TYPE lvc_t_fcat.* Field symbol for field catalog
FIELD-SYMBOLS: <wa_fields> TYPE lvc_s_fcat.
Select data
SELECT * FROM sflight
INTO TABLE i_flight
UP TO 100 ROWS.IF sy-subrc = 0.* Get field catalog
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
   EXPORTING
      i_structure_name             = 'SFLIGHT'
    CHANGING
      ct_fieldcat                  = i_fields
   EXCEPTIONS
     inconsistent_interface       = 1
     program_error                = 2
     OTHERS                       = 3
  IF sy-subrc = 0.*   Changing the style of field catalog
    LOOP AT i_fields ASSIGNING <wa_fields>.
      IF sy-tabix > 4.
        <wa_fields>-style  =  ALV_STYLE_FONT_ITALIC.
      ELSE.
        <wa_fields>-style  =  ALV_STYLE_FONT_BOLD.
      ENDIF.
    ENDLOOP.  ENDIF.* Calling the FM to display ALV report
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
    EXPORTING
      i_structure_name = 'SFLIGHT'
      i_grid_title     = 'Style demo'(001)
      it_fieldcat_lvc  = i_fields
    TABLES
      t_outtab         = i_flight
    EXCEPTIONS
      program_error    = 1
      OTHERS           = 2.
  IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDIF.

Similar Messages

  • I'm trying to replace a missing font and apparently it's a graphic.  It's not letting me replace with another font and click change.  I can't export until it's fixed and I need to fix / bypass as soon as possible.

    I'm trying to replace a missing font and apparently it's a graphic.  It's not letting me replace with another font and click change.  I can't export until it's fixed and I need to fix / bypass as soon as possible.

    Go find the graphic in question, and open it in its native program. The problem will have to be fixed there.

  • Apple Mail font  and colour changes while typing!

    I'm having an issue whereby the font and colour changes back to the default while I'm typing an email!
    I have several signatures.  When I select a signature and start typing, at apparently random moments, the font reverts to the default!
    This will happen when I'm typing a line and, when it changes, if I cmd-z to undo my typing character by character - at some random point it suddenly reverts back to the signature font and colour.
    Has anyone else experienced this, and is there a cause and/or solution?
    Thanks,
    Geoff

    I'm having an issue whereby the font and colour changes back to the default while I'm typing an email!
    I have several signatures.  When I select a signature and start typing, at apparently random moments, the font reverts to the default!
    This will happen when I'm typing a line and, when it changes, if I cmd-z to undo my typing character by character - at some random point it suddenly reverts back to the signature font and colour.
    Has anyone else experienced this, and is there a cause and/or solution?
    Thanks,
    Geoff

  • Saving InCopy Story with Font and Style information...

    Dear All,
    Can anyone can shed any light on an InCopy story export problem I'm having?
    I've got two versions of a function in a shared library, one for CS4 and one for CS5, which is used for both InCopy and InDesign.
    The story export works okay and normally outputs the font and style information which is used by the story.
    I've just added code to include all font and style resources dependent on a system setting.
    The CS4 version works fine and I get a satisfying amount of file bloat if I turn the option on.
    The CS5 version works as expected in InDesign but not when it's called from InCopy.
    In fact if I turn the setting on in InCopy I get no font information at all, if I turn it off then I get the font info used by the story.
    The call to SetInCopyInterchangeExportOptions returns kNoError(nil), so I imagine it's worked...
    Is there anyway I can trace what's going on in the export in InCopy.
    Is this the right call to acheive my aim?
    Thanks in advance for any help forthcoming.
    Regards
    Caerwyn
    #if (CREATIVE_SUITE_VERSION == CS4)
    ErrorCode PrSnippetUtils::ExportInCopyStory( IPMStream *s , const UIDRef& storyUIDRef )
        ErrorCode    nResult = kFailure;
        Utils<IINXExportOptionsUtils> wsExportOptions;
        if ( !wsExportOptions )
            return kFailure;
        bool16 oldIncludeGraphicProxyData = wsExportOptions->GetOutputInCopyGraphicProxyData();
        bool16 oldIncludeAllResources = wsExportOptions->GetInCopyIncludeAllResources();
        InterfacePtr<IInCopyInterchangeExportOptions> storyExportOptions( storyUIDRef, UseDefaultIID() );
        if ( storyExportOptions )
            wsExportOptions->SetOutputInCopyGraphicProxyData( storyExportOptions->GetIncludeGraphicProxyData() );
            wsExportOptions->SetInCopyIncludeAllResources( SaveAllStoryResources() );
        INXOptions options = kINXExpanded;
        nResult = Utils<ISnippetExport>()->ExportInCopyInterchange( s, UIDList( storyUIDRef ), options );
        // restore export options
        wsExportOptions->SetOutputInCopyGraphicProxyData( oldIncludeGraphicProxyData );
        wsExportOptions->SetInCopyIncludeAllResources( oldIncludeAllResources );
        return nResult;
    #endif
    #if (CREATIVE_SUITE_VERSION == CS5)
    ErrorCode PrSnippetUtils::ExportInCopyStory( IPMStream *s , const UIDRef& storyUIDRef )
        InterfacePtr<IWorkspace> ws(PrIDContextUtils::GetExecutionContextSession()->QueryWorkspace());
        if ( !ws )
            return kFailure;
        InterfacePtr<IInCopyInterchangeExportOptions> wsExportOptions( ws, UseDefaultIID() );
        if ( !wsExportOptions )
            return kFailure;
        ErrorCode    nResult = kFailure;
        UIDRef    wsUIDRef = ::GetUIDRef( ws );
        bool16 oldIncludeProxies = wsExportOptions->GetIncludeGraphicProxyData();
        bool16 oldIncludeAllResources = wsExportOptions->GetIncludeAllResources();
        InterfacePtr<IInCopyInterchangeExportOptions> storyExportOptions( storyUIDRef, UseDefaultIID() );
        Utils<IInCopySharedUtils> iInCopySharedUtils;
        // set workspace export options
        if ( storyExportOptions && iInCopySharedUtils )
            bool16 bIncludeProxies = storyExportOptions->GetIncludeGraphicProxyData();
            bool16 bIncludeAllResources = SaveAllStoryResources();
            nResult = iInCopySharedUtils->SetInCopyInterchangeExportOptions( wsUIDRef,
                    kTrue, bIncludeProxies, kTrue, bIncludeAllResources );
        nResult = Utils<ISnippetExport>()->ExportInCopyInterchange( s, UIDList( storyUIDRef ) );
        // restore workspace export options
        if ( iInCopySharedUtils )
            iInCopySharedUtils->SetInCopyInterchangeExportOptions( wsUIDRef,
                    kTrue, oldIncludeProxies, kTrue, oldIncludeAllResources );
        return nResult;
    #endif

    That is a sign that your preference files are becoming corrupt. Something is wrong with your system if this is happening regularly.
    Bob

  • When create PDF the PLD font and layout change

    When I create a PDF  from the SAP Print Layout Designer, the fonts and layout change. Hoe do not correct this

    Check under Document Property for PLD to see what printer has been selected. If it is default, you may change your PDF printer to be your default printer.

  • Font and size changes  in design view  don't appear

    I am using the trial version of Dreamweaver CS3 on my G5 Mac
    (Leopard), and whenever I make changes to the font and font size,
    it does not appear in the design- although the code is there (in
    both the css that I create or specific to the paragraph) and then
    it shows up when I save and go to browser. Is there some secret to
    making the changes viewable as they are being made rather than
    having to go to the browser every time before one can see them? It
    doesn't seem very practical to only be able to view them in a
    browser and not while you are making changes so you know if it is
    what you want... can someone please help me with this? I'd like to
    buy CS3, and use Dreamweaver, but it won't save me any time if I
    have to keep going back to the browser before I can see the changes
    I've made.

    On Sat, 29 Dec 2007 01:44:29 +0000 (UTC), "Norma Jean
    Almodovar"
    <[email protected]> wrote:
    >I am using the trial version of Dreamweaver CS3 on my G5
    Mac (Leopard), and
    >whenever I make changes to the font and font size, it
    does not appear in the
    >design- although the code is there (in both the css that
    I create or specific
    How are you making the changes - using the properties box in
    CSS mode
    - or in an external style sheet.
    ~Malcolm N....
    ~

  • Font Size / Style changes on recipient's end?

    I've been using mail since Leopard and recently upgraded to Snow Leopard where I'm currently on Mail version 4.2 (1078).
    Whenever I compose and send a message where the default font is Helvetica 12 and the email format is rich text, some recipients receive my email where the font is very tiny, maybe a 4 pt font and the style changes.
    In many of my emails, I will copy and paste a paragraph or two from another email where the font is theoretically the same and then I will edit a few words in the body of the email before submitting.
    When some recipients reply back with my original email text, I sometimes see the edited text as a tiny font or the font size of my email has shrunk down considerably.
    I sent a test email to my hotmail and gmail accounts but this issue does not seem to arise. What I saw before sending my email is exactly the same font size/style in my hotmail and gmail accounts.
    Is this an issue with the recipient's email browser or are there some incompatibilities with Apple's Mail and other email browsers?

    Thanks baltwo and Tom. I'll try sending as a PDF file as well.
    Also, I did a test per Tom's instructions about reformatting text. First, I copied text from another email and then pasted it in a new message. I highlighted all the text where I wanted to increase the text size and left one paragraph unchanged.
    I sent the email to the recipient that's having these issues where she replied back with my forwarded email.
    All the text where I increased the point size shrunk and the text that I left alone was actually okay - Weird! I also noticed that the font style changed on their end. By the way, the recipient uses Microsoft Outlook as their email browser.

  • Is it possible to write text in a REPORT in the required font and style

    Hi everyone,
    I have got a requirement from the client,where he asks to write some text in the report with some font size and style,Is it possible to do that in a report,if so plz reply back with piece of code.
    Thanks & Regards,
    Rajeev.N

    Try
    NEW-PAGE PRINT ON.
    PRINT-CONTROL FONT 2 LPI 6.
    WRITE: / 'Bold Letters'.
    This program will print "Bold Letters" in BOLD.
    You cant see the difference on the screen.But when you actually print ,you will see the difference.

  • Fonts and layout changes

    Hi everyone,
    tried everything I could think of, but to no avail. Could anyone have a look and tell me why the fonts, layout of the buttons and drop shadows change in a PC Internet Explorer? In Safari (Mac) it all looks ok. In Firefox (Mac) it looks ok, except for the logo placeholder. I'm using web safe fonts and colours. iWeb '09 (3.0.1) Hmmmmm..... Any suggestions are appreciated.
    www.globalbackyard.fx3dman.com
    Robert

    IE is notoriously bad. See if the tips from Roddy's iWeb for Musicians site will help. See this page: How to get your iWeb Site to load in Internet Explorer.
    OT

  • Font and color changes not executed

    In setting up a new blog page, I've selected a specific color for the titles of my entries, and a typeface. But on the blog page itself, once it was published to MobileMe, the title is gray and the font is not what I selected. Why is it not responding to the changes I've made, and saved? Thank you!

    Yes, I have cleared the browser's cache and no change. I'm trying to think here...when I'm making these changes, I am doing it in the "entries" section, because in the "blog" section these changes are not available for me to make.
    blog template has three entities: 1) blog summary 2) blog entries and 3) blog archive
    changes that you made in 'entries' section won't reflect the blog summary/archive because they are rendered separately.
    You can change 'titles'/head lines font face in blog summary/archive by slowly click on the title three times (all titles will be hilited) then you can change font face.
    but, you can not change the color, because the titles are hyperlinks to link back to the entries. you can change their colors in theme/domain.site2's xml or you willing to post edit blog summary/archive CSS file.

  • OBIEE 11.1.1.7.0 Skin and Style changes

    Dear All,
    I want to customize the skin and style in OBIEE 11.1.1.7.0.
    I already did for OBIEE 11.1.1.5.0 and having fair idea of files and location for customization.
    I used to copy s_blafp and sk_blafp from /opt/xyz/obiee/Oracle_BI1/bifoundation/web/app/res and copy it to
    /opt/xyz/obiee/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes.
    but here in OBIEE 11.1.1.7.0 i can see s_blafp, sk_blafp and s_Fusionfx is used in Dashboard login page.
    1. My doubt is which S_and Sk_ file we have to deploy on CONSOLE ??
    2. Can we follow the same Orcale white paper we used to follow for OBIEE 11.1.1.5.0 Customization ??
    3. Any new document/ link for OBIEE11.1.1.7.0 customization
    Thanks,
    Deep

    Hi All,
    Its a long time i have not seen this post.
    i did the customization for OBIEE11.7 by myself.
    Below is the answers for question raised:
    1. My doubt is which S_and Sk_ file we have to deploy on CONSOLE ??
       - Start working on s_blafp, sk_blafp
    2. Can we follow the same Orcale white paper we used to follow for OBIEE 11.1.1.5.0 Customization ??
       - Yes, Almost same.
    3. Any new document/ link for OBIEE11.1.1.7.0 customization.
    - NA.
    Thanks

  • Font and Color Changes

    I have created my website pages using color on my
    fonts and selecting specific fonts. When I publish the pages and
    look at it in the browser the fonts are different and all color is
    gone from my text. I have just created my first ever website. What
    is happening?

    On Thu, 8 Mar 2007 08:35:19 +0000 (UTC), "harborsedge"
    <[email protected]> wrote:
    >
    I have created my website pages using color on my
    fonts and
    >selecting specific fonts. When I publish the pages and
    look at it in the
    >browser the fonts are different and all color is gone
    from my text. I have
    >just created my first ever website. What is happening?
    Here's a list of fonts found on Windows PCs and Macs. If
    you're not
    using one of them then you can't guarantee it will be
    installed on the
    target computer.
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.htmlhttp://www.ampsoft.net/webdesign-l/ WindowsMacFonts.html
    Show us the page you made so we can help you.
    Steve Fleischer
    steve at flyingtigerwebdesign dot com
    Hong Kong

  • Calendar font and color change no reason

    I am attempting to create a calendar with the new Iphoto and I have to say it is harder to use then the old one. I am trying to manually enter birthdays. Typed couple of entries with Hoefler Text size 8 and worked. All of a sudden tried typing in another date, same month, and Font changed color to orange and is larger but same Hoefler Text setting and size 8 still appear. What am I doing wrong? how do I fix?

    There are a few animated titles with fonts that cannot be changed.  Lens Flare is one of them.
    Here's more information:
    http://support.apple.com/kb/PH2212?viewlocale=en_US
    Matt

  • Keynote font and format changing upon paste

    Hello Apples.
    I have a strange bug with Keynote.  When I copy and paste text or graphics from one slide to another in the same presentation, the formatting gets lost.  It never happened before.  For example, if I copy a text field that is in Arial, when I paste it on another slide, the font switches to Gill Sans and changes size.  Also, if I copy a colored rectangle, when I paste it, it switches back to being filled by that horrible default grey mess. I have resported to using "duplicate", then editing the resulting text.
    Is there a setting that I may have changed? Thanks in advance.
    I am using Lion and Keynote '09.

    Still no solution. If I adjust a page that was created in iWeb 08 (now converted to iWeb 09) and republish it in iWeb 09 some font sizes and formatting can change. Any suggestions of how to combat this problem would be gratefully accepted. Thanks

  • How to convert this into alv display and also change parameterstoselect opt

    tables :mara,marc,stpo.
    parameters: p_werks like t001w-werks obligatory,
    p_matnr like mara-matnr obligatory.
    *select-options : p_matnr for mara-matnr obligatory.
    *parameters: p_werks like marc-werks obligatory,
    *p_matnr like marc-matnr obligatory.
    constants c_x value 'X'.
    data: begin of it_comp occurs 0,
    idnrk like stpox-idnrk,
    ojtxp like stpox-ojtxp,
    menge like stpox-menge,
    meins like stpox-meins,
    matkl like stpox-matmk,
    end of it_comp.
    data: w_topmat like cstmat.
    start-of-selection.
    perform explode_assembly.
    end-of-selection.
    perform write_report.
    top-of-page.
    perform print_header.
    form print_header.
    write: /(18) 'Component'(h00),
    (40) 'Description'(h01),
    'Mat.Group'(h02),
    (18) 'Quantity'(h03).
    uline.
    endform.
    form write_report.
    write: / w_topmat-matnr under text-h00 color col_heading,
    w_topmat-maktx under text-h01 color col_heading.
    loop at it_comp.
    write: /
    it_comp-idnrk under text-h00,
    it_comp-ojtxp under text-h01,
    it_comp-matkl under text-h02,
    it_comp-menge unit it_comp-meins under text-h03,
    it_comp-meins.
    endloop.
    uline.
    endform.
    form explode_assembly.
    data: it_stb like stpox occurs 0 with header line,
    it_stb2 like stpox occurs 0 with header line,
    it_stb3 like stpox occurs 0 with header line,
    w_msg(255) type c.
    Explode highest level:
    call function 'CS_BOM_EXPL_MAT_V2'
    exporting
    auskz = c_x
    capid = 'PP01'
    cuols = c_x
    datuv = sy-datum
    knfba = c_x
    ksbvo = c_x
    mbwls = c_x
    mdmps = c_x
    BGIXO = c_x
    MKMAT = c_x
    MMAPS = c_x
    FBSTP = c_x
    FTREL = c_x
    mtnrv = p_matnr
    werks = p_werks
    importing
    topmat = w_topmat
    tables
    stb = it_stb
    exceptions
    alt_not_found = 1
    call_invalid = 2
    material_not_found = 3
    missing_authorization = 4
    no_bom_found = 5
    no_plant_data = 6
    no_suitable_bom_found = 7
    conversion_error = 8
    others = 9.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
    into w_msg.
    write: / w_msg.
    exit.
    endif.
    Don't process documents
    delete it_stb where idnrk is initial.
    Don't process valid from furure:
    delete it_stb where datuv >= sy-datum.
    Explode phantom assemblies up to last level
    *do.
    it_stb2[] = it_stb[].
    *delete it_stb2 where dumps is initial.
    *if it_stb2[] is initial.
    *exit.
    *endif.
    *delete it_stb where not dumps is initial.
    delete it_stb where VPRSV <> 'S' OR MMSTA = '61'.
    loop at it_stb2.
    call function 'CS_BOM_EXPL_MAT_V2'
    exporting
    capid = 'PP01'
    auskz = c_x
    cuols = c_x
    datuv = sy-datum
    knfba = c_x
    ksbvo = c_x
    mbwls = c_x
    mdmps = c_x
    FBSTP = c_x
    FTREL = c_x
    mtnrv = it_stb2-idnrk
    werks = p_werks
    tables
    stb = it_stb3
    exceptions
    alt_not_found = 1
    call_invalid = 2
    material_not_found = 3
    missing_authorization = 4
    no_bom_found = 5
    no_plant_data = 6
    no_suitable_bom_found = 7
    conversion_error = 8
    others = 9.
    if sy-subrc <> 0.
    message id sy-msgid type sy-msgty number sy-msgno
    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
    into w_msg.
    write: / w_msg.
    else.
    delete it_stb3 where idnrk is initial.
    delete it_Stb3 where sobsl = 50.
    loop at it_stb3 .
    multiply it_stb3-menge by it_stb2-menge.
    modify it_stb3 transporting menge.
    endloop.
    append lines of it_stb3 to it_stb.
    endif.
    endloop.
    *enddo.
    Build table of components collecting the same components from
    all levels
    loop at it_stb.
    it_comp-matkl = it_stb-matmk.
    it_comp-idnrk = it_stb-idnrk.
    it_comp-ojtxp = it_stb-ojtxp.
    it_comp-menge = it_stb-menge.
    it_comp-meins = it_stb-meins.
    collect it_comp.
    clear it_comp.
    endloop.
    ENDFORM.
    using this i got the bom explosion and also i tried to use the following code
    to diplay alv diplay,but i got the errormsg,
    here  i got only one material input,instead of i want to use
    select options to from to ,if i give 1 to 10 material
    ouput is
    material 1
    descripn
    bom and components
    materials 2
    desc
    bom comp
    TYPE-POOLS : SLIS.
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : WA_FIELDCAT_LN LIKE LINE OF IT_FIELDCAT.
    DATA : IT_EVENTCAT  TYPE SLIS_T_EVENT.
    DATA : WA_EVENTCAT_LN  LIKE LINE OF IT_EVENTCAT.
    DATA : IT_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: S_COL_POS TYPE I.
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : WA_FIELDCAT_LN LIKE LINE OF IT_FIELDCAT.
    DATA : IT_EVENTCAT  TYPE SLIS_T_EVENT.
    DATA : WA_EVENTCAT_LN  LIKE LINE OF IT_EVENTCAT.
    DATA : IT_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: S_COL_POS TYPE I.
    DATA : IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA : WA_FIELDCAT_LN LIKE LINE OF IT_FIELDCAT.
    DATA : IT_EVENTCAT  TYPE SLIS_T_EVENT.
    DATA : WA_EVENTCAT_LN  LIKE LINE OF IT_EVENTCAT.
    DATA : IT_LAYOUT TYPE SLIS_LAYOUT_ALV.
    DATA: S_COL_POS TYPE I.
    FORM BUILD_FIELDCATALOG.
      PERFORM BUILD_FIELDCAT USING 'MATKL'.
      PERFORM BUILD_FIELDCAT USING 'IDNRK.
      PERFORM BUILD_FIELDCAT USING 'OJTXP.
    PERFORM BUILD_FIELDCAT USING 'MENGE'.
    PERFORM BUILD_FIELDCAT USING 'MEINS'.
    ENDFORM.
    FORM TO BUILD IN FIELD CATALOG FOR ALV FORM
    FORM BUILD_FIELDCAT USING L_FIELDNAME LIKE DD03L-FIELDNAME S_TEXT LIKE DD03P-SCRTEXT_M.
      CLEAR WA_FIELDCAT_LN.
      ADD 1 TO S_COL_POS.
      WA_FIELDCAT_LN-REF_TABNAME  = 'IT_COMP'.
      WA_FIELDCAT_LN-FIELDNAME    = L_FIELDNAME.
      WA_FIELDCAT_LN-SELTEXT_M    = S_TEXT.
      WA_FIELDCAT_LN-COL_POS      = S_COL_POS.
      WA_FIELDCAT_LN-QFIELDNAME   = SPACE.
      WA_FIELDCAT_LN-HOTSPOT      = SPACE.
      WA_FIELDCAT_LN-JUST         = 'R'.
      APPEND WA_FIELDCAT_LN TO IT_FIELDCAT.
    ENDFORM.
    FORM TO BUILD IN FIELD CATALOG FOR ALV FORM
    FORM DATA_DISPLAY.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
       I_GRID_TITLE                      = TEXT-001
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = IT_FIELDCAT
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = IT_COMP
       EXCEPTIONS
       PROGRAM_ERROR                     = 1
       OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    GIVE ME SOLUTION FOR THAT ON, VERY URGENT
    THANKS IN ADVANCE
    regards
    ds

    Hi
    declare select-options instead of parameters
    for converting a report to ALV
    create a field catalog.
    for this two option declare a itab with       
    fcat    TYPE slis_t_fieldcat_alv
    and pass the field name,descr etc to fcat and append the same.
    or create structur same as your itab and pass the same with FM
    'REUSE_ALV_FIELDCATALOG_MERGE'
    use either <b>reuse_alv_grid_display or reuse_alv_list_display</b> .
    and pass the itab.
    thanks
    Shiva

Maybe you are looking for

  • Account assignment objects are incorrect. No substitution is possible

    Account assignment objects are incorrect. No substitution is possible. Message no. 3G209 Diagnosis The account assignment object check showed that, from the point of view of CO, the specified account assignment is not valid, and cannot be replaced by

  • Input /output tax

    Dear All , I have one tax code V1- 4% now the tax tax rate has been increased from 4% to 8%. Thats why i have created new tax code V2-8%. V1 is valid for 01/01/2008 to 01/01/2009. and V2 is valid from 02/01/2009 to ........... How can i restrict the

  • Framed-IP-Address Problem

    I am trying to setup Single Sign On between wireless and a network filter.  The filter requires the <Framed-IP-Address> to be in the NPS servers (Server 2012 R2) log files.  I have manually checked and the username, etc is there but not the framed-ip

  • Crystal XI Report viewer and Parameters

    Post Author: mnichols1202 CA Forum: General This one is killing me. I have a report connected to a SQL 2005 backend.  One subreport. one Parameter. I set up the report object (login to the db...set the parameter...etc.) If i do a crReportDocument.Pri

  • Graphic resizing function has changed, now crops the image, why?

    I must have, without knowing it, changed some setting. Until now whenever I bring in graphic, like a png or jpg, I can resize it by using the selection tool (arrow) and at one corner of the image I click, hold down shift/command (Mac) and then reduce