Standard Report not Displaying 'SAVE LAYOUT' Option

Dear All,
Using Tcode VF44, i am getting output list.But in that list when i click on select layout option from toolbar its not displaying 'save layout' Option. can anybody give me soln for the same.How can i get that option?
Regards,
Mayank

hi ,
it depends on the user parameters.
U have to identify the parameter id and u have to activate it in user maintainance partameters .
su01 -> parameters.
ex .  parameter id ->  SD_VARIANT_MAINTAIN -> X
so u can save layout now.
regards,
manikandan

Similar Messages

  • Standard Report's Layout not displaying 'SAVE LAYOUT' Option

    Dear All,
                Using Tcode VF44, i am getting output list.But in that list when i click on select layout option from toolbar its not displaying 'save layout' Option. can anybody give me soln for the same.How can i get that option?
    Regards,
    Mayank

    HI,
        No yaar, This one is standard report and  i am getting 'SAVE LAYOUT'  option in 300 but not in Production Server.There must be settings for this.  If u hv any idea ?
    Regards,
    Mayank

  • IN ALV Report 'SAVE LAYOUT' option missing

    Dear All,
                 I have created one report in ALV GRID using ABAP OBJECTS(Using class CL_GUI_CUSTOM_CONTAINER and
    CL_GUI_ALV_GRID).But in output when i click on change layout option i am not getting SAVE layout option.
    I have already passed I_SAVE parameter = 'A' while calling metod SET_TABLE_FOR_FIRST_DISPLAY. But i didnt worked.
               Please do needful.
    Regards,
    Mayank

    Hi,
    You can manage display variants by using parameters, “is_variant” and “i_save” of “set_table_for_first_display”. Here are options for variant handling. <structure_name> is the variant-defining structure of type “DISVARIANT”. The field “report” in this structure should contain the value of “sy-repid.”
    Hope this helps. Reward points if helpful.
    Thanks,
    Balaji

  • HOW TO ACTIVATE SAVE LAYOUT OPTION IN VA05 T CODE

    Dear Genios,
    i am facing probel to activate the save layout option in any sap standard reports.
    I want to create & save a layout in standard report va05.
    please help me for the same.
    Regards
    Rabin Nayak

    Go to SU01/SU3 ( to ur ID) select parameters tab and then scrol down and press F4 select SD_VARIANT_MAINTAIN and in the next field select A or X then try it will allow u to save ur own variant.(the save icon come to screen variant selection screen)
    More on this:
    By default, SAP user can't save report layout in some SAP SD t-code such as: VA05 and SDO1. The 'save' menu will be grey. But, you actually can save the layout by adding a parameter in your SAP user profile. You do that with t-code: SU3. Go to 'parameters' tab and add new parameter id, which is: SD_VARIANT_MAINTAIN'. The parameter value for that is 'A'. Then save your user profile and try again to save layout in VA05 or SDO1 t-code.
    Regards,
    Sanjeev

  • Report not display in report viewer

    i try to show ssrsc reports in asp.net web page using report viewer
    code
    protected void Button1_Click(object sender, EventArgs e)
    ReportViewer2.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
    ReportViewer2.ServerReport.ReportServerUrl = new Uri("http://lenovo-pc/ReportServer");
    ReportViewer2.ServerReport.ReportPath = "/Report Project1/Report1";
    ReportViewer2.ServerReport.Refresh();
    where is the probelm... and why report not display?

    Hello,
    In SSRS, the issue is occurred when the credential of the datasource is configured with “Prompt for credentials”. Please check if you configured the credential with "Stored Credential" of the datasource. You can refer to the following steps:
    Click the black arrow of the report, select Security option.
    Click Data Sources in the left pane.
    1) If it is a "A custom data source”, please check the item "Credentials stored securely in the report server", and type the valid username and password. If the user is a Windows Account, you need to check item "Use as Windows credentials when connecting
    to the data source".
    2) If it is a "A shared data source", please remember the path, and then open the data source from the Report Manager.  Make sure the credential type is "Credentials stored securely in the report server".
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • SSRS report not displaying data in correct order

    Guys,
    I have a SSRS 2012 report not displaying returned records from SQL in the correct order.  Running the stored procedure in SSMS and supplying the parameter values returns the data correctly and running Query Designer in SSRS using the stored procedure
    on the dataset in question, likewise returns the data correctly.  Only when I run the actual report does the data display incorrectly(always last name order).  I've done similar reporting using very similar stored procedures and I've never had this
    problem.  Below is the stored procedure.  "@SortBy" is the parameter with the sorting value. 1=Due Date; 2=Denial Amt and 3=Last name and is passed by SSRS to SQL.  Wish I could supply screen shots.  
    Thanks for any help,
    Dave
    ALTER PROCEDURE [dbo].[RAC_PT_List]
    @Level as int,
    @SortBy as int,
    @PTLName as varchar(30) = NULL,
    @User as varchar(10) = NULL
    AS
    SELECT pat.headerID,
    pat.PT_LName + ', ' + pat.PT_FName AS PTName,
    pat.PT_AcctNo,
    rco.RCO_CLMREF,
    rco.RCO_AppealLevel,
    rco.RCO_LevelNo,
    rco.RCO_AuditorStatus,
    let.LET_DEN_DueDate,
    CONVERT(varchar(12),let.LET_DEN_DueDate) as DueDate,
    let.LET_DEN_Dollars,
    let.userID
    FROM Master_PT_List pat
    INNER JOIN Master_RCO_Work rco on RCO.PT_headerID = pat.headerID
    INNER JOIN Master_Letters let on LET.PT_headerID = pat.headerID
    WHERE (@PTLName IS NULL OR(pat.PT_LName LIKE + '%' + @PTLName + '%'))
    AND (rco.RCO_LevelNo = @Level)
    AND (let.userID = @User)
    --AND (rco.RCO_AuditorStatus <> 'Closed' and rco.RCO_AdminStatus <> 'Closed')
    ORDER BY 
    CASE WHEN @SortBy = '1' THEN LET_DEN_DueDate
    END
    DESC,
    CASE WHEN @SortBy = '2' THEN let.LET_DEN_Dollars
    END
    DESC,
    CASE WHEN @SortBy = '3' THEN pat.PT_LName
    END

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Standard Report for displaying reason for action

    Hi Expets,
    Is there a standard report which displays the action and its reason for the action.
    eg.. ACTION - Direct Highering
          Reason- New Position
    Kaustubh.

    I Don't Think the standard report will give you this but you can use Query to extract this information.
    Afrasyab

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Standard Report to display locked records of an infotype

    Hi All,
    Is there any SAP standard report to display the locked records of an employee.
    Suppose for an employee his two absence record has been locked and one additional payment has been locked. Is there any SAP standard report to display his locked records.
    Thanks and Regards,
    Visali. Malepati

    Hi,
    Hi there is no standard report  to get the locked records.
    You create a query thru quick viewer.
    where you can heve selection field as lock indicator and Personnel number.
    Steps:
    1. Goto SQ01
    click Qucikviewer
    or
    SQVI
    2.Create a new query
    Datasouce:Table
    Table:PA0006
    3.Lst field Selection tab:
    Add the fields pernr,lock indicator,enddat,begdate.
    4.Selection fields Tab:
    Add the fields pernr,lock indicator
    5.Execute:
    Your Query is ready now:

  • SAVE Layout Option in ALV list Report

    Hi Experts,
    Is it possible to SAVE the layout option for Block ALV list Reports?
    Thanks in Advance,
    Sivak.

    Hi,
    It is not possible to save layout in BLock ALV display but possible to change layout. There is no parameter to save. It is not possible to store the layout as it has several structure.
    Thanks & Regards
    Rocky

  • Save layout option for FITRV_PRINT_TABLE_CONTROL_DATA

    Hello,
    I need to print table control data ,for this am using FITRV_PRINT_TABLE_CONTROL_DATA
    My requirement is now to have the option to save the layout which is generated after calling this function module.
    currently 'save layout' is not shown in the pf status and is disabled in the menu. only change layout is enabled which cannot be saved.
    1. Can we enable the save layout inside this list generated by fm.if yes how.
    2. can we have custom buttons inside the list generated using this fm.if yes how.
    3. Copying fm and convert to Z can do it I guess but I want to check if there is any option with the existing standard fm .
    4. Is it better to remove this fm and generate a new alv list  for the table control. which option is better.
    Thank you.
    Best Regards,
    Abhilash

    Hi,
    Use the below function module
    FITRV_PRINT_TABLE_CONTROL_DATA
    Regards
    Sudheer

  • Info Records Per Material Group Standard Report Not Running at All.

    Hi Experts,
    We had a Small problem Where while Running Info Records Per Material Group(T-code ME1W ) Standard Report the Report is not Showing any output in PRD, where else running Info Records Per Material (T-Code ME1M ) Standard Report the Output is getting Displayed.
    Our System is Currently SAP EEC 6.0 & Application Package SAP_APPL is of release 604     & Level 0007, Highest Support Package is SAPKH60407.
    is this Issue covered in Some OSS Note?
    Thanks & Regards
    Priyesh Shah

    Hi,
    The info-records for the materials which appears in the standard report ME1M/ME1L is different from the one which appear in ME1W.
    If you try with the material groups of the ME1L or ME1M info-records it wont be displayed in ME1W.
    ME1W will display only the info-records which are created @ material group level.
    i.e. try to create a new info-record using ME11 without entering material, in the general data screen you have to enter the material group & other parameters.
    Now once you save this info-record,same will appear in ME1W.
    Hope its clear.
    Thanks & Regards,

  • PowerDesigner 16.5 SP02 HTML Report not displaying diagrams in IE8

    I am creating an HTML report in PowerDesigner 16.5 SP02 and the diagrams are not displaying in IE8.
    I am aware that these are SVG images and that a download/install of SVGViewer would fix this BUT I don't want to have to download something to view the report in IE.
    I am also aware that IE11 displays the diagrams but we are using IE8 company wide due to legacy applications that were built on it.
    Any suggestions on how to fix this when building the report? Is it possible to change format of the diagrams? I know there is a way in PD Portal but can't seem to find a way to do it in PowerDesigner.
    Any help would be appreciated.
    Thanks in advance.

    Hi
    1st create the report using the wizard that uses the default image type.
    Go to the html source directory and find the image.
    Copy and rename it to a jpg / bmp / png etc
    Next create a custom template report.
    Once you are at the selection criteria - select the Graphic File from the Available items on the left.
    Import the graphic image as a .jpg / bmp /png etc
    continue selecting reporting options.
    once done - save as a new template
    Go back to your model and select the newly created reporting template and continue as per normal.
    Alternatively
    I know this is not the most elegant solution but you could try the following.
    1) Go the the directory where the html report files was saved.
    2) copy and rename the image file to the desired format i.e .gif / .jpg
    3) go to the html link in the report where the image is displayed.
    4) right-click the image and select inspect element
    5) check what the name of the source .html file is
    6) edit the html page and rename the image in the .html file to what you changed it to.
    7) save and refresh
    hope this helps
    regards
    JC

  • How can we create save layout option in grid tool bar

    hi,
    how can we create select layout option in grid tool bar to save my own layout. if any one knows tell me immediately
    thanks

    Hi again,
    1. We need to do 1 additional thing.
    data : GS_variant TYPE DISVARIANT.
    GS_variant-REPORT = sy-repid.
    2.  while calling pass this parameter also.
         IS_VARIANT                    = GS_variant
    It will work now.
    3. Moreover, I_SAVE has 3 options.
    I_SAVE = SPACE
    Layouts cannot be saved.
    I_SAVE = 'U'
    Only user-defined layouts can be saved.
    I_SAVE = 'X'
    Only global layouts can be saved.
    I_SAVE = 'A'
    Both user-defined and global layouts can be saved.
    regards,
    amit m.
    Message was edited by: Amit Mittal

  • R12: PO Print report not accepting custom layout

    Hi All,
    PO Print report is not picking up the custom layout in R12.
    We have developed a custom layour ( .rtf).It works fine when run as a concurrent program.
    But if we follow the standard navigations ( Inquire/View document ) generates the standard report only.
    If any body has worked on similar type of issue anytime please let me know.
    Thanks in advance.
    Regards,
    Baldeep
    9880054721
    [email protected]

    We are using r12-12.1.1.
    Still this bug is not rectified(6806428). Oracle has taken up new Enhancement request 9264442.
    Funny that it will rectified in next version .
    This db flaw in india localization which doest allow to pick sum of each taxes.
    Edited by: |SN| on Jan 21, 2010 10:46 PM

Maybe you are looking for

  • Access to a protected resource was denied.

    Hi Experts I need some help with this error. I created a small button on a html page and when i click on that button i am calling the url from smartcut.When i click on it, it runs ok and the output is there but it is also displaying a error. error is

  • Can't open Preferences System in Leopard

    good Day everybody Last night, i tried to switch to Mail , but i get a message error that said that it crashes on start up , so i tried to switch to iCal but it wont start too, and even for garageband iMovie iphoto iWeb , iDVD . Any of them would sta

  • Important for users of JVC HDD Camcorder and iMovie HD

    I've been having problems using iMovie HD to open my JVC HDD camcorder's videos. Some of you have been very kind in pointing me in a few directions. I thought I'd try and return the favor: I downloaded MPEG Streamclip and the MPEG-2 Playback Componen

  • DRC error that I cannot fix

    I have designed a 6 layer pcb in Ultiboard v10 and I am 100% complete according to the statistics.  I have turned on "routable" for all layers of the design.  The DRC check returns this error: The object "Trace: Width(0.0250000 inch)Layer(Copper Inne

  • Create a new file

    Hello, I have a signed applet but it does not allow me to create new files. I can only read and create new folders. for example, the code: myFile.mkdirs();works ok but with: myFile.createNewFile();I get the exception: java.io.IOException: Access is d