KO8G Postings, how to verify postings  what is TCode and Process-Urgent

If KO8G is run, what is the process and , how to verify postings ?
what is TCode and Process-Urgent
Thanks and Regards
Narasimha Rao

Hi Narasimha,
If you ran the job in background, check SM37 for the log.
If spool lists created check transaction SP01 to view the details.
Whether run in background or online, you can check in KO8G under Goto -> Previous settlements.
There are other ways but it depends on what data you processing.
Hope this is of some help.
Elaine

Similar Messages

  • I accidentaly pressed on "forget this devise" in the bluetooth settings. Now my iPhone would not even list my headset. How can I reverse what just happened and connect my headset? Can anyone assit please?

    I accidentaly pressed on "forget this devise" in the bluetooth settings. Now my iPhone would not even list my headset. How can I reverse what just happened and connect my headset? Can anyone assit please?

    You need to put the headset into pairing mode. The phone should then see it even though you have done the forget this device.

  • How to find the max session count and process count for a database

    Hi All,
    How to find the maximum session count and process count reached for a database over a period of 15 days?
    DB version:11.2.0.2
    OS:AIX

    Thanks for the link.
    The output of the below query that is given in the link shows the results for the last 10 or 12 days.. Is there a query which gives a result for the last 30 days?
    col metric_unit for a30
    set pagesize 100
    Select trunc(end_time),max(maxval) as Maximum_Value,metric_unit
    from dba_hist_sysmetric_summary
    where metric_id in ( 2118,2119) group by trunc(end_time),metric_unit order by 1;

  • TS1447 I always get an error that says 3 items could not be synced after an Itunes sync. How do I know what they are and what to do bat them

    I geta message after attempting to sync with Itunes that says 3 items could not be synced. How do I know what these 3 items are? What should I do about this?

    I updated to iOS 5.0.1 days ago and didn't receive that notification until just now...
    This time I synced new photos I took yesterday, and it gave me the:
    "iTunes Sync: 54 items could not be synced. See iTunes for more information"
    Perhaps it kicks off when new items get synced.
    I've decided to rent a movie yesterday. Once it gets deleted, I'm curious to see if it jumps to 55 items.

  • How to create a value only  article and process it

    pls tell me how to create a value only article,  group article and
    hierarchy article and process the same in Is-retail

    Hi,
    Pl use the following link:
    http://help.sap.com/saphelp_ides/helpdata/en/fa/6a376542ef11d2a64b00104b57eaa3/frameset.htm
    Regards,
    S.V.ManiKumaar

  • What Message type and Process Code to use for Purchase Order Change in 4.6C

    I like to implement in SAP R/3 4.6C a scenario for Purchase Order Change, via inbound IDoc.
    I have been searching, but could not find what Message Type, Idoc Basic Type and Process Code to use.
    I can not imagine this functionality does not exist in 4.6C.
    Any suggestions for my problem are welcome.

    Hello,
    In this case you should use the message PORDCH and BAPI method BAPI_PO_CHANGE but only exist as of release 4.7.
    Function module    BAPI_IDOC_INPUT1
    Idoc Type              PORDCH01
    Message Type      PORDCH
    So check carefully the following OSS notes:
      [Notes 589066 - BAPI_PO_CHANGE: Incorrect account assignment to network |https://service.sap.com/sap/support/notes/589066] (not be fooled by the description)
    [ Notes 197958 - BAPIs for purchase orders - Missing Functions|https://service.sap.com/sap/support/notes/197958]
    Regards,
    Andrea
    Edited by: Andrea Olivieri on Sep 3, 2009 10:17 AM

  • How can I tell what video card and how much video memory does my iMac have?

    How or where can I find out: which video card does my iMac have and how much video memory does it have? I've tried looking in System profiler, but I did not see it there. Thank you.

    Once you open System Profiler there should be a line called "memory" which is the RAM (vs. hard drive size which is not what is called memory), e.g., Memory: 1.5 GB
    For video click on the line Graphics/Displays and look at the chipset line, e.g., Chipset Model: GeForce2 TwinView
    Kappy's instructions are handy for checking the original configuration of your computer, but that may have been changed at some time, especially if you bought it secondhand.

  • How to see if what a specific load process is doing?

    Hi all, having a little bit of a problem in that I have a load (not replication) job that seems to be hanging (not failing) but also not loading any data into HANA or not finishing.
    - Attempted to load table STXL in full, 440k or so rows loaded into HANA
    - Created an include for BOR event to filter all but 1 record, worked fine in about 3 minutes and 1 record present in HANA
    - Added additional code to decompress a compressed column format, code shown below. This was tested in a 'standalone' fashion as a program in an ECC system, so this is migrated to SLT as an include. In this case, the load job is just "hanging", it's not failing or not finishing. When I look in the monitor, can see it running for the last say 15 minutes "In Process".
    From here, no data ever makes it into HANA and the job in SLT doesn't seem to finish.
    How to diagnose where this is getting hung up or where the problem is? Normally if the code is bad, I would get a hard error in the application logs, which I don't get here.
    Code for include
    *&  Include           Z_TEST_IMPORT_TEXT
    types: begin of ty_stxl_raw,
             clustr type stxl-clustr,
             clustd type stxl-clustd,
           end of ty_stxl_raw.
    DATA: lt_stxl_raw type standard table of ty_stxl_raw,
          wa_stxl_raw type ty_stxl_raw,
          lt_tline type standard table of tline,
          wa_tline type tline.
    IF <WA_S_STXL>-TDNAME <> '0020874233'.
      SKIP_RECORD.
    ENDIF.
    clear  lt_tline[].
    wa_stxl_raw-clustr = <WA_S_STXL>-clustr.
    wa_stxl_raw-clustd = <WA_S_STXL>-clustd.
    append wa_stxl_raw to lt_stxl_raw.
    import tline = lt_tline from internal table lt_stxl_raw.
    READ TABLE lt_tline into wa_tline INDEX 1.
    <WA_R_STXL>-TEXT = wa_tline-tdline.

    Frank, awesome to hear you worked through the issues.
    Regarding DMC_STARTER, can you share how you were able to find the issue, specifically with such a large dataset, did you just step through until you hit a dump? When I referred to the documentation on debugging (that I had not yet created!), here is what I gathered just last week as a rough start. I'll probably repost this as a blog if you can confirm it is similar to your steps.
    - Ensure however you would like to test has already been started
    - For example if you want to test initial load, start the initial load and let it fail, and follow the steps below. When DMC_STARTER kicks up, it will start initial load again in debug.
    - If you want to test replication phase (picking up logging table records to process), get a table to replication status, stop the master job, then make a change in the source to log new entries in the logging table and follow the steps below. When DMC_STARTER kicks up, it will start in replication phase, picking up logging table records for processing.
    After the above is "set up" for testing, do the following, some of the functions will have different names based on your implementation.
    - SE38, DMC_STARTER
    - Use Migration Object Z_<TABLE_NAME>_<CONFIGURATION_ID>, Z_STXL_001 for example, access plan = 1, test mode = X
    - /h to enable debug
    - Find OLC function module call CALL FUNCTION olc_rto_ident, set breakpoint, continue to enter the FM
    - Enter 1CADMC/OLC_100000000000*, find CALL FUNCTION '/1CADMC/IL_100000000000769', set breakpoint, continue to enter the FM
    - Enter /1CADMC/IL_100000000000769, find PERFORM _BEGIN_OF_RECORD_0001_, set breakpoint, continue to enter
    - Enter PERFORM _RULE_BOR_C., the include code should be found here and you can step through.
    Regarding your issues discovered
    1) When I referred the code changes I need to tag on the other blog, I was referring to the following
    - Check for <WA_S_STXL>-SRTF2 = '0' to only grab the first line (as you mention)
    - The CLUSTR size as you mention is a helpful check.
    - Also need to put a check above the processing of the record to be able to handle DELETE's, else you'll get a short dump. When a deletion occurs, only the key columns are passed through this logic, and when we are working (importing) on a non-key field it will of course be empty and cause a dump.
    if <WA_S_STXL>-CLUSTD is not initial.
    *Put Source fields into internal table for IMPORT statement to work on, main logic here
    endif.
    2) The specific texts we were targeting would never be this large, they only consist of one single line so we never hit this issue. In the case you exceed 345 lines, are you just truncating the remainder?
    All in all, great stuff - good to see someone taking this concept further. If you want a deeper look into the folks who are doing much heavier text processing with additional logic (and much stronger ABAP'ers than I ), see Mass reading standard texts (STXH, STXL)
    Happy HANA!
    Justin

  • How broken is it, what caused it and how can I get it fixed?

    When I turned my iMac on it said "Safe Boot", what is that? The background was changed to the original image, it won't connect to the Internet via the airport (says "no airport card installed" which I've never come across ever), iTunes appears to have my music and films but when I press play on a video there is just a blank screen, in the "search for" section there are no items... We are still under our guarantee so is it worth just taking it back?

    is it worth just taking it back?
    As opposed to what?

  • Have a download that will not download how can i identify what it is and how to delete it?

    Have Iphone 4 have a file that is "hanging out" that fails when I try to download.  What steps do I need to do to find out what the file is; and is it possible to delete?  THX

    Welcome to the Apple Community.
    You can see what's in iCloud collectively at settings > iCloud > storage & back up > manage.... You can only edit the data through the appropriate app (contacts, calendars etc)
    For problems with 3rd party apps, contact the developer.

  • How do I tell what radio frequency and speed (AGN) my WRT610N router is operating on ?

    with each of my laptops, and how do you change this ?

    If i am not wrrong, you need to change the Wireless Settings of your Router? That you can do it by simly logging in to your Router setup page. That you can do it by Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 Leave username blank & in password use admin in lower case...Then Click on the Wireless Tab and there you can Set the RadioBand and Channel as per your Need.

  • How to Manually decide what to store, and what not to..

    Hi,
    I recenlty stored my computer through time machine with an external hard drive. After the back up was complete I decided to delete some stuff to increase the available space in my computer. But I realized that the stuff that I deleted from my computer was also deleted from the external hard drive. Is there any explanation for this? And I couldn't just copy the files from the trash to the hard drive, it says it cannot be modified or something. Does anyone know how can I get those files to my external hard drive without having them in my computer ?
    Thanks.

    Michek wrote:
    Hi,
    I recenlty stored my computer through time machine with an external hard drive. After the back up was complete I decided to delete some stuff to increase the available space in my computer. But I realized that the stuff that I deleted from my computer was also deleted from the external hard drive. Is there any explanation for this?
    Yes.  Time Machine is a backup app, not an "archive" app, or a place to store things that won't fit on your Mac.
    It doesn't keep it's backups of things you've changed or deleted indefinitely -- depending on the circumstances, they'll be deleted in as little as 24 hours, or kept as long as there's room on the backup drive.
    See Time Machine - Frequently Asked Question #20.
    And I couldn't just copy the files from the trash to the hard drive, it says it cannot be modified or something.
    If the files are in your trash, you should be able to copy them, but not to the Backups.backupdb folder on the external HD.  That's reserved for Time Machine backups. 
    While you can copy them to that drive, outside of the backup folder, that's not a good idea.  See #3 in the FAQ.
    Your best bet, by far, is:
    First, move the files out of the trash, so Time Machine will back them up again (it automatically skips trash).  You may be able to right-click them and select Put Back.  If not, just move them.
    Second, get a second external HD for the "overflow" of stuff that won't fit on your Mac.  Be sure to format it for a Mac (see #1 in Using Disk Utility), and move the data to it.  Then let Time Machine back up both your Mac and the new external HD.  See #32 in the FAQ for details.

  • How do I find what itunes account and apple id I used years ago when I got my ipod?

    How do I merge my old ipod with my current itunes library.  I'm not sure of my previous itunes or apple id..

    iPods (except for the iOS-based iPod touch) are not directly associated with an Apple ID.  The only way your Apple ID may comes into play is if you have songs on the iPod that were purchased from iTunes Store (using your Apple ID), and you want to transfer those purchased songs (not other songs) from the iPod into your current iTunes library.
    If your goal is to transfer all song files from the iPod to your computer, you cannot do that (by design) using iTunes (except for songs that you purchased from the iTunes Store).  However, there are third-party methods and utilities that can transfer from iPod to computer.  If you do an Internet search on something like "iPod transfer," you should get some links.  (The CNET article seems to be popular.)
    Once the song files are on your computer's drive, you can add them to your current iTunes library.  If you have songs purchased from the iTunes Store, and they are older purchases from the early days of the iTunes Store (when songs were copy protected), you may need to authorize your computer for the Apple ID used to make the purchases.  Otherwise, those songs will not play or sync.  Please post back if this is the case...

  • TS1317 I have just purchased my Apple on plugging in my wireless internet usb it says I need a Java runtime, how do I know what Java runtime and where do I download it from?

    Can anyone tell me what 'Java runtime' is required to get my Blink usb internet connection working and where I can download it from?

    Holly cow, I don't see where it supports anything but Windows®!?
    http://www.blinkit.net.au/Support
    Also, pretty dangerous of them to require Java to use this.
    Anyway, open Applications>Utilities>Java Preferences, that'll tell you the Versions you have... might need to check "Enable applet Pug-in and Web Start Applications", not sure.

  • Mighty Mouse: How do you program what buttons 3 and 4 do? NM

    intel imac   Mac OS X (10.4.9)  

    If you have a Mighty Mouse, use the pop-up menus to choose the action you want for each of the buttons. The scroll ball can also function as a button. To set a button to open an application, choose Other and select an application in the dialog that appears. Choose Button 3 (for the scroll-ball button) or Button 4 (for the side buttons) to use your mouse with a video game, CAD program, or other application that works with a multibutton mouse. Choose Off if you want a button to be inactive.

Maybe you are looking for

  • How to delete hyperlink style in Pages 5.1

    How do i avoid  the hyperlink style when typing my name and email in Pages 5.1 document

  • Import Letter of credit

    hi all,        i would like to know whether import cycle is mapped into SAP or not, if so        then how much it is present in SAP and how do we process the same ?        along with that whether mode of payement - letter of credit in import proces i

  • Gl -carry  forward

    hi, When i carried forward gl values  net balance of p& l accounts transferred to retained earnings account correctly . But when i take TB as on 31.3.08 retained  earnings account has the old value (carry forward value of 2006 ).TB on 1.4.08 shows th

  • Singles sales order shipping from  multiple plants in different lega entiti

    We are a global Mfg and distributor of scientific instruments. Due to the complexity and delicate nature of these instruments we may need to ship product from as many a three different shipping points / plants that are each owned by a different legal

  • Where to apply input verifier using netbeans IDE editor

    hello frenz, could anyone guide me on how to applying input verifier using netbeans IDE editor?