WBS field (PROJN) not been converted correctly

Hi experts
I am extracting WBS Element from table AFVC in ECC into BI.
The WBS Format I am getting in BI is not correct for example instead of p-00004.02.03 I am getting value 7.
The field name is PROJN and data element is PS_PSP_ELE
The SS conversion of this field is ABPSP.
The length of the field in the Data Source is length of 8 and when extending it into 24 still no correct result is loaded.
I have also tried to convert it in the BI side from PSA to DSO using all kinds of conversions for example: ABPSN (through function module in the transformation)
I know that the correct key for WBS is p000040203, the output of the conversion must be the same in order that BI system will recognize it (assign it with correct transactional data and MD that I am getting through CO and PS datasources)
Please advise me how to get correct wbs format in BI.
Thanks
Nir

Hi
I am facing the same issue in my project.  Could you please let me know how did you solved it?
Thanks
Supraja

Similar Messages

  • Short dump  GETWA_NOT_ASSIGNED field symbol not been assigned

    Hi Gurus,
    I am calling a RFC  BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 from R/3 sytem to SCM 5.0.
    Acutally this FM BAPI_PBSRVAPS_CHANGEKEYFIGVAL2 not available in R/3 system.
    So i am using scm destination and calling above FM directly from R/3 but i am getting the short dump
    in SCM system as GETWA_NOT_ASSIGNED field symbol not been assigned.
    Can you pls check and advise.
    Best Regards,
    Radhakrishna.

    Hi Radhakrishna,
            It looks like you have a discrepancy in the planning area with respect to keyfigure. Some thing like the key figure description is not synchronized between live cache and db.
    I suggest you log onto your SCM system, run the program /SAPAPO/TS_LCM_CONS_CHECK on your planning area with correct error option.
    Please let me know if this works.

  • Error while Creating new Position-Data fields have not been filled (no. 5A135)

    Dear Consultants,
    My client using SAP HCM form 2008, now they want to create new positions to the existing system,
    To create new positions I am using T Code : PP03, while creating I am getting error "Date Fields have not been filled- Error Message No - 5A135", I want to create the positions valid from 01.04.2014. please do needful why this error is coming
    Regards,
    Naresh

    Hi,
    It is mandatory to give the org unit to which the position is being associated with.
    Give the org unit and try saving it.
    Thanks,
    Sriram

  • Ps CS6 Problem: Pixels put in Mac file icon have not been converted to the profile of the icon

    Pixels put in a Mac file icon image have not been converted to the colour profile of the icon image.
    For example, when ProPhoto or Adobe RGB pixels are put in an icon image with no profile or "Generic RGB" profile, the result is a washed-out appearance to the icon.
    Apple recommends sRGB (PNG) images in icons. Adobe, please comply with that.
    Edit: I realise that CS5.1 did the same as CS6.

    Makes you wonder whether the person who programmed the icon generating code...  Nah, I won't say it.    Down boy.
    -Noel

  • TS1292 Hi. The message we are getting is that our card has not been activated correctly.  What do we do?

    Hi. The message that we are getting is that our ITunes card has not been activated correctly.  ITunes support is asking for a copy of the receipt, which i have long thrown away.  What do we do?

    Hi Scott,
    Use ProcessMonitor from Microsoft and look in the logs to see if there are any Access Denied errors. Also look in the IIS logs and Event viewer to see if anything there is being logged.
    Anti-virus software logs is another place to look....
    Pop up blocker in the Browser maybe or possibly adding the new server name to the trusted list.... Domain permissions possibly...
    If you browse the App from the Server does that work?
    Don

  • My Macbook Pro has not been running correctly since "upgrading" to Yosemite

    My Macbook Pro has not been running correctly since "upgrading" to Yosemite. It has been sluggish no matter what program I am using, slow to respond to mouse movements, and unable to stream video. Any word on when Apple is going to send out a real upgrade?

    Try Reset SMC.  http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • "The property or field has not been initialized" Error, when debbuging app

    Hello,
    I'm  following the instructions of a dev book but I get the following error message when debugging the app.
    "The property or field has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested."
    The code:
    var collListItems;
    $(document).ready(function () {
    getConfigValues();
    function getConfigValues() {
    var context = SP.ClientContext.get_current();
    var configList = context.get_web().get_lists().getByTitle('Configuration Values');
    var camlQuery = new SP.CamlQuery();
    collListItems = configList.getItems(camlQuery);
    context.load(collListItems);
    context.executeQueryAsync(onGetConfigValuesSuccess, onGetConfigValuesFail);
    function onGetConfigValuesSuccess() {
    var OrgLogoUrl;
    var OrgName;
    var listItemEnumerator = collListItems.getEnumerator();
    while (listItemEnumerator.moveNext()) {
    var oListItem = listItemEnumerator.get_current();
    var current = oListItem.get_item('Title');
    switch (current) {
    case 'OrganizationName':
    OrgName = oListItem.get_item('Value');
    break;
    case 'OrganizationLogoUrl':
    OrgLogoUrl = oListItem.get_item('Value');
    break;
    if (OrgName && OrgName.length > 0) {
    $('#DeltaPlaceHolderPageTitleInTitleArea').html(OrgName);
    $('.ms-siteicon-img').attr('title', OrgName);
    if (OrgLogoUrl && OrgLogoUrl.length > 0)
    $('.ms-siteicon-img').attr('src', OrgLogoUrl);
    else
    $('.ms-siteicon-img').attr('src', '../Images/AppLogo.png');
    function onGetConfigValuesFail(sender, args) {
    alert('Failed to get the Configuration Values. Error:' + args.get_message());
    What it have to do is to replace the Title and Site logo, using the "Title" and "Value" fields of the "Configuration Values" list.
    My dev environment: SharePoint online, Azure, VS2013 Ultimate (trial)
    I've tried to reach the author of the book but it's being 4 days and no response, maybe somebody here can help me.
    Thanks in advance.
    Jimmy

    Jaydeep, I don't get the values, see the HTML code below.
    <%@ Page Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" MasterPageFile="~masterurl/default.master" Language="C#" %>
    <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <%-- The markup and script in the following Content element will be placed in the <head> of the page --%>
    <asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
    <script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.2.min.js"></script>
    <script type="text/javascript" src="/_layouts/15/sp.runtime.js"></script>
    <script type="text/javascript" src="/_layouts/15/sp.js"></script>
    <!-- Add your CSS styles to the following file -->
    <link rel="Stylesheet" type="text/css" href="../Content/App.css" />
    <!-- Add your JavaScript to the following file -->
    <script type="text/javascript" src="../Scripts/App.js"></script>
    </asp:Content>
    <%-- The markup in the following Content element will be placed in the TitleArea of the page --%>
    <asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">
    KA Online Klas
    </asp:Content>
    <%-- The markup and script in the following Content element will be placed in the <body> of the page --%>
    <asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server">
    <div id="menu">
    <ul>
    <li><a href="../Lists/Configuration Values">Site Configuration</a></li>
    <li><a href="../Lists/Site Assets">Site Assets</a></li>
    </ul>
    </div>
    </asp:Content>

  • Funded Program In WBS Field Is not appeared

    Hi
    I want to derivate funded program from wbs field. But I cannot find this field in wbs master record.
    Please kindly tell me activation steps for funded program.
    Regards
    Yashar
    Edited by: Yashar Farzaneh on Apr 12, 2011 1:38 AM

    Hi Yashar, I think there is a concept's misunderstanding, activating the funded program, does not mean that it will be active in other components and there is not any function module to read it from any master data.
    The idea of the funded program is that it is connected with projects, if the customer run their projects using Project System, is common that the WBS be the source of data, and in that case the ID of the WBS is assigned to the Funded Program (using the derivation startegy) but not the fields content in the WBS master data it self.
    In other cases the Internal Order can be assigned to the Funded Program.
    And as Alex said the only way to what your are expecting is to enhance the WBS estructure creating a new field "Funded Program.
    Check the on-line documentation and the funded program example http://help.sap.com/erp2005_ehp_05/helpdata/en/f0/ca5716260211d28a430000e829fbbd/frameset.htm
    and also the documentation suggested by Mar about master data autocreation.
    Regards
    César

  • Ever since I downloaded the latest itunes update songs have not been syncing correctly and now they aren't all no matter what I do the settings on my iphone 4s or itunes on my PC.

    I recently had trouble updating my itunes, when I did do it I kept getting an error message and because of that I had to uninstall everything than reinstall itunes.  But since then my iphone, ipad, and ipod are not really syncing correctly.  My PC says its going through the steps and applying everything but when I got to my phone nothing is updated at all.  Nothing is being applied and I did the run diagnostics as well and it said that everything was fine.  When I got what is on this phone it says the playlists are on my phone but when I go to the music app on my phone the playlists aren;t there at all.  I've gone through all my settings on my computer and iphone and they are all what they should for the songs to transfer correctly and it still isn't working. 

    So, in iTunes, when you look at the shuffle's content (in the sidebar) and click on the playlist under the shuffle, over to the right, the songs are in your desired order, correct?  Where do you look, or what do you do, that indicates the playlists are in alphabetical order?  Are you saying that when you play the songs while using the shuffle, they play in alphabetical order?
    If so, when you listen to the songs on the shuffle, are you using the playlist, or are you using the All Songs list? If you are in the default All Songs list, with the shuffle's power switch set to play-in-order (the middle position), the songs play alphabetically, I believe. 
    The 3rd gen shuffle uses VoiceOver.  If you are in the All Songs list, you need to use VoiceOver to switch to the playlist (see manual linked below for details).  When you are in the playlist (with the shuffle's power switch set to play-in-order), then the songs should play in playlist order.
    There are more details in the manual for the 3rd gen shuffle, which is online here
    http://manuals.info.apple.com/en_US/iPod_shuffle_3rdGen_UG.pdf
    See page 22 for the section about setting up and using VoiceOver.  The part about switching playlists starts on page 23 (Using the Playlist Menu).

  • Down payment is not been showed correctly at RFIDESM340 report

    Hi gurus.
    I have a problem with the report RFIDESM340. I have 2 down payments for an intracomunitary client in one invoice.
    The financial document is been showed correctly with two diferent positions for each down payment but in the RFIDESM340 report those have been group in one position for the invoice..
    Do you know to make the report to show the down payments in two different positions?
    Thanks in advance!

    Hi gurus.
    I have a problem with the report RFIDESM340. I have 2 down payments for an intracomunitary client in one invoice.
    The financial document is been showed correctly with two diferent positions for each down payment but in the RFIDESM340 report those have been group in one position for the invoice..
    Do you know to make the report to show the down payments in two different positions?
    Thanks in advance!

  • WBS Summary does not shows the correct Orignial Duration

    Hi Friends,
    Currently I am using WBS Summary or Level of Effort type of activity on top of my every WBS and I am assigning all my resources to that activity to save the time rather than assigning resources with each and every activity.
    But, in my new project I have the activities which has a scattered durations like one activity starts on 3 rd day another starts on 25th day. So, my project is not planned to go smooth or linear. So, if I am counting the total duration for that particular WBS is 25 days but in WBS Summary it shows me 250 days and it is also spreading my resources for 250 days while I am using the resources only for 25 days. Still, the resource usage and costing shows me the same amount.But, I am concern about the resource Usage Assignments which is not correct.
    So, I will appreciate any kind of solution with this problem and it will make my life easier.............
    Thanks in advance
    Edited by: user13349410 on Jul 6, 2010 10:19 AM

    Jawad,
    i agree the methods you mentioned are good general advice when it comes to sound planning. but they are considerably more time consuming than proper
    "who does what" resource assignment to tasks. further more #2 and #3, may need even more manual work to accomodate changes into the project schedule or scope or when dealing with conflicting requirements.
    proper resource loading of your schedule is preferable, even using conventional default settings such as:
    - linear distribution of effort (units/ costs). no curve or future bucket planning which IMO, depending on required level of detail, can prove to be overkill;
    - activity driven resource dates. whenever possible, it is much simpler to "split" activities or better yet create as many as you need in the first place, so that resource allocation start/finish dates coincide with activity start/finish dates for all resources assigned to the activity, rather than having resource lags, non-linear curves or future buckets;
    - no artificial constraints on activities, but proper relationships of required type and lag;
    - no fixed artificial non-working periods set in activity and/or resource calendars (other than legal/ organisation/ project standards dictate or are so set by technical, workflow, environment or availability reasons that may apply).
    especially since calendars are likely to have different requirements, when existing calendars are reused within project and especially in other projects (global calendars).
    best regards,
    Tibi

  • The property or field has not been initialized. It has not been requested or the request has not been executed. It may need to be explicitly requested.

    After installed February
    2015 CU for SharePoint 2013 appear error when click on 'Shared
    With' in list item.
    The screenshots see here: 1 and 2
    Is this a bug?

    Yes, this is a known bug introduced with the November 2014 CU. There is no solution as of yet.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • CJK characters are not converted correctly to PDF

    We are developing layout using SMARTFORMS. We are using standard function module 'CONVERT_OTFSPOOLJOB_2_PDF'  to convert the SMARTFORM to PDF. Chinese, Japanese, Korean characters are not displayed/Converted correctly in PDF documents. But in Spool these characters are showing correctly.
    Whereas German, Italian, French are displaying and printing correctly and converting properly to PDF.Please suggest a suitable
    note/correction for the above.

    Hello dear,
    Did you got a solution for this? Even i am facing the smae problem.
    Warm regards,
    Harshad.

  • Visio 2010 - Shape Data Fields Are Not Saving

    I am having a problem with a number of shape data fields which are not saving data that has been entered into it, whether by entering it through the "shape data" or "define shape data" dialog boxes, or by editing the "shape
    sheet". 
    All data fields appear to save normally while file is open, it remains as entered.  However, when file is closed and later reopened select data fields do not retaining data correctly.  Some retain nothing (null), or revert back to a "default"
    value, see below for a couple examples:
    Rack Units:  Want to enter data as 1U, 2U, etc. ... in some cases it will save it as entered while in other cases it reverts to "1 RU", "2U", etc.
    Room:  Enter the data as I want it stored, most of the time it appears to come back empty, there are some shapes which will retain as entered.
    Comments:  Fails to retain any data
    I have looked at a number of reasons to explain why, whether the problems occur with stencils is supplied by Microsoft, a vendor, or were custom created.   Looked into whether it might have to do with a particular vendor's stencils/drawings
    but I have a number of Cisco drawings where some save those fields as entered while others do not.  I believe it could be a setting within the stencil preventing it from saving the data as entered, enabled in some cases and not in others.
    I have checked "Protection" under the "Developer" tab, but nothing appears to be set to prevent editing/storing data entered. 
    Is there some setting(s) or field(s) somewhere that I can look at to allow this data to be saved as entered?
    Is there a GLOBAL setting that can be set once within a file?
    Thank you in advance for your time to assist me in fixing these problems. Have a great day!
    MJ_NWE
    MJ

    >Can I build logic so that they can't fill in a field unless the previous field has been filled in?
    It's theoretically possible to do this (e.g. each field has an action
    of removing read-only on the next). It's considered extremely bad form
    design, because people don't always fill in fields in the order
    specified. If you watch people with a form they fill in their name,
    address, other easy stuff; then they go back for the harder stuff.
    They may want to save a form because one piece of information needs
    research.
    What you might like to consider is a large splash "FORM INCOMPLETE" in
    Red or whatever, which vanishes when all the fields are completed.
    Aandi Inston

  • Error in ALV : Field Does not exists in Output table .

    Hi All,
    In my ALV report, program get dumped and showing error when i tried to put a col named Distribution channel ion the alv.
    I have put the Distribution cannel field in the IT_FInal table , but still getting folwong errors :
    Error : Field Symbol is not been assigned.
    As Instructed i have passed            I_INTERFACE_CHECK              = 'X'.
    By this i am getting detail error that :
    Field Distribution channel does not exists in Output table & Heading for List is missing .
    But i have maintained the distribition channel in IT_Final table
    Please suggest wheather we have to define dis channel in any other place.
    Thanks in advance.
    Can any one help me regrarding this.
    Thanks in advance.

    Hello,
    You have to populate the same in the fieldcatalog as well, i think you have not maintained this field there.
    BR,
    Suhas
    PS: Also make it a point to follow-up on your previous post: [Error in ALV : Field Symbol not been assigned.|Error in ALV : Field Symbol not been assigned.]

Maybe you are looking for

  • Can you install Application Express on DB XE

    I know there is a message saying that APEX questions should go to the appropriate forum. But from my experience APEX will not install on XE. there is a message to the effect that it is not installable/supported. Can someone advise if it is or is not

  • Nothing is working; cannot access account pd for Export, can't access download assistant for a trial

    I paid on line for Adobe Export so to download the program and be able to convert Adobe docs, but could not access the account once paid and rec'd an email acknowledgement. Kept going around in circles, got on line chat but they could not help, told

  • Mail doesn't allow a new POP Account

    Mail doesn't allow me to create a new POP account... I all ready have 3 accounts including .Mac account and 2 more POP mail accounts and works fine!!!! Last week I re installl all my preference (I clean up my MAC)and always works fine... but not anym

  • Getting rid of music on my iPad

    I want to get rid of all my music on my iPad? It takes up almost all the memory so I can't watch videos or anything. Since the music is supposed to be "in the cloud" there does not seem to be any reason to have it local. I never listen to it on the i

  • Multi update region with 5 checkboxes - problem in updating

    Hi, I have a multi update region with more 5 checkboxes which 2 tables LO & SCLO. LO ID is the unique id for each row. 1st checkbox - If we select 1st checkbox, I am adding a record to SCLO with LO ID. 2nd Checkbox - yes/no attribute in SCLO table. 3