Is it Possible to create a Report Name starting with M.

HI ,
    Just Now I have created a report naming with MYreport. I have expected that system will ask the Access Key since starting letter is M . But  System allowed me to create the Report MYREPORT.
    As per My Knowledge, Only Y and Z letters for Report. But now how system allowed me to create a report starting With M without access key.
With Regards,
Neptune.M

Hi,
You can name a program with 'MZ' or 'MY'. Infact all the includes of custom module program will be having names starting with 'MZ' or 'MY'.  Try creating a program with other than these combination, the system will surely check.
Addendum:
For example if you create a module pool program with name
SAPMZTEST, then the include names will be
MZTEST_TOP, MZTEST_O01, MZTEST_I01, MZTEST_F01 and so on..
Similarly, for Z function group sap creates dynamically creates the following programs:
SAPLZTEST - Main program
LZTESTTOP
LZTESTO01
LZTESTI01
LZTESTUXX where X containing includes LZTESTU01,LZTESTU02 stands for 01, 02 and corresponds to function module under the function group.
Thanks and regards,
S. Chandramouli.
Edited by: Chandramouli Subburathinam on May 5, 2008 2:35 PM
Edited by: Chandramouli Subburathinam on May 5, 2008 2:42 PM

Similar Messages

  • Can we create the Application name starting with Numerics

    Hi All,
    can we create an application name stating with number like 1234Samsung.
    Also can we use the special characters between them.
    Also are there any rules for creating database names other than maximum 8 characters limit.
    Regards

    Hi,
    1. You can create starting with numerics, 123samsu.
    2. samsung cannot complete ,the know reason is exceeding 8
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • Is it possible to create a Report Object in a menu?

    Hi all,
    I 'm working on an oracle report wherein the user will not give any parameter.
    They would like to view the report by clicking on the menu option for this report and it should then open the report in an new browser window
    in pdf format.
    My question:
    Is it possible to create a report object in the menu?how can we do this?
    I'm working on Oracle reports version Report Builder 10.1.2.0.2
    TIA

    Thanks for your prompt reply.
    Through form I'm able to create report object and report is displayed successfully.
    I'm using the following code:
    DECLARE
              report_id Report_Object;
              ReportServerJob VARCHAR2(100);
              rep_status VARCHAR2(50);
    BEGIN
              report_id:= find_report_object('Report1');
              SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'vouno='||:vouno||' paramform=no');
              ReportServerJob:=run_report_object(report_id);
              rep_status:=REPORT_OBJECT_STATUS(ReportServerJob);
              WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
              LOOP
                        rep_status := report_object_status(ReportServerJob);
              END LOOP;
              IF rep_status = 'FINISHED' THEN
              WEB.SHOW_DOCUMENT('http://sushma:8889/reports/rwservlet/getjobid'||
              substr(ReportServerJob,instr(ReportServerJob,'_',-1)+1)||'?'||'server=rep_sushma','_blank');
              ELSE
                        message('Error when running report');
              END IF;
    END;
    I'm not able to use the same code in Menu, as there is no way to create report object "Report1"
    Or is there any was to create object.
    So in place of report_id:= find_report_object('Report1');
    I used report_id:= find_report_object('c:\.... *.RDF');

  • Is it possible to create dynamic reports using iReports in netbeans ?

    Hi
    I want to know that is it possible to create dynamic reports using netbeans? Dynamic reports means based on user selection(for eg. say by selecting values from combo boxes) some query will be genatated and fetch the query result from data base and displayed results in iReports only my problem is i am working on Netbeans IDE and i have installed iReports as plugins in netbeans IDE. and i am not able to find any tutorial that show me how to work with iReports under netbeans IDE. and how to create dynamic reports in iReports. If u know any such tutorial then can you send me link plz...!
    Thanks

    What do you mean by "in Start Menu"? Do you mean Live tile? See https://msdn.microsoft.com/en-us/library/windows/apps/hh465403.aspx
    https://msdn.microsoft.com/en-us/library/windows/apps/dn468032.aspx
    Best Regards,
    Please remember to mark the replies as answers if they help

  • Is it possible to create a variable in bex with the last work day?

    Hi Gurus
    Is it possible to create a variable in bex with the last work day?
    Actually end-user every day open queries,
        - Put in selection date day - 1 or
        - put last Friday if the day is Monday or
        - put last Thursday if the day is Monday and Friday is holiday (in a calendar for example 25 the December).
    Please do the needful. It is urgent
    Thanks in advance
    Raj

    Try this logic in a customer exit:
    DATA:  l_s_range TYPE rsr_s_rangesid.
    DATA:  X_PERIOD LIKE T009B-POPER,
               X_YEAR   LIKE T009B-BDATJ.
      CASE I_VNAM.
      WHEN 'ZPREVWORKDAY'.
        DATA: l_DayOfWeek(1) TYPE C,
              l_act_date     TYPE d,
              l_prev_date    TYPE d.
        l_act_date = sy-datum.
        CALL FUNCTION  'DATE_COMPUTE_DAY'
             EXPORTING DATE = l_act_date
             IMPORTING DAY  = l_DayOfWeek.
        CASE l_DayOfWeek.
          WHEN '1'.
            l_prev_date = l_act_date - 3.
          WHEN '2'.
            l_prev_date = l_act_date - 1.
          WHEN '3'.
            l_prev_date = l_act_date - 1.
          WHEN '4'.
            l_prev_date = l_act_date - 1.
          WHEN '5'.
            l_prev_date = l_act_date - 1.
          WHEN '6'.
            l_prev_date = l_act_date - 1.
          WHEN '7'.
            l_prev_date = l_act_date - 2.
        ENDCASE.
        l_s_range-low  = l_prev_date.
        APPEND l_s_range TO e_t_range.
    ENDCASE.
    Edited by: Tyler Blouse on Feb 13, 2008 8:28 PM

  • Is it possible to create a 1 D array with the "build array VI"? when receiving random number

    Hello all,
    Is it possible to create a 1 D array with the "build array VI" when receiving random number?
    I am receiving random data and the build array VI always create a 2D array which might cause some problem if you want to compute certain type of operation after.
    Any example will be welcomed.
    Thank you,
    Israel 

    Hello Lynn and Yamaeda
    First I want to Thank you Lynn for your linguistic contribution indeed "Build Array" is a primitive and not VI, thank you for the education. In reality what I am doing is simple.
    I have two arrays of complex elements Array1 and Array2.
    Array1 conains the complex elements ""(a0+ib0) ; (a1+ib1) ;...(an+ibn) ;
    Array2 conains the complex elements ""(c0+id0) ; (c1+id1) ;...(cn+idn) 
    What I want to do is the multiplication of the first array by the  conjugate of the second array element.
    Array1*(Conjugate Array 2)" for the first element the results is "(a0.C0-b0.d0) + i(b0c0-a0d0)" and the etc...
    and then taking the square root ([(a0.C0-b0.d0) power of 2]) +  [(b0c0-a0d0) power of 2])
    I was wondering if there were some dedicate primitive that could solve the computation above which is the cross correlation in Frequency domain.
    Thank you very much.
    Israel

  • Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?

    Hi All,
    Is it possible to create a two node cluster with SQL server 2012 STD on node1 and SQL Server 2008 ENT on node2 on a Windows server 2012?
    aa

    I think you are confused with the way cluster is installed. Installing SQL on cluster is a two step process. On first node you create a new SQL cluster and on second node you need "AddNode" action.
    Same edition media has to be used in above two operation.
    you can install two separate instances with one enterprise and one standard.
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Only save queries if name starts with Y

    Hello,
    How can security be configured so that users can only save queries whose Technical names start with Y?
    What authorizations are required and what values should be assigned?
    Thanks,
    Nick

    Hello Jin,
    We are on BW 3.5.
    Here is the complete set of authorizations assigned to my test user.  What I want is for this user to only be able to create queries if they choose to save them with a name starting with Y. 
    Currently (with the authorization specified below) they can save queries that start with <i>any</i> letter.  When I save a query with the description and Technical name of: DELETE_VG15 it gives me two messages for "Authorization check".  The first says "You do not have authorization for change" and the second message says: "Query (InfoCube ) was saved"  So it does end up saving even though the name provided doesn't conform to what I want in the authorizations.
    Hopefully you can help me fill in what is wrong, maybe copy what i have and repost with the values you are using.
    <b>S_RFC</b>
    Activity: 16
    Name of RFC to be protected: *
    Type of RFC to be protected: *
    <b>S_RS_COMP</b>
    Activity: 01
    InfoArea: *
    InfoCube: *
    Name (ID) of a reporting component: Y*
    Type of a reporting component: QVW, REP
    <b>S_RS_COMP1</b>
    Activity: 02
    Name (ID) of a reporting Component: Y*
    Type of a reporting component: QVW, REP
    Owner (Person Responsible) for: *
    <b>S_RS_ICUBE</b>
    Activity: 03
    InfoCube SubObject: *
    InfoArea: *
    InfoCube: *
    I Just found this one as well, and it may be the problem:
    <b>S_RS_COMP</b>
    Activity: *
    InfoArea: *
    InfoCube: Z_COPA
    Name (ID) of a reporting Component: *
    Type of a reporting component: QVW, REP
    Thanks!
    Nick
    Message was edited by:
            Nick Bertz

  • SAXException: PI names starting with 'xml' are reserved.

    Has anyone run across a problem trying to parse an xml instance (in this case it's an XSL style sheet) using Oracle's parsers? I'm getting the following sax error message:
    SAXException : oracle.xml.parser.v2.XMLParseException: PI names starting with 'xml' are reserved. detailed SAX exception message: PI names starting with 'xml' are reserved.
    The code generating this error is:
    XMLDocument xml = ParseDocument(xmlDoc, parser);
    private static XMLDocument ParseDocument(String documentStream,
    DOMParser parser)
    XMLDocument returnXML = null;
    try
    parser.parse(new InputSource(new ByteArrayInputStream(documentStream.getBytes())));
    returnXML = parser.getDocument();
    catch (SAXException saxE)
    System.err.println("SAXException : " + saxE + " detailed SAX exception message: " + saxE.getMessage()); // this is the statement generating the error message
    catch (IOException e)
    System.err.println("IOEx, Parse failed : " + e);
    catch (Exception e)
    System.err.println("Ex, Parse failed : " + e);
    return returnXML;
    Thanks in advance for any help you can provide.
    Sincerely,
    Tim

    lv_clob is invalid, there are two
    <?xml version="1.0" encoding="UTF-8"?> elements, remove one of them.
    SQL> DECLARE
      2  lv_clob CLOB:=EMPTY_CLOB();
      3  ignore boolean;
      4  BEGIN
      5  lv_clob := '<?xml version="1.0" encoding="UTF-8"?>
      6  <!ELEMENT firstname (#PCDATA)* >
      7
      8  <!-- Element function -->
      9   <!ELEMENT function (#PCDATA | noteref)* >
    10   <!ATTLIST function xml:lang (de | en | fr | la | nl) #IMPLIED >
    11
    12   <!-- Element initials -->
    13   <!ELEMENT initials (#PCDATA)* >
    14
    15   <!-- Element lastname -->
    16   <!ELEMENT lastname (#PCDATA)* >
    17
    18   <!-- Element structured-author -->
    19   <!ELEMENT structured-author ( (firstname, initials? , lastname , function*) ) >
    20   <!ATTLIST structured-author ID ID #IMPLIED anchor:name CDATA #IMPLIED > ';
    21  
    22   ignore := dbms_xdb.createResource(abspath => '/structured-author.dtd',data => lv_clob);
    23
    24  commit;
    25  END;
    26  /
    PL/SQL procedure successfully completed.
    SQL> INSERT INTO xml_tst VALUES ('<?xml version="1.0" encoding="utf-8"?>
      2   <!--ArborText, Inc., 1988-2002, v.4002-->
      3   <!DOCTYPE structured-author PUBLIC "-//WKB//DTD SL author//EN" "structured-author.dtd" [
      4   ]>
      5   <structured-author ID="SL3654393">
      6   <?Pub Caret1?>
      7   <firstname>firstname</firstname>
      8   <initials>initial</initials>
      9  <lastname>lastname</lastname>
    10   <function xml:lang="nl">function description in dutch</function>
    11   <function xml:lang="fr">function description in french</function>
    12   </structured-author>');
    1 row created.
    SQL> spool off;

  • Migrating from Sql Server tables with column name starting with integer

    hi,
    i'm trying to migrate a database from sqlserver but there are a lot of tables with column names starting with integer ex: *8420_SubsStatusPolicy*
    i want to make an offline migration so when i create the scripts these column are created with the same name.
    can we create rules, so when a column like this is going to be migrated, to append a character in front of it?
    when i use Copy to Oracle option it renames it by default to A8420_SubsStatusPolicy
    Edited by: user8999602 on Apr 20, 2012 1:05 PM

    Hi,
    Oracle doesn't allow object names to start with an integer. I'll check to see what happens during a migration about changing names as I haven't come across this before.
    Regards,
    Mike

  • In the lefthand sidebar of Finder, under 'Shared', I encounter in addition my TC, another computer, identified by a long name starting with 'hp'. I don't have another computer. What could this be? And how to get rid of it?

    In the Finder sidebar, under 'Shared', I encounter my TC, as well as another item with a long name starting with 'hp'. 'Get info' shows it to be a 'PC'. However, I don't have a PC. It cannot be my printer (HP), since that has anoter name.
    I can not access the item, which has me a 'guest'.
    What could this item be? And how to get rid of it?
    Many thanks in advance for your help.
    DB

    It's almost certainly your hp printer and is showing the WiFi adapter MAC address after the HP.
    To verify, look at the printer configuration page via Bonjour in Safari.  The settings tab shows the Mac address in the bottom left hand corner for my model of HP printer.
    I'm sorry but I can't explain why that would show up in the finder.

  • Program  with a name starting with '!'

    Hi,
    I have a problem with a progam. In fact, I want to delete an include but this include is used in a program with a name starting with '!' like
    !ZMM_PR_TEST.
    I can't open this program or delete it.
    What can I do ?
    Must I delete this "strange" program or not ?
    Thanks in advance for your help...
    Best regards

    Hi Carl,
    If you want to delete the program in Any way.. Delete it from the TADIR table...
    the symbol " ! " may be some customer name space... Hope you cross check about that name space and
    go ahead deleting it from a program accessing the record from TADIR table and modifying the TADIR table.
    If something is not happening directly then there is almost a chance to delete the record from the table through a zprogram..
    Hope this would help you.
    Any question please revert back
    Good luck
    Narin.

  • Trouble when a project name starts with ´@´.

    I have a trouble when a project name starts with ´@´. I can´t watch any photo into the aperture browser.
    Is that a bug? Any help please?
    Thanks in advance.

    I have a trouble when a project name starts with ´@´. I can´t watch any photo into the aperture browser.
    What is your Aperture 3 version? Are you using the latest version? For me projects with '@' in the name can be viewed in the browser; I'd need more information to reproduce that problem on my system.
    But I would refrain from using such characters in filenames and library items, like projects and folders anyway.
    All characters, that have a special meaning in the Mac OS X unix shell, like '@', '|', '~', '.', `/` may cause trouble when exporting or sharing the files.
    Regards
    Léonie

  • PowerShell add Printer Permissions where the printer name starts with...

    I have a printer server that has printers for multiple buildings. All the buildings have abbreviations like "BLD" for example, so my printers start with the same building abbreviations
    like “BLD-Printer1”. Is there a quick an easy way to set permissions on printers where the name starts with something like BLD?
    I'm a total noob with PS .<o:p></o:p>

    Just wanted to point out that in addition to using .NET/WMI to enumerate the printers, Windows 8 has a native PowerShell implementation you could use. It supports remote management, so you can even use it from a Windows 8 client to target your Windows Server
    2008 R2 instance. 
    $printers = Get-Printer -ComputerName $printServerName -Name bld*
    foreach ($printer in $printers) {
    Set-Printer -ComputerName $printServerName -Name $printer.Name -PermissionSDDL #fill in your permissions here
    Full description of these cmdlets: http://technet.microsoft.com/en-us/library/hh918357.aspx
    Excellent - Just fill in the SDDL.
    Does this work on WS2008R2 PrintManager Queues?  I find no -SDDL except on WS2012.  WS8 is missing this parameter. Is it only available on WS8 Enterprise?
    WS2008R2 also does not seem to support this.
    Get-Printer and its cousins are wrappers around The Q functions posted above.  The API has no security bits before WS2012.  Look at the MSDN and Technet articles for this CmdLet and the other "Printer" CmdLets.
    ¯\_(ツ)_/¯

  • Is it Possible to Create Custom Report in SOLMAN

    Hi Experts,
                         I am new to SOLMAN. I have one question. Is it Possible to create our own custom Reports in SOLMAN. If possible
    tell me the variuos types of reports and how we can create.

    Hi
    SAP Solution Manager can be used for entire ALM so you need to clearly specify which area and what report you are talking about
    http://www.sdn.sap.com/irj/sdn/alm-getting-started
    General transaction code for reporting is
    SOLAR_EVAL
    it helps you to build the entire project report phase wise or for service desk or for charms or test management etc
    check if that you are looking for.
    regards
    Prakhar

Maybe you are looking for

  • Can't open jpg, preview.app does nothing

    Hi, I am attempting to troubleshoot a minimac 10.4.10 I cannot open .jpg with preview.app (or tiff/gif ect.), which i assume is the default pic viewer. when d-clicking on a jpg (whether downloaded or uploaded from a camera) the picture will not open.

  • The iMessage button will not slide on in the settings. What is going on?

    The iMessage button will not slide on/green in the settings. Whay is going on?

  • Webdynpro components integration procedure

    Hi, Any Body give me the suggestion, how to integrate the diffrent components into the one project.Like Each programmer creating their own project under project different webdynpro component created. Finally , to integrate all the component in one on

  • IBook On, Screen Turns Black

    I installed the 10.4.6 update last night and everything seemed fine. I pack up the 'book and head to class - left it on but sleeping. So when I get to class and try to wake it from sleep, nothing happened... the sleep light wasn't on either and the A

  • SAP IMG

    Hi all,                          Why do we create personnel areas and personnel sub-areas in Human resource under Enterprise structure, while the company, company code and location is created by Finance consultants.......i felt like there is a reason