Hi all query on script

what is the use of standard text in scripts.how to use styles in scripts.can u give me a detailed code for the subroutine what we write in se71 as well as the subroutine pool in se38 and scrreen shots if u have . my mail id is [email protected]
rewards if  it would help , its urgent
thanks in advance

hi,
Have sent the mail....do reward points.

Similar Messages

  • How do you list all your created scripts?

    Hi all.....
    Is there a way to list all of the scripts that you have created that are in your database? I tried the SELECT * FROM CAT but that wont list your scripts. Any ideas?

    786304 wrote:
    If we have stand alone procedures and functions
    user_source or dba_source gives the list
    **If we have the procedures and functions within the packages How will us know?**
    Can anybody give me the query for that one
    Thanks,Hi,
    Check out this.
    SELECT dbms_metadata.get_ddl('PACKAGE','your_package_name') FROM dual;
    SELECT dbms_metadata.get_ddl('PACKAGE_BODY','your_package_name') FROM dual;Hope this Helps.
    regards,
    achyut k

  • Query or script for calls with federated users

    Hi all,
    Is there a query or script that can be run in SQL or Lync that gives us a report on calls between our Lync users and federated users?

    Hi,
    There is not native report to achieve this.
    If you want to write a query, the following table is helpful to you:
    http://technet.microsoft.com/en-us/library/gg398589.aspx
    http://technet.microsoft.com/en-us/library/gg412791.aspx
    http://technet.microsoft.com/en-us/library/gg412950.aspx
    Best Regards,
    Lisa Zheng
    Lisa Zheng
    TechNet Community Support

  • Query in script

    Hi Friends,
    I have one query in script.
    Will anybody will tell me how to change the language EN to frech in sap script??
    Plz tell me in detail.

    Hi,
    correct way is:
    Call SE71.
    Enter existing form name.
    Enter desired target language.
    ENTER
    Activate Form.
    All existing windows texts are copied as they are. You will have to do all language-dependent changes manually.
    A good way to make future changes easier is to maintain language-dependent text elements in table TTDTG and use the defined symbols (use Z-namespace) in the text windows.
    If you do this consequently, the change process gets much easier: Make all changes in source language. Delete and recreate target language. Activate.
    All character, paragraph, page, window and so on definitions are languange-independent anyway.
    Regards,
    Clemens

  • How to find all query elements inside a Query

    Hi,
    I would like to find out all query elements inside my query.
    Is there any table which stores all query elements inside my query ?
    Thanks
    Pratyush

    Hi,
    Query elements are stored in this  follwing table:
    SE11
    Table name : RSZELTXREF [Directory of query element references]
    other query related tables :
    Tables used in  Queries
    RSZELTDIR      Directory of the reporting component elements
    RSZELTTXT    Texts of reporting component elements 
    RSZELTXREF  Directory of query element references 
    RSRREPDIR     Directory of all reports (Query GENUNIID) 
    RSZCOMPDIR  Directory of reporting components 
    RSZRANGE    Selection specification for an element 
    RSZSELECT    Selection properties of an element
    RSZELTDIR     Directory of the reporting component elements 
    RSZCOMPIC    Assignment reuseable component <-> InfoCube
    RSZELTPRIO   Priorities with element collisions
    RSZELTPROP  Element properties (settings)
    RSZELTATTR  Attribute selection per dimension element 
    RSZCALC        Definition of a formula element 
    RSZCEL           Query Designer: Directory of Cells
    RSZGLOBV     Global Variables in Reporting
    RSZCHANGES  Change history of reporting components 
    Hope it will helps you.
    Thanks
    Hemav

  • Translation of all query objects

    Hello,
    We have a requirement to translate all the query objects in 10 languages and this needs to be done for many queries. So manual translation of all the query objects is not a feasible solution.
    We have checked the table RSZELTXREF and it seems that we are getting all the query elements belonging to the multiprovider. Although all these objects are not present in the text table RSZELTTXT. So we are not able to identify all the text elements belonging to certain query.
    It would be nice if someone can help with any quick method for translating the texts for all query elements.
    Thank you.
    Prithwish

    Actually links are not suppose to be asked in SCN. Since you asked, I am giving you now..I have simply searched with the title which I gave you in SCN search and got it.
    How To Translate Business Intelligence Objects (NW7.0)

  • How to generate all index creation scripts without it's storage clause?

    How to generate all index creation scripts without it's storage clause?

    Execute this before running the actual dbms_metadata.get_ddl
    exec dbms_metadata.set_transform_param(dbms_metadata.session_transform, 'STORAGE', FALSE);
    SELECT DBMS_METADATA.GET_DDL('INDEX',a.index_name) FROM USER_INDEXES A;-Anantha
    Edited by: Anantha R on Sep 30, 2009 11:40 AM

  • [svn:osmf:] 13412: WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf .

    Revision: 13412
    Revision: 13412
    Author:   [email protected]
    Date:     2010-01-11 02:02:20 -0800 (Mon, 11 Jan 2010)
    Log Message:
    WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf.
    Modified Paths:
        osmf/trunk/apps/samples/framework/WebPlayer/html-template/index.template.html
        osmf/trunk/apps/samples/framework/WebPlayer/src/Configuration.as

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • Table name where all the SAP Script names are stored

    Hi Gurus,
                   Can i know the table name where all the SAP Script names are stored in SAP Database.
                   Thanks in advance,
                    Shyam.

    Yes TNAPR is the table which contains sapscipts name and print program names.
    Step:1: Goto to the Table TNAPR using SE11
    Step:2: Get the Contents of the Table(CNTRLSHIFTF10)
    Step:3: On the Table Content Selection Screen, Type the driver program name in the field PGNAM and execute(F8).
    Step:4: FONAM field of the result display contains the SAPScript Name for our driver program.
    Regards,
    Lalit Mohan Gupta.

  • Ordering in Union All Query

    Hi,
    Is Order by in Union ALL query allowed? If not what is the solution while using Unoin ALL?
    thx

    What isn't working? These are all OK:
    SELECT dummy FROM dual
    UNION ALL
    SELECT dummy FROM dual
    ORDER BY dummy;
    SELECT dummy FROM dual
    UNION ALL
    SELECT dummy FROM dual
    ORDER BY 1;
    SELECT dummy AS c1 FROM dual
    UNION ALL
    SELECT dummy FROM dual
    ORDER BY c1;The name used in the ORDER BY clause has to be one of the names in the first SELECT list, or a number.

  • Help with read all query

    Ok, i have a complicated read all query that isn't working (it's generating a missing right parentheses error). It's Friday, andd I'm sure I'm just missing something
    I have a one to many mapping of study to statuses and I'm querying on status values:
    ReadAllQuery q = new ReadAllQuery();
    q.setReferenceClass(study.class);
    // only this user's cases
    ExpressionBuilder e = new ExpressionBuilder();
    Expression user = e.anyOf("statuses").get("ownerID").equal(userID);
    String[] x = {"FILTERED", "WORKING"};
    Expression filteredStatus = e.anyOf("statuses").get("currentStatus").in(x);
    Expression workingStatus = e.anyOf("statuses").get("currentStatus").equal("WORKING");
    Expression notComplete = e.anyOf("statuses").get("currentStatus").not().equal("COMPLETE");
    q.setSelectionCriteria(user.and(filteredStatus).and(notComplete));
    q.addOrdering(workingStatus.ascending());
    userStudies = (Vector) session.executeQuery(q);
    here is the sql generated:
    SELECT DISTINCT t1.OBSTACLE_LAT_DEGREE, t1.ACCURACY_DATA, t1.OBSTACLE_LAT_DIR, t1.AGL_STRUCTURE_HEIGHT_PROPOSED, t1.OBSTACLE_LAT_MINUTE, t1.ASN, t1.OBSTACLE_LAT_SECOND, t1.AT_SPECIALIST, t1.OBSTACLE_LONG_DEGREE, t1.AUDIT_CRT_USER_ID, t1.OBSTACLE_LONG_DIR, t1.DURATION_DAY, t1.OBSTACLE_LONG_MINUTE, t1.DURATION_TYPE, t1.OBSTACLE_LONG_SECOND, t1.NEAREST_AIRPORT_DISTANCE, t1.NEAREST_AIRPORT_DIRECTION, t1.NEAREST_AIRPORT_ID, t1.NEAREST_STATE, t1.NEAREST_CITY, t1.ACCURACY_OTHER, t1.ORIGINAL_FLAG, t1.AT_REMARK, t1.PRIOR_STUDY, t1.DATUM, t1.RUSH_FLAG, t1.WORK_SCHEDULE_BEGIN, t1.SE_SITE_ELEVATION_PROPOSED, t1.AMSL_OVERALL_HEIGHT_PROPOSED, t1.STRUCTURE_TYPE, t1.DURATION_MONTH, t1.STRUCTURE_TYPE_OTHER, t1.AUDIT_CRT_DATETIME, t1.AUDIT_UPDT_DATETIME, t1.NOTICE_OF, t1.AUDIT_UPDT_USER_ID FROM OE_STATUS t3, OE_STATUS t2, OE_STUDIES t1, OE_STATUS t0 WHERE ((((t0.CURRENT_OWNER_ID = 'KETTLERC') AND (t2.CURRENT_STATUS IN ('FILTERED', 'WORKING'))) AND (NOT (t3.CURRENT_STATUS) = 'COMPLETE')) AND ((t3.ASN = t1.ASN) AND ((t2.ASN = t1.ASN) AND (t0.ASN = t1.ASN)))) ORDER BY (t0.CURRENT_STATUS = 'WORKING') ASC

    addOrdering shouldn't have a equal/in/etc... The expression need to terminate on the attribute on which to sort. I.e.,
    Expression orderingOnStatus = e.anyOf("statuses").get("currentStatus").ascending();
    q.addOrdering(orderingOnStatus);
    - Don

  • Find the tech names of all query's present in a workbook

    Hi,
    I need some materials  on workbooks.
    How find the tech names of all query's present in a workbook. I had an issue from end user and they just send me the workbook. So now i need to find out all the querries present in workbook.
    Please let me know steps to find out and some materials on workbook.
    Thanks,

    Hi
    Check in metedata repositroy.., when you click on th query here, it will show you which infoprovider it is created and list of workibooks created on the query etc.....
    Hope it helps you.... else get back
    Regards
    Rajesh

  • Union All query help

    Hi,
    I have a union all query like this :
    select a.prod_id,count(a.app_id) as noofapplications from enrollment a,attest b
    where a.e_id=b.e_id group by a.prod_id
    union all
    select a.prod_id,count(a.app_id) as noofapplications from data_feed x,prod_feed y
    where x.agent_num=y.prod_id group by y.prod_id
    I get the results something like this :
    prod_id noofapplications
    x1824787 2
    y397458 4
    y397458 3
    r457868 3
    i876247 6
    In below results y397458 is showing twice since it results from both the queries .But i want a single result like this :
    prod_id noofapplications
    x1824787 2
    y397458 7
    r457868 3
    i876247 6
    For y397458 it should add 4+3 and the result should be displayed one time only .
    Please help ..
    Thanks in Advance

    Slightly reorder your query text:
    select prod_id,count(app_id) as noofapplications
    from
    select a.prod_id,a.app_id
    from enrollment a,attest b
    where a.e_id=b.e_id
    union all
    select a.prod_id,a.app_id
    from data_feed x,prod_feed y
    where x.agent_num=y.prod_id
    group by prod_id
    /

  • Reading all existing Assesment Script

    Hi,
    I was tring to read all existing Assesment scripts from Oracle CRM on demand. getting the following exception.
    Please see the error log. and let me know if I am missing any thing.
    ===Logging in===
    urlAddr:-->https://secure-ausomxjna.crmondemand.com/Services/Integration;jsessionid=7324465156a5489f1264e5969cd829eec73ec05b1b13b76202ac8b12790a95fd.e3iRbx4Pchr0ahiPb3qNaNuPaO0
    - Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.
    AxisFault
    faultCode: {http://xml.apache.org/axis/}HTTP
    faultSubcode:
    faultString: (400)Bad Request
    faultActor:
    faultNode:
    faultDetail:
         {}:return code: 400
    &lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt;&lt;soap:Body&gt;&lt;soap:Fault&gt;&lt;faultcode&gt;soap:Client&lt;/faultcode&gt;&lt;faultstring&gt;Client&lt;/faultstring&gt;&lt;detail&gt;&lt;ErrorCode&gt;SBL-ODU-01007&lt;/ErrorCode&gt;&lt;ErrorMessage&gt;The HTTP request did not contain a valid SOAPAction header. The value of the header was &amp;quot;document/urn:crmondemand/ws/odesabs/SalesAssessmentTemplate/:SalesAssessmentTemplateReadAll&amp;quot;&lt;/ErrorMessage&gt;&lt;/detail&gt;&lt;/soap:Fault&gt;&lt;/soap:Body&gt;&lt;/soap:Envelope&gt;
         {http://xml.apache.org/axis/}HttpErrorCode:400
    (400)Bad Request
         at org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
         at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
         at org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
         at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
         at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at crmondemand.ws.odesabs.SalesAssessmentTemplate.SalesAssessmentTemplateService_BindingStub.salesAssessmentTemplateReadAll(SalesAssessmentTemplateService_BindingStub.java:283)
         at crmondemand.xml.SalesAssesment.client.GetAssesmentHelper.getAssesments(GetAssesmentHelper.java:70)
         at crmondemand.xml.SalesAssesment.client.GetAssesmentHelper.main(GetAssesmentHelper.java:20)
    Thanks

    Hi,
    This script will give you the groups object. now, you can work with this
    $web  =  Get-SPWeb "http://yoursitecolletion/"
    foreach( $grp in $web.Groups)
       $grp.Name
    foreach( $grp in $web.SiteGroups)
       $grp.Name
    Hope it helps.
    Please mark as answered if it works.

  • I have a MacBook that had Mcafee on it and went to great lengths to get it off.  Unfortunately after running all the remove scripts and support from mcafee, in my console it still shows com.apple.launchd{1} with message (com.mcafee.virusscan.VshieldEPoint

    I have a MacBook that had Mcafee on it and went to great lengths to get it off.  Unfortunately after running all the remove scripts and support from mcafee, in my console it still shows com.apple.launchd{1} with message (com.mcafee.virusscan.VshieldEPointInterface[7881]) Exeted with exit code:1  Then the next line says will start in 10 seconds and it repeats endlessly.

    Hi there,
    You're running an old version of Safari. Before troubleshooting, try updating it to the latest version: 6.0. You can do this by clicking the Apple logo in the top left, then clicking Software update.
    You can also update to the latest version of OS X, 10.8 Mountain Lion, from the Mac App Store for $19.99, which will automatically install Safari 6 as well, but this isn't essential, only reccomended.
    Thanks, let me know if the update helps,
    Nathan

Maybe you are looking for