Include  lfpaym05f01   help in command

in this include i have command
call 'c_rsts_read'.....
what is it, and how i can show what it doing.??

Hi Richie,
   I do not know much abt FI transaction. I'm sorry.
But a C Function is a code written in C Language .
People say that, at the assembly level SAP was written in C language.
So, abap has provided an option to call such functions .
Regards,
ravi

Similar Messages

  • Include a help file(*.hlp)

    I want to include a help file(*.hlp) into
    my oracle developper 2000 project and I don't find any informations about this.
    Does someone can help me to resolve this problem?

    More info...
    I want to use WIN_API_SHELL.WINHELP command for call my help file. How to create help file? What's tools to create help file?

  • Error in Bex Analyzer including the filter button command in Callback macro

    Hello,
    I have the following problem with the function filter button in the Bex Analyzer included in the callback macro:
    Because of using 2 hierarchies in the filter the setting drill down to level 2 in the query gives no right output in the Bex Analyzer. The drill down level 2 is not shown. SAP recommends the include of a filter button to solve this problem. With a filter button in the sheet the problem was solved.
    But after including the filter button command in the callback macro I get an error in MS Excel.
    The callback macro starts, the filter was set by the user and the data was refreshed. Because of the refreshing of the filter the callback function the callback function starts several times. After setting the filter the first time, the following macro avoids the several starting of the set filter function:
    Sub CallBack(ParamArray varname())
    On Error GoTo err_handler
       Dim lRange As Range
       Set lRange = varname(1)
    'Filter entfernend/delete filter
    Dim ZeichenFilter As Long
    ZeichenFilter = Len(Sheet4.Cells(41, 3).Value)
    Dim Filter1 As String, Filter2 As String
    Filter1 = Left(Sheet4.Cells(28, 3), ZeichenFilter)
    Filter2 = Left(Sheet4.Cells(41, 3).Value, ZeichenFilter)
    If Filter1 <> Filter2 And Filter2 <> "" Then
        onAction = True
        onAction = False
    End If
    'Filter setzen mit einmaligem durchlaufen/set filter and run one time
    If onAction = False Then
        onAction = True
        Call Sheet4.BUTTON_55_Click
        onAction = False
    End If
    exit_handler:
        Exit Sub
    err_handler:
        MsgBox Err.Description, vbOKOnly, "Error in " & " setMusterSub"
        Resume exit_handler
    End Sub
    After the filter was set the callback macro starts the second time. Then the Bex Analyzer erros with the sandglass. The working on VBA is possible, but not the working with Bex Analyer . Values in Excel weren’t shown.
    How can I avoid this error?

    Once I am adding VAR_VALUE_1 to the static parameters, the system generates two messages error:
    Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    System error in program SAPLRRS2 and form GET_SID-1
    Best Regards,
    Hanit

  • Problem in including search help exit for MM03 transaction.

    Hi,
    i am trying to include search help for MM03 trasaction based on MATKL(material group)  WGBEZ (description) in the form of alv tree display.
    Fuctionality i want to achive is :
    1. after pressing F4 on MM03, it prompts to select material group screen, on pressing F4 on material group, now i am able to get the ALV tree display of all the materials and description based on the selection screen criterion.
    2. now, after selecting one material group from ALV screen, i am able to map the corresponding value on the material group on the previous(intermediate) screen, but after pressing enter on this screen, i need to get the corresponding material to be mapped on the MM03 transaction, which i am unable to get.
    when i press enter, it is again going to ALV tree display only and values arent getting refreshed.
    Please help me in solving this.

    Hi joydeep mazumder  ,
    This is the work of the ABAPer, pls ask them to do it.
    Anyway here is the way ...
    You can use append search help to add a new search help to an existing standard sap search help..
    Pls have a look at this....
    http://help.sap.com/saphelp_nw70/helpdata/en/4c/ab0d79e5ce11d295f900a0c929b3c3/content.htm
    Regards,
    Vvieks

  • I would like to know some fun and helpful Terminal commands.

    I would like to know some fun and helpful Terminal commands. So, if you know of any, contact me!
         Thanks
         - Max

    Max,
    if you’ve installed the Xcode compiler and its “command line tools” add-on, there’s a lot of text-mode games for which source code can be downloaded and compiled. Back in the Neolithic Age when I was at university, Empire was a multiplayer favorite (see here for one of its current offspring, which can run multiplayer over the Internet, and for which a text-mode client is still available), and Rogue was popular for when solitary play was the only available option.

  • Need help with command - trying to target selected html in document

    Hi,
    I am very new to working with JS. I can do simple stuff but when it comes to manipulating the dom, I don't know very much. So, I am trying to develop this command for Dreamweaver that will find all occurances of an abbreviation. Ex. GOC (Government of Canada) and wrap the text with <abbr> tags that include the title attribute. I have been using the change case example on the web that details how to go about setting up a DW command.
    My JS file looks like this:
    function canAcceptCommand(){
        var theDOM = dw.getDocumentDOM(); // Get the DOM of the current document
        var theSel = theDOM.getSelection(); // Get start and end of selection
        var theSelNode = theDOM.getSelectedNode(); // Get the selected node
        var theChildren = theSelNode.childNodes; // Get children of selected node
        return (theSel[0] != theSel[1] && (theSelNode.nodeType == Node.ELEMENT_NODE
        || theSelNode.hasChildNodes() && (theChildren[0].nodeType ==
        Node.ELEMENT_NODE)));
    function abbr(){
      var theDOM = dw.getDocumentDOM();
              // Get the outerHTML of the HTML tag (the entire contents of the document).
              var theDocEl = theDOM.documentElement;
              var theWholeDoc = theDocEl.outerHTML;
              //while the position of a double space is not equal to -1, so there is one
              while(theWholeDoc.search("FSWEP") != "-1"){
                        //use reg exp to replace all spaces, which is useful for processing multiple lines at once
                        theWholeDoc = theWholeDoc.replace(/(FSWEP)/g, "<abbr>ASAP<\/abbr>");
              //loop back around until there are no double spaces
              theDocEl.outerHTML = theWholeDoc;
              theDOM.formatRange(0, theWholeDoc.length);
              window.close(); // close extension UI
    In it's current state, it will do a replacement of FSWEP anywhere it shows up in the document. What I need it to do is only replace those occurances that are part of the selected HTML block and are part of a text node.
    If there is anybody out there who can help me with this, I would really appreciate any assistance you might provide. At a very minimum, could you point me to some helpful resources that will help me figure out how to target chuncks of code in a DW HTML file.
    Thanks,
    Rob

    This question is more appropriate for the Acrobat JavaScript forum at http://forums.adobe.com/community/acrobat/acrobat_scripting.

  • My computer hangs when I use help menu command

    Is there a problem with the LabView help command when help is launched from a dialog box? My computer will hang when I do this and I must reboot to recover. I can't access any other program, including task manager.

    Hi,
    How exactly are you launching the LabVIEW help?  Furthermore, is there a .cpp error associated when trying to open up the help file?  Are you able to open up the help file directly through windows explorer by going to: C:\Program Files\National Instruments\LabVIEW 8.2\help  >>lvhelp.chm
    I hope this helps
    Regards,
    Nadim
    Applications Engineering
    National Instruments

  • Need Help with command line arguments for a class method

    Hey guys,
    I'm fairly new to programming in java.
    I want to a write a class method that adds up its command line arguments which are numbers. For example, if the input was .... 5 2 3....then the output would be 10.
    I have been told to use the Convert to convert a string to a double. I'm ok for writing the class method but I have no idea how to use Convert and why I need it in the method.
    Can anybody help please?

    Hey guys,
    I'm fairly new to programming in java.
    I want to a write a class method that adds up its
    command line arguments which are numbers. For
    example, if the input was .... 5 2 3....then the
    output would be 10.Okay. So you would receive the numbers to add as the String[] argument to a main method. The steps are simple:
    1) declare a variable for the count
    2) for each String in the array:
    2.1) extract the value as a double
    2.2) add this to the count
    3) output the resulting count
    I have been told to use the Convert to convert a
    string to a double.
    I'm ok for writing the class
    method but I have no idea how to use ConvertThere is no class Convert in the Java API.
    and why
    I need it in the method. Do you understand you need to somehow convert each String to a double (step 2.1)? Since Convert is unknown to me, maybe you should just take a look at class Double. It can help you do step 2.1, the rest should be trivial enough.
    http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Double.html
    Give it a go and feel free to post back with a specific problem you are having, accurately described if you please :-)

  • Mac Mini - USB/RS232 Cable - help to command display

    Could anyone help out with advice in a project where we would like to put a monitor in different modes from a Mac Mini.
    The interface for the commands to the display is a RS232 serial port. As Mac Mini has no RS232 port but there are USB to RS232 cables on the market our question is if one could use apple script or shell script to make the job?
    Would really appreciate any advice!

    this has absolutely nothing to do with scripting. you need a USB to serial adapter.

  • Dreamweaver MX 6.1 Closes When Click on Help or Commands in Vista

    Just got a new machine - running Vista with Dreamweaver MX
    6.1. When I click on the Toolbar - on Commands or Help - it closes
    the program. I just installed the updater to make it 6.1 - but it
    didn't help.
    Any ideas?
    Jess

    DMX predates Vista by at least 4 years. You may be out of
    luck.
    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
    ==================
    "jslist" <[email protected]> wrote in
    message
    news:g7i1fj$625$[email protected]..
    > Just got a new machine - running Vista with Dreamweaver
    MX 6.1. When I
    > click
    > on the Toolbar - on Commands or Help - it closes the
    program. I just
    > installed
    > the updater to make it 6.1 - but it didn't help.
    >
    > Any ideas?
    > Jess
    >

  • How to include Search Help which has been created using SE11

    Hi all,
    I have created the custom search help in SE11. What is the way to include it in my code? Thanks in advance.

    Hi Mil,
    There are different ways of using the search help created by SE11 depending on the kind of application you are using.
    1. Search help can be attached to a <i><b>DATA ELEMENT</b></i> under the tab <i><b>FURTHER CHARACTERISTICS</b></i>.
    Now wherever this data element will be used, automatically the search help will be available on the output screen. e.g. in selection screen using parameters statement etc.
    <i>PARAMETERS: P_VAL1 TYPE Z_DATAELE.</i>
    2. Search help can be also attached to <i> database table fields</i> directly in the tab <i>Entry help/check</i>. Now wherever this database table field is used e.g. in SELECT-OPTIONS statment, the search help will be automatically available on output selection screen.
    3. Also, search helps can be directly used in the programs using function modules and event.
    <i><b>PROCESS ON VALUE-REQUEST.
      FIELD <f> MODULE <mod>.</b></i>
    Here in the module, you can use following function module for fetching the search help on the screen.
    <i><b>F4IF_FIELD_VALUE_REQUEST</b></i>
    4. Search help can be direclty attached to the selection screen statements like SELECT-OPTIONS using MATCHCODE object extension
    <i><b>SELECT-OPTIONS: LP_STATS  FOR TJ30-ESTAT MATCHCODE OBJECT ZH_TJ30 NO-EXTENSION NO INTERVALS.</b></i>
    Hope this sort out your issue.
    PS If the answer solves your query, plz close the thread by rewarding each reply.
    Regards
    Message was edited by:
            Sapna Modi

  • Help using command promt

    I can run the command promt from the RUN command. I type in javac and it says its reconized. I set the path and classpath. I don't know if its right. I am using XP. When I go to open the javac window from my program files, it comes up and displays a messege. It goes away before I can read it. I can't open any of the files yet. PLEASE HELP ME OUT.

    You may want to try the tutorial here:
    http://java.sun.com/docs/books/tutorial/getStarted/cupojava/win32.html

  • HELP:SET COMMANDS in procobol

    We are porting applications from Oracle 7.3.4 to Oracle 8.
    The following set commands are giving syntax errors when compiling in Oracle 8 using procobol compiler.
    EXEC SQL SET CONCURRENCY READONLY END-EXEC.
    EXEC SQL CURSORTYPE CUR_STANDARD END-EXEC.
    Thanks for help.

    DMX predates Vista by at least 4 years. You may be out of
    luck.
    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
    ==================
    "jslist" <[email protected]> wrote in
    message
    news:g7i1fj$625$[email protected]..
    > Just got a new machine - running Vista with Dreamweaver
    MX 6.1. When I
    > click
    > on the Toolbar - on Commands or Help - it closes the
    program. I just
    > installed
    > the updater to make it 6.1 - but it didn't help.
    >
    > Any ideas?
    > Jess
    >

  • Help with Command - Stored Procedure

    Hi all,
    I'm having a great deal of difficulty getting my head around
    an update command / stored procedure, I've pulled out all of my
    books and spent the last two days on Google which has made my
    confusion worse. In simple terms what I'm trying to do is update a
    field in a table with the value y, but based on certain criteria.
    So my table has the following fields -
    JBAID
    JBASiteID
    JBADatePosted
    JBAPostFor
    JBANotified
    What i want to do is update the value of field JBANotified on
    all records that meeting the following criteria to Y
    The criteria is -
    WHERE DATEADD(d,JBAPostFor,JBADatePosted) BETWEEN DATEADD(d,
    -7, GETDATE()) AND GETDATE() AND JBANotified = 'n' AND JBASiteID =
    MMColParam (where MMColParam is Session("SITEID"))
    So I've just tried building a command / stored procedure -
    which reads (see attached code)(more than likely all wrong)
    The things that I cant get my head around are -
    Firstly getting the code right in the first place, running
    the command on page load and then when the command has run
    redirecting to the next page.
    I really would appreciate some help with this -
    thanks all

    Ed Stewart wrote:
    > Are you using CS3 with ASP/VBScript? There is a bug in
    the command
    > implementation that has this function broken.
    >
    > I asked about it in this forum several months ago, but
    now I can't find my
    > original post, but I did find another post that talks
    about the same thing:
    >
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=12&catid=26
    > 3&threadid=1281539&enterthread=y
    >
    > My solution is to drop back to DW8 for command editing,
    but use CS3 for
    > everything else. I don't know what you're supposed to do
    if you don't have an
    > earlier version.
    >
    > It looks like your sql is correct, but the bug prevents
    the second code block
    > is not being updated with the correct values.
    >
    > I hope a solution is forthcoming....
    >
    Create a stored procedure and then use a recordset to
    exectute it,
    making sure the recordset has matching parameters that the
    stored
    procedure expects.
    Commands are broken, I reported it to Adobe and they said it
    might get
    fixed in the next version.
    Steve

  • [HELP] Lost command in directory editor

    please help, I just accidentally deleted command in directory editor.
    The command is SystemAdministrator
    please help me to recover that back in my directory editor...

    Two choices left - download iPhoto Library Manager - http://www.fatcatsoftware.com/iplm/ - and use its rebuild command - this will rebuild yoru library leaving the original untouched so you can go back to it is things do not make yo happy - this will keep your edits, metadata and events but will not keep projects
    If that does not work Right click on the iPhoto library and show package contents - look in the masters folder - are your original photos there?  If so (and if you have adaquate disk space) duplicate the masters folder and rename the iPhoto library "iPhoto library old" - depress the option key and launch iPhoto ancd create a new library - drag the masters folder to the iPhoto icon in the Dock to import your original photos with your events
    This will give you a new library with your originals - edits, projects and metadata changes will not be available
    And critically start Time Machine up and leave it running
    LN

Maybe you are looking for