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.

Similar Messages

  • 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

  • Data not showing correctly !!

    Exprets !
    I have problem , may be i am not able to understand or may be data is wrong ..
    We have a sales group for each customer. means sales group is an attribute of a customer.
    In my couple of reports, if i pull sales group , i can see for some customer there is "# not assign"
    means, in the transactional data there is not sales group entry . thats understood....
    Bcoz of that, we have another Free char. which is nothing but, a nav. attribute. (zcustomer_zsales_group ).
    I checked in the master data of customer, that for those customer sales group is not showing up in the report ..
    has a sales group entry in customer masterdata....
    So, if i pull sales group from master data ( Nav. Att. ) then in the report it should show me sales group for that customer.....I know in this case it wont be a trascational data but master data...but atlest i will have something instade of # not assign.
    But NO luck, there also not assign...( EVen in Master data there is a sales group assign to that perticular customer...)
    There are 15 -20 customers like that, where i m not able to see sales group..
    Any thoughts ???
    please help.
    Thanx

    May be the Customer values(transaction values) are corrupted, means that the incoming customer transaction data (for those 15-20 records) may not be same values as in Customer master. Some times the padded 0's will be missing in transaction data and hence it cannot find the appropriate customer in the master data.
    eg: lets say if the master data customer has value 0000100056 , but the incoming transaction data has customer value say 100056. In this case, it will not find the appropriate entry in master data.

  • Data not showing correctly in essbase

    Hi There,
    I just generate my monthly load table, for example, GL of month, I run the query, and the total number is matched with accounting generated report, then I load it to the essbase using the month data text file, as well as data load rule file (overwrite the value).
    However I use Excel add-in to retrieve and check the month number, it gave me discrepency on actual of level 0 on one account, I cannot figure it out why.
    Any pointer and advice?
    Thanks

    Hi CL,
    Thanks for your advice, now I am really concern if there is data issue, by the way, I want to point it out, the above sample data is not data file I use to load the cube, it is result of sql query using group by to compare the value, here is the actual data file I am loading, for GL 5112, the sum of that is 1131609.5:
    Scenario GL Dept Year Mon Amount
    ACTUALS      5112      030200      2010     Jul     49327.560
    ACTUALS      5112      030240      2010     Jul     11098.010
    ACTUALS      5112      030320      2010     Jul     4050.000
    ACTUALS      5112      030340      2010     Jul     12850.720
    ACTUALS      5112      030360      2010     Jul     7528.750
    ACTUALS      5112      030420      2010     Jul     43999.960
    ACTUALS      5112      030460      2010     Jul     1246.320
    ACTUALS      5112      100099      2010     Jul     -16895.700
    ACTUALS      5112      120301      2010     Jul     -5803.440
    ACTUALS      5112      130401      2010     Jul     54059.720
    ACTUALS      5112      130601      2010     Jul     1750.170
    ACTUALS      5112      130603      2010     Jul     3667.950
    ACTUALS      5112      150201      2010     Jul     13389.560
    ACTUALS      5112      150401      2010     Jul     12617.550
    ACTUALS      5112      150601      2010     Jul     5206.520
    ACTUALS      5112      150701      2010     Jul     251913.180
    ACTUALS      5112      150801      2010     Jul     -1555.080
    ACTUALS      5112      170099      2010     Jul     55962.500
    ACTUALS      5112      170602      2010     Jul     21969.530
    ACTUALS      5112      180201      2010     Jul     4693.760
    ACTUALS      5112      190001      2010     Jul     76914.000
    ACTUALS      5112      190003      2010     Jul     -10372.680
    ACTUALS      5112      190004      2010     Jul     7832.790
    ACTUALS      5112      190200      2010     Jul     -17089.160
    ACTUALS      5112      190204      2010     Jul     373255.250
    ACTUALS      5112      190204      2010     Jul     77760.000
    ACTUALS      5112      190205      2010     Jul     92231.760
    Could you tell anything wrong here to causing the discrepency?

  • Issue: Comments not showing correctly on iPhone

    Hi,
    Please fix the below issue on iPhone App.
    Summary:
    If there is a long comment it only shows some of it on the iPhone. Viewing the comment on the iPad allows you to see the whole comment.
    Details:
    If the comment is medium length, you can tilt the phone and thereby see it all. If the comment is very long, it only shows a certain number of lines and you'll then have to view it on the iPad to see read it all.
    Thanks,
    Kasper

    Hi Kasper
    This is a bug in the iphone version of revel that we found recently. We have this logged and are looking into it. Sorry for the inconvenience and thanks for reporting it.
    Pattie

  • Not showing correct output when parsing the date

    //WAP the gives the details of employees
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
      private String nm,curr_dt;
      private Date dob,doj;
      private int salary;
               employee()
                  nm="\0";
                  dob=null;
                  doj=null;
                  curr_dt=null;
                  salary=0;
               void getdata()throws IOException
                  String dt;
                  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
                  //we can create date with these 3 type of objects
                  Format fm=new SimpleDateFormat("dd-mm-yyyy");
                  DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
       //object of base class are type compatible with the object of derived class
                  SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
                  System.out.print("\nEnter the name of Employee : ");
                  nm=br.readLine();
                  try{
                  System.out.print("\nEnter the date of birth of Employee : ");
                  dt=br.readLine();
                  dob=(Date)fm.parseObject(dt);
                  System.out.print("\nEnter the date of joining of Employee : ");
                  dt=br.readLine();
                  doj=df.parse(dt);
                  }catch(ParseException e){
                  Date d=new Date();
                  curr_dt=sdf.format(d);
                  System.out.print("\nEnter the salary of employee : ");
                  salary=Integer.parseInt(br.readLine());
               void putdata()
                  System.out.println("\n\n\nEmployee Name : "+nm);
                  System.out.println("\nDate of birth : "+dob);
                  System.out.println("\nDate of joining : "+doj);
                  System.out.println("\nCurrent date : "+curr_dt);
                  /*if((doj-curr_dt)>1)
                       salary+=3000;
                  System.out.println("\nSalary of Employee : "+salary);
    class emp
      public static void main(String str[])throws IOException
           employee emp[]=new employee[1];
           System.out.println("\nEnter the detail of employees \n\n");
           for(int i=0;i<1;i++)
                emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    }*Output:*
    Enter the detail of employees
    Enter the name of Employee : Rajendra Sharma
    Enter the date of birth of Employee : 10-10-1979
    Enter the date of joining of Employee : 05-09-2004
    Enter the salary of employee : 2000
    *it is not showing date in the "dd-mm-yyyy" format and not showing correct month as well*
    Detail of employees are
    Employee Name : Rajendra Sharma
    Date of birth : Wed Jan 10 00:10:00 IST 1979
    Date of joining : Mon Jan 05 00:09:00 IST 2004
    Current date : 17-08-2008
    Salary of Employee : 2000                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    Use below code that will help u to sort ur problem.
    import java.io.*;
    import java.util.*;
    import java.text.Format;
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    class employee
    private String nm,curr_dt;
    private Date dob,doj;
    private int salary;
    private String dobb,dojj;
    employee()
    nm="\0";
    dob=null;
    doj=null;
    curr_dt=null;
    salary=0;
    void getdata()throws IOException
    String dt;
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    //we can create date with these 3 type of objects
    DateFormat fm=new SimpleDateFormat("dd-mm-yyyy");
    DateFormat df=new SimpleDateFormat("dd-mm-yyyy");
    //object of base class are type compatible with the object of derived class
    SimpleDateFormat sdf=new SimpleDateFormat("dd-mm-yyyy");
    System.out.print("\nEnter the name of Employee : ");
    nm=br.readLine();
    try{
    System.out.print("\nEnter the date of birth of Employee : ");
    dt=br.readLine();
    dob=(Date)fm.parseObject(dt);
    dobb= fm.format(dob);
    System.out.print("\nEnter the date of joining of Employee : ");
    dt=br.readLine();
    doj=df.parse(dt);
    dojj = df.format(doj);
    }catch(ParseException e){
    Date d=new Date();
    curr_dt=sdf.format(d);
    System.out.print("\nEnter the salary of employee : ");
    salary=Integer.parseInt(br.readLine());
    void putdata()
    System.out.println("\n\n\nEmployee Name : "+nm);
    System.out.println("\nDate of birth : "+dobb);
    System.out.println("\nDate of joining : "+dojj);
    System.out.println("\nCurrent date : "+curr_dt);
    /*if((doj-curr_dt)>1)
    salary+=3000;
    System.out.println("\nSalary of Employee : "+salary);
    class emp
    public static void main(String str[])throws IOException
    employee emp[]=new employee[1];
    System.out.println("\nEnter the detail of employees \n\n");
    for(int i=0;i<1;i++)
    emp=new employee();
    emp[i].getdata();
    System.out.println("\n\nDetail of employees are\n\n");
    for(int i=0;i<1;i++)
    emp[i].putdata();
    thanks,
    prabhu selvakumar.

  • Lion: Finder: Column View: Date Last Opened is not show correctly

    Hi Folks,
    I have upgrade my macs from 10.6.8 to 10.7.
    I am using the column view in the finder and I noticed that the
    Date Last Opened is not show correctly in the preview column.
    If I use the the list view and show the column Date Last Opened
    all dates are correct. Using the column view, the Date Last Opened
    allways matches the Date Last Modified.
    The attached screenshot shows an example with the same
    file at in both views mentiond above.
    I have noticed this problem with internal and external drives
    using the filesystem Mac OS Extended (Journaled).
    Is there way known to fix this behavior. In Snow Leopard it worked fine.
    Thank you for your support.

    Same here, however I found a strange work around.
    Go to your applications folder, for instance. Click the gear icon, go to Arrange By, then select Date Last Opened. It will correctly show the last opened time and arrange them accordingly. Switch back to arrange by name and the last opened date reverts back.
    It's not a bug, it's a feature!

  • Inventory Non cumulative values are not showing correct result

    Hi Guys,
    I have created a report on Inventory cube taking material in rows and 0T0TALSTCK and 0VALSTCKVAL in colums and i created a variable on calender day . What ever the date if we give we will get the quantity and value as on that date.
    Here Quantity is showing perfectly and in case of value it is showing wrongly. In this case the interesting thing is if we substract the  (Reciet value - Issue ) value then i am getting the correct value.
    Some times Even quantity is zero the noncumulative keyfigure (0VALSTCKVAL)is not showing zero it is showing some value but if i do (Reciet value - Issue ) it will show correctly.
    Please help on this issue.
    Thanks & Regards
    K.Srinivas

    Hi,
    when the quantity is correct, then you have a problem with the values. You have loaded the infocube correcly.
    check your keyfigures and the transformation with the BI content.
    => for example: do you have the coding in the BF transformation?
    * see OSS note 571669
        LOOP AT SOURCE_PACKAGE ASSIGNING <SOURCE_FIELDS>.
          IF <SOURCE_FIELDS>-stockcat EQ 'V' OR
             <SOURCE_FIELDS>-stocktype EQ 'V'.
            DELETE SOURCE_PACKAGE.
          ENDIF.
        ENDLOOP.
    => you have used the datasource 2LIS_03_UM. There are no quantities. Is there your problem.
    Sven

  • SSRS pulls data from ESSBASE cube, data not showing

    Dear Experts,
    We are connecting SSRS 2012 to Essbase 11.1.3 to pull data from the cube, and having some issues with some members data not showing in the query designer and report, while some have no problem. And we couldn't find a pattern on which members won't show. We are wondering if this is a known issue and if there is a way to solve the problem.
    Thanks very much.
    Grace

    Hi ,
    Check the following:-
    1 Check whether you have made the joins properly.
    2 Check data at multiprovider level .
    3 is data available for reporting in both the cubes
    Regards
    Rahul

  • SharePont 2013 Document Library lookup Column Properties not Showing Correctly when editing in Word

    Hi
    I keep seeing this issue albeit intermittently.  I have set up a doc library for my users which has a custom content type (lookup, metadata columns, etc)  . They all appear perfectly most of the time except the lookup column. Sometimes is just
    decides to display the title field of the current library and not the lookup list title .  It is weird as it has been working perfectly for ages given the library is populated with valid documents.
    There are some fixes listed here. Has anyone got any experience of this?
    https://social.msdn.microsoft.com/Forums/azure/en-US/e0b55531-509c-4219-8113-61b3e488de69/document-library-metadata-properties-of-a-content-type-do-not-show-correctly-when-editing-in-word?forum=sharepointdevelopmentprevious
    Freelance consultant

    Hi,
    According to your post, my understanding is that the lookup  column not display well while editing in word.
    Did you customize the Document Information Panel?
    I recommend you edit your custom document information panel or create a new document information panel, then re-publish it to check whether it works.
    https://support.office.com/en-gb/article/Create-or-edit-a-custom-Document-Information-Panel-for-a-content-type-b701a9af-3ea6-4c1a-9e1c-75363bd987c9?ui=en-US&rs=en-GB&ad=GB
    Or you can also use the methods in the post you have pasted to check whether it works.
    As the limitation of the environment, we could not reproduce the issue in our environment.
    I  would suggest you open a case to Microsoft Customer Service via Phone.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Spot colors not showing correctly in acrobat 11

    Spot colors not showing correctly in the output preview as well as the page correctly. I have a spot pms
    295 on a page in a few different areas of text and backgrounds. The spot color shows on 1 of my backgrounds
    and text and a spot color on another background does not. These items are on the same page. Although I
    can use the eyedropper to check the color of these items and it states the spot color is present. The page
    also prints correctly. Previews not happening.

    I included 3 screen shots from Acobat 11 of the test requested. Also, included the last screen shot from Acobat 9 of same file.
    Which shows correct preview. To eliminate possible ICC profile issue. I did change profiles to all that were in the profile list
    with no change in either test.

  • Account Balance not showing correctly

    Sir,
    Suppose , i have posted an invoice  of Rs.200 against a customer and after some times i recieved payment from this customer of Rs.200 So,  accout balance of this customer should be zero.. But when i see the account balance from business partner master data , it should me Rs.-400 in accout balance field but when i navigate through orange arrow in to accoutn balance details , there i get  zero in balance due field?? ie. it is showing coorectly in details of account ballance but in the business partner master data it is not showing correctly??

    hi divya,
    Check SAP Note 904002 - Customer account balance is displayed with negative sign
    Summary
    Symptom
    Customer Balance is displayed with minus.
    Other terms
    Customer balance, Supplier Balance, Credit Balance, Debit Balance, Display Credit Balance with Negative Sign, Company Details, System Initialisation, business partner, accounts, SAP Business One
    Reason and Prerequisites
    Customer balance is displayed in negative though you expect it to be positive.
    Solution
    Under Administration->System Initialisation->Company Details and the 'Basic Initialisation' tab you will find the setting 'Display Credit Balance with Negative Sign'. This setting decides how Customer and Supplier balances will be displayed.
    NOTE!
    When creating a company it is important to know that this setting is irreversible once transactions have been made in the company.
    When this box IS checked the following applies:
    Customer balances will be displayed as Positive.
    Supplier balances will be displayed as Negative.
    When this box IS NOT checked the following applies:
    Customer balances will be displayed as Negative.
    Supplier balances will be displayed as Positive.
    This setting also influences the entry of opening balances for the G/L accounts. Depending on this setting, the opening balances must be entered as positive or negative numbers.
    By default this box is checked when a new company is created.
    Header Data
    Release Status: Released for Customer
    Released on: 02.12.2005  10:42:10
    Master Language: English
    Priority: Recommendations/additional info
    Category: Consulting
    Primary Component: SBO-ADM-INI-DET Company Details
    Secondary Components: SBO-BP Business Partners
    Affected Releases
    Release-Independent
    Hope it solves problem.
    Jeyakanthan

  • The onhand quantity at sub inventory level it is not showing correctly

    For an item the org level quantityt is showing correctly but at sub inventory level it is not showing correctly.
    1)For an item org level the avilablty as below :
                   On Hand / Avail to Reserve / Avail to Transact are
         oRG level          7     7          7
    STAGING           7     7          7
         STORES          0     0          0     
    2) Created an Sales order with quantity 5 ,then STAGING decreased by 5 which is correct.
              the avilablty as below :
                   On Hand / Avail to Reserve / Avail to Transact are
         oRG level          7     7          7
    STAGING           2     2          2
         STORES          0     0          0     
    3) Shipping Transaction not completed,Received 4 into Stores – Staging avail increased by 6 and even STORES also increased by 4 . Here we do not understand why STAGING increased to 6.
         the avilablty as below :
                   On Hand / Avail to Reserve / Avail to Transact are
         oRG level          7     7          7
    STAGING           6     6          6
         STORES          4     4          4     
    4)Ship Transaction Completed sucessfully now the values are showing correctly.
         The avilablty as below :
                   On Hand / Avail to Reserve / Avail to Transact are
         oRG level          7     7          7
    STAGING           2     2          2
         STORES          4     4          4

    Hi Patel,
    You can create a confirmations using CO11N for sub-operations, but you can only confirm hours, not yield quantity. The yield quantity requried to be confirmed in the operation. You can partially or fully confirm sub-operations.
    Enter the order number, sub -operation number all the related data will be displayed execpt greyed quantity fields.
    Can you see the "sub-operation" entry field below "oper./activity" in CO11N ?
    Thanks & Regards,
    Ramagiri

  • LSMW - Read Data not showing in Converted Data

    Hi,
    I am using LSMW to load data from a flat file (via recording).  I have it working except I have one issue.  When I display the data in read data all fields are showing.  No errors popup when I select convert data.  When I select display converted data the last few fields are missing.  Any ideas why or how to fix this?
    Any help is appreciated as I do not know how to proceed.
    Thanks,
    Annette
    Edited by: Annette Ameel on Dec 4, 2008 5:37 PM

    HI Bush,
    Currently I am also facing the same problem. In "display read data" it is showing all the field values. No error msg in "convert data". But only 2 fields are displaying in "display converted data". not showing any values in rest of the fields. Kindly suggest me how you fixed this problem

  • Proper Data Not showing in Preview Mode

    Hello,
    I'm using the Dashboard Design tool to create a dashboard with Input controls on 2 stack column charts.
    There are 7 Input Targets  pointing to 1st stack column chart, the SUM of all these targets need to be populated on one of the values in the second chart.
    e.i. Two stack column charts=Revenue By Month and Revenue By week
    Target Inputs  are pointed to Revenue By week, so target's which are assigned to each week of a certain month need to Sum and populate in 'Revenue by Month' chart, on top of the corresponding  month.
    I have all the logic inputted, when i edit values in the excel sheet, changes are occurring, all values are being populated in both charts. However, when i Preview the dashboard and input targets i am only seeing targets populating in "revenue by Week"  and 'Revenue By Month" is not populating any target data.
    Any idea's on why this might be?
    Thanks in advance for any feedback

    Hi Zena,
    It looks something is breaking within the formula or logic. Try the below steps to narrow down:
    1. Preview the swf in Xcelsius.
    2. Take the snapshot of data in Excel( File->Snapshot->current excel data).
    3. Check the data if showing correct in the excel sheet.
    This would also help you isolate which formula or function is breaking.
    Thanks,
    Amit

Maybe you are looking for

  • Can't connect to Facebook through WiFi - Lumina 92...

    Both my teenagers have just had upgrades to Nokia Lumina's at the weekend, from an HTC and a Huawei. Both phones are WM8 and both have the Amber update pre-installed. Unfortunately neither phone can connect with Facebook through the Wi-Fi but CAN con

  • IPhone 3GS Home Deilvery

    I am about to purchase my new iphone 3gs as an early upgrade from apple and have it delivered to my home on the 19th to avoid the savages waiting on line at the store? My question is i currently am an att&t customer with a iphone 3g. Can i activate m

  • Aggregation Level on Multiprovider

    Hi All, I have a planning function on aggregation level built on multiprovider. When I try to Execute the planning function,the report is throwing an error as below- *InfoProvider YF2_OTIFA is being used in manual planning or in a planning function.

  • More font questions

    What I can't seem to find in any of these replies--I probably just haven't found the right one yet!--is whether the new OS X Tiger can use older mac fonts or any of the free mac fonts available on the internet...and that goes for all free mac downloa

  • Can't see my email

    somehow, the vertical line shifted and my email inbox disapeared. I have tried many ways but no luck. Uninstalled firefox, downloaded new file, installed. Still no inbox. Using att.net for email.