Urgent help from ABAP guys working in FI/CO module

dear all
i am badly struck in a situation while creating VENDOR AGEING report.
plz if any one have source code regarding this VENDOR AGEING report then plz send me.bcoz today is deadline boss.
my mail id -
[email protected]

hi,
1) search here in forum (all categories) for ageing
2) look to report RFKOPR00
and compare ageing for customers RFDOPR00
hope that helps
Andreas

Similar Messages

  • Asset aquisition report (urgent help needed from abap guys working on FI m)

    hi all,
    i have to develop Asset Aquisition report.so i have developed it.
    but in this i am not getting logic for the following---
    if i enter a date like -19.12.2006
    then the output of this report should show all the asset aquisition of the
    company from  01.04.2006 to 19.12.2006 only.
    bcoz in indian scenario fiscal year starts from 1st of april only.
    but in my output it is showing all the asset aquisition from the day comapny was
    started having its asset aquisition.
    so plz if anyone has logic for above sceanario then plz share with me.
    or any one has previously worked on this report can send the code to me
    satisfying the above scenario. its very very urgent guys.
    my id - [email protected]
    i am looking for the reply

    hi srinivas thanks for ur reply but it is not clear to me .
    so if u will send me the code the it will be better for me .
    my id- [email protected]
    i am waiting for ur reply. if u have code for this then plz send me.
    thanks yaar in advance

  • Check code ( urgent help needed from ABAP guys working on FI/CO)

    hi all,
    check my code & give me solution for getting only offsetting acounts depending on particular HKONT.
    plz i need its solution urgently.
    REPORT zglaccline NO STANDARD PAGE HEADING                              
                       LINE-SIZE 300                                         
                       LINE-COUNT 65(3).                                                                               
    TABLES : bkpf, bseg.                                                                               
    DATA : BEGIN OF it_bkpf OCCURS 0,                                       
            bukrs LIKE bkpf-bukrs,                                           
            belnr LIKE bkpf-belnr,                                           
            gjahr LIKE bkpf-gjahr,                                           
            monat LIKE bkpf-monat,                                           
            budat LIKE bkpf-budat,                                           
            brnch LIKE bkpf-brnch,                                           
            xblnr LIKE bkpf-xblnr,                                           
            waers LIKE bkpf-waers,                                           
            END OF it_bkpf.                                                                               
    DATA : BEGIN OF it_bseg OCCURS 0,                                        
    gsber LIKE bseg-gsber,                                                   
    hkont LIKE bseg-hkont,                                                   
    kunnr LIKE bseg-kunnr,                                                   
    sgtxt LIKE bseg-sgtxt,                                                   
    bschl LIKE bseg-bschl,                                                   
    wrbtr LIKE bseg-wrbtr,                                                   
    dmbtr LIKE bseg-dmbtr,                                                   
    pswsl LIKE bseg-pswsl,                                                   
    kostl LIKE bseg-kostl,                                                   
    prctr LIKE bseg-prctr,                                                   
    aufnr LIKE bseg-aufnr,                                                   
    shkzg LIKE bseg-shkzg,                                                   
    augbl LIKE bseg-augbl,                                                   
    END OF it_bseg.                                                                               
    DATA : BEGIN OF it_res OCCURS 0,                                           
    bukrs LIKE bkpf-bukrs,                                                    
    gjahr LIKE bkpf-gjahr,                                                    
    monat LIKE bkpf-monat,                                                    
    belnr LIKE bkpf-belnr,                                                    
    budat LIKE bkpf-budat,                                                    
    brnch LIKE bkpf-brnch,                                                    
    gsber LIKE bseg-gsber,                                                    
    hkont LIKE bseg-hkont,                                                    
    kunnr LIKE bseg-kunnr,                                                    
    bschl LIKE bseg-bschl,                                                    
    prctr LIKE bseg-prctr,                                                    
    kostl LIKE bseg-kostl,                                                    
    aufnr LIKE bseg-aufnr,                                                    
    pswsl LIKE bseg-pswsl,                                                    
    wrbtr LIKE bseg-wrbtr,                                                                               
    waers LIKE bkpf-waers,                                                 
    dmbtr LIKE bseg-dmbtr,                                                 
    xblnr LIKE bkpf-xblnr,                                                 
    txt50 LIKE skat-txt50,                                                 
    sgtxt LIKE bseg-sgtxt,                                                 
    shkzg LIKE bseg-shkzg,                                                 
    END OF it_res.                                                                               
    DATA : BEGIN OF itab_head OCCURS 0,                                     
           name1(20) TYPE c,                                                
           END OF itab_head.                                                
    SELECTION-SCREEN BEGIN OF BLOCK b_2 WITH FRAME TITLE text-002.          
    PARAMETERS : p_sel1 RADIOBUTTON GROUP sel,                              
                 p_sel2 RADIOBUTTON GROUP sel,                              
                 p_sel3 RADIOBUTTON GROUP sel.                              
    SELECTION-SCREEN END OF BLOCK b_2.                                      
    SELECTION-SCREEN SKIP 1.                                                
    SELECTION-SCREEN BEGIN OF BLOCK b_1 WITH FRAME TITLE text-001.          
    PARAMETER p_bukrs LIKE bkpf-bukrs DEFAULT 'ML' OBLIGATORY.              
    SELECT-OPTIONS : s_belnr FOR bkpf-belnr.                                
    SELECT-OPTIONS : s_gjahr FOR bkpf-gjahr OBLIGATORY.                     
    SELECT-OPTIONS : s_monat FOR bkpf-monat.                                
    SELECT-OPTIONS : s_blart FOR bkpf-blart.                                
    SELECT-OPTIONS : s_budat FOR bkpf-budat.                                
    SELECT-OPTIONS : s_waers FOR bkpf-waers.                                
    SELECT-OPTIONS : s_hkont FOR bseg-hkont.                                
    SELECT-OPTIONS : s_bldat FOR bkpf-bldat.                                
    SELECTION-SCREEN END OF BLOCK b_1.                                                                               
    SELECT bukrs belnr gjahr monat budat brnch xblnr waers                  
       INTO CORRESPONDING FIELDS OF TABLE it_bkpf                           
       FROM bkpf                                                            
       WHERE bukrs = p_bukrs                                                
       AND belnr IN s_belnr                                                 
       AND gjahr IN s_gjahr                                                 
       AND monat IN s_monat                                                 
       AND blart IN s_blart                                                 
       AND budat IN s_budat                                                 
       AND bldat IN s_bldat                                                 
       AND waers IN s_waers.                                                                               
    IF NOT it_bkpf[] IS INITIAL.                                            
      LOOP AT it_bkpf.                                                      
    IF p_sel1 = 'X'.                                                        
        SELECT gsber hkont kunnr sgtxt bschl wrbtr pswsl kostl shkzg        
                            dmbtr prctr aufnr augdt augbl                               
           INTO CORRESPONDING FIELDS OF TABLE it_bseg                       
           FROM bseg                                                        
           WHERE bukrs = it_bkpf-bukrs                                      
           AND belnr   = it_bkpf-belnr                                      
           AND gjahr   = it_bkpf-gjahr                                      
           AND pswsl   = it_bkpf-waers                                      
           AND hkont  IN s_hkont.                                           
    ELSEIF p_sel2 = 'X'.                                                    
        SELECT gsber hkont kunnr sgtxt bschl wrbtr pswsl kostl shkzg        
                dmbtr prctr aufnr augdt augbl                               
           INTO CORRESPONDING FIELDS OF TABLE it_bseg                       
           FROM bseg                                                        
           WHERE bukrs = it_bkpf-bukrs                                      
           AND belnr   = it_bkpf-belnr                                      
           AND gjahr   = it_bkpf-gjahr                                      
           AND pswsl   = it_bkpf-waers.                                    
          AND koart <> 'S'.                                              
    ENDIF.                                                                 
        IF sy-subrc EQ 0.                                                  
          LOOP AT it_bseg.                                                 
            SELECT SINGLE txt50 INTO it_res-txt50                          
                 FROM skat                                                 
                 WHERE spras = 'EN'                                        
                 AND   ktopl = 'PCA'                                       
                 AND   saknr = it_bseg-hkont.                                                                               
    it_res-bukrs = it_bkpf-bukrs.                                  
            it_res-gjahr = it_bkpf-gjahr.                                  
            it_res-monat = it_bkpf-monat.                                  
            it_res-gsber = it_bseg-gsber.                                  
            it_res-belnr = it_bkpf-belnr.                                  
            it_res-budat = it_bkpf-budat.                                  
            it_res-brnch = it_bkpf-brnch.                                  
            it_res-kunnr = it_bseg-kunnr.                                  
            it_res-hkont = it_bseg-hkont.                                  
            it_res-sgtxt = it_bseg-sgtxt.                                  
            it_res-bschl = it_bseg-bschl.                                  
            it_res-wrbtr = it_bseg-wrbtr.                                  
            it_res-pswsl = it_bseg-pswsl.                                  
            it_res-waers = it_bkpf-waers.                                  
            it_res-dmbtr = it_bseg-dmbtr.                                  
            it_res-kostl = it_bseg-kostl.                                  
            it_res-prctr = it_bseg-prctr.                                  
            it_res-aufnr = it_bseg-aufnr.                                  
            it_res-shkzg = it_bseg-shkzg.                                  
           it_res-augbl = it_bseg-augbl.                                 
            it_res-xblnr = it_bkpf-xblnr.                                  
            APPEND it_res.                                                 
            CLEAR it_res.                                                  
          ENDLOOP.                                                         
          CLEAR it_bkpf.                                                   
        ENDIF.                                                             
      ENDLOOP.                                                             
    ENDIF.                                                                 
    LOOP AT it_res.                                                        
      IF it_res-shkzg EQ 'H'.                                              
        it_res-wrbtr = it_res-wrbtr * -1.                                  
        it_res-dmbtr = it_res-dmbtr * -1.                                  
      ENDIF.                                                               
      WRITE : /2(4) it_res-bukrs,                                          
               13(4) it_res-gjahr,                                         
               21(2) it_res-monat,                                         
               31(10) it_res-belnr,                                        
               44(10) it_res-budat,                                        
               55(4) it_res-brnch,                                         
               60(4) it_res-gsber,                                          
               70(10) it_res-hkont,                                         
               82(10) it_res-kunnr,                                         
               94(2) it_res-bschl,                                          
               104(10) it_res-prctr,                                        
              116(10)  it_res-kostl,                                        
              128(12)  it_res-aufnr,                                        
              142(5)  it_res-pswsl,                                         
              148(13)  it_res-wrbtr,                                        
              164(5)  it_res-waers,                                         
              170(13)  it_res-dmbtr,                                        
             187(16)   it_res-xblnr,                                        
              205(50)  it_res-sgtxt.                                        
      MODIFY it_res.                                                        
      CLEAR it_res.                                                         
    ENDLOOP.                                                                
    plz give soltuion i am looking for it.
    i will aslo reward all ur precious effort.
    otherwise if anyone have any code on my reqirement then plz send it to me in my id- [email protected]
    thanks
    Message was edited by: sanjeev singh

    Hi
    You should a selection in BSIS and BSAS table instead of BKPF and BSEG:
    DATA : BEGIN OF it_res OCCURS 0,
    bukrs LIKE bkpf-bukrs,
    gjahr LIKE bkpf-gjahr,
    monat LIKE bkpf-monat,
    belnr LIKE bkpf-belnr,
    budat LIKE bkpf-budat,
    brnch LIKE bkpf-brnch,
    gsber LIKE bseg-gsber,
    hkont LIKE bseg-hkont,
    kunnr LIKE bseg-kunnr,
    bschl LIKE bseg-bschl,
    prctr LIKE bseg-prctr,
    kostl LIKE bseg-kostl,
    aufnr LIKE bseg-aufnr,
    pswsl LIKE bseg-pswsl,
    wrbtr LIKE bseg-wrbtr,
    waers LIKE bkpf-waers,
    dmbtr LIKE bseg-dmbtr,
    xblnr LIKE bkpf-xblnr,
    txt50 LIKE skat-txt50,
    sgtxt LIKE bseg-sgtxt,
    shkzg LIKE bseg-shkzg,
    END OF it_res.
    Open Item
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE it_res
    FROM <b>BSIS</b>
    WHERE bukrs = p_bukrs
    <b>AND HKONT IN S_HKONT</b>
    AND belnr IN s_belnr
    AND gjahr IN s_gjahr
    AND monat IN s_monat
    AND blart IN s_blart
    AND budat IN s_budat
    AND bldat IN s_bldat
    AND waers IN s_waers.
    Cleared Item
    SELECT *
    APPENDING CORRESPONDING FIELDS OF TABLE it_res
    FROM <b>BSAS</b>
    WHERE bukrs = p_bukrs
    <b>AND HKONT IN S_HKONT</b>
    AND belnr IN s_belnr
    AND gjahr IN s_gjahr
    AND monat IN s_monat
    AND blart IN s_blart
    AND budat IN s_budat
    AND bldat IN s_bldat
    AND waers IN s_waers.
    Max
    Message was edited by: max bianchi

  • ABAP GUYS worked on FI/CO module report (urgent)

    hi i am creating a vendor ageing report.
    in that i have to calculate the ageing
    which is nothing but
    AGEING = Current date - BLINe Dt(ITAB-ZFBDT)
    data:ageing type i.
    i have used fm date_between_two_days
    but couldn't achieve the result.
    so if any one has solution then plz share with me.

    You can use simple subtraction to manipulate dates.
    DATA: lv_date1 LIKE sy-datum VALUE '20060905',
          lv_date2 LIKE sy-datum VALUE '20060908',
          lv_diff TYPE i.
    lv_diff = lv_date2 - lv_date1.
    lv_diff = the number of days between the dates.

  • Urgent Help In ABAP

    Hi Gurus,
    Please i need an urgent help from you guys. There is a demand file which consits of (Siteno(plant), Item No ,Item Description, Delivery due date) will be placed in a unix system or windows system. I need to write an interface which shows a radiobutton for unix & windows and fileupload button & download button.When user clicks should be able to select only one radiobutton (unix or windows) to upload or download.When the user clicks the fileupload / download button,it should pick up the file or drop the file at particular unix or windows system.
    Please help me or give me sample code where in i can select the radiobutton and i can upload / download from unix or windows path. and during upload process (for both unix/windows) ,i should be able to persist into a custom table (ztable,if iam not wrong) and while downloading read the records from custome table and create an excel file to be placedon unix/windows based on the radio button.
    Thanks in advance, i need ur help please.
    Regards
    Bruno

    Hi Bruno,
    Please checkout this code sample
    ABAP code for uploading a TAB delimited file into an internal table.
    The code is base on uploading a simple txt file.
    <b>
    http://www.sapdevelopment.co.uk/file/file_uptabpc.htm</b>
    Thanks,
    Aby

  • Would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    would like to trace my ipod touch because I was robbed. I would find it please. need help from you guys. Not because I am able to get another. Thank you.

    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Hello am dominic and i want a help from you guys out there i hope you will be able to help me out...i have an i phone which i bought from a friend but it has this i cloud account i wanna know if you can help me wipe it so i can usse it..thanks

    hello am dominic and i want a help from you guys out there i hope you will be able to help me out...i have an i phone which i bought from a friend but it has this i cloud account i wanna know if you can help me wipe it so i can usse it..thanks

    Only your friend can unlock it, either by giving you his Apple ID and password, or by removing it from his list of devices - please see:
    http://support.apple.com/kb/TS4515
    There is no way at all it can be unlocked without his doing this.

  • Hi I need one urgent help from anyone

    Hi,
    I am looking some SAP HR ABAP objects its very urgent i need to give resume to one of the employer. The object may some what related to this requirement .Or send any HR ABAP Object its very urgent guys.....
    Rewards will sure..........
    (automate an interface between one of client’s telecommunications providers and R/3, parsing incoming data in a UNIX format to create FI/CO postings and reports out of R/3.)
    Thanks and Regards
    Ramesh

    Hi Rohit,
    CUCM releasing the call because it's unable to find the called number received i.e. called number does not exist in dial-plan.
    Check below points:-
    1). Check the CSS on the SIP trunk in CUCM (may be called number is not accessible due to incorrect CSS).
    2). Check the translation pattern and it's CSS.
    3). If you are not using translation pattern then check for the translation profile in router config. In this case you can check and share your running-config and debug voice dial-peer or debug voice ccapi inout.
    Regards,
    Nishant Savalia

  • Need some urgent support from you guys! [iPad3 Display]

    I have an event on April 20th that I need to show off phase 1 of an app we're working on.  I really want to show it on the new iPad.
    I'm working in Flash Pro 5.5   ...    Can someone please tell me how to compile my app to work on the iPad High Res display.
    I've seen some people do it with Flex...   is there a way to compile the app from Flash Pro or a work around ?
    Any help is appreciated!

    You're right! .. It was the order of the items.
    However once the compile completes..  I'm getting a lot of warnings.
    ld: warning: -ios_version_min not specificed, assuming 4.0
    ld: warning: ARM function not 4-byte aligned: _IDctSlow_ARM from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessRowLoop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowSkipArithmeticInRow from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowProcessColumnLoop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC1S7 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantTable from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC7S1 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC3S5 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC5S3 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC4S4 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC2S6 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDctSlowConstantxC6S2 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct10_ARM from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow0 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow1 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow2 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ComputeRow3 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10_skip_Row3 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumns from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10ProcessColumnLoop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill2WithZero from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill1WithZero from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDct10Fill0WithZero from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDct1_ARM from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconBlock_ARM from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconBlock_loop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _IDCT1_plus_ReconInter_ARM from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: IDCT1_plus_ReconInter_loop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(idct_part.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dH_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dV_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop3 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop4 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dFirstPass_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: loop5 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilH_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilH_next_row from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock1dBilV_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_outer_loop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock1dBilV_inner_loop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _FilterBlock2dBil_FirstPass_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: FilterBlock2dBil_FirstPass_next_row from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(predfilters.o)
    ld: warning: ARM function not 4-byte aligned: _ReconIntra_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconInter_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: loop1 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _ReconBlock_ARM11 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: ReconBlock_ARM11_LOOP from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(reconstruct-F6251070C86EBC8D.o)
    ld: warning: ARM function not 4-byte aligned: _Copy12x12_ARM9E from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign0 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign1 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign2 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: Copy12x12_CSrcAlign3 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(copy12x12.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)
    ld: warning: ARM function not 4-byte aligned: _tDecodeBool128 from /Applications/Adobe Flash CS5.5/AIR2.6/lib/aot/lib/libRuntimeAOT.arm-air.a(tDecodeBool.o)

  • Urgent Help for ABAP Certification

    Hi everyone,
    I am planning to do certification in ABAP by Jan.
    Can anyone provide me the proper materials for preparing for certification.
    I would be grateful if anyone can help.
    Thanks in advance,
    Nitin

    Hi Nitin,
    All About ABAP Certification
    /message/213564#213564 [original link is broken]
    /message/514469#514469 [original link is broken]
    /message/1315746#1315746 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/1736299#1736299 [original link is broken]
    /message/257122#257122 [original link is broken]
    /message/130164#130164 [original link is broken]
    This is link from SAP about ABAP certification
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    http://www.sapteched.com/india/confactivities/certexam.htm
    http://www50.sap.com/useducation/certification/curriculum.asp?rid=351
    There is a pdf called ABAP certification.
    http://www.esnips.com/web/SAP-ABAP?
    You can try www.sapdoamin.com
    They provide Certification simulation questions which are very useful and a must try site.
    Have a look at below link for mySAP Technology - ABAP Workbench
    https://websmp206.sap-ag.de/~sapidp/011000358700000746472003E
    Have a look at below link for SAP NetWeaver - ABAP Workbench
    http://www30.sap.com/hk/services/education/pdf/cert/ABAPWB.pdf
    The certification test consists of questions from the areas specified below:
    Topic Areas
    1. mySAP.com Technologies
    - mySAP.com
    - Navigation (system handling)
    - Technical setup of an SAP system
    - System-wide concepts
    2. ABAP Workbench Basics (++)
    - Data types and data objects
    - Internal tables
    - Data retrieval (authorization check)
    - Subroutines
    - The ABAP Runtime System
    - Function groups and function modules
    - Program calls and data transfer
    3. ABAP Objects (++)
    - Classes and objects
    - Inheritance
    - Casting
    - Interfaces
    - Events
    - Global classes and interfaces
    - Exception handling
    - Dynamic programming
    4. ABAP Dictionary (++)
    - Database tables
    - Performance for table access
    - Consistency through input check (foreigh key dependency)
    - Dependency of ABAP Dictionary objects
    - Views
    - Search help
    5. Techniqes for List Generation (++)
    - Data output to lists
    - Selection screen
    - Logical database
    - Program-specific data retrieval
    - Data formatting and control level processing
    - Storage of lists and background processing
    - Interactive lists
    6. Dialog Programming (++)
    - Screen (basics)
    - User interface (GUI title, GUI status)
    - Screen elements for output (text fields, status icons, and group boxes)
    - Screen elements for input/output
    - Subscreen and tabstrip control
    - Table control
    - Context menu
    - Dialog programming lists
    7. Database Changes
    - Database updates with Open SQL
    - LUWs and Client/Server Architecture
    - SAP locking concept
    - Organizing database changes
    - Complex LUW processing
    - Number assignment
    - Change-document creation
    8. Enhancements and Modifications
    - Changes in SAP Standards
    - Personalization
    - Enhancements to Dictionary elements
    - Enhancements using customer exits
    - Business Transaction Events
    - Business Add-Ins
    - Modifications
    Weighting Key in the Test:
    + = 1 - 10%
    ++ = 11 - 20%
    +++ = over 20%
    Regards,
    Satish

  • I need help from u guys

    Hello Guys,
    Please give me notes related to the below topics.
    I have higlighted the topics which i want u to send details of it.
    SAP ABAP resources to support completion of interface work and bug fixes coming out of <b>integration testing</b> for the <b>FI/CO implementation at TBC</b>. These resources need to be extremely competent and able to step into the project and make immediate impact.
    Strong, heads-down ABAP developers
    <b>Solid testing and integration experience -- especially in integrating SAP FI and CO modules to other legacy systems</b>
    Cool headed and able to deal with fast paced environment

    Hi,
    There is a separate forum for ABAP/Smartforms related queries.
    Please post your message there.
    This forum is meant only for EP related issuses.
    Regards,
    Gaurav

  • Need an urgent help from all experts out there.....

    hi cud u ppl pls help me out...the problem is that i m getting training in unix at ibm.....though i m interested in java...so the dillema is that shall i get into unix....is it worth gettin into it..n is the future secure with it.....pls reply as early as possible
    thanks......
    regards
    monika

    hi cud u ppl pls help me out...the problem is that i
    m getting training in unix at ibm.....though i m
    interested in java...so the dillema is that shall i
    get into unix....is it worth gettin into it..n is the
    future secure with it.....pls reply as early as
    possibleHi Monica,
    If I were you I would get my computer serviced because it has a faulty keyboard. The '.' key seems to stick down whenever used, the Caps key does not seem to work at all and many keys seem only to work intermittently.
    Overall it makes your posting just about impossible to read.
    Sabre

  • Urgent help in Life and Work Events

    How to initiate a process in Life and Work events.
    I am always getting the initiation screen.
    I want to configure My Benefits to the End User i.e. employee .How to do this one.
    Initiate Process screen is coming when i click on the My benefits.
    Can anyone say how to configure from here for the employee to get the final screens.
    Thanks a lot,
    Devi

    I answer to you in Employee Self Service
    Sónia

  • Need urgent help from experienced apple user

    Right i will explain this as best i can in writing. Basically i got a iphone 4g for christmas and i have done everything except link it to a apple id. When i try to link it everything is smooth but when i get to payment it rejects 3 cards which all work for everything else i have tried all of them many times and also i did the click and buy get to it click it press continue goes to click and buy website then i press continue and then it goes to a separate window saying wait a moment loading itunes it will then say need a application to run it i choose itunes and then guess what...it goes back to itunes and returns to step 1 to put in the details and i have put in the same details over 10 times today and am really sick and tired of doing it so if anyone can enlighten me of what i am doing wrong i will be very thankful and merry christmas everyone!

    With cards in iTunes i know they have to relate to the country you are currently using your connection from. Card details must be the same as the address infomation you put in, So Name should be same on the card, Address should be same etc. Apart from those not to sure.
    Hope this helps

  • Macbook Pro 2010 is running slow. Need some help from you guys!

    Can you guys help me out with some advice on how I can help it to run faster? I believe I have pasted al of the needed information below (if not, please let me know.)
    If someone could please take a look at this and let me know what I should do to help speed up/clean up my mac so that it runs faster. I'm rather new to this so the more straightforward the instructions, the better! Thanks guys!
    Start time: 21:16:46 07/13/14
    Model Identifier: MacBookPro7,1
    System Version: OS X 10.9.4 (13E28)
    Kernel Version: Darwin 13.3.0
    Boot Mode: Normal
    Time since boot: 20 minutes
    Diagnostic reports
      2014-06-17 VMware Fusion Helper crash
      2014-06-17 VMware Fusion Helper crash
      2014-06-21 VMware Fusion Helper crash
      2014-06-24 VMware Fusion Helper crash
      2014-06-25 VMware Fusion Helper crash
      2014-06-27 VMware Fusion Helper crash
      2014-06-29 VMware Fusion Helper crash
      2014-06-30 Adobe Flash Player Install Manager crash
      2014-07-08 VMware Fusion Helper crash
      2014-07-08 VMware Fusion Helper crash
      2014-07-13 VMware Fusion Helper crash
    Log
      Jul  9 17:47:57 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul  9 19:43:43 image 1362681856 (63%), uncompressed 2215559168 (540908), compressed 1354392912 (61%), sum1 deadda7e, sum2 24db8530
      Jul 10 22:43:44 PM notification timeout (pid 3620, hpdot4d)
      Jul 11 16:38:49 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 11 16:39:25 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 11 16:40:00 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 11 16:43:22 process WindowServer[3063] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
      Jul 11 19:28:16 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 12 11:49:26 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 12 11:51:43 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 13 18:31:40 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 13 20:49:36 MacAuthEvent en1   Auth result for: 78 Auth timed out
      Jul 13 20:52:10 wl0: Roamed or switched channel, reason #8, bssid 78
      Jul 13 21:01:01 process WindowServer[166] caught causing excessive wakeups. Observed wakeups rate (per sec): 380; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45074
    kexts
      com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN (1.0.0d1)
    Daemons
      com.vmware.launchd.vmware
      com.sierrawireless.SierraSWoCMon
      com.microsoft.office.licensing.helper
      com.macpaw.CleanMyMac2.Agent
      com.adobe.fpsaud
    launchd
      /System/Library/LaunchAgents/com.apple.noticeboard.agent.plist
      - com.apple.noticeboard.agent
      /System/Library/LaunchDaemons/com.apple.gkbisd.plist
      - com.apple.gkbisd
      /System/Library/LaunchDaemons/com.apple.noticeboard.state.plist
      - com.apple.noticeboard.state
      /Library/LaunchDaemons/com.adobe.fpsaud.plist
      - com.adobe.fpsaud
      /Library/LaunchDaemons/com.macpaw.CleanMyMac2.Agent.plist
      - com.macpaw.CleanMyMac2.Agent
      /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
      - com.microsoft.office.licensing.helper
      /Library/LaunchDaemons/com.sierrawireless.SWoCMon.plist
      - com.sierrawireless.SierraSWoCMon
      /Library/LaunchDaemons/com.vmware.launchd.vmware.plist
      - com.vmware.launchd.vmware
    Startup items
      /Library/StartupItems/HP IO/HP IO
      /Library/StartupItems/HP IO/Resources/version.plist
      /Library/StartupItems/HP IO/StartupParameters.plist
    Bundles
      /System/Library/Extensions/AppleFSCompressionTypeLZVN.kext
      - com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN
      /System/Library/Extensions/BeceemAppleWiMAXAdapter.kext
      - com.beceem.BeceemAppleWiMAXAdapter
      /System/Library/Extensions/Franklin Wireless Modem.kext
      - com.fklt.driver
      /System/Library/Extensions/NovatelWireless3G.kext
      - com.novatelwireless.driver.3G
      /System/Library/Extensions/NovatelWirelessFilter.kext
      - com.novatelwireless.driver.DisableAutoInstall
      /System/Library/Extensions/SierraDevSupport.kext
      - com.sierrawireless.driver.SierraDevSupport
      /System/Library/Extensions/SierraFSCSupport.kext
      - com.sierrawireless.driver.SierraFSCSupport
      /System/Library/Extensions/SierraFSRSupport.kext
      - com.sierrawireless.driver.SierraFSRSupport
      /System/Library/Extensions/SierraHSRSupport.kext
      - com.sierrawireless.driver.SierraHSRSupport
      /Library/Internet Plug-Ins/Flash Player.plugin
      - N/A
      /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
      - net.telestream.wmv.plugin
      /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin
      - net.telestream.wmv.webplugin
      /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
      - com.microsoft.sharepoint.browserplugin
      /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
      - com.microsoft.sharepoint.webkitplugin
      /Library/Internet Plug-Ins/Silverlight.plugin
      - com.microsoft.SilverlightPlugin
      /Library/PreferencePanes/Flash Player.prefPane
      - com.adobe.flashplayerpreferences
      /Library/PreferencePanes/Flip4Mac WMV.prefPane
      - net.telestream.wmv.prefpane
    Global login items
      /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app/
    Font issues: 41
    DNS: 208.67.222.222 (static)
    Restricted files: 3585
    Widgets
      iCal
    Elapsed time (s): 329

    I'll try that for sure. Anything else look like it could cause an issue?

Maybe you are looking for

  • The pythagoren theorem

    I need help with printing out this formula. a^2 + b^2 = hypotenus^2 heres a code I have been given for a little help, but it doesn't work I keep getting an error (unexpected type). a = sqrt (hypotenuse2 - b2 ) I figured it was because the 2's werent

  • Iphone 3g stuck in recovery mode(error 14) after failed 3.2.1 update

    My Iphone is stuck in recovery mode after it failed to update to operating system 3.2.1 . When I press restore in itunes, the process stops at around the 20% mark and come up with error 14. I have already manually deleted and redownloaded the update

  • TRIAL VERSION OF ELEMENTS 12

    I AM USING ELEMENTS 9.  IF I DOWNLOAD THE TRIAL FOR VERSION 12 WHAT HAPPENDS TO MY EARLIER VERSION.  IF I DECIDE I DON'T LIKE VERSION 12 AND DELETE IT, WILL IT AFFECT THE EARLIER VERSION ( 9)?   THANK YOU,        HOWARD

  • My MacBook Pro says camera not detected when I adjust my screen!

    i have had my macbook pro for about a year now and sometimes when i am using facetime and adjust my screen my picture will freeze and when i restart the program it will say camera not detected. why does this keep happening and should i take it to a s

  • Hurry! Call for Proposals to India's Annual Summit for Business Technologies Closes 30 June 2010!

    To join Business Technology Summit 2010 as a speaker is a great opportunity to build brand equity for both you as an individual and for your organization. By presenting your experiences, technical & market knowledge, and innovations, through keynotes