Personal Emails and Replies
PLEASE!!!! No more queries to my personal email address. You will be better served by posting your questions here in the ABAP forum.
My Email address is here for people who wish to either drop me a line and say 'Hi', or for agencies to contact me.
Over the last few months I have had upto 6 emails a day asking ABAP questions. Today alone I have had 3. I answer posts on SAPFans when and as I want to. With personal emails it (to me anyways...) places an obligation on me to answer them and I just don't have the time.
If you don't want to be hurt by a curt refusal, or no answer at all, please do not mail me with an ABAP question.
For the third time of asking, stop it!!!!
_________________
Regards
R
Abap KC
SFMDR
I'm surprised that people are abusing your email address R, and on behalf of our users I would like to apolgise for the problems you are having.
I'd like to add to R's comments above that if people are doing this and it gets reported to me I will begin banning users for abusing the forum and its participants.
This not acceptable behaviour, if you have a query - post it and you will get a response eventually (even if it is to ask for more information on your problem). Please don't contact forum members directly for information that could be found on / requested from this forum.
_________________
Kind Regards
Rosie Brent
Please remember to search the forum and check the FAQ before posting questions, thank you.
Tuly Idiot most of the time, part-time Guru
This is the reply to the last one I received. I've removed the full name so that they can have a second chance.
Hi Kxxxx.
I am like the agony aunts you find in ladies magazines. I do not reply to personal queries, sorry.
R
-----Original Message-----
From: Kxxx Hxxxx [mailto:htxxxx.ppp@bxxxxxx.com.vx]
Sent: 07 July 2004 04:03
To: Rard@Harper.vianw.co.uk
Subject: Help me on BDC Transaction
Dear Rard
I face the problem as in your topic "BDC - PAge Down ". My transaction is FB70 and the problem that my recording program is not understanding these hidden lines in ALV list line items. Follow your reply, I recording button "Insert Line " as below:
perform bdc_dynpro using 'SAPMF05A' '1200'.
perform bdc_field using 'BDC_SUBSCR'
'SAPLFDCB 0570ADR'.
clear l_field .
perform bdc_field using 'BDC_SUBSCR'
'SAPLFSKB 0100ITEMS'.
I add these action after input one line items in my code as below but it's not working.Please help me as I am in the urgent situation.
Kxxx Hxxxx
form build_bdcdata_ifb70 using p_sy_tabix type sy-tabix
p_ma_bkpf_bseg type t_tabstr .
data : l_field type string ,
l_cnt(2) type c .
data : l_hkont(10) type c.
clear p_hkont .
l_cnt = p_sy_tabix .
p_hkont = p_ma_bkpf_bseg-hkont .
perform bdc_dynpro using 'SAPMF05A' '1200'.
perform bdc_field using 'BDC_OKCODE'
'/00'.
clear l_field .
perform get_fieldname using 'ACGL_ITEM-EOBJ' l_cnt
changing l_field .
perform bdc_field using 'BDC_CURSOR'
l_field .
*---For Item screen
*----Populating Account Code (HKONT)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-HKONT' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-hkont .
*----Populating Debit/Credit in case have value
if p_ma_bkpf_bseg-shkzg ne space.
clear l_field .
perform get_fieldname using 'ACGL_ITEM-SHKZG' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-shkzg .
endif.
*---ACGL_ITEM-XNEGP
if p_ma_bkpf_bseg-xnegp = c_x .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-XNEGP' l_cnt
changing l_field .
perform bdc_field using l_field
'X' .
endif .
*----Populating Amount (WRBTR)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-WRBTR' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-wrbtr .
*----Populating (MWSKZ)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-MWSKZ' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-mwskz .
*----Populating assignment (ZUONR)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZUONR' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-zuonr .
*----Populating Co Code (BUKRS)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-BUKRS' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-bukrs.
*----Populating Account Code (ZBC_POLNO)
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBC_POLNO' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-zbc_polno .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBC_CLMNO' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-zbc_clmno .
clear l_field .
*Who : htkhoa
*What:Insert 3 Policies number for CR112
*When :10.07.2004
perform get_fieldname using 'ACGL_ITEM-ZBC_REINNO' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbc_reinno .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBC_REICLM' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbc_reiclm .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBC_3COLNO' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-zbc_3colno.
*End of change
perform get_fieldname using 'ACGL_ITEM-ZBD_LDATE' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbd_ldate.
*---Dont Check profit Center If account Fall
*---in the Range
*Hehe ,a very funny error make the program not run correctly
*SO I HAVE TO ADD A FUNNY CODE HERE
concatenate '00' p_hkont into l_hkont.
*IF NOT P_HKONT IN S_HKONT .
if not ( p_hkont in s_hkont or l_hkont in s_hkont ).
clear l_field .
perform get_fieldname using 'ACGL_ITEM-GSBER' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-gsber .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-KOSTL' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-kostl .
perform bdc_dynpro using 'SAPLKEAK' '0300'.
clear l_field .
perform get_fieldname using 'RKEAK-FIELD' l_cnt
changing l_field .
perform bdc_field using 'BDC_CURSOR'
l_field .
perform bdc_field using 'BDC_OKCODE'
'=WEIT'.
perform bdc_dynpro using 'SAPMF05A' '1200'.
perform bdc_field using 'BDC_SUBSCR'
'SAPLFDCB 0570ADR'.
clear l_field .
perform bdc_field using 'BDC_SUBSCR'
'SAPLFSKB 0100ITEMS'.
clear l_field .
perform bdc_field using 'BDC_OKCODE'
'/00'.
endif . "End of Condition
*---For Account = Exclusive Gl Account Mentioned in Screen
*---put Profit Center .
if ( p_hkont in s_accnt ) or ( l_hkont in s_accnt ).
clear l_field .
perform get_fieldname using 'ACGL_ITEM-PRCTR' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-prctr .
endif .
*------Check For 3Rd party Coll No and Other invoice Fields
*Part2
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBC_3COLNO' l_cnt
changing l_field .
perform bdc_field using 'BDC_CURSOR'
l_field .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBI_INVSER' l_cnt
changing l_field .
perform bdc_field using l_field p_ma_bkpf_bseg-zbi_invser .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBI_INVNO' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbi_invno .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBI_INVDTE' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbi_invdte .
clear l_field .
perform get_fieldname using 'ACGL_ITEM-ZBI_INVVAT' l_cnt
changing l_field .
perform bdc_field using l_field
p_ma_bkpf_bseg-zbi_invvat.
I wouldn't mind if the code was formatted monospaced and indented properly at least that would not send me cross eyed trying to read it.
_________________
Regards
R
Abap KC
SFMDR
Careful R, they'll be PM'ing you next!
YA
Noooo...... please!!!!
_________________
Regards
R
Abap KC
SFMDR
R,
Tired of being the forum hero, huh? Feel sorry for ya. Hope they
don't start mistaking me for you! If so, I'll just foward them to ya. Just kidding Good luck fighting them off.
Regards,
R Heilman
PLEASE!!!! No more queries to my personal email address. You will be better served by posting your questions here in the ABAP forum.
Damn cheek I should think - its like invasion of your privacy . Perhaps you should remove your email address for a while.
Hope you don't get anymore.
Just prepare a standard reply with your current hourly rate.
R, those people will just ignore this thread. At least it will go to the second page and further and will be kind of hidden. Why don't you just put something like "Please ask ABAP technical questions in the forum" in your signature? Or just trash those emails like you do to spam?
_________________
ilya
More input data: http://abaplog.wordpress.com
Sapfans ABAP FAQ: /forums/viewtopic.php?t=94198
R's ABAP Knowledge Corner: http://www.Rard-harper.net/kb/kb.html
Function modules documentation: http://www.se37.com
Just ignore the mails (annoying though it must be.)
If these people are stupid enough to contact you directly, it probably isn't worth worrying about offending them by not replying - they probably wouldn't notice
wizbongre.
Just prepare a standard reply with your current hourly rate.
The UK don't generally pay per hour they pay per day no matter how looooooooooooooooooooooooooooong it may be .... unless you're a plumber
_________________
Other helpful links