Change comm struct in InfoSource

Hi All,
I am having real trouble trying to enter change mode in an InfoSource.
I want to add an object to the communication structure but it is greyed out and cannot be changed.  I have also released all transports which had changes in them related to this info source.
What else could be locking changes to the comm structure?
Any help much appreciated.
Cheers,
Sean.

hi Sean
if that IS is not a Flexi update  so .. u U just go to the ZCUSTOMER infoobject and add the new Infoobject as Attribute or Nav attribute
Regards
AK

Similar Messages

  • Change comma and period in key figure presentation in BEx WAD reports

    Hi gurus
    We run our BEx WAD reports in the SAP portal. By default the thousands separator is period and the decimal separator is comma. How can I change this so the period becomes the decimal separator and the comma becomes the thousands separator?
    Kind regards
    Erik

    Hi Erik,
    you can change this by setting at user parameters.
    At system, at any screen (RSA1) -> menu SYSTEM- > USER PROFILE -> OWN DATA ->  Defaults Tab, here you can change.
    and Save.
    these will reflect in WAD report output.
    Best Regards.

  • Change source system in Infosource

    Hi
    I am working on BI7. I have one isse. For an infosource source system has been assigned to client 100. I would like to change it to 200. Pl let me know how to make this change.

    Hi
    I didn't get your question,how a infosource is assigned to source  system,your data source will be assigned to source system and your infosource and data sourece will be assigned to each other..
    delete the datasource from source system 100 and create a data source in 200 and assign it to your infosource(i am considering both 100 and 200 source systems are assigned linked to your BW system via RFC(SM59))..
    Hope it helps
    Thanks
    Teja

  • Changing comma naration to decimal naration

    Hi All,
    Can any body tell me that where I can convert comma to decimal to viewing in standard report.For example if I'm viewing the standard/variable price in material master accounting view by default it's appear like 196,08 but it should be like 196.08.
    Thanks in advance
    L.B.Yadav

    Change the Decimal Notation to X in SU01 & OY01 Trxn codes.
    Go to SU01 and Select USer Name and in Defaults tab there is a Option called Decimal notaion Just change it to X and Save.
    Regards,
    Ashok

  • Change comma to period

    Hi.
    I'm looking for a method to change all occurences of comma into period of a column.
    Its formatted number(18,4)
    I have tried:
    update table
    set column = replace (column, chr(44), chr(46)
    where column like chr(44)
    No luck
    Nicolai

    Hi Nicolai,
    If the column is of NUMBER datatype the comma or the period isn't really stored there.
    The NLS_ settings just controls how it default displayed when displayed as a string.
    If the column does containt numbers, only you should never change it into varchar2.
    On my system I have:
    SQL> select 'DATABASE' level_, parameter, value
      from nls_database_parameters
    where parameter in ('NLS_LANGUAGE', 'NLS_NUMERIC_CHARACTERS')
    union all
    select 'INSTANCE', parameter, value
      from nls_instance_parameters
    where parameter in ('NLS_LANGUAGE', 'NLS_NUMERIC_CHARACTERS')
    union all
    select 'SESSION', parameter, value
      from nls_session_parameters
    where parameter in ('NLS_LANGUAGE', 'NLS_NUMERIC_CHARACTERS')
    LEVEL_   PARAMETER                      VALUE                                  
    DATABASE NLS_LANGUAGE                   AMERICAN                               
    DATABASE NLS_NUMERIC_CHARACTERS         .,                                     
    INSTANCE NLS_LANGUAGE                   AMERICAN                               
    INSTANCE NLS_NUMERIC_CHARACTERS                                                
    SESSION  NLS_LANGUAGE                   DANISH                                 
    SESSION  NLS_NUMERIC_CHARACTERS         ,.                                     
    6 rows selected.So I get (Since the database and instance settings are written over at session level):
    SQL> select 1.2 from dual
           1.2
           1,2
    1 row selected.If I want to change it I can
    SQL> select to_char(1.2, '9.0') from dual
    TO_C
    1.2
    1 row selected.Or
    SQL> alter session set NLS_NUMERIC_CHARACTERS = '.,'
    Session altered.
    SQL> select 1.2 from dual
           1.2
           1.2
    1 row selected.Regards
    Peter

  • Kodo changes commit order in multithreaded scenario,resulting in DBdeadlock

    We are currently using KODO version 3.4.1 as indicated by kodo-jdo-runtime-3.4.1.jar and kodo-jdo-3.4.1.jar. This is what is currently happening to our application in a scenario where multiple threads are trying to access the same set of tables. It results in a Oracle DB deadlock for one of the threads transactions. If kodo commits all the DB transactions in the same order as we had set in a particular transaction for each thread,then this deadlock wont occur, but what I noticed is that KODO changes the order in which the commit happens on the tables. Any help will be appreciated.

    I have a simple example below which will illustrate actually what is happening which is resulting in a Oracle DB deadlock.
    There are more that 4-5 tables that are being updated before a commit can happen.
    Consider the following scenario
    kodoPersistenceManager.makePersistent(table 1);
    kodoPersistenceManager.makePersistent(table 2);
    kodoPersistenceManager.makePersistent(table 3);
    kodoPersistenceManager.makePersistent(table 4);
    kodoPersistenceManager.makePersistent(table 5);
    persistenceManager.close();
    where persistenceManager is an instance of KodoPersistenceManager and
    kodoPersistenceManager is also an instance of KodoPersistenceManager.
    When multiple threads are trying to do the same operation which involves the same 6 statements as above being called, based on SQL trace thrown out by kodo I realised that kodo changes the commit order to something as shown below.
    kodoPersistenceManager.makePersistent(table 2);
    kodoPersistenceManager.makePersistent(table 3);
    kodoPersistenceManager.makePersistent(table 1);
    kodoPersistenceManager.makePersistent(table 4);
    kodoPersistenceManager.makePersistent(table 5);
    persistenceManager.close();
    This results in a DB deadlock in the oracle database which rolls back the above transaction. There is a dependency that tables must be persisted in order table 1,table 2,table 3,table 4,table 5,table 6.
    Any idea how this can be avoided? Thanks in advanvce

  • Change comma with dot in writing measuremen​t file

    Hello,
    I'm using the write to measurement file vi for save some data. I don't manage to read the text file in Matlab, I guess is because the decimal separator is the comma.
    Is there a simple way in LabVIEW for set the decimal separator to be the dot instead of the comma? (in the writing to measurement file vi)
    now the data is like this 56,897 but I would like it in the format 56.897
    Thanks
    Solved!
    Go to Solution.

    It has been working fine inside LabVIEW, but when I make the .exe application and start recording it register the text file with the comma separator again. So I guess it was just a temporary setting of LabVIEW.
    Is there a way to have the dot separator also when I register the data file from the application .exe?
    I don't find a way to set it in the "Write to measurement file"..
    Regards

  • AP7 Pricing Userexit - what's comm struct / doc for fields to formula

    Hi Everyone,
    I need to define some attributes used in my Pricing Userexit / formula (TC=/n/sapcnd/ueass). My questionis is what's the field name (i.e. for Product, Qty) I need to pick/assign to the formula.  Do I need to do the same for Implementation attributes,? but no dropdown box for me to select, just enter the same name as formula field?
    Any communication structure or documentation for these attrubutes / fields?  Please advise.
    Thanks, Jin
    Thanks alot in advance, Jin
    Edited by: Jin Freda on Oct 31, 2008 9:55 PM

    I have to close it

  • Error while trying to Change an Infosource

    I get the following error while trying to change an Infosource. I am not able to get to the change screen and it displays the following message 'Infoobject MPVPOPR not available in the Active Version'.
    I did the following to try and debug the issue...but with no luck..
    1) I checked for the Infoobject MPVPOPR and did not find it anywhere (Metadata, Transport Connection, Infobjects)
    2) I am able to load the data using an infopackage into the ODS.
    3) Communication structure and all is Active...
    I just cannot get to the Change Screen for this Infosource and it displays the error 'Inobject MPVPOPR not available in the Active Version'.
    Please provide any Suggestions
    Thanks and Regards
    Andy

    Andy,
    For the confirmation whether your infosource contains MPVPOPR or not.
    Just goto RSA1 >  InfoObjects > search MPVPOPR > double click on found > there is an option "Where used" , just click and check whether your infoobject is present in the infosource or not.
    And let me know for the solution.
    Thanks
    Ramu

  • Infosource changes

    Hi Gurus
    I made some changes in info source in BW DEV with some infoobjects. unfortunately those fields are not there in data source . So removed those changes from info source.
    now when I have activated it again the routines written in original info source were deleted. so I wrote them again and deleted all the transport request generated for that infosource.
    So whenevr I will transport the infosource now , will it give me some problem? I deleted all the transport request as the modification were not correct and i didn't want to transport them.
    if i change some object and the request is generated then again i modify the object another transport request is poping up so can I delete the previous one or it will be overlapped?

    Eric/Sidhartha
    My problem is I made changes to infosource and deleted the changes .as I deleted the changes I have also deleted the request which was carrying those changes.
    so now the infosource is in its original state( As I have included the required routines etc which were deleted).
    So if i will make any change in the infosource tomorrow , then will it work fine? I am just worried about the transport I deleted . will it make some difference when i will transport the infosource again?

  • Change 7.0-InfoSource

    Hi,
    I'm looking for a ABAP-program to change a 7.0-InfoSource. I want to sort the infoobjects in my own direction - for excample by:
    - infoobject typ
    - datatype of the infoobjects
    - by description.
    I found
    - the class CL_RSKS_TRCS
    - the methods FACTORY, GET_INFO, IF_RSTRAN_TARGETGET_LIST, IF_RSO_TLOGO_MAINTAIN_INTCOPY_VERSION, IF_RSO_TLOGO_MAINTAINSET_OBJSTAT, IF_RSO_TLOGO_MAINTAIN_INTSAVE_INTERNAL, UPDATE_ACT and IF_RSO_TLOGO_MAINTAIN~ACTIVATE.
    - and the function module ENQUEUE_E_RSISOURCE to set a SAP lock.
    With the method IF_RSTRAN_TARGET~GET_LIST I get the list of the InfoObjects. Then I sort the internal table L_T_FIELD in my way - and change the field POSIT. And I think I can save it with UPDATE_ACT. But after the activation the InfoSouce is not in the new version.
    Can everybody helps me to write the correct ABAP?
    Sven
    * Lesen der Felder der InfoSource *
      CALL METHOD cl_rsks_trcs=>factory
        EXPORTING
          i_structure  = p_isour
        RECEIVING
          r_r_trcs     = l_trcs.
      CALL METHOD l_trcs->get_info
        EXPORTING
          i_objvers    = rs_c_objvers-new
        IMPORTING
          e_s_info     = l_s_info
          e_s_info_txt = l_s_info_txt.
      CALL METHOD l_trcs->if_rstran_target~get_list
        EXPORTING
          i_objvers  = rs_c_objvers-active
        IMPORTING
          e_t_field  = l_t_field
          e_t_segtxt = l_t_segtxt.
      IF NOT l_t_field[] IS INITIAL.
    * Felder neu durchnummerieren
          LOOP AT l_t_field ASSIGNING <l_s_fields>.
            MOVE-CORRESPONDING <l_s_fields> TO l_s_rsksfieldnew.
            l_s_rsksfieldnew-isource = p_isour.
            l_s_rsksfieldnew-objvers = 'M'.
            l_s_rsksfieldnew-keyflag = <l_s_fields>-is_key.
            l_s_rsksfieldnew-posit   = sy-tabix.
            APPEND l_s_rsksfieldnew TO l_t_field_new.
          ENDLOOP.
          CALL METHOD l_trcs->if_rso_tlogo_maintain~activate
            EXPORTING
              i_objvers             = rs_c_objvers-modified
              i_force_activation    = rs_c_true
              i_show_check_protocol = rs_c_true
            IMPORTING
              e_t_tablnm_cnv        = l_t_tablnm_cnv
              e_subrc               = l_subrc.

    hi Voodi,
    We created the InfoSource in BI 7.0. 
    SAP_ABA  level 0010
    SAP_BASIS level 0010
    PI_BASIS level 0010
    ST-PI level 0003
    SAP_BW level 0010
    BI_CONT level 0003
    Then what's the patch level are we using now?
    Thanks

  • How BBPUPDVD determines vendor master change in ECC?

    Hi Experts,
    How is the vendor master change in ECC captured and what is the strategy/check that the BBPUPDVD transaction OR vendor update report uses/does in ECC to pick up the updated vendor with qualified fields for transmission?
    Qualified fields -> Purchasing block, curr change, comm method change, etc.
    For e.g, if a vendor is blocked for a P.Org today and if we either execute BBPUPDVD OR vendor update job, so how does it determine the change in vendor master in ECC?
    Thanks!
    Regards,
    Karthik

    Hello Karthik,
    just to complete what wrote Konstantin, those change documents are determined in ECC using CHANGEDOCUMENT_READ function modul inside BBP_SCAN_VD function modul which is called by RFC from SRM (report BBP_VENDOR_SYNC).
    Regards.
    Laurent.

  • How to change an characteristic to an navigation attribute?

    Hello everyone!!
    Does anybody knows how to change a characteristic that is on a POS to an attribute navigation of another characteristic that is in the same POS without deactivating it?
    An infocube has the same POS characteristics. So, if I do this modification, the infocube will be automatically chaged? I think not, but I want to avoid manually changing almost everything.
    Thanks in advance!!
    Regards

    Hello Heidi
    Sorry if I took so long to answer.
    Unfortunately you will have do deactivate the POS and of course change all the infocubes, infosources, etc, that are involved with this change. If you deactivate your POS, all the CVC´s are eliminated, so it will be better if you backup all the data in your live cache in an backup infocube.
    When you change the characteristic to an navigation attribute and also change the infocube, the data in the infocube will adjust automatically. You will have to create the CVC´s again with the new "format". But in the infocube, it won´t be necessary.
    I hope it helps.
    Best Regards
    Angela

  • Calling a c# function with a ref parameter to a struct

    public struct TestStruct
    public bool Value;
    public class Functions
    void Flip(ref TestStruct testStruct)
    testStruct.Value = !testStruct.Value;
    I'm trying to call the from c++ like this
    TestStruct ^ testStruct = gcnew TestStruct();
    Functions ^ functions = gcnew Functions();
    functions->Flip(testStruct);
    This gives an compiler error saying "cannot convert parameter 1 from 'TestStruct ^' to 'TestStruct %'
    I know that this is the correct syntax if TestStruct was a class and not a struct. But i'm using a third party library so changing from struct to class is not an options.
    Anybody know how to make this call. 
    Found the answer:
    functions->Flip(*testStruct);
     

    Hi Grarup,
    I took a stab at getting this to run and compile and this is what I came up with.  Let me know if this helps at all.
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    namespace ConsoleApplication1
    class Program
    static void Main(string[] args)
    Console.WriteLine("\"True\" or \"False\"?");
    bool boolVal = bool.Parse(Console.ReadLine());
    Functions f = new Functions();
    TestStruct t = new TestStruct() { Value = boolVal };
    f.Flip(ref t);
    Console.WriteLine(string.Format("Flipped value = {0}: ", t.Value));
    Console.ReadLine();
    public struct TestStruct
    public bool Value;
    public class Functions
    public void Flip(ref TestStruct testStruct)
    testStruct.Value = !testStruct.Value;
    Best of luck.

  • Replace comma for semicolon in Dashboard prompts?

    Hi all,
    When multiple values are selected in Filters or Dashboard prompts, a semicolon is seen between multiple values, but a comma is applied in background (can be seen in Logical Query). Is it possible to change comma for any other symbol for example semicolon (;)? If yes, where does this change take place (what are the configuration files need to be changed) and how will BI Server response to this change?
    Thanks in advance.

    I don't think you can change that. Even if it is possible, report will give no results as the filter values are not separated with commas because the SQL query will carry that symbol.

Maybe you are looking for

  • Can I use a 21" iMac as an external monitor?

    I'm considering getting an iMac or Mac Mini so I can run Xcode. My budget is low, so I'm considering just getting a Mini and using it with an old VGA/DVI monitor. However, as the iMac includes a monitor, mouse, and keyboard, it's actually the same pr

  • How to include variable on block's query

    I have a block where I fetch data using Query with sub-querry on Query data source name. The problem is that I need to put a variable in a sub-query, but it returned error: ORA-01008 not all variables bound. I'm retrieving multiple records here. SELE

  • Kernal Panic

    My new iMac i7 has had it's first kernel panic. My girlfriend used the fast user-switch function by clicking on the username on the menu bar, logged into her account. She then opened Safari at which point the screen dimmed and a notice appeared stati

  • External speakers no longer produce sound

    SPeakers worked fine when I first hooked up system 10/3/14 but yesterday no sound at all. Also control panela does not populate

  • YouTube Menu Bar Remains Visible In Fullscreen

    Very recently, whenever I watch a YouTube video in fullscreen on safari, the menu bar doesn't disappear like it normally did. I updated to Yosemite last week, and initially this wasn't a problem, so I'm ruling out the OS for now. Therefore I can only