Executing the event GET SKC1A

Hi,
I need to get the value for the balance carried forward for the G/L Account Number.
In the program RFSSLD00, they have used a event GET SKC1A to get the value in the field UMSAV.
When this statement is executed, the structure is populated with the values.
Can anyone please help me of how to use this event? Whether any alternatives are available to get this value?
Please let me know. Thanks in advance.

Hi Satish,
Thanks for the reply.
In the attributes of the program you need to give SDF as the logical database. Then you can use the statement GET SKC1A.
But, I have a question here. When I run the program, the statement get executed and has values in it. Which field is taken as input to get the values in SKC1A? In my program, I have given the values as company code = 0252 and year as 2008. But it is giving the values as follows.
SKC1A-BUKRS = 0160, SKC1A-SAKNR = 0001111020, SKC1A-GJAHR = 2008.
I am confused here. Can you please help on this?
Thanks in advance.

Similar Messages

  • While executing the query getting an error u2018Page Not Foundu2019 in the bowser.

    Hello,
    I opened a Bex Query in Query Analyzer and clicked on the Execute button to execute the query in our portal site. But I am getting an error u2018Page Not Foundu2019 in the bowser.
    As I am new to BI,Kindly guide me through the steps.
    what all setting needs to be done?
    Regards,
    Rachel

    Hi,
    The Path is C:\WINDOWS\system32\drivers\etc\hosts
    You need to update "host file" in your server/in your PC. So ask Network people to do it and also you need to change your browser LANsettings.
    Eg:   11.11.8.161     BWQ1     BWQ1.***.com
    Like above you need to change in your host file.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Nov 27, 2008 8:12 AM

  • While executing the Procedure Getting Error

    Hi I am New to ODI.
    I create one new Procedure just to delete the Target table.
    delete from <%=snpRef.getTable("L","T_CUSTOMER","D")%>. T_Customer is my target table.Technology:Oracle(Both Source and Target)
    I selected the correct Context ,Schema and Technology.
    While executing the procedure i am getting following error
    java.lang.Exception: Internal error: object ConnectConnection
    ColConnectId:null
    ColContextCode:DEV
    ColConName:null
    ColIndCommit:null
    ColIsolLevel:null
    ColLschemaName:null
    ColPlanComp:null
    ColTechIntName:null
    DefConnectId:null
    DefContextCode:DEV
    DefConName:null
    DefIndCommit:null
    DefIsolLevel:null
    DefLschemaName:FCS
    DefPlanComp:null
    DefTechIntName:ORACLE
    ExeChannel:J
    IndErr:1
    IndLogMethod:null
    IndLogNb:null
    LogLevDet:3
    Nno:1
    OrdTrt:0
    ScenTaskNo:1
    SessNo:61001
    TaskName1:Procedure
    TaskName2:Delete
    TaskName3:Delete
    TaskType:S
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execSrcOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlS.treatTaskTrt(SnpSessTaskSqlS.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)
    Thanks in advance.

    i Used the below syntax and checked its working fine.
    delete from <%=snpRef.getObjectName("L","T_CUSTOMER","D")%>

  • Select Query after the Event "GET  node "

    Hi,
    My requirements is I am calling get object event in my report and preparing an internal table in the get event, after this i need to write a select query based on this internal table..
    i want to avoid select query inside get event, my problem is to end the GET event and write a select query..
    How can i do that..
    can i write it in the end-of-selection.( i don't think so)
    it looks like this.
    start-of-selection.
    get objec.
    " Internal table preparation
    ????????event name needed??????????
    select query.....
    please suggest.

    END-OF-SELECTION.
    Effect
    This statement defines an event block, whose event is raised by the ABAP-runtime environment during the calling of an executable program , if the logical database, with which the program is linked, has completely finished its work.
    Moderator message - Sandeep - if you have to cut and paste from the help, please note it as such.
    Edited by: Rob Burbank on Nov 26, 2009 12:42 PM

  • I have synced my calander to have all events until I delete them. I don't even delete an event and two minutes after I put something on it the event gets deleted. How do I prevent this?

    I put an event on my calendar and within five minutes it gets deleted. I never delete any events. I already went and synced to all events and it still does it. I want it to stop. Can someone please help me?

    go to settings>mail contacts and calenders> check and see if your calender is on under your email.. if so it is probably syncing to your emails calender and not the calender app on your phone..

  • Event gets lost when iView is uncompressed for the first time

    Hi All,
    we are developing an application that manages attachments (meaning: files stored in KM) and per request by the client consists of several iViews. One of them contains a search interface, another one lists the hits that have been found. So the iViews have to communicate.
    We achieved the funcionality by using portal eventing and the HTTP session. The search iView compiles the search string and writes it to the session.
    request.getComponentSession().getHttpSession().setAttribute(searchString, .....);
    We then use javascript to fire an event on which the searchResult iView reacts and fetches the searchString from the session. The actual search is then performed within the searchResult-iView.
    The only problem is that the client requested that the searchResult iView should initially be collapsed. So we set its "initial display" property to "collapsed" and implemented some javascript functionality in the search iView that expands the searchResult iView when a search is performed:
    function openIview( iviewID ) {               
      var temp = parent.pageSupport._getIvuPageId(iviewID);
      var ivuBankObj = parent.pageSupport._getIViewBank(temp);
      if (ivuBankObj.getToogle() == 0) {
        var trayid = ivuBankObj.getTrayId();
        var event = document.createEventObject();
        event.type = "click";
        if(parent.htmlb_TrcToggle(trayid,'0',event)) parent.pageSupport.ivuToogle(iviewID);
    We then fire an event:
    EPCM.raiseEvent('...', 'SearchEvent', param, '');
    All works fine, except for the very first time the searchRersult iView is expanded after the application (meaning the page containing the iViews) has been opened. The searchResult iView is properly expanded, but the event seems to get lost so that no search is being performed (no error, but no reaction by the iView).
    We observed that it seems as if the contents of the iView are only fetched by the browser when it's expanded for the first time. (The progress bar of the browser shows loading activity when expanding the iView for the first time). Supposedly the event gets lost because the serachResult iView doesn't fetch it since it's just being loaded.
    After this initial erroneous behavior, the iView can be in compressed or expanded state before a search is being performed and everything works fine.
    Interestingly enough the problem can be resolved by setting a timeout of several seconds after expanding the iView and before firing the search event. But we find this to be a very questionable (and inconvenient) method of solving this problem and would rather like to solve it properly.
    Does anyone have any ideas how we could achieve this? Is there a way to determine whether an iView has been loaded by the browser (because obviously displaying and loading an iView seem to be two different things)?
    Thanks in advance,
    Jens

    We introduced a boolean "isInitial" flag to the bean which we use to determine whether the iView is expanded for the first time or not. If so, there is a timeout of 2 seconds before the event is fired.
    Not really satisfactory, but working.
    Jens

  • Execute an event several time in the code

    Hi I would like to execute a piece of code several time in the VI without the need to sub vi calling.
    I found a weird reaction from labview as it is executing the event but without respecting the delay.
    I realized that when I highlighted the execution.
    Cheers,
    Zied
    Attachments:
    signal value Folder.zip ‏9 KB

    Thank you guys, but is it possible to use the event structure but without waiting for the next loop iteration.
    I did that, is it a good way to code.
    Attachments:
    signal value Folder.zip ‏18 KB

  • Workflow issue - When i execute the workitem it just disappears

    Hi
    i am learning workflow. i am just following some instructions on one of the tutorials and i developed a simple workflow for editing material number when a material is created. i create the material in mm01 and the event gets triggered and i get the work item in my inbox. When i execute the workitem it just disappears and comes into my outbox. I am not able to go to the edit screen of the material( mm02) what am i missing? if i only use task then it works fine without any issues, if i include the same task in a workflow and trigger it does not open mm02. plz help
    ~Suresh

    Have you checked the workflow log ?
    If not in your business work place, got to Outbox --> Work Items executed by me
    The click on the workflow log button. Analyze the log.
    There are various reasons why this can happen, so cant really say much about why this issue is occurring without more details.
    Also you will probably get better answers if post this in the Workflow forum than in the ABAP forum.
    Regards,
    Srihari

  • Calendar is creating an extra event when the event spans the week view end of week to beginning of next week.

    When I create an event in Calendar that goes from Saturday to Sunday, like my work shift that starts at 5:30 pm and ends at 3:30 am the next day, the event gets duplicated onto the next day but is seen as a single event. So if I delete the one on Sunday it deletes the Saturday one as well. But visually there are two separate events. This happens when spanning work weeks. I first noticed it because my week view was set to start on Sundays. All of my Saturday shifts were duplicated onto the Sunday. It seemed to be okay only when I switched the week to start on Mondays. But then I just went to create an extra shift I picked up on Sunday and now it's there on Monday as well.

    Ive reset, restored and this is the second phone. Thought it maybe a wonky screen that would shift it while setting dates. THe only thing I can think of is that I am syncing with google calendar, but it only happens when setting events in ios not if i do it from google website on desktop PC.

  • Contextual event producer not listed as in the event map

    Hi
    There is a taskflow A containing a pagedef which raises a contextual event. Taskflow A resides in Taskflow B.
    Consumer page has Taskflow B dropped as a region and also has a handler method to subscribe to the event. While trying to create an event map in the consumer's page def, I do not see the Taskflow B listed as a producer in the editor. Thus, I am not able to specify the relative path in the producer of the event map.
    If I add wildcard as a producer , the event gets subscribed but I would like to make use of the relative path to the producer instead.
    Any idea how to go about it?
    Thanks.

    I have seen in some tutorial videos where the wiki object updates while on the editing board. I do not have this effect - and when previewing the object still has no content.!!
    I have tried both ways using an article url or a keyword.
    As you can see the twitter tab does not appear on the events list.
    I am running Firefox 32.0.3 as a browser on a Linux OS (LinuxMint15)
    thanks for your interest in the matter

  • How to trigger the event HANDLE_DATA_CHANGED manuallly?

    Hi experts,
       I have a requirement were i have a editable alv grid(container..). I have also used the event handle_data_changed.But the event gets triggered only if i press 'enter' after typing the data on the grid. But i need the event to be triggered when i press the save button which i have desinged in the gui status. Please suggest some ways and provide some sample code if possible.
    Thanks in advance
    regards,
    Ashwin

    you might have written code to handle SAVE ucomm.
    data: g_check.
    module status_0100 output
    set pf-status 'ZMAINGUI'.
    set titlebar  'ALVTITLE'.
    case sy-ucomm.
    when 'SAVE'.
          call method g_alv_grid->check_changed_data
            IMPORTING
              e_valid = g_check.
          if g_check = 'X'.
           *here you can write the same code what you have written in
           *HANDLE_DATA_CHANGED
          endif.
       endcase.
    endmodule.                    "status_0100 OUTPUT

  • Edit iCal event from calendar1 to calendar 2 on iPhone dupliates the event

    Hi All,
    I have a very strange problem with my iCal server.
    A user has 5 calendars in his account. When he accesses his account every 5 calendars work perfect from the LAN and from the Internet (outside)... He enters an event in calender1, changes the event to calender2, it gets moved perfectly. This happens on OS X clients.
    Now the culprit, which drives me nuts...
    When he changes an event on his iPhone or iPad, the event gets duplicated. So the event which was in calendar 1 is now in calendar 2 as well, but stays in calender1 too...
    Hmm, I have searched here, googled my head off, and cannot find a solution.
    Does anyone have this problem or just me?
    thanks
    Rob
    Everthing is on 10.6.6 (Server Clients, iPhones are on 4.2.1. All calendars reside on the server, there are no local calendars.

    Hello there,
    I have the same problem. I use a 3rd party calendar app (miCal) to synchronize with my Google calendars. Their support told me to try it with iCal on iPhone, and its the same problem, so the problem resides there, as miCal is synchronizing with iCal on the iPhone.
    When I move an event from calendar1 to calendar2, it is displayed as supposed in iCal and miCal. When I access Google calendar directly via their web interface, you can see the "old" event in calendar1, though. So it's still there.
    I'm pretty sure the problem does not reside with Google, as I found some forum post with the same problem somewhere else on the Internet, but with MobileMe for calendar sync instead of Google.
    Currently I'm running 4.3.2 (according to the post above, it should be fixed with 4.3.1) but I still run into the same problem again and again as I move events from one calendar to another on a regular basis.
    With iCal on my MacBook Pro (OS X 10.6.8) it works as it's supposed to. No complaints there. This duplicating of events happens only when I move events on the iPhone. Any solutions there?
    Thank you!
    Thomas

  • Two events getting trigered even though only one is being raised !

    I am creating a workflow for TRIP approval. In Start events I have added following two events :
    1. CREATED
    2. CHANGED
    Whenever a trip gets created or changed both the events get triggered thus two workflows start.
    I can customize my workflow for only one event but the issue is why two events are getting triggered ?

    Hi AD,
    not dealt with TRIP object,
    but the CHANGED event, is it created by you thru SWEC?
    If yes, check if the entry has OnChange and not Create.
    Hope it helps.
    Aditya

  • Deleting calendar invites does not remove the event from calendar

    i regularly get calendar invites that i do not want cluttering my calendar.  on my PC, i can easily delete or decline them without sending a response, which is the easiest way to deal with them.  but if i open the invite mail message on my iphone, the event gets added to my calendar automatically.  what's worse, if i delete the email message containing the invite, the event stays on my calendar.  if i tap the event, i'm given the choices of accept, maybe, or decline.  if i decline, it sends a message to the organizer.  this actually leads to more problems, like a senior person wondering why i declined their event, or a junior person sending invites to the entire office and complaining about all the declines.  it's even worse if a client sends an invite for a project i'm not involved with.
    is there some setting i need to enable to ensure that when i delete an email containing a calendar/outlook invite, the event is deleted (or better yet, never added) to my calendar? 

    Why has no one helped? This is a reasonable question but all similar strands are left unanswered. Why wouldn't people want to hold on to the information about old appointments?

  • Future.get and the event despatch thread blocking

    neeeyaaarghhhh
    been tying myself in knots thinking about this
    Following one of the java tech tips I've been using Callable and Future objects when I want to return a result from a task, in my case it's usually some file processing
    So I have a file chooser gui, I select a file and launch my Callable and await the result in Future.get...
    Now the problem is... Future.get I understand blocks the calling thread until the computation / work in the Callable is done and the result returned. In this case the blocked thread will be the event despatch thread... which causes problems as during my file reading I have a JProgressBar running and updating. Well at least I did, now it doesn't show up at all as all the updates to the JProgressBar via invokeLater are queued (as event despatch thread is blocked) until after the work thread has finished
    How do I launch a Callable, await the result and have some limited gui activity as the task progresses? The only solution I've found is to have the ProgressBar in a modal dialog, to block out the rest of the gui like this whilst I do the work in the event despatch thread (and drop the idea of threading altogether)
    Is my mental modal of how worker threads should spin off from the event thread flawed or am I just missing some 1 line command?

    In the situation of updating the gui, you usually want to pass some sort of callback object to the asynchronous code and have that callback method run on the gui event thread.
    public class GuiClass {
    public void handleResult(Object data);
    public void startTask() {
      threadpool.execute(new Runnable() {
        public void run() {
          // ... do asynch work ...
          final Object myResult = ...;
          SwingUtilities.invokeLater(new Runnable() {
            public void run() {
              handleResult(myResult);
    }In this code, the startTask method is called on the gui thread. it starts some async work on the threadpool. when finished, the asynch task queues the result to be handled back on the gui thread. the handleResult method is called later on the gui thread with the final result. thus, no blocking of the gui thread.
    The Callable interface is great for when the invoking thread needs to wait for a result, but you pretty much never want to do this with the gui thread.

Maybe you are looking for

  • How can I get my hp eprint email address from a remote location?

    I am currently away from home and need to print something for my wife.  I have tested out eprint before but never tried it from a remote location.  I cannot recall the email address for my printer.  Is there any way to retrieve this without being at

  • Copy data from one Table to another Table

    How can I copy data from one Oracle Table to another Oracle Table on a different server? Question 2: How can I clear all of the data in one Table with a single SQL script? Thanks...

  • ITunes 11.1.4 and Windows 8.1 fix the problems?

    Was wondering if I can download this? Past couple of time I tried to auto update, ITunes would crash and I had to delete everything apple and re-install an older version. Thanks

  • List viewer

    Hi all, what is the difference between sap list viewer and abap list viewer?

  • How to retrict user cannot open the same form more than once (Forms 6i)

    Our users always open the same forms more than once. For example the customer form, the user may access a customer record in the first form, however, he will open a new customer form to edit the same record, the result is he cannot save the record be