Help with SAPEVT Parameters

I would like to pass the SAPEVT parameter from outside SAP directly into an ABAP program.  Is it possible to pass the actual value of an SAPEVT parameter into a custom ABAP program? 
Regards,
Darryl

Welcome to SDN.
Check out the following link.
<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/fa/096e6b543b11d1898e0000e8322d00/frameset.htm">Triggering Events from External Programs</a>
Regards
Raja

Similar Messages

  • Help with URL Parameters and HTML DataSet please.

    Hello everybody!
    Looking at the example page: "Using URL Parameters to Control Data Regions", towards the bottom it gives an example of "Set by Product Name", from an XML DataSet using the following sample code:
        //Data set for the second example. var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");    //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data. if (params.product){    ds2.setXPath("products/product[name = '"+params.product+"']");    ds2.loadData(); }
    Can anyone please explain how to amend this to work with a HTML Dataset rather than XML?
    The first example on the page (Set by RowID) works unchanged for the HTML DataSet, but I don't know what I should replace the 'setXPath' line with.
    I see this has been asked before, but I'm afraid I can't find any answer that works (or, more often, that I can understand properly!)
    Grateful for any suggestions.
    Len

    Wow! Thanks Ben.
    I hadn't thought about using Stacked Containers.
    I'll test this out tonight and let you know how I get on.
    Cheers,
    Len
    A few days later and at last I've been able to test your suggestions.
    I think I must be doing something wrong as the links and content don't work at all:
    http://www.myosanthe-bernhard-huber.com/html/stack1.php
    I know that the stacked containers do work (http://www.myosanthe-bernhard-huber.com/html/stack0.php), so I guess there are some errors in the coding somewhere.
    Would you mind reviewing, please?
    The important thing for me (in this case, anyway) is to get the called page's content using its 'Ref', and I'm not sure what benefit there is in using stacked containers as opposed to master-detail containers.
    The master-detail method works reasonably well for me at
    http://www.myosanthe-bernhard-huber.com/html/fotoalbum.php and sub-pages.
    Perhaps I am betraying my lack of knowledge, but as I said in my original post, I think that I just need the HTMLDataSet equivalent to:
        //Data set for the second example.
    var ds2 = new Spry.Data.XMLDataSet("../../demos/products/products.xml", "products/product");
       //If the URL parameter 'product' has a value, set the XPath that includes a filter and then load the data.
    if (params.product){
       ds2.setXPath("products/product[name = '"+params.product+"']");
       ds2.loadData();
    which as you can see uses an XMLDataSet, but does exactly what I need.
    (see http://labs.adobe.com/technologies/spry/samples/data_region/DataWithURLParams.html)
    Thanks again for your help, Ben.
    Len
    Message was updated by: ec1lennie

  • SAPRFC - Help with Export parameters

    Hi, I need to connect SAP through PHP and I'm using SAPRFC.
    I have problems when the RFC used EXPORTS (works well with IMPORTS and TABLES). I tried in all ways that I found on the
    Internet, but not accomplished fix it. In some cases, no receipt data, and in other only achievement print the first
    character of each field.
    Example:
    $result=$sap->callFunction("BAPI_USER_GET_DETAIL",array(array("IMPORT","USERNAME",< USER >),array("EXPORT","LOGONDATA",array())));
    if ($sap->getStatus() == SAPRFC_OK)
         foreach ($result["LOGONDATA"] as $solicitud)
              echo $solicitud["LOGONDATA"];
    In this case, I get only the first character of each of the fields of LOGONDATA. I hope that you can help me.
    Thank you!

    I made the suggested change:
    exp / file=$file tables=shrlgpa query=" where shrlgpa_pidm in (Select sztahbr_pidm from purdue.sztahbr where sztahbr_to_extract=\'Y\' and sztahbr_export_status=\'N\')"
    and got the following error:
    LRM-00116: syntax error at 'sztahbr_to_extra' following 'where'
    EXP-00019: failed to process parameters, type 'EXP HELP=Y' for help
    Shannon

  • Help with passing parameters to Aspell from C [SOLVED ENOUGH]

    I found this really cool utility called aspellstdout that will allow for rudimentary spell check in Scite:
    http://www.distasis.com/cpp/scitetip.htm#spell
    What I can't figure out (and the author didn't either) is how to pass parameters beyond language to Aspell. What I want to be able to do is pass mode switches. For instance, if I have a LaTeX document I want to be able to pass the -t switch (--mode=tex). I looked through aspell.h and couldn't see what I'm looking for.
    --EDIT--
    The output to xterm option is far easier and it makes quite a bit more sense now that I'm use to it. From my .SciTEUser.properties:
    # Rudimentary LaTeX Spell Checker
    command.name.2.$(file.patterns.tex)=Spell Check
    command.2.$(file.patterns.tex)=xterm -e aspell -t -c $(FileNameExt)
    command.subsystem.2.$(file.patterns.tex)=0
    Last edited by skottish (2008-09-08 01:58:57)

    Hi,
    I see you're using System.Data.OracleClient (which has been deprecated by MS) rather than Oracle.DataAccess.Client, but this works for me with Oracle's ODP, maybe it will help.
    Cheers,
    Greg
    using System;
    using System.Data;
    using Oracle.DataAccess.Client;
    using Oracle.DataAccess.Types;
    public class dataadapterfill
        public static void Main()
            using(OracleConnection con = new OracleConnection("user id=scott;password=tiger;data source=orcl"))
                con.Open();
                using(OracleCommand cmd = new OracleCommand("select ename from emp where ename = :1", con))
                    cmd.Parameters.Add(new OracleParameter("myename", OracleDbType.Varchar2, 50)).Value = "KING";
                    OracleDataAdapter da = new OracleDataAdapter(cmd);
                    DataSet ds = new DataSet();
                    da.Fill(ds);
                    foreach (DataRow row in ds.Tables[0].Rows)
                        Console.WriteLine("ename: {0}", row["ename"]);
    }

  • Help with formatting parameters in html output?

    Hi --
    I would like to use a style sheet to adjust the way that javadoc displays lists of parameters below each method. In the HTML output, the code around the parameter name and description looks like this:
    <dd><code>filterContainers</code> - True if the containers within the database
    are to be considered individually during task assignment; false if the entire database is to be assigned as a single task.
    </dd>
    I apologize if this is basic CSS question, but I don't understand how to change the way 'filterContainers' is formatted -- maybe make it italic or something. I was also hoping to increase the padding below each parameter name/description because they seem to squished together.
    Any help is greatly appreciated.
    Jen

    Add this to stylesheet.css to make "filterContainers" italic:
    dl dd dl dd code {
    font-style: italic;
    }This adds space below lines inside dd
    dl dd dl dd {
    padding-bottom: 3px;
    }(You could change it to padding-top to add the space above instead.)
    The sequence "dl dd dl dd code" is the nested hierarchy of HTML tags relative to body.
    Here are the CSS elements defined above: (CSS 2.0)
    http://www.w3.org/TR/2005/WD-CSS21-20050613/propidx.html

  • Help with Page Parameters with PDK and/or PL/SQL

    Hello,
    I'm having difficulties get the real path of pages with PL / SQL. Another parameter that can not put the portlet in PL / SQL is the HTTP_REFERER.
    I read the PDK API but I could not understand how to use the
    HTTP_REFERER
    And as I get the realpath of the page? (In a portlet within the page in PL / SQL or JSP)
    Example: /portal/page/portal/groupage/page/page...
    Somebody can help me?
    Thks =]~

    Are you using Oracle Application Server Portal's PDK? If so, you would have better luck posting to that forum: Oracle Application Server Portal
    Greg

  • Help with sending parameters

    I have a datatable of which two columns(Name and Department) were made as URL , where on clicking goes to next page. When I click on Name, it should pass a paramaeter(save). When I click on Department , it should pass other parameter (copy)
    <h:datatable value = �#{employerInformation.empInfos}� var = �empTable�
    <h:commandLink immediate ="true" onmouseover="setParams(Emp,'Select','Employer')" action = "#{controller.control}" >
                                                                     <f:param name="empIdValue" value="#{empTable.empId}" />
                                                                     <f:param name ="save" value = "{param.save}" />// This is the save param I want to pass when I click on this
                                                                     <h:outputText styleClass="user" value="#{empTable.name}"/>
    </h:commandLink>
    The same way..I have a command link where I am passing copy parameter.
    For this I have getters and setters for Save and Copy in my dto (EmployerInformation).
    Also, I n faces-config..
    <managed-bean>
    <managed-bean-name> employerInformation </managed-bean-name>
    <managed-bean-class>dtc.dto. EmployerInformation </managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>save</property-name>
    <value>#{param.save}</value>
    </managed-property>
    <managed-property>
    <property-name>copy</property-name>
    <value>#{param.copy}</value>
    </managed-property>
    </managed-bean>
    How can I get the value of save and copy on next screen when I click on respective links. When I click on Name..how can I get the �save� on next screen.
    Any suggestions

    Hi Raymond,
    I have <h:column> whici forgot to add in the poost. Also, since it would take soem time for you to go through all the code, I have cut and paste the part of the code.
    For more information..i have pasted the respective HTML code when I try for different values. Iss there any thing in my faces-config.xmal file with respective to save.
    If the code is <f:param name ="save" value = "#{param.save}" /> the respective generated HTML code is this
    document.forms['gdotCip']['save'].value='null
    <f:param name ="save" value = "#{save}" />
    document.forms['gdotCip']['save'].value='null
    any suggestions are a lot helpful
    Thanks again..

  • Help with FCC parameters

    Hi,
    I have the source file in the following format
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    I want to accept all the data as single Field
    What FCC parameters do I need to place?
    I placed endseperator as 'nl' and without fieldSeperator, the file s not being picked
    I have declared the source file as STRING. how to I specify the maxlength to the MAX when I specify it as "............" generating me error message.
    Thanks,
    Nikhil.

    >>I would like to accept all the records at the same time as Single field
    Do u mean that u need to have the total content of the file to be as a single field?
    For this input
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    1. Do u need to create 2 records of single field each 0r
    2. Do u need to create a single record with single field holding all the data.
    Regards
    San

  • Help with passing parameters from a servlet to an applet

    dear all
    i m working on a application which will check weather a file is present in a server (webserver) if it is present then it will take the file name and put it into a drop down list and there is a button on click of which i m taking the call to an applet and then on that i need the file name if it is there then i use it to draw a graph
    i m struck on how to take parameter from Servlet -> Applet
    thanks
    Nakul

    hi,
    I understood your question,The context "servlet" cannot communicate to
    an applet becoz applet runs at clients browswer, rather you can communicate from an applet to servlet(HTTPURLCONNECTION class).
    Well coming to the problem, this is how i have understood your problem,
    basically uou get the list of files from the server using normal servelt programing and you will display in an html LIst box and then click the button to view the graph or chart ,
    then you just want to pass the filename which is there in the listbox to an applet and applet will display some image.
    As we know all that using <PARAM NAME=XX VALUE=YY> WE CAN GET THE VALUE IN APPLET BY USING GETPARAMTER() METHOD. and Im very sure that you are not asking that question. your question is like " both the applets and
    the listboxes will be loaded at once and when he selects one of the file from the list box then without refreshing the page , how to display the graph.
    Im i right?
    If so i guess you have to use javascript to do that stuff, and i think its like gave an id for the tag shown <applet id="yes">
    then in the javascript , you can call the Java applet methods (I have never tried before but seen some demos(i dont have that links- google it for inf))
    but i can give clue like.. trying the <PARAM VALUE=""> IF POSSIBLE
    CHAING THE HTML CONTENT IS POSSIBLE IN IE which is again through javascript by calling yes.innerHTML="<PARAM><PARAM><PARAM><PARAM>..."
    Im sure that you can call Java methods from javascript but i never tried and even you can pass an arguments to it.. Let me check out like
    becoz even im interested to know abt it
    bye
    with Regars
    Lokesh T.C

  • Link a MATCHCODE (searchhelp) with a PARAMETERS?

    Hi,
    How can I link dynamically a search help with a parameters in the AT SELECTION-SCRENN ON VALUE REQUEST event ?
    Thanks?

    In earlier versions you could do this with function module HELP_VALUES_GET_WITH_MACO, but if you read the source code of this in ECC you will see it now just calls the F4IF_FIELD_VALUE_REQUEST and sets the "searchhelp" parameter with the matchcode required - so you can do the same inside your "value request" logic.
    Jonathan

  • Help with Find / Replace button title tag contents (text)

    Hi there,
    I designed my site with Sitegrinder (Medialab) –
    Currently all the title tags generated for buttons are the same as
    the actual html page name.
    The problem with this is that the tooltip which appears in
    browsers when you hover over the button with the mouse gives you
    the page name. Instead I want to use these tooltips to give the
    user an indication of what the function of the button is.
    An example: A zoom button above an image: Currenty the
    tootlip says “zoom imagename pagename” – Instead
    it should say “click here to zoom”.
    I need help to get the Dreamweaver Find and Replace tool to
    batch replace these tags for me for about a 100 pages.
    Here is an example of the code:
    <body>
    <div id="id1zoomimpastooilweddingbutton"><a
    href="zoomimpastooilwedding.html"
    title="zoomimpastooilwedding"></a></div>
    I only want to replace the text in the title tag - Since the
    text “zoom” appears several times in the body, I
    can’t get the Find tool to pick up and Replace the occurrence
    of “zoom” in the title only…….
    Options I’ve tried:
    Search Current document: Search for: “specific
    tag”: “title”, “containing”:
    “text” = zoom (I’ve tried this with
    “zoomimpastooilwedding” and zoom[^”]* with no
    results
    I’ve also tried: Search for: “specific
    tag”: “body”, “containing”:
    “specific tag” “title”
    “containing”: “text” = zoom
    etc……………..
    I need help with what parameters to enter in order to find
    and replace all the text within the title tag with my own text
    Thanks very much!
    Anton

    You have ~ 100 pages, each of which has images with title
    attributes (not
    tags), all of which BEGIN with the letters "zoom"?
    What do you want to replace that text with? Wouldn't it be
    different for
    each button? Or do you mean that you would do multiple
    sitewide searches,
    one for each button? This illustrates how wrong it is to not
    use DW
    Templates or server-side includes to simplify the management
    of your
    navigation elements....
    Did you ask Medialabs if it would be possible to specify this
    before
    generating the HTML?
    How did you like working with SiteGrinder? It looks like a
    nice product to
    me, although I'm not fond of the final results code-wise....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "unison123" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi there,
    >
    > I designed my site with Sitegrinder (Medialab) ?
    Currently all the title
    > tags
    > generated for buttons are the same as the actual html
    page name.
    >
    > The problem with this is that the tooltip which appears
    in browsers when
    > you
    > hover over the button with the mouse gives you the page
    name. Instead I
    > want to
    > use these tooltips to give the user an indication of
    what the function of
    > the
    > button is.
    >
    > An example: A zoom button above an image: Currenty the
    tootlip says ?zoom
    > imagename pagename? ? Instead it should say ?click here
    to zoom?.
    >
    > I need help to get the Dreamweaver Find and Replace tool
    to batch replace
    > these tags for me for about a 100 pages.
    >
    > Here is an example of the code:
    >
    > <body>
    > <div id="id1zoomimpastooilweddingbutton"><a
    > href="zoomimpastooilwedding.html"
    > title="zoomimpastooilwedding"></a></div>
    >
    > I only want to replace the text in the title tag - Since
    the text ?zoom?
    > appears several times in the body, I can?t get the Find
    tool to pick up
    > and
    > Replace the occurrence of ?zoom? in the title only??.
    >
    > Options I?ve tried:
    >
    > Search Current document: Search for: ?specific tag?:
    ?title?,
    > ?containing?:
    > ?text? = zoom (I?ve tried this with
    ?zoomimpastooilwedding? and zoom[^?]*
    > with
    > no results
    >
    > I?ve also tried: Search for: ?specific tag?: ?body?,
    ?containing?:
    > ?specific
    > tag? ?title? ?containing?: ?text? = zoom etc?????..
    >
    > I need help with what parameters to enter in order to
    find and replace all
    > the
    > text within the title tag with my own text
    >
    > Thanks very much!
    >
    > Anton
    >
    >

  • What init parameters will help with the OBIEE performance..?

    Hi All
    By any chance does any one have info on What init parameters will help with the OBIEE performance..?
    Thanks

    fast=true ;-)
    What performance is causing you a problem? Data retrieval, general UI navigation? Its a massive area to cover. Can you be more specific?

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Help with GR/IR, can't clear on MR11

    Please help with this case:
    We had a purchase with delivery cost included. We create MIGO with no problem. (Credit to GR/IR account = $60)
    We cancel the delivery cost in MR11. (Debit to GR/IR Account = $60)
    After a few months, we restore Delivery Cost in MR11SHOW (Credit to GR/IR account = $50)
    Create MIRO to freight vendor in MIRO (Debit to GR/IR account = $60)
    As you may see, now can't clear GR/IR account because there's a difference (60 vs 50) and can't use MR11 neither, I get this error:
    No data selected. Check selection parameters!!
    Message no. CKMLGRIR009
    I have tried with so many post, but can't find anything that works....
    Thanks in advance!

    Hi Mohsin.
    After we cancel the delivery cost with MR11 (let's say, in January) the freight vendor asked us for his payment (in April) and then we realised that we need to restore the delivery cost...
    What we did is cancel the MR11 document that we had created before... and there's when the difference in GR/IR was generated.....
    I hope that this comments makes a little bit clearer my explanation.
    Thanks

  • Running a SQL Stored Procedure from Power Query with Dynamic Parameters

    Hi,
    I want to execute a stored procedure from Power Query with dynamic parameters.
    In normal process, query will look like below in Power Query. Here the value 'Dileep' is passed as a parameter value to SP.
        Source = Sql.Database("ABC-PC", "SAMPLEDB", [Query="EXEC DBO.spGetData 'Dileep'"]
    Now I want to pass the value dynamically taking from excel sheet. I can get the required excel cell value in a variable but unable to pass it to query.
        Name_Parameter = Excel.CurrentWorkbook(){[Name="Table3"]}[Content],
        Name_Value = Name_Parameter{0}[Value],
    I have tried like below but it is not working.
    Source = Sql.Database("ABC-PC", "SAMPLEDB", [Query="EXEC DBO.spGetData Name_Value"]
    Can anyone please help me with this issue.
    Thanks
    Dileep

    Hi,
    I got it. Below is the correct syntax.
    Source = Sql.Database("ABC-PC", "SAMPLEDB", [Query="EXEC DBO.spGetData '" & Name_Value & "'"]
    Thanks
    Dileep

Maybe you are looking for

  • Itunes 7.0.1 won't launch and freezes my pc

    Didn't want to hijack some other topic as I don't seem to have the exact same problems as people are describing. My symptoms - When launching Itunes.exe first time I get the license page, as soon as I click agree nothing happens, and my pc won't laun

  • Hi I want to change my username

    Hi can you guys help me to change my username pls

  • Re: (forte-users) HTTP server

    yes, you sure can do it. Problem will come, when you will need secure connection. (SSL) Taras Luca Gioppo wrote: > I'd like to build an application that listen on a given port able to respond to http requests. I know and use web enterprise but would

  • TREX search results in 0 hits

    Hi Guru's I have an issue that needs resolving. We have setup a basic Service Desk in SolMan 7.01. We were able to report on our issues using the "queries" functionality in the Incident Management workcenter. Ever since we installed a TREX instance a

  • Give MacBook iSight priority over LED Cinema Display iSight?

    Hi all, I have a new MacBook purchased in January 2010, which I hook up to a new Apple LED Cinema Display purchased a couple of weeks ago. Both the MacBook and display have iSight cameras built in. I seem to be able to have both cameras working indep