Problem posting through FBV0 with BTE enhancement

Dear Gurus,
I created BTE enhancement event 1030 in P/S modules.
The BTE program used to post another document after original (standard) document is posted.
If we post directly without park, the document all posted successfully.
So when the document is parked through FV50 or FV60 and then post with FBV0.
But when we use FBV1 and F-65, then post FBV0 it raised error: No batch input data for screen SAP***
This error apparently because we commit document while updating document park (from parked document to posted document in BKPF).
this symptoms found when we use BAPI_ACC_DOCUMENT_POST or BAPI_ACC_DOCUMENT_CHECK.
the only way making both document (standard and BTE doc) posted is to call BAPI_ACC_DOCUMENT_POST in background task.
But we can't get the message in return parameter.
I try to use function AC_DOCUMENT_DIRECT_INPUT then the error change into "UPDATE ERROR FBVB".
I change the BTE event to Process Module 1140, results the same.
The question is, can we post another document using FM and commit during standard updating routine in SAP?
Is there another FM/method i could use to post another document while posting park document FBV0?
Really need your help.
Thanks,
Tiara
Edited by: tiara astari on Nov 24, 2009 8:14 AM

Hi,
Maybe it could help.
When you do a POST document in asyncrounous update, try to use IN BACKGROUND TASK.
In your case, when you call function BAPI_ACC_DOCUMENT_POST add statement IN BACKGROUND TASK.
like this
CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST' IN BACKGROUND TASK
IMPORTING
EXPORTING

Similar Messages

  • BAPI for Posting through FBS1 with reversal reason & reversal Date

    All Experts,
    Can I use BAPI_ACC_DOCUMENT_POST for posting in FBS1 with reversal reason & reversal date? I can't find such option in the BAPI. If not, can you suggest other BAPI that I can use to perform posting with reversal reason & reversal date?
    Thanks in advance.
    Regards,
    Azad.

    You need to use RFBIBL00, create a file to be consumed by it and it will create a session variable that can be run by SM35

  • Non PO documents parked in FV60 cannot be posted through FBV0.

    Hi,
    I am trying to post  a document parked through FV60 in FBV0 Tcode, but the system says that the document is already posted in that compnay code even though it is in parked condition.. I tried posting some other parked documents but the system is showing the same error. It is only happening to documents parked through FV60. The documents parked though FV50 can be posted.
    Can anybody help me solve this issue.
    Thanks,
    Vardhana Reddy.

    Please check the database of deriving the actual state of the document.
    Check the table VBKPF and VBSEG whether the entry is there in the database of not.
    Unless and until we get to know the state of document at the data base level , it would be difficult to comment.
    Cheers,
    Dewang

  • Problem connecting through RFC with fully qualified domain name

    I am using the .NET Connector and RFC to call a BAPI
    I use a fully qualified domain name in the form <DOMAIN>\<HOST>
    The RFC seems to have problems with this form of address. It produces the following execption in my .NET code.
    SAP.Connector.RfcCommunicationException: Connect to SAP gateway failed
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       hostname 'DOCUNET_AG\DWSAP' unknown
    TIME        Mon Feb 05 11:57:20 2007
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -2
    MODULE      ninti.c
    LINE        329
    DETAIL      NiPGetHostByName2: hostname 'DOCUNET_AG\DWSAP' not found
    SYSTEM CALL gethostbyname_r
    ERRNO       11004
    ERRNO TEXT  WSANO_DATA: Valid name,
       at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo
    , Encoding encoding, String languangeCode)
       at SAP.Connector.SAPConnection.Open()
    What can I do that I am able to use a fully qualifies domain name in this way?
    Thank you very much for your answers.
    Mirco

    Hi Mirco,
    additional to my first reply, open a shell window and type
    <b>
    ping <computername>
    </b>
    or
    <b>
    ping -a <ipaddress>
    </b>
    so you should get the full qualified name for the host.
    Regards
    Holger

  • Problem with BTE and FI-parking- no data from memory ID to ABAP

    Hi Experts,
    I have a scenario in Business Workflow where I want to catch the data(BKPF & BSEG) after SAP transaction processing - event is to change parked FI-document with FBV2. I´m trying to use BTE to receive the data after processing transaction.
    All BTE steps seems to be activated - because I can debug my functions when processing FBV2 - but I cannot reach any data into my coding after processing.
    I have created my project in BF24:
    ZXXX Testing: WF-memory ID
    I have also linked few FI-events to my BTE interface funtion in BF34:
    00001130 ZXXX ZXXX_FIPP_CHANGE_BTE
    00002213 ZXXX ZXXX_FIPP_CHANGE_BTE
    00002217 ZXXX ZXXX_FIPP_CHANGE_BTE
    My BTE function ZXXX_FIPP_CHANGE_BTE is as following:
    DATA: memid(15) VALUE 'ZXXX_2217'.
    *Initialize
    CLEAR: t_vbkpf,
    t_vbsegs.
    FREE MEMORY ID 'ZXXX_2217'.
    *Backtracking of BTE
    EXPORT t_vbkpf
    t_vbsegs
    TO MEMORY ID memid.
    ENDFUNCTION.
    I have also created funtion to call FBV2:
    data: memid(15) value 'ZXXX_2217'.
    CALL TRANSACTION 'FBV2'.
    *Import memory of BTE
    IMPORT t_vbkpf
    t_vbsegs
    FROM MEMORY ID memid.
    *Free memory id
    FREE MEMORY ID memid.  
    When I set a breakpoint to both of the functions and I execute FBV2 I reach the breakpoints. Problem is that the data is not passed from memid 'ZXXX_2217' into function after FBV2(this syntax: IMPORT t_vbkpf t_vbsegs FROM MEMORY ID memid.)
    What could be missing. So both functions are called but NO DATA is passed from memory ID to my internal tables? This seems to be a problem with memory ID´s. Also in my BTE function ZXXX_FIPP_CHANGE_BTE I receive a sy-subrc value 4 when executing syntax "FREE MEMORY ID 'ZXXX_2217'. ".
    All hints appreciated,
    Jani

    Hi Ramki,
    I must be frustrating You with these stupid questions... You have already supported me hugely to get more famailiar with BTE. For example not to commit in BTE etc. Big thanks for that!
    In all cases when I have tested my project in BF24 has been always active; and yes I have changed the pre. posted document always to trigger the BTE.
    I still have a problem. I copied all customizing and coding into other system - with same dissapointing results. Let me describe this once more:
    <b>My entry in BF24:</b>
    <i>Product:                 ZBE
    Text:                       Jani testing
    RFC destination:
    Active:   </i>               X
    <b>My entry in BF34:</b>
    <i>Event:                   00002214
    Product:                    ZBE
    Ctr:
    Appl:
    Function module:            ZBE_BTE</i>
    <b>My BTE function:</b>
    <i>  DATA: memid(15) VALUE 'ZBE_BTE2214'.
      DATA: t_vbkpf LIKE fvbkpf OCCURS 0 WITH HEADER LINE.
      FREE MEMORY ID memid.
      EXPORT t_vbkpf TO MEMORY ID memid.</i>
    <b>And the function ZBE_BTE_EXECUTE where I call FBV2:</b>
    <i>  DATA: memid(15) VALUE 'ZBE_BTE2214'.
      DATA: t_vbkpf LIKE fvbkpf OCCURS 0 WITH HEADER LINE.
      CALL TRANSACTION 'FBV2'.
      IMPORT t_vbkpf FROM MEMORY ID memid.
      FREE MEMORY ID memid.</i>
    When I process my function ZBE_BTE_EXECUTE - and I have added a breakpoint into ZBE_BTE - for FBV2 call <b>it does not reach the breakpoint</b> in ZBE_BTE at all! This occurs when using event linkage 00002214! And I do execute a real change to parked document.
    But if I change the entry in BF34 to be linked for event 00002217 or 00002218 process reaches my breakpoint in BTE function ZBE_BTE! But in these cases also, it does not import the data after transaction call in function ZBE_BTE_EXECUTE. When I continue debugging the coding in BTE function ZBE_BTE further into SAP-coding, I can see that my internal table t_vbkpf is filled. But when I leave SAP-coding when FBV2 is completed and return to ZBE_BTE_EXECUTE - where t_vbkpf should be filled from memory id - t_vbkpf is empty!
    Again as a conclusion in this system:
    For BTE event 00002214 this locig does not work at all. For events 00002217 and 00002218 it does get activated, but does not bring any data from memory ID into my abap. Strangest this is that I use absolutely same kind of coding that You.
    Can You see if I have to fill those empty fields( Ctr. & Appl.) in my BF34 customizing? Or is some other customizing action missing?
    Br,
    Jani

  • F-28 Post incoming payment through BAPI with Clearing

    Hi Gurus
    I have a requirement to post Customer incoming payment through BAPI, I have seen some post where using
    BAPI_ACC_DOCUMENT_POST , we can post on account and later using f-32 we can clear. but there s some limitation doing that.
    In f-28 residual line items also got generated for short or excess payment. There is a problem for residual item posting also.
    If  residual amount belongs to more than one Profit Center then GL currency view and Local Currency view is also mismatching.
    Is is possible to clear customer line item also at the time of posting through BAPI.
    If any one implemented BAPI or any automatic process to post F-28 please share your experience and challenges.
    Thanks in advance
    Subrata Sarkar

    Hi
    There could be multiple approaches to this depending on what you want to achieve. If you just want to uplaod the documents, than the BAPI you mentioned could be the right approach. If however, you have fixed criterion for cash application for open items, you can probably look at a BDC to do the clearing.Once the BDC is recorded work with your ABAP colleague to write this up in a custom transaction. This is particualrly useful if you have more items to clear against an incoming payment.
    regards
    Sanil Bhandari

  • Problem at the time of Reversal of Doc posted through ASKBN

    Hi,
    User have error fully posted some documents through ASKBN tcode with posting date of 2012. Year 2012 is already closed after audit. Now we have to reverse those documents. But I am not able to reverse either the FI document through FB08 or Asset document AB08. Pl suggest how to reverse these documents.
    Transaction type showing in FB08 is 240/290. Its related to retirement of asset. Please suggest.
    Regards,
    Ankit Agarwal

    Hi Lakshmi,
    Thanks for your kind response.
    My problem is that when I am going in AB08, it is showing me only a single document in 2012. And for that document also, amount is different. Still if I am trying to reverse that document, system is posting a document with some different amount.
    I am not understanding why this is happening.
    Regards,
    Ankit Agarwal

  • Problems navigating through old posts

    I am having problems navigating through old posts.  The slower the forums get, the longer it takes me to read them, and the further behind I get in reading them.  Eventually, when trying to read posts that are a couple of months old in the SQL and PL/SQL forum, when trying to navigate from one post to the other, I frequently get an error message.  This happens whether I try to use my browser's back arrow to the previous page or click on a page number on the forum page, or change the start number in the url.  However, sometimes I actually get back to the page and can select the next post.  It is not consistent.  Sometimes I can click on the same thing four times in a row and the first three times I get the error, but the fourth time I get a page of posts.  So, the error message is not actually saying what is really going on.  The following is the error message that I keep getting:
    "You have reached the maximum amount of pages in this set of content results. If you are looking for something specific, try applying a content type filter or entering a search term."

    Yes, I am still seeing the problem sporadically.

  • Problem posting data with HttpsConnection

    Hi,
    I am currently having problems posting data using a HttpsConnection.
    I am setting the setRequestMethod to HttpConnection.POST and then using the openDataOutputStream method.
    I will post my code when I get home for reference.
    Background to my problem - I am trying to use the declarative security features of J2EE to authenticate a mobile user.
    I am firstly firing a HttpsConnection from the mobile device to a protected resource on the app server. I grab the JSessionId from the Set-Cookie http header of the response and post a second request to the j_security_check and provide the refer http header to the protected resource - this simulates exactly what happens on a browser (I used a Http monitor tool to confirm this). However, I need to pass the j_username and j_password as body of the https request. This doesn't seem to work because the server displays my access denied at this point - as if it hadn't received the crednetials
    However, just to confirm my technique works I subsituted the post request for a get request to j_security_check and passed the j_username and j_password as request params in the URL. This worked fine and I got a 302 response 'temporily moved' which I then handle by simply making a further request for the original resource - this time it serves back the resource because I am authenticated.
    Anyway that sets the scene - so the problem definitely appears to be posting data using an HttpsConnection.
    Any help would be greatly appreciated
    Rgds,
    David

    Hi,
    Here is my code relating to the above problem:
    httpsConn = (HttpsConnection)Connector.open("https://127.0.0.1:8443/ebank/j_security_check");
                httpsConn.setRequestMethod(HttpConnection.POST);
                httpsConn.setRequestProperty("referer", "https://127.0.0.1:8443/ebank/main/mainMenu.xml");
                httpsConn.setRequestProperty("cookie", cookieValue);
                httpsConn.setRequestProperty("location", url);
                httpsConn.setRequestProperty("User-Agent",
                    "Profile/MIDP-1.0, Configuration/CLDC-1.0");
                httpsConn.setRequestProperty("Content-Language",
                    "en-gb");
    String credentials = "j_username=EB0001&j_password=240589";
                httpsConn.setRequestProperty("Content-Length",""+credentials.length());
                DataOutputStream os = httpsConn.openDataOutputStream();
                os.writeUTF(credentials);
    ....Thanks,
    David

  • How to add line items to Accounting Document posted through MIRO ?

    I need to perform Additional posting when Posting through MIRO transaction..i tried with INVOICE_UPDATE BADI but this was not useful...Please let me know if there is any way to add additional posting to Accounting Document created through MIRO.
    If any user exit , BADI ot BTE present?

    Hi,
    Check the BTE's:
    00001020     POST DOCUMENT:       Prior to final checks             SAMPLE_INTERFACE_00001020
    00001025     POST DOCUMENT:       Final checks completed       SAMPLE_INTERFACE_00001025
    00001030     POST DOCUMENT:       Posting of standard data     SAMPLE_INTERFACE_00001030
    00001050     POST DOCUMENT:       Accounting interface           SAMPLE_INTERFACE_00001050
    Thanks & Regards,
    Harish

  • Major problems I am having with the K8N neo platinum:(:(

    Hiya all,
    I bought this K8N motherboard two weeks ago and at first I seemed very happy with it, but when fulfilling the final steps in the installation of my PC(being installing of all my important games, voice over IP software, firewalls, security etc)I started noticing some very very disturbing things.
    First of all, my onboard sound is totally unusable for online gaming, my microphone cannot be set up no matter what combinations of options I use. The sound is just messed up. When i and my friend enter our ventrilo server and he starts speaking he hears himself 10 times in an echo, and its not him thats causing this its me. When another friend joins and i leave all is just fine(hence i am the cause). Also to try and fix this problem i bought a soundblaster live 5.1. I can install it under windows XP but for the life of me I cannot get my microphone to lit up my ventrilo voicechat thus my voice is not recognized and not processed, so this then also does not work, 2 methods to get voice over IP working and none of them work??? I will award MSI the nobel price of irony for that.
    Secondly, all punkbuster related online games have become totally unplayable. At first I got very annoying freezes every 2-3 minutes, it lasts a few secs and then i can play on for 2-3 more minutes until it happens again, and again and again....... Now I fixed that particular problem by downloading specially modified Call of Duty 3.9 ATI catalyst drivers but the fun doesn't stop there. Now when I play games I get strokes of extreme choppyness in an online game like Enemy Territory. When setting my fps to a steady 76fps and seeing it stay that way and knowing it can easily stay stable even at 100fps is what I find very very weird. So my comp runs very smooth, but lo and behold there is still choppy performance, other players struttling ahead as if all of them have major lag(while all sport pings of ~20-40).
    When I then start shooting its even more difficult to get a good aim cuz they lag and one time they are here, the next they are in an entirely diff spot and my shooting certainly doesn't help to decrease the choppyness:) Its not allways this bad but every game I play has these bad spells, sometimes the entire game, sometimes only half the time depending on whats happening onscreen I guess.
    Now with my Pentium 4 2.8Ghz and my exact same radeon I did not have any of these problems, its a slower comp but it still runs these online games 10x smoother??? I have noticed however that it is indeed mainly related to punkbuster or opengl related games. And as far as I can tell, only ATI suffers from it, since my friend who has exactly the same setup as me runs supersmooth with no lag whatsoever. All he has diff from me is his graphics card, which is nvidia???
    Am I now forced to shell out another 300$ for an nvidia based card that matches the speed of my 9800 pro?? This whole buying of the MSI has grown into quite the ordeal.
    Thirdly, I am also noticing some strange temps on my CPU, i have a zalman CPS7000A-alcu and it should cool better than stock, but after 4 reseats and applying of AS5(applied according to their instructions on site)it still gives me temps of 59°C at full load????? I find this really really high, and I do know i applied the paste very very good. I can tell cuz after I reseated it a few times each time you can clearly see how good it has spread towards all the edges. And its a fine thin layer, so no probs on my end. I am doing all this by the book and with greatest care.
    As I am a clanbase player, and a very good one at that, I am seriously hampered in my gaming experience. While I used to get killed/deaths ratios of on average K:60-90+ /D:11-20 on my P4 for Enemy Territory I now have a very hard time even getting on K:50 D:32 each level. This is a serious dent in my budget as well since now for sanctioned events I will have to buy a new comp just to be able to play to my old standards:(:(:(
    I have reached a point where I cannot do anything anymore, I have asked many questions already(ATI, Punkbuster, Nvidia, MSI), and all i get is standard set up mailing lists with what I could do. If this is customer support then plz crown me Sultan of Brunei, cuz I can do it like this too. Is this adressing a problem, eeerm I think mr Spock after looking at it logically would not even deem this worthy to an answer, since its that obvious.
    So basically noone is willing to help, they are very willing to grab your money but when it comes to support all you get is a cheap script saying, when mail sent to [email protected] send "Standard mailing list A" back, when mail sent to [email protected] reply with "standard mailing list Ç", etc etc.
    Sad very sad how they treat us poor dumb customers these days,
    Regards,
    A disgruntled MSI buyer
    PS : I said above this problem is mainly related to ATI based cards but when you try to tell me i should try new drivers then plz don't go there cuz I tried everything from omega to iota and nothing works, the only thing that even stops the freezing is the specially modded drivers some dude fixed up. But it still leave me with crappy performance.

    Quote
    Originally posted by Capcom
    Hiya all,
    I bought this K8N motherboard two weeks ago and at first I seemed very happy with it, but when fulfilling the final steps in the installation of my PC(being installing of all my important games, voice over IP software, firewalls, security etc)I started noticing some very very disturbing things.
    First of all, my onboard sound is totally unusable for online gaming, my microphone cannot be set up no matter what combinations of options I use. The sound is just messed up. When i and my friend enter our ventrilo server and he starts speaking he hears himself 10 times in an echo, and its not him thats causing this its me. When another friend joins and i leave all is just fine(hence i am the cause). Also to try and fix this problem i bought a soundblaster live 5.1. I can install it under windows XP but for the life of me I cannot get my microphone to lit up my ventrilo voicechat thus my voice is not recognized and not processed, so this then also does not work, 2 methods to get voice over IP working and none of them work??? I will award MSI the nobel price of irony for that.
    Secondly, all punkbuster related online games have become totally unplayable. At first I got very annoying freezes every 2-3 minutes, it lasts a few secs and then i can play on for 2-3 more minutes until it happens again, and again and again....... Now I fixed that particular problem by downloading specially modified Call of Duty 3.9 ATI catalyst drivers but the fun doesn't stop there. Now when I play games I get strokes of extreme choppyness in an online game like Enemy Territory. When setting my fps to a steady 76fps and seeing it stay that way and knowing it can easily stay stable even at 100fps is what I find very very weird. So my comp runs very smooth, but lo and behold there is still choppy performance, other players struttling ahead as if all of them have major lag(while all sport pings of ~20-40).
    When I then start shooting its even more difficult to get a good aim cuz they lag and one time they are here, the next they are in an entirely diff spot and my shooting certainly doesn't help to decrease the choppyness:) Its not allways this bad but every game I play has these bad spells, sometimes the entire game, sometimes only half the time depending on whats happening onscreen I guess.
    Now with my Pentium 4 2.8Ghz and my exact same radeon I did not have any of these problems, its a slower comp but it still runs these online games 10x smoother??? I have noticed however that it is indeed mainly related to punkbuster or opengl related games. And as far as I can tell, only ATI suffers from it, since my friend who has exactly the same setup as me runs supersmooth with no lag whatsoever. All he has diff from me is his graphics card, which is nvidia???
    Am I now forced to shell out another 300$ for an nvidia based card that matches the speed of my 9800 pro?? This whole buying of the MSI has grown into quite the ordeal.
    Thirdly, I am also noticing some strange temps on my CPU, i have a zalman CPS7000A-alcu and it should cool better than stock, but after 4 reseats and applying of AS5(applied according to their instructions on site)it still gives me temps of 59°C at full load????? I find this really really high, and I do know i applied the paste very very good. I can tell cuz after I reseated it a few times each time you can clearly see how good it has spread towards all the edges. And its a fine thin layer, so no probs on my end. I am doing all this by the book and with greatest care.
    As I am a clanbase player, and a very good one at that, I am seriously hampered in my gaming experience. While I used to get killed/deaths ratios of on average K:60-90+ /D:11-20 on my P4 for Enemy Territory I now have a very hard time even getting on K:50 D:32 each level. This is a serious dent in my budget as well since now for sanctioned events I will have to buy a new comp just to be able to play to my old standards:(:(:(
    I have reached a point where I cannot do anything anymore, I have asked many questions already(ATI, Punkbuster, Nvidia, MSI), and all i get is standard set up mailing lists with what I could do. If this is customer support then plz crown me Sultan of Brunei, cuz I can do it like this too. Is this adressing a problem, eeerm I think mr Spock after looking at it logically would not even deem this worthy to an answer, since its that obvious.
    So basically noone is willing to help, they are very willing to grab your money but when it comes to support all you get is a cheap script saying, when mail sent to [email protected] send "Standard mailing list A" back, when mail sent to [email protected] reply with "standard mailing list Ç", etc etc.
    Sad very sad how they treat us poor dumb customers these days,
    Regards,
    A disgruntled MSI buyer
    If you would like to submit a list, numbered (1, 2, 3, 4) with problems and your complete configuration, I'd be happy (along with others) to go through and find the problems for you.
    If you just want to post a rant with "MSI Sucks" and admit your a chump for doing a stupid thing like buying an MSI boar: Then just return it please. Save others the trouble and get your money back.
    That way you are happy, and don't have such a high stress level.

  • Depreciation posting through background

    Hi,
    When i am trying to run depreciation through AFAB with repeat option for specific assets, with output device LP01 and option immediate it shows message "Background message was scheduled for program RAPOST2000". Secondly in the tcode sp02  it shows spool no. but status as " - " & it does not post any entry for depreciation. When I  click on spool no. it shows refer to error log & list contain no data
    Regards
    Sanjay

    Hi,
    This is common problem faced during depreication runs.
    Please check the error log in detail, it will mention which asset numbers are having problem, or any account determination is not assigned to a GL code.
    After doing corrections, schedule in background again.
    Thanks & Regards
    Sanjay Marathe

  • Problem initiate AV chat with other ichat (both windows & Mac)..

    I'm able to accept ichat AV from both windows (aim 5.9) and from os x user; however, whenever I initiate ichat connection to either mac or windows user, I keep getting the error:
    "Failed to start video chat because user did not respond", but the user did respond..
    I'm able to "accept" AV chat from other windows/mac user without any problem.
    I've done the following so far, turn off firwall on my imac.. configure port forwarding on my 2wire router following the apple support article (tho, my windows machine is also behind this firewall and I was not able to initiate chat with the windows box).
    I saw a previous discussion about this problem someone else has and the suggestion was to reboot the machine.. which I did that and it still didn't help. Oh, I did update to the most recent ichat program as well.
    Any suggestion is greatly appreciated. Thank you.

    Hi Ralph,
    I tried chatting with RjinWI last night and I was able to initiate an AV ichat with him (mac version) bu† I was not able to initaite AV ichat with RjinWI PC, I was no† able to initiate another AV ichat with another Mac user on the list (unfortunately, I forgot who that was) but I was able to initiate with ichatavtesting. My Buddies defintely can ichat with others and he may also initiate a chat to my imac.
    Since then, I have upgraded my firmware which didn't help.. but a small break through was that after I reboot my imac (without having any program running on the imac), I started my ichat and I was then able to initiate AV chat with RjinWI PC.. but a few hours later (after I open my thunderbird, firefox).. I was having problem initiating AV chat with RjinWI PC again... pretty strange?
    Since then, I restarted my imac again and now it's working again.. and I have both firefox and thunderbird open.. and AV chat with RjinWI PC is still working.
    At least with this info, the problem might not be with my router afterall? I wonder if there is any program that might be blocking the port(s) or using the same ports (I read about the VOIP program issue with ichat, which I'm not using)? So far I have started opening one program at a time and see if I may duplicate the problem (at first I thought it might have been one of the widget program.. "doppler radar" and "live web cam" but I have disable and re-enabled them.. and yet my ichat is still functioning as we speak). If you have any other idea, please let me know. If I am able to gather more info.. I'll be sure to post more info. Thanks again.

  • Send email afer "FI document posted" through PRRW

    Experts:
    I want to send out an Email to applicent afer "FI document posted" through Tcode:PRRW , Is there have any user exits or BTE I could use?
    or some standard function provided by SAP?
    The reason for send mail is just want to let user know we got the receipts(sometimes needs several days by express) and ready to deal with
    Please advise!

    One simple way to achieve this is to build it into your workflow step, as the event CREATED gets triggered every time you save the trip in status 'to be settled'. But also everytime the trip is saved, the event CHANGED is triggered. So, you need a workflow step 'Wait for event CHANGED' what is ending the old workflow instance, whereas the actual CREATED creates a new instance.
    1. Events, which should be triggered in order to approve trip requests
       (entered by transaction TRIP) or trip Plans in general. These events
       are relevant for the manager responsible for the approving process.
       The events are:
       - 'PlanApproved'
       - 'PlanCreated'
       - 'PlanChanged'
       - 'PlanCancelled'
    2. Events, which should be triggered in order to approve trip payments.
       These events are relevant for the travel expense department, which
       has to release the payment process. The events are:
        - 'Changed'   (in the sense of Expense report changed)
        - 'Requested'
        - 'RequestApproved'
        - 'Created'
        - 'Approved'
        - 'Cancelled'
        - 'Deleted'
        - 'RequestCreated'
        - 'RequestWaits'
        - 'ExpenseWaits'
        - 'RequestSettled'
        - 'RequestTransferredFI'
        - 'ExpenseSettled'
        - 'ExpenseTransferredFI'
    (Documentation link)
    http://help.sap.com/saphelp_470/helpdata/en/d5/202038541ec006e10000009b38f8cf/frameset.htm
    So in this instance, whilst the standard template is delivered, you do need to configure an additional step in this case using "created" rather than "changed" to trigger the additional workflow needed  in addition to the steps delivered inside the
    workflow template.
    Hope it would help!
    Sally
    Edited by: Sally Redmond on Mar 6, 2012 4:51 PM

  • Getting Error while posting through KB11N : No true sender object entered

    HI Expert,
    We have stastical internal order defined and same we are using in Asset. Let me explain the scenarion.
    We created the Purchase requisition with the stastical Internal Order then we did Purchase Order and MIGO -Goods Receipt.
    Now we realised that wrong Internal Order  was used. Now we want to tranasfer cost from that Internal order to New Internal Order. we are trying to post through KB11N but while giving the all details i am getting error as per below;
    No true sender object entered
    Message no. BK175
    Diagnosis
    You have entered a statistical object as a sender. Statistical objects, however, are only intended for use with dual account assignments.
    Procedure
    1. If you require a dual account assignment, enter a true object as a sender also.
    We are using cost element with having cost element category 90.
    I don't no which is the true sender Object.
    Thanks in advance
    ealry help will be highly appreciated.

    Your postings had happened to a statistical internal order.  I hope the real postings might have happened to a cost centre.
    You cannot settle anything from a statistical internal order.  It is just for information purpose only.  If the above posting had captured a cost centre (real posting), you can distribute/assess the cost from the cost centre to a real internal order for your purpose.

Maybe you are looking for

  • My apple id has been disabled , tried changing it , will not work

    around a month ago or so i got the messange when i tried to update my Pocket God app to the newest version that "Your Apple ID Has Been Disabled" ,i have tried all the ways i could find online , it will not remove the disabled ID status from it , can

  • This Disk Could Not Be Mounted

    Hello, i've looked throughout the message boards but I wasn't able to find anything that would help with my problem. I have a Lacie hardrive plugged in to my Macbook Pro. It's a 1.5TB hardrive with 2 partitions, and the other day it crashed. Nothing

  • Integration Service will not start

    When I try to start the SAP Business One Integration Service will not start. Windows says it could not start the service... see the System Event log...if this is a non-Windows service, contact the service vendor. This is what the System Event error i

  • Small hyperlink bug in 10.1.3 (preview)?

    When creating a JSP, and selecting some text to convert to a hyperlink, pressing the hyperlink button will show a dialog to enter the hyperlink's details, but the generated code will be inserted AFTER the selected text. The generated hyperlink is 0 (

  • Dispatcher is not running

    hi     this is sekhar when i am starting sap dispatcher is not connecting please suggest me to solve this problem?