When I run the BAPI "BAPI_PBSRVAPS_GETDETAIL" .It gives me a short dump.

When I run the BAPI "BAPI_PBSRVAPS_GETDETAIL" .It gives me a short dump.
Can anybody help me with this?

This is the content of the dump.
Runtime Errors         OBJECTS_OBJREF_NOT_ASSIGNED
Except.                CX_SY_REF_IS_INITIAL
Date and Time          05/17/2007 11:21:29
Short text
     Access via 'NULL' object reference not possible.
What happened?
     Error in the ABAP Application Program
     The current ABAP program "/SAPAPO/SAPLADVF" had to be terminated because it has
     come across a statement that unfortunately cannot be executed.
Error analysis
     An exception occurred that is explained in detail below.
     The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
      caught in
     procedure "/SAPAPO/ADVF_CELL_INPUT" "(FUNCTION)", nor was it propagated by a
      RAISING clause.
     Since the caller of the procedure could not have anticipated that the
     exception would occur, the current program is terminated.
     The reason for the exception is:
     You attempted to use a 'NULL' object reference (points to 'nothing')
     access a component (variable: "C_S_ACTVIEW-AGC_CHILD1-APOGRID").
     An object reference must point to an object (an instance of a class)
     before it can be used to access components.
     Either the reference was never set or it was set to 'NULL' using the
     CLEAR statement.
Missing RAISING Clause in Interface
    Program                                 /SAPAPO/SAPLADVF
    Include                                 /SAPAPO/LADVFU06
    Row                                     1
    Module type                             (FUNCTION)
    Module Name                             /SAPAPO/ADVF_CELL_INPUT
Trigger Location of Exception
    Program                                 /SAPAPO/SAPLADVF
    Include                                 /SAPAPO/LADVFU06
    Row                                     81
    Module type                             (FUNCTION)
    Module Name                             /SAPAPO/ADVF_CELL_INPUT
Source Code Extract
Line  SourceCde
   51 *#TR# (1) Check arguments: Read only mode must be 0, 1 or 2 and row and column must be provi
   52   if f_argument2 is initial or f_argument3 is initial.
   53     break-point id /SAPAPO/ADV__EXECUTION. clear f_argument. f_calc_error = true. exit.
   54   endif.
   55
   56
   57 *#TR# (1a) Calculate line number of the cell (line + line offset)
   58   l_line = f_argument2 + i_line_offset.
   59
  60 *#TR# (1b) Set L_CELL_READONLY depending on the read only mode F_ARGUMENT
  61   case f_argument.
  62     when 0. l_cell_readonly = /sapapo/cl_agc_base=>gs_c_agc_readonly_values-read_only.
  63     when 1. l_cell_readonly = /sapapo/cl_agc_base=>gs_c_agc_readonly_values-read_write.
  64     when 2. l_cell_readonly = /sapapo/cl_agc_base=>gs_c_agc_readonly_values-stateless.
  65     when others.
  66       break-point id /SAPAPO/ADV__EXECUTION. clear f_argument. f_calc_error = true. return.
  67   endcase.
  68
  69 *#TR# (1c) The input status of cells set to read only by the data view definition (history)
  70   if f_argument3 < g_s_cols_properties-first_input_column.
  71     return.
  72   endif.
  73
  74 *#TR# (1d) Note 1005813: The old APOGRID does not support the read only mode
  75 *#TR# /SAPAPO/CL_AGC_BASE=>GS_C_AGC_READONLY_VALUES-READ_WRITE. For compatibility reasons, w
  76 *#TR# read only mode /SAPAPO/CL_AGC_BASE=>GS_C_AGC_READONLY_VALUES-STATELESS
  77
  78 *#TR# Determine version of APOGRID to check, if new or old APOGRID is used. The version is b
  79 *#TR# reasons
  80   if g_agc_grid_version is initial.
>>>>     c_s_actview-agc_child1-apogrid->get_control_version(
  82       IMPORTING
  83         apogrid           = l_apogrid
  84       EXCEPTIONS
  85         cntl_system_error = 1
  86         cntl_error        = 2
  87         others            = 3
  88           ).
  89     if sy-subrc <> 0.
  90       break-point id /sapapo/adv__execution. clear f_argument. f_calc_error = true. exit.
91     endif.
92
93     g_agc_grid_version = l_apogrid.
94   endif.
95
96 *#TR# If the old grid is used change read only mode if necessary
97   if g_agc_grid_version < 200
98     and l_cell_readonly = /sapapo/cl_agc_base=>gs_c_agc_readonly_values-read_write.
99
100     l_cell_readonly = /sapapo/cl_agc_base=>gs_c_agc_readonly_values-stateless.

Similar Messages

  • I am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    i am trying to generate purchase order and i create a BAPI also which is active.
    But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)".

    Hi,
    Yeah i tried my Z_BAPI in R3 and then giving some ERROR.
    This is my CODE-
    FUNCTION ZBAPIPOTV2.
    *"*"Local Interface:
    *"  IMPORTING
    *"     VALUE(POHD) TYPE  ZPOHD OPTIONAL
    *"     VALUE(POITEM) TYPE  ZPOITEM OPTIONAL
    *"  TABLES
    *"      RETURN STRUCTURE  BAPIRET1 OPTIONAL
    data: ls_pohd type bapimepoheader,
             ls_pohdx TYPE bapimepoheaderx,
             lt_poit TYPE TABLE OF bapimepoitem,
             lt_poitx TYPE TABLE OF bapimepoitemx,
             ls_poit TYPE bapimepoitem,
             ls_poitx TYPE bapimepoitemx.
       MOVE-CORRESPONDING pohd to ls_pohd.
       MOVE-CORRESPONDING poitem to ls_poit.
       ls_pohdx-comp_code = 'x'.
       ls_pohdx-doc_type = 'x'.
       ls_pohdx-vendor = 'x'.
       ls_pohdx-purch_org = 'x'.
       ls_pohdx-pur_group = 'x'.
       ls_poit-po_item = '00010'.
       APPEND ls_poit to lt_poit.
       ls_poitx-po_item = '00010'.
       ls_poitx-po_itemx = 'x'.
       ls_poitx-material = 'x'.
       ls_poitx-plant = 'x'.
       ls_poitx-quantity = 'x'.
       APPEND ls_poitx to lt_poitx.
    CALL FUNCTION 'BAPI_PO_CREATE1'
       EXPORTING
         POHEADER                     = ls_pohd
        POHEADERX                    =  ls_pohdx
    *   POADDRVENDOR                 =
    *   TESTRUN                      =
    *   MEMORY_UNCOMPLETE            =
    *   MEMORY_COMPLETE              =
    *   POEXPIMPHEADER               =
    *   POEXPIMPHEADERX              =
    *   VERSIONS                     =
    *   NO_MESSAGING                 =
    *   NO_MESSAGE_REQ               =
    *   NO_AUTHORITY                 =
    *   NO_PRICE_FROM_PO             =
    *   PARK_COMPLETE                =
    *   PARK_UNCOMPLETE              =
    * IMPORTING
    *   EXPPURCHASEORDER             =
    *   EXPHEADER                    =
    *   EXPPOEXPIMPHEADER            =
      TABLES
        RETURN                       = return
        POITEM                       = lt_poit
        POITEMX                      = lt_poitx
    *   POADDRDELIVERY               =
    *   POSCHEDULE                   =
    *   POSCHEDULEX                  =
    *   POACCOUNT                    =
    *   POACCOUNTPROFITSEGMENT       =
    *   POACCOUNTX                   =
    *   POCONDHEADER                 =
    *   POCONDHEADERX                =
    *   POCOND                       =
    *   POCONDX                      =
    *   POLIMITS                     =
    *   POCONTRACTLIMITS             =
    *   POSERVICES                   =
    *   POSRVACCESSVALUES            =
    *   POSERVICESTEXT               =
    *   EXTENSIONIN                  =
    *   EXTENSIONOUT                 =
    *   POEXPIMPITEM                 =
    *   POEXPIMPITEMX                =
    *   POTEXTHEADER                 =
    *   POTEXTITEM                   =
    *   ALLVERSIONS                  =
    *   POPARTNER                    =
    *   POCOMPONENTS                 =
    *   POCOMPONENTSX                =
    *   POSHIPPING                   =
    *   POSHIPPINGX                  =
    *   POSHIPPINGEXP                =
    *   SERIALNUMBER                 =
    *   SERIALNUMBERX                =
    *   INVPLANHEADER                =
    *   INVPLANHEADERX               =
    *   INVPLANITEM                  =
    *   INVPLANITEMX                 =
    ENDFUNCTION.
    i am trying to generate purchase order and i create a BAPI also which is active. But when i call the BAPI from SYbase Mobile Object RFC then after calling it gives an Error "Conflict when calling a Function Module (Field Length)". 

  • When I run a BAPI ,  then What is the out put?

    When I run a BAPI ,  then What is the out put format ?
    Is there anyone in Chennai regarding this ?

    the BAPI i am creating will fetch the sales order header data (along with partner details) and item data  and put it in the JMS que (JAVA MESSAGE SERVICE)  ....
    Can we use more than one internal table  where i will put the data
    i.e
    1.  for header data
    2. for partner (because the partners will be repeated
    3. for  item data
    and the BAPI will fetch the data from SAP tables and put it in these tables....and we can fetch the data by an integrator software and finally put it in the JMS queue.....

  • I run Windows 7 and the newest version (10.6) of iTunes will not install. The installer won't even begin, and when I run the Apple Software update, it tells me that iCloud and iTunes have invalid signature.

    When I run the Apple Software update, it tells me that iCloud and iTunes have invalid signature and will not be downloaded. When I DL iTunes64setup.exe, the program will not start (there's a bar that flashes but nothing actually begins). I've done everything short of reinstalling Windows to fix this (system resore, unistalling all Apple products, taking down firewall, running Windows FixIt - which either won't find the problem or gives me an error saying that the troubleshooter cannot be downloaded at this time, going into the security features to allow programs without valid signatures, trying to install earlier versions of iTunes). It all started when I downloaded the Decemberists new album on my iPhone, and it wasn't downloading it properly so I connected it to my Dell, but some songs still wouldn't DL - also, the newest OS for my iPhone still won't install via WiFi - and so I uninstalled iTunes first, but nothing is helping. And I don't have any security issues (Norton has checked). Any ideas? I'm at my wit's end after 3 days of this. Thank you.

    Ok, so after like 4 days of going through all these different issues, I figured out that several programs weren't downloading, and it was an issue with my wireless connectivity messing up the digital signatures, so if you plug in your comp to the modem and delete your temp files, it should start to work!

  • When I run the program...

    When I run the program from UserID it's take 5secnods and fucnctional guy run the same program it's take one hour. Please give me reason for this . it's very urgent.....

    Hi
    Check the values passed by both and also it depends upon the load on the server
    run it when the load is less
    Regards
    Shiva

  • Exchange 2010 Ative Sync working fine but when i do the test-ActiveSyncConnectivity it gives Error

    Exchange 2010 Ative Sync working fine but when i do the test-ActiveSyncConnectivity it gives Error my internal and external domains are different i have godaddy certificate and i have redirected HTTP to HTTPS for OWA, but when i run the test-ActiveSyncConnectivity
    https://mail.mycompany.com/Microsoft-System-ActiveSync it gives me error unable to connect to remote server, the connected party did not respond after a period of time because connected server failed to respond 67.57.66.23:443 
    From outside owa and activesync is working but my outlook 2007 SP2 shows disconnect every 25 minutes and then connected again when i see windows evenyviewer i am getting error that CAS Server failed to connect to mailbox server. Later it disconnected for
    60 seconds, I think thats when outlook gives disconnect error to all users
    Your quick help is really appreciated

    Hi,
    Hope below KB will help you for resolution the issue
    http://support.microsoft.com/kb/2469722
    http://www.wiki-errors.com/err.php?wiki=443
    Dinesh S.

  • Why the constructor of the base class calls first when u run the java app.

    why the constructor of the base class calls first when u run the java application

    For the record the other very exciting questions are:
    pls give the differences between application server and web server with examples
    will u pls narrate the differences between servlet context and servlet config.....
    where can we find servlet config...
    is there any methods to access servlet config

  • I have Firefox 16.0.2 installed. I have manually upgraded my Citrix plugin to the latest version (12.3.0.8), but when i run the "Check to see if your plugins a

    I have Firefox 16.0.2 installed. I have manually upgraded my Citrix plugin to the latest version (12.3.0.8), but when i run the "Check to see if your plugins are up to date" link it still has Status "Outdated Version", Action "Upgrade" in orange with a link that goes nowhere. Is this a problem with Firefox or Citrix plugin?

    Hi icequake, your question is possibly a duplicate of [https://support.mozilla.org/en-US/questions/929250 Question# 929250] in which you also replied to having the same problem.
    This appears to be a bug in Mozilla Firefox but no one has yet filed a report in [https://bugzilla.mozilla.org Bugzilla].
    If you would be so kind to give more details, I will help you and the others to file a bug report so engineers can take a look at it.

  • What are the criterias to consider while deciding when to run the mrp?

    Hello Friends,
    Actually i was just thinking,if any company wants to run the mrp for planning than how to decide,when to run the mrp(daily,weekly,monthly).
    One of the factor,while deciding this could be the raw material procurements,right?if they procure raw material once in a month than they should run the mrp once in a month.(even we can control this by keeping monthly lot size,if you run the mrp every week).
    What could be the other reasons?
    Thanks and Regards,
    Jitendra Chauhan

    Dear Jitendra,
    As said by our other forum friends it depends on the business requirement.
    In one of my project as the client were recieving monthly plan for their production MRP was carried out monthly.
    It can be based on the production plan or say sometimes the maximum lead time for producing a product.
    Also Check this link,
    [MRP Activities|http://www.sage.co.uk/sage1000v2_1/form_help/workingw/Subfiles/mrp_activities.htm]
    Regards
    Mangalraj.S

  • When you run the Adobe Creative Cloud opens a blank window, without authorization...

    When you run the Adobe Creative Cloud opens a blank window, without authorization, without a list of programs, just empty, as in the screenshot

    Hi Vetal1000 ,
    Welcome to Adobe Forums
    You can use the below mentioned links for solution -
    http://forums.adobe.com/message/5509684
    or
    http://forums.adobe.com/thread/1251577
    Let us know if that helps !
    Thanks
    Garima

  • IPad 2 deleted all of my contacts, when I run the Dr. Fone software it shows they are still on my iPad 2 but it costs 60-70 dollars. Is there another way to retrieve them? They were not backed up on Itunes like I thought they were. Please help!!

    When I run the Dr. Fone software it shows they are still on my iPad 2 but it costs 60-70 dollars. Is there another way to retrieve them? They were not backed up on Itunes like I thought they were. Please help!!

    Recover software as you have described is pretty much your only option - keep in mind that if wait, some of the currently recoverable data may well be over-written and lost.

  • The Horizontal & vertical scroll is not visible or not working when i run the form in Forms 6i.

    Hi all,
    The Horizontal & vertical scroll is not visible or not working when i run the form.
    In this form , there are 5 canvas namely
    CANVAS2 - Stacked Canvas
    PASS - Content Canvas
    MAT_RATES - Content Canvas
    DATE - Content Canvas
    PREVIOUS - Content Canvas
    I have set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the WINDOW Property.
    I have  set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the STACKED CANVAS Property .
    But still the Horizontal and Vertical Scroll Bar is not working when i run the Form.
    Help me with this please. How do i make it visible??
    Oracle Forms 6i..
    Thank You.

    Vijetha wrote:
    Hi all,
    The Horizontal & vertical scroll is not visible or not working when i run the form.
    I have set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the WINDOW Property.
    I have  set "Show Horizontal Scroll Bar" to "Yes" and  "Show Vertical Scroll Bar" to "Yes" in the STACKED CANVAS Property .
    But still the Horizontal and Vertical Scroll Bar is not working when i run the Form.
    Help me with this please. How do i make it visible??
    Oracle Forms 6i..
    Thank You.
    hello vijetha,
    window and canvas show scroll bar when it need.
    You should show block property
    and set block scroll bar
    hope this helps..
    Hamid

  • When we run the MRP schedule lines are not generated automatically.

    Hi,
    In MD04 requirement date is on 5.12.2009.My source list validity starts from 1.12.2008 onwards.When i run the MRP for the material system generates the Purchase requisition instead of the schedlue lines.When i change the source list validity as 25.11.2008 now i run the MRP system generates the schedule lines.
    My question is why the system couldn't able to generate the schedule lines when the validity starts on 1.12.2008.In the source list we maintained the scheduling agreement and maintaine the MRP setting as 2.

    hi,
    Let me know your purchasing processing time defined in the SPRO settings for CBP?? It may be due to this also...
    Regards
    Priyanka.P

  • I recently updated my phone to IOS 8.0.2 and now it wont turn on it just says to connect to itunes and when i do the only option it gives me is to restore iphone. It says it will delete all my media but i didn't do a back up what should i do?

    I recently updated my iphone 5 to IOS 8.0.2 and now it wont turn on it just says to connect to itunes and when i do the only option it gives me is to restore iphone because it is in "recovery mode". It says it will delete all my media but i didn't do a back up and i don't want to lose my photos, what should i do? (I never used iCloud to back them up either).

    If it's in recovery mode, the data is already gone. Why did you never back up your important data?

  • I would like to convert a matlab file into a .dll and use it in LabVIEW. However, when I run the .dll in LabVIEW I get an error stating "... Procedure not found". What could this be? Can anyone help me...

    I wish to convert my Matlab files into .dll's so that I can use them in LabVIEW. I am using 'mcc' and 'mbuild' of Matlab to convert my .m files into .c and .dll.
    When I try to run the .dll's in LabVIEW, I get an error message in a modal window stating some required .dll or procedure is not found.
    How should I resolve this issue. Should I add any other Matlab .dll's in course of making my .dll?
    Please help in solving this issue... Thankyou very much.

    KJV wrote in message news:<[email protected]>...
    > When I run the matlab generated dll, it is stating 'matllb.dll not
    > found'. Is it that I should set the path for matlab\bin to include
    > all the dll's before I compile? When I make dll from C, it works fine
    > in LabVIEW. The problem is from .m to .dll. The problem also arises
    > when I convert my .m to .exe. The same error of 'matllb.dll not
    > found' comes over. Should I change my matlab compiler options or
    > something else? Please help me?
    I have the same question,I don't know how to use the matlab DLL file in labview,
    I hope someone can descripe the procedure in detail.

Maybe you are looking for

  • When i am trying to statrt the services i am getting an error

    windows could not start the orcale bi presentation server on local computer .Fro more informatoin,review the system event log.If theis is a non_microsoft service, contact ther service vendor,and refer to service-specifica error code-1 tel me where i

  • Lightroom 2.6 and CS2

    Hello. I usually open my images taken with a Canon Eos 5D Mark II in LR 2.6, then develop and export them to CS2. The resoultion in CS2 is 240. How can I set it to 300 dpi? Thank you!

  • AP unable to download the image from 5508 WLC

    Hi, I have a 5508 WLC connected to 2950 Switch and the LAP 1262 connected to the same default VLAN. My AP's are able to join the controller since they are in the same broadcast domain but They are NOT able to download the image from WLC. When I am lo

  • How to find user-exit?

    Hi Friends i have got a requirement of adding new fields in MM01 screen i am trying but i have stricted up in user-exits like i got know tht i have to use EXIT_SAPLMGMU_001 but i am unable to find the user-exit can anyone tell me the procedure how to

  • StorageItemThumbnail seems to lose reference/thumbnail over time?

    Hi there, I encountered a strange behaviour multiple times in the past now. I'm creating a GalleryApp which retrienves FileInformation with GetVirtualizedFilesVector() and appropiate Settings. Then the bound Thumbnails are converted with a Storeagete