APD Issue. (Bug?)

Hi,
I have some problem on the APD.
I'm often using APD but today, something quite strange appened.
I've linked a query to an ABAP routine and during my work, all the connections Query -> Routine were gone : On my current APD and on the others !!
When i check the query, all is OK (i can launch too my query on the bex)
Query is well linked to the ABAP routine.
When i launch the ABAP routine parameter, i didn't see anything (no field available).
Is it a known problem? Do you have any advices?
Thanks !
Regards,
Adrien.

Hi Sushant,
Thanks for your reply, but it's not a data problem.
I just can't see the fields in my routine on the "source field" tab. Nothing appear.
I don't understand cause i can launch my query in the BEX.
I can't find anything on the SAP notes.
Regards,
Adrien.

Similar Messages

  • APD issue, Data not showing correctly in APD.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

    Hi All,
    Please guys help me with this APD issue that I am facing.
    There is an APD created whose target is a file and with one routine. Here the purpose of the routine was mostly just to sequence the fields the way I want them, and only to show certain ones, also to delete all KF that are zero.(which is commented out).
    No matter what I do, it always gets data which has the key figures as all zeros.  I put some code in there to delete the data which is all zeros but commented it out, because otherwise then it writes zero records.
    The code part which delete all KF that are zero is commented out. Now we are getting the file data with commented code and without commenting code same.
    The thing is, in Bex the query from which we are fetching data is showing proper data with zeroes as well as KF with values. But the same APD is showing only the data whose KF's are zeroes.
    I am pasting the routine here:
    REPORT RSAN_WB_ROUTINE_TEMP_REPORT .
    TYPES: BEGIN OF y_source_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             KYF_0001 TYPE /BIC/OIZBAS_FCST ,
             KYF_0002 TYPE /BIC/OIZTUN_QTY ,
             KYF_0002_UNIT TYPE MEINS ,
             KYF_0003 TYPE /BIC/OIZCOR_FCST ,
             KYF_0004 TYPE /BIC/OIZTOT_FRCT ,
             KYF_0005 TYPE /BIC/OIZTER_TFCT ,
           END OF y_source_fields .
    TYPES: yt_source_fields TYPE STANDARD TABLE OF y_source_fields .
    TYPES: BEGIN OF y_target_fields ,
             COUNTRY TYPE /BI0/OICOUNTRY ,
             SALESORG TYPE /BI0/OISALESORG ,
             /BIC/ZFCSTGRP TYPE /BIC/OIZFCSTGRP ,
             PLANT TYPE /BI0/OIPLANT ,
             MATERIAL TYPE /BI0/OIMATERIAL ,
             FISCPER TYPE /BI0/OIFISCPER ,
             ZBAS_FCST TYPE /BIC/OIZBAS_FCST ,
             ZTUN_QTY TYPE /BIC/OIZTUN_QTY ,
             BASE_UOM TYPE /BI0/OIBASE_UOM ,
             ZCOR_FCST TYPE /BIC/OIZCOR_FCST ,
             ZTOT_FRCT TYPE /BIC/OIZTOT_FRCT ,
             ZTER_TFCT TYPE /BIC/OIZTER_TFCT ,
           END OF y_target_fields .
    TYPES: yt_target_fields TYPE STANDARD TABLE OF y_target_fields .
    Begin of type definitions -
    *TYPES: ...
    End of type definitions -
    FORM compute_data_transformation
         USING     it_source TYPE yt_source_fields
                   ir_context TYPE REF TO if_rsan_rt_routine_context
         EXPORTING et_target TYPE yt_target_fields .
    Begin of transformation code -
      DATA: ls_source TYPE y_source_fields,
            ls_target TYPE y_target_fields.
      LOOP AT it_source INTO ls_source.
       IF ls_source-KYF_0001 = 0
       AND ls_source-KYF_0002 = 0
       AND ls_source-KYF_0003 = 0
       AND ls_source-KYF_0004 = 0
       AND ls_source-KYF_0005 = 0.
         DELETE it_source.
         EXIT.
       ENDIF.
        MOVE-CORRESPONDING ls_source TO ls_target.
        APPEND ls_target TO et_target.
      ENDLOOP.
    End of transformation code -
    ENDFORM.
    End of transformation code -
    ENDFORM.
    Please help me and reply. Good answers are appreciated and rewarded with points.
    Thanks,
    Sumisha Subramanian.

  • Issues / Bug with Nokia N9

    Issues / Bug with Nokia N9
    1. The mobile network gets disconnected after each call and I have to wait atleast 10-20 seconds to redial or make a new call, I cannot dial a number just after I finish a call / speaking with someone. It happens on both Incoming and outgoing Calls.
    Troubleshooting Steps:
    1. Changed SIM card from the telecom provider atleast 3 times. The same SIM card works absolutely fine in another mobile.
    2. Reset and set to default settings tried - No Result
    2. The ear piece volume is considerably low.
    Troubleshooting Steps:
    1. Reset and set to default settings tried - No Result
    3. When playing a video online on YouTube the timing for a 4 minute video shows as
        34:00 34:23 instead of showing 04:00 04:23
    Troubleshooting Steps:
    1. Reset and set to default settings tried - No Result
    4. The photos from the Facebook app built into the phone do not always load even If I am running a 3.5G Mobile Data connection or at Home on a Wi-Fi connection
     Troubleshooting Steps:
    1. Reset and set to default settings tried - No Result
    I am from India, bought the phone last year from Abu Dhabi and it is Made in Finland.
    Really I need someone to help me out here!!

    If you reinstalled the OS again from Nokia, you may just have a defective phone and there could be something wrong with the hardware.  I have two N9's and I haven't experience any of these problems.
    Can you record these problems and post the link to youtube here so I can see what's happening?
    I Choose Nokia!

  • APD issue

    Hello,
    I am facing an APD issue. While executing the APD in quality server its giving the following error.
    Error occurred when starting the parser: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Message no. BRAINOLAPAPI011
    Diagnosis
    Failed to start the MDX parser.
    System Response
    timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'
    Procedure
    Check the Sys Log in Transaction SM21 and test the TCP-IP connection MDX_PARSER in Transaction SM59.
    But when i executed the APD in development server it executed properly.
    Can anyone help me to resolve the issue.
    Thanks,
    Kumkum

    Hi Pravender,
    I have no authorisation in sm59
    and i have no knowledge of tcode MDXTEST.
    can you please give few more details about it??
    if i  drag and drop the inobject used in the query in the right panel of MDX test editor then it shows the same error as it shows while executing the APD
    Thanks
    Edited by: kumkum basu on Jun 16, 2010 10:44 AM

  • Known performance issue bugs and patches for R12.1.3

    Hi Team,
    We have upgraded oracle application from 12.1.1 to 12.1.3.
    I wanted to apply the known performance issue bugs and patches for R12.1.3.
    Please let me know for any details.
    Thanks,

    Are u currently facing any performance issues on 1213?
    Tuning All Layers Of E-Business Suite – Performance Topics
    http://www.oracle.com/technetwork/apps-tech/collab2011-tuning-ebusiness-421966.pdf
    • Start with Best Practices : (note: 1121043.1)
    • SQL Tuning
    – Trace files
    – SQLT output (note: 215187.1)
    – Trace Analyzer (note: 224270.1)
    – AWR Report (note: 748642.1)
    – AWR SQL Report (awrsqrpt.sql)
    – 11g SQL Monitoring
    – SQL Tuning Advisor
    • PL/SQL Tuning
    – Product logs
    – PL/SQL Profiler (note: 808005.1)
    • Reports Tracing
    – note: 111311.1
    • Database Tuning
    – AWR Report (note: 748642.1)
    – ADDM report (note: 250655.1)
    – Automated Session History (ASH) Report
    – LTOM output (note: 352363.1)
    • Forms Tuning
    • Forms Tracing (note: 373548.1)
    • FRD Log (note: 445166.1)
    – Generic note: 438652.1
    • Middletier Tuning
    – JVM Logs
    – JVM Sizing (note: 362851.1)
    – JDBC Tuning (note: 278868.1)
    • OS
    – OSWatcher (note: 301137.1)

  • EMAIL AND CALENDAR ACCOUNT STATUS ISSUE / BUG OS 10.3.1

    I found an issue / bug which is really frustrating me!
    Phone:      Blackberry Q10 (SQN100-3)
    OS:           10.3.1.1565
    Mail:          IMAP
    Calendar:  Google Calendar
    Last week I updated my BB Q10 to the new officially released OS 10.3.1
    Today I noticed that the connection info / status for email accounts and calendars (Settings > Accounts) wasn’t indication correctly.
    In the Accounts menu it shows “E-mail” below the name of my email account and “Calendar” below my calendar account to indicate that my Q10 is connected to these accounts. But when I turn airplane-mode on it still shows E-mail and Calendar without being connected to any of these accounts.
    Strangely when I turn on my phone while in airplane-mode the Accounts menu shows “E-mail” for my email account and “No Connection” for my calendar account, obviously without being connected to my email account. But when I turn of airplane-mode I receive emails and new appointments but the Accounts status for calendar still shows “No Connection”.
    Apparently the account status is not updated while using my phone, it shows the status at startup. This is very annoying and I am unable to check whether I am connected or not to my email and calendar while not in airplane-mode.
    In OS 10.2.1 the account status worked correctly and was updated (connected / no connection) while using my phone.
    Anybody else with the same problem?
    Is this already a known issue / bug?
    Anyone an idea how to solve this issue?

    I would simply delete both accounts (email and calendar) then readd them.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • Updates for previously paid for apps that address stability issues, bug fixes, other improvements that a customer is entitled to

    Why is the policy of Apple to prohibit customers from downloading FREE updates for previously paid for apps that address stability issues, bug fixes and other improvements that a customer is entitled to because the customer does not currently have a credit card on file that they can verify has an available balance??? I can understand it even for free apps or apps on sale or because most of those apps depend on in-app purchases but COME ON. Where is the ethics in that policy? Where is the consumer protection? Especially considering the ONLY marketplace to receive these third party products is through apple. INSANE.
    Wasted another 3 or 4 hours today trying to find a solution. I am unable to provide alternative payment method and money is tight for next 2 weeks but this is temporary. It's not as if I will never be purchasing more apps and apple products in the future. I have been a loyal apple customer since the days when Power!ac 9500 retailed for $8,000.00. Another words for a very long time.
    Anyone else find this to be a legitimate issue?

    I am all for any instance where I am asked to verify my account or Apple ID. The issue is that I am being denied delivery of a beneficial update of a premium, already paid for app... Because I am (at the moment) maxxed out with my credit card I have associated with my Apple ID.
    There are four different (full version) paid for apps that just all released major updates.  The third party developers offer the updates for free to customers who have purchased the full version of the app and the update includes stability improvements, iOS 7 comparability, bug fixes and expanded functionality.
    These are not apps that, in total, cost over $100... And that I use every day.
    Never had an issue with being required to verify my account or Apple ID.

  • APD Issue - Text not showing up

    Hi All,
    We are configuring APD to run a 'query' and dump 'Large files' on to a directory path in Application server. APD is simple, Query - Transformation - PC File.
    This solution as such is working fine.  However, even if the 'Query' is set to display 'Text' (say for 'Customer' characteristics) the dump picks up 'Customer code' and not the Text.  Our solution also carries 'Hide or Rename column' transformation.
    Tapan

    Hi Tapan,
    I had to face same issue.
    We cannot get text through APD by BEx setting.
    By default APD reads Key from BEx query.
    Only way is to use "Join" from the text tables of master data.
    You are right that you need to use as many joins as the number of text fields needed.
    comming to the performance of the "Join", It did not impact much on the execution time (at least for me - I am using 3 joins to get descriptions for 3 fields -- APD with out joins takes approximately 10mins and with joins takes approximately 10mins 30sec to generate a huge file of 20MB)
    Hope this helps.
    Experts let us now if there is any other way for this.
    Thanks & Regards,
    Vidya Sagar

  • Enable data paging with parameters count() on new php function issue (BUG?)

    I've got my app prototyped quickly with the default settings in Flex Builder 4.  Now I'm going back and adding/modifying features to polish the app off.
    For this application I'm using PHP5 as the server side.
    The data paging is really cool and simple to call using the default settings.  However, I'm running into issues with customizing the data paging feature.
    This is the default header of the php function that was created for me:
    public function getTblbrowserrecord_paged($startIndex, $numItems){...}
    Instead of dumping all data back to the function I want to be able to search on certain fields so I created a new function called:
    getTblbrowserrecord_search_paged ($szName, $szIP, $szRule, $szURL, $szDateLow, $szDateHigh, $szCode, $startIndex, $numItems  ) {...}
    The new function is tested and operates as designed.
    I set the input types of the variables and return type (Tblbrowserrecord[]) of the new function then went to enable data paging.  The first screen came up and asked me for the key to use which I selected.  The next screen came up and asked me for the number of records which I set to 100 then went to select the count operation.
    I initially selected the automatically created count() function but it came up with the error " Count operation parameters should match the paged operation parameters list."
    So I created another function to match the search function's parameter's list:
    public function count_searched($szName, $szIP, $szRule, $szURL, $szDateLow, $szDateHigh, $szCode, $startIndex, $numItems)  {...}
    But I still ge the error "Count operation parameters should match the paged operation parameters list."
    But they DO match.  I looked at the default functions that were created by FB4 and noticed that the automatically generated function count() has no parameters and the paged function has the two functions $startIndex and $numItems which are not identical yet they work.  I tried removing those two fields from the count function but got the same results.
    What am I doing wrong?
    Thanks!

    Nevermind... For some reason my FB4 is not updating correctly.  After removing the two control fields at the end of the list AND exiting the app/re-entering everything worked ok.  I've been having this issue a lot lately and am thinking that is is a bug of some sort?

  • Calendar issues - bugs or do I misunderstand how it should work?

    I'm having a few calendar issues that seem like bugs. I have the latest release installed but I don't remember seeing these problems before updating. I could be wrong though - my memory ain't what it used to be.
    On the calendar week view, if I swipe to scroll down to see the afternoon, I can't swipe back up again. I have to swipe left or right to view a different week before it'll let me view the morning.
    Also, if I go to the month view and open a particular day with an event. If I then swipe on the bottom to go backwards, it shrinks the card and lets me choose another open app (home view?). Instead I would have expected it to return to the previous screen?
    Another problem; I had to tap an event in the week view about five times before it opened the day view. Poor detection?
    Do these sound like bugs? I've only had my Pre for a few days so I'm still learning. Thanks

    Hello and welcome to the forums;
    Going back and forth between morning and afternoon is working fine for me, how many calendars do you have and what kind are they (yahoo, gmail, etc)?
    Going to month view, then tapping on a day and using the back gesture does put you into card mode, because you have not entered a new level of menu, just a different view. If you were to go into a specific event, then you could back gesture to the previous view, but going between day/week/month is accomplished only with the selection buttons at the bottom of the screen.
    Instead of trying to tap a particular event from week view, have you tried just tapping on the date at the top? or somewhere else on the column for that particular day? Do you see the "ripple" on the screen showing that it recognized a screen tap?
    Hope this helps,
    TreoAide

  • APD-Issue with Decimals

    hi,
    I am using APD to get the report results as CSV file. I have restircted not to show the decimal places for the values in the report  but the file that is genarated always comes with two decimals.
    The business  does not wants the value with decimals.  I have looked at all the options to get this possible in APD.
    Please help with this issue. I am not good at ABAP and I may not be able to write a program.
    Regards,
    Raghu

    Hi;
    APD seeks to direct the base, then it makes sense to try to change the decimal places in the query, there is documentation that shows how to Creation of Key Figures with Higher Decimal Place Precision (https://service.sap.com/sap/support/notes/460652)
    Sá Freire
    Edited by: Luiz André Sá Freire on Feb 2, 2011 4:35 PM

  • CFPDF action="addWatermark" ISSUE/BUG

    Hello,
    I am trying to add an image as a watermark into pdf file
    using the CFPDF tag. Here is the code:
    quote:
    <cfpdf action="addWatermark" source="template.pdf"
    image="bottle.jpg" destination="ad.pdf" overwrite="yes"
    foreground="yes" showOnPrint="yes" >
    The source file is not password protected.
    And I get always the following error:
    quote:
    An error occurred during ADDWATERMARK operation in
    <CFPDF>.
    Error: The password provided is either wrong or does not have
    sufficient permission to perform this action.
    I made the PDF password protected and used the password
    attribute in order to eliminate the pass protection error but it
    does not help.
    Please help!
    thank you!

    okay!
    I found something about this.
    A. I created the first (in the case above) source PDF using
    Adobe LiveCycle Designer 8.0, with three dynamic textfileds so I
    can update them later using CFPDFFORM. If I use this PDF to insert
    watermark I get the error message above.
    B. Than, I created plain PDF using Adobe Acrobat
    Proffesional, CFPDF/addWatermark works perfect. The sad thing is
    that I do not need just flat PDF, but with fileds on it.
    Unfortunatelly the addWatermark will not resolve my issue,
    because there is no option to set the size of the watermark/image
    inside of the PDF.
    What I need is:
    I have 1 PDF template and 1 JPG image.
    In the PDF template I have three dynamic textfileds.
    The goal is - to insert the jpg into the PDF (and to
    shrink/strech the jpg to fixed dimensions - I do not know in front,
    what the JPG size will be) and to fill into the fileds using
    CFPDFFORM.
    The final result - PDF with the inserted image and three
    fileds with new values.
    I have Coldfusion 8 on Microsoft Server 2003.
    I will really appreciate any help!
    Thanks!
    p.p. so still the bug is there if you do not have flat PDF
    (or maybe if it is created with the livecycle designer i do no know
    what is the case exactly).

  • [CS4] Clipping Mask issue (bug?) - Beachball when I try to select masked group

    I have a somewhat complex compound path (1400 points) that I've duplicated several times and clipped. I want to make a second copy of this clipped set of objects. When I try to select the group that contains the clipping mask (with the selection tool or in the layers palette) illustrator chugs for over a minute. Once it's done chugging and I have my group selected I hit copy and paste. It chugs for another minute and then does nothing but deselect my group.
    I saved the file down into CS3 format and opened it in CS3. I have no trouble with copy, paste, select, scale, or anything when I'm in CS3 - no slowdown at all. I saved the file in CS3 and opened the CS3 format file in CS4 and I still have the beachball/chug problem.
    I'd like to note that the trouble begins only when I apply the clipping mask. I can select all those objects and copy/paste/rotate/scale/whatever until I apply a mask and then I can't do anything to them. The clipping mask itself is rather simple - only 26 points.
    I'm on a G5 with 8gigs of RAM and over 30gigs of available space in my scratch disc. Any advice or any other users who've had this problem?

    No that is not true and you know CS 3 does not come close to CS4 in performance and if I were you I would download the trial, although I have feeling you do not have the resources to to actually run the program and that has you quite miffed,
    Perhaps the next release will finally release you, so long!
    Tracy I found that there s a setting that is on by default in CS 4 that would make things go a bit slow and always has if selected by the user.
    Clearly a mistake I would think but for some reason the default settings for the raster effects is 300 ppi as opposed to 72 ppi which really many times will eat up the memory no matter how much you have, and Illustrator can only use a limited amount of RAM something like 2GB, so that the amount of RAM is not the issue and the scratch could be as wide open as possible but it still will choke.
    It may not have the resource to as in your case make a review. So I would try setting the document raster image effects setting to 72 ppi and then when outputting it change it to 300ppi or tell the printer to do so.
    Hans I am sure you will now be relieved to find out that CS4 is behaving as it should with the right setting.
    Enjoy the trial it is free. You are going to love CS 4.
    I am mistaken Tracy and Hans CS 3 also has the default setting at 300 ppi I should have checked first.
    Yes Hans this might be an issue that is a strike against CS4 on large complex projects
    I am certain it was good idea to change the clipping path behavior. The question is how big or complex does the file have to be before this happens.
    Hans you should still try the trial and see for yourself. Of course if you don't have the resources it might be difficult to load the trial.
    I would still try changing the setting to 722 ppi and changing it for output after the work has been completed.
    Yes I think you found and important bug.

  • 1.1.0.21.97: Package Decomposition improvements/issues/bugs

    I believe there are a number of improvements that could be made with the package decomposition in the Navigator pane.
    It is good that cursors are now sort of being included in the decomposition, but the cursor name doesn't get included.
    Can we please have different icons for the different types of objects in the decomposition? In 1.0 we have different icons for variables, etc vs procedures and functions. As an ideal it would be great to have different icons for the different types of variables (ie one for varchar2, one for number, one for date, ... - even with a slightly different icon for constants of each type), but at least having different icons for procedures/functions, cursors, records, types and variables/constants. Especially on the body decomposition for large packages, this would make it significantly easier to find a specific type of object.
    Something else that has disappeared from 1.0 is the ability to decompose a procedure/function within a package body. In the 1.0 package body decomposition, a node is created for each of the procedures and functions which can then be expanded to see the variables, sub-procedures/sub-functions in the procedure/function.
    It would be good to have a Run right-click context menu for the specification's procedures and functions, like there is for the stored procedures and functions.
    Not a big issue, but I preferred the 1.0 way of having the Specification as a separate node on the decomposition, rather than having the specification decomposition as part of the first level.

    Cursor name: bug is logged
    Request for different icons logged
    Sub -procedure issue: Yes this a regression and it's logged.
    Menu suggestion: Nice idea - have logged an ER
    New structure in 1.1: I'll raise this with the team.
    Thanks!
    Sue

  • APD issue 'Cannot find Variable'

    Hello experts,
    When i am trying to execute APD following error msg recieved.
    Cannot find variable 4T23JCVG9Z4JPGIFX0WFR1GK9 for ZLASTDATE characteristic in selection 0001
    Message no. RSAN_WB010
    Diagnosis
    Technical key for message: CX_RSAN_MDL_DST_FILTER=>FILTER_VAR_RANGE_ERROR
    Procedure
    If you require further assistance, look for a SAP Note containing the key words CX_RSAN_MDL_DST_FILTER=>FILTER_VAR_RANGE_ERROR or RSAN_WB010.
    has anyone had this issue.Please share your experience.
    Regards
    Kranthi.C

    Thanks Vishal for your prompt response. We running APD from an Infoprovider(Infoobject  as Dattarget) called 0BPARTNER. And 'ZLASTDATE'(Refference of ODATE) is attribute of '0BPARTNER'. We stores the values in CRM.
    We also have an alternative  in BI  system for this to fetch the data from Query and stores it in CRM. But problem is in Prod server we have over 1.5 million records of data and the values of these records  may be changed on  a daily basis. If 1.5 million records can uploaded at the first place later we dont expect many records on a daily basis(hardly 5k).So i executed first time  APD using this Query it ends up with error as cannot a upload the load at one stretch after many hours.I have also tried  split the records like 20k in Query but still taking 5 to 6 hrs time.APD process can be done only after business hours so if i follow this procedure it will take many days for me to upload and may be CRM dont have uptodate data.
    Hope you understood wat the problem is .Please let us know if anything you aware which can resolve the issue.
    Regards
    Kranthi

Maybe you are looking for