Problem in Controlling Area created with 3 characters long

Hi:
I have a "small" problem, perhaps you could help me.
We have created a new Controlling Area, but it is created only with 3 characters, instead of four. We have been working with no problem until me have to create a Purchase Order with some profiles. They cannot create any PO. If we go to SU53 transaction we got the message in object K_PCA. There is a blank in string Responsibility Area, and the system cannot recognize that. This string concatenate CO Area code (and a blank) and Profit Center, but keeps a blank between them.
Do you know how to solve it? We cannot delete CO Area because we have many data created in it.
Thanks in advance.
Best regards.

Hi:
I have to try it, but it does not work. In SU53 I have this message:
The following authorization object was checked:
=================
Objeto K_PCA      EC-PCA: Responsibility Area, Profit Centrer
Área de responsabilidad CO-OM
           PCGLAB0101         
Available authorizations for the object in the master record:                                                                               
Object   K_PCA      EC-PCA: Responsibility Area, Profit Center 
Área de responsabilidad CO-OM    
          PCGLA B0101
============
There is a blank PCGLA B0101, and not in PCGLAB0101.
I need to delete it in master record or add it in authorization object.
Does anybody how I can change it?
Thanks in advance.
Regards.

Similar Messages

  • Company code problem in Controlling area Tcodes

    Hi All,
    We are following role based authorisation for creating roles for FI/CO module and we are seggregating roles as per the company codes.We are assigning Tcodes like KO01,KO02,KO03(Internal order) and KS01,KS02,KS03(cost center) which are connected with Controlling area in one role.We have 5 company codes and we are trying to create 5 roles with the above Tcodes for 5 different company codes.
    The problem we encountered is when we entered the Tcodes in the role, and we get to the 'Change authrisation data' option in the 'Authorisation' tab in PFCG, the system is not prompting for the Company code organisational level. Hence in this case, a user will be able to access the above mentined Tcodes for all the company codes. But we need to create a role in such a way that a user who is assigned this role is only able to access Tcode like KO01,02,03 etc for his company code only and should not be authorized to access these Tcodes for remaining 4 company codes.
    Can anybody please help me with a way to restrict these Tcodes to a particular company code in our scenario.
    Thanks and Regards,
    Abdul Khyoom A.

    Hi Ashok,
    Thanks for the response.
    Here in my case, when I insert the Tcodes related to conrolling like(KO01,KO02,KO03 etc) in a role, then I dont find any authorization objects(bukrs) which is related to the company code in the authorization genaration area in PFCG. So there is no way I can maintain values in them.
    Please suggest any alternate solution.
    Thanks and Regards,
    Abdul Khyoom A

  • Problem in control file created through  LKM File to Oracle (SQLLDR)

    I have a fixed file ABC.txt & it has three fields/columns of length ,C1:= 4, C2 :=10 & C3:=6 & I have to use LKM File to Oracle (SQLLDR) to load data into oracle target table.
    I recieved the following error at step CALL SQLLDR in the KM
    "org.apache.bsf.BSFException: exception from Jython: Traceback (innermost last):
    File "<string>", line 3, in ?"
    Then I checked the control file log & found that the position start value & end value was not defined in control file which is created automatically by LKM
    SQL*Loader-350: Syntax error at line 14.
    Expecting positive integer, found ":".
         C1_C1     POSITION(:), "
    The control file created by ODI is & it's missing the position value.
    OPTIONS (
         SKIP=0,
         ERRORS=0,
         DIRECT=FALSE
    LOAD DATA
    INFILE "C:/SNAPON/EOL.txt"
    BADFILE "C:/SNAPON/ABC.bad"
    DISCARDFILE "C:/SNAPON/ABC.dsc"
    DISCARDMAX 1
    INTO TABLE SNAPON_W.C$_0ABC
         C1_C1     POSITION(:),
         C2_C2     POSITION(:),
         C3_C3     POSITION(:)
    Does any one know why the position value is not created in the control file .
    Edited by: neeraj_singh on Mar 3, 2011 1:25 AM

    Hi Neeraj,
    It is happening because you have not selected the mapping execution area as STAGUING .
    Open your interface , click on each and every column of your target datastore , make sure the "Execute On" is marked on "Staging Area".
    Then run your interface.
    Thanks,
    Sutirtha

  • Residual items are created with the current exchange rate

    Hello,
    When a residual item is created due to a short payment for an invoice, the residual item is created with the exchange rate that is in effect on that day.  Is it possible to assign the exchange rate equal to the rate that existed on the original invoice.
    Thanks in advance for you ideas.
    Karla

    Hi,
    You can use transaction FB05 for doing the clearing there you would be able to input the exchange rate you need for clearing the AP/AR/GL items.
    But the exchange rate at the time of making/receiving the payment or at the time of clearing is what should be applied.
    Regards
    K.R

  • Why the objects of sysman are created with the data type varchar2 CHAR

    Hi,
    I have an environment with the following properties,
    NLS_LENGTH_SEMANTICS BYTE
    NLS_CHARACTERSET AL32UTF8
    After I have created the db control repository, I find the data type of the sysman's objects are
    VARCHAR2 (64 CHAR)
    Why?

    NLS_LENGTH_SEMANTICS does not apply to tables in SYS and SYSTEM. The data dictionary always uses byte semantics.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/initparams127.htm

  • Cant get list of files from a folder (even though the folder and files are created with the same app)

    Ok so each character rolled with my app gets saved as an html file in a folder i create on the sdcard called RpgApp
    the code to do this is 
    private async Task saveToHtmlCharacter(string name)
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault(); //Windows.Storage.ApplicationData.Current.LocalFolder;
    var dataFolder = await sdcard.CreateFolderAsync("RpgApp",
    CreationCollisionOption.OpenIfExists);
    var file = await dataFolder.CreateFileAsync(name+".html",
    CreationCollisionOption.ReplaceExisting);
    using (StreamWriter writer = new StreamWriter(await file.OpenStreamForWriteAsync()))
    writer.WriteLine("<html><head><title>Character File for " + z.charNameFirst + " " + z.charNameSecond + "</title></head><body>");
    //trimed for the post
    now this as i say works perfectly and i can confirm that the files show up in the "RpgApp"folder
    now the next step is to have the app read the names of each of those html files and create a seperate button for each one named for the filename and with the filename as content (later i will link them up to load the html file they are named for in a webbrowser
    panal)
    here is the code that *should* do that
    private async Task readFiles()
    z.test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    IReadOnlyList<StorageFile> fileList = await folder.GetFilesAsync();
    //z.test.Add("dummy");
    foreach (StorageFile file in fileList)
    z.test.Add(file.Name);
    public async void buttonTest()
    await readFiles();
    CoreDispatcher dispatcher = CoreWindow.GetForCurrentThread().Dispatcher;
    await dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
    foreach (string name in z.test)
    Button button1 = new Button();
    button1.Height = 75;
    button1.Content = name;
    button1.Name = name;
    testStackPanal.Children.Add(button1);
    now i say should as what i get is an error of "A first chance exception of type 'System.UnauthorizedAccessException' occurred in mscorlib.ni.dll" (2 of them in fact one after another)
    more detailed error is at http://pastebin.com/3hBaZLQ9
    now i went through checking line after line to find the error and line that causes it is:
    StorageFolder folder = (await externalDevices.GetFolderAsync("RpgApp"));
    in the readFiles method
    i checked to make sure the case is right etc and its spot on, that IS the folder name, and remember my app creates that folder and creates the files that are inside that folder (and only files my app creates are in that folder) so it should have access
    im 100% stuck its taken me all day to get the files to save and now i cant get them to list correctly
    I have tested the button creation function with fake list data and that worked fine, as i say the error is when i tell it to look at the folder it created
    all help most greatfully recieved

    this was actually solved for me on another forum thread 
    async Task<bool> continueToReadAllFiles(StorageFolder folder)
    if (folder == null)
    return false;
    if (folder.Name.Equals("RpgApp", StringComparison.CurrentCultureIgnoreCase))
    var files = await folder.GetFilesAsync();
    foreach (var file in files)
    test.Add(file.Name);
    return false;
    var folders = await folder.GetFoldersAsync();
    foreach (var child in folders)
    if (!await continueToReadAllFiles(child))
    return false;
    return true;
    public async void buttonTest()
    test.Clear();
    StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
    var folders = await externalDevices.GetFoldersAsync();
    foreach (var folder in folders)
    if (!await continueToReadAllFiles(folder))
    break;
    //.... commented out
    ...now i say solved this is more a workaround...but it works.
    I would love to know why we cant just scan the RpgApp folder instead of having to scan the whole dc card and disregard all thats not in the RpgApp folder

  • Problems deploying ear file created with ant build script

    Hi All,
    I'm using Jdeveloper 11G and Weblogic 10.3. When I build my application and run it within Jdeveloper, it works fine. However, we have a requirement to run ANT build script and create a deployable .ear file that can be manually deployed to any Weblogic Server.
    I created my ant build script and it compiles/builds fine - the .ear file looks good. However, when I attempt to deploy it, it fails with
    javax.faces.webapp.FacesServlet for servlet Faces Servlet could not be loaded because the requested class was not found in the classpath .
    java.lang.ClassNotFoundException: javax.faces.webapp.FacesServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:551)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         Truncated. see log file for complete stacktrace
    >
    <Nov 2, 2011 2:43:43 PM MDT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1320266599219' for task '3'. Error is: 'weblogic.application.ModuleException: [HTTP:101216]Servlet: "Faces Servlet" failed to preload on startup in Web application: "###"
    I am not sure how to tell weblogic where to find the classes needed. I have a pretty huge classpath used when compiling - should I be putting the classpath in the manifest (?) - I don't think I should need to include the .jar files manually in the .ear file - since all the libraries should already be available in weblogic - or is that a misconception?
    Please help!!

    I answered my own question -
    I had to manually add the following to the WEB-INF/lib to get the error to go away:
    ${ORACLE_HOME}/modules/javax.jsf_1.1.0.0_1-2.jar and
    ${ORACLE_HOME}/oracle_common/modules/oracle.jsf_1.2.9/glassfish.jsf_1.0.0.0_1-2-15.jar and
    ${ORACLE_HOME}/oracle_common/modules/oracle.jsf_1.2.9/glassfish.jstl_1.2.0.1.jar
    that solved my problem. However, I think it'd be great if I could somehow just specify (in the weblogic-application.xml maybe?) that my application is using the above modules without having to copy the jar files into my WEB-INF/lib - any suggestions?
    Thanks

  • Problems Viewing .pdf Template Created with Adobe

    I created a .pdf template using Adobe LiveCycle Designer. After I upload this template, I can not view the report. Can I only create templates using the BI Publisher plugin for MS Word?

    That is hardly a solution, the whole purpose of upgrading to Adobe Reader X is to avoid potential threats.  There is obviously a problem with Adobe Reader X and veiwing certain documents that needs to be addressed and the way to address it should not reside with "Use Adobe 9 and Adobe 10 and pick whatever version works for your document"

  • Stat500 files are created with large size

    Hi,
    in prd system (hp-ux,oracle 9.1, sap 4.7) .
    /usr/sap/<SID>/DVEBMGS00/data   file system getting full.
    system is creating stat500, stat501, stat502, stat503 etc.....
    with large size......please let me know what is this file use.
    why it is generating . how to control it.
    Regards,
    swathi.

    Hi Swathi,
    Note 6833 will address your issue.
    regards,
    VInodh.

  • Problem under Mac OS X with very long commands

    Hi,
    in one app. I have very long commands, this make problems under mac os x (sdk 1.4.2)
    it works under Lin and Win, only under Mac OS X it wont work like it shoud.
    is there a possibility of arise this "max length" ?
    sample:
    http://matrix.phileon.de/java_mac.html
    thx!
    phileon

    It seems as he didn't like the last entry of the classpathhuh, i always thought of MacOS X as a she..

  • Problem closing an ActiveX created with the bridge and used in a scada.

    Hi all,
    I cretaed an ActiveX (using the bridge) to be used in a scada software. I inserted the activex in a panel and it opens and work properly when the panel is open. The problem is that when I close the panel, the scada doesnt free the memory. Is it supposed to do free it or is it my bussines? Should or can I do it by calling any method, function? Any suggestion?
    Thanks!
    Bobby

    I guess that on exit scada does not release resources. Try the tool at
    http://www.simtel.net/product.php[id]60701[sekid]0[SiteID]simtel.net

  • Problem removing a partition created with OSX Lion

    Hello,
    I have two partitions on my MacbookPro. The first contains Lion the second SL. I am removing Lion (battery life is halfed as the OS is much more processor intensive). The SL partition boots and works fine and has the latest version of all OS files.
    My goal is to remove the Lion partition (and the rescue partiton).
    I have tried:
    1. From the disk utility in the SL partition: Unmounting partition 1. and deleting it. It tells me that it is an error and it is unable to delete this partition.
    2. From the disk utility in the SL partition: Erasing all data on the partition and formatting with the journaling option. Same error as 1.
    3. Booting into the Lion rescue partition and running Disk utility from there (version 12.0). Same error as 1.
    Does anyone know how I can delete this partition, delete the rescue disk partition and merge the two?
    Many thanks for any and all help!
    James

    Yep, just install iDVD (plus sounds and jingles) and iWeb if you want it (but note that iWeb apparently won't work if you upgrade to Mountain Lion).
    Then use Software Update to get any late iDVD updates.

  • No Communication Idocs are creating with the tcode BD21 for ARTMAS

    Hi,
    I am executing BD21 for the message type ARTMAS to trigger the Article master change pointer idocs.  Before executing it I have changed the Article message using the t.code MM42.  After executing the BD21 it is only creating Master Idoc but not Communication Idocs.  If any one have idea on this please help me.
    Regards,
    Vasu.

    Hi Jack,
    change pointer configuration is ok for the message type ARTMAS.  Also the MAKT-MAKTX is also there in the tcode BD52 for the message type ARTMAS.  Once I change the material through MM42, I am able to see the entry in table BDCP2 but not in table BDCPS. I am able to trigger the idocs through BD10 successfully.
    Regards,
    Vasu.

  • Different Company Code with same fiscal year variant and controlling area

    Hi
    I have three company codes in three three different countries: 1000 (ABC India), 2000 (ABC Inc, US), 3000 (ABC Dubai)
    But our consultants have assigned only one fiscal year variant V3 and one controlling area 1000 (with fiscal year variant v3)
    So what problem one may face because of above settings and what is ideal setting for such scenario
    Edited by: Meenu_ND on Oct 18, 2010 2:35 PM

    I have one leading ledger and two non leading ledger (i.e Group ledger and IFRS ledger). But Fiscal year variant is not mentioned for both the non leading ledgers.
    So i think it will take V3 only for non leading ledgers too.
    And in your solution, since India is main company, fiscal year variant for leading ledger needs to be V3 only.
    What if i keep non leading ledger as fiscal year from Jan to Dec. Then it will be:
    Leading Ledger: April to March
    Non leading ledger: Jan to Dec
    In above case, do i need to create separate controlling area ?
    Edited by: Meenu_ND on Oct 19, 2010 10:43 AM

  • Trace() not working with embedded SWFs created with Flash Builder

    I have just migrated to Flash Builder 4.5 with the 4.5.1 SDK.
    I have an application that loads a lot of child SWFs into it - some of which are created with Flash, some are created with Flash Builder.
    I am noticing now that my trace() statements that are called from within SWFs produced with Flash Builder that are loading as child SWFs into my main SWF are NOT appearing.  However, trace() statements called from within SWFs produced with Flash that are loading as child SWFs into my main SWF ARE appearing.
    This is an extremely major problem and has short-circuited my debugging/development.
    Any recommendations, workarounds, or suggestions?

    If the child SWFs were created by performing an "Export Release Build", then trace() statements would be omitted.
    You can control this by setting the -omit-trace-statements compiler argument (in Project properties -> Flex Compiler -> Additional Compiler Arguments).
    -Anirudh

Maybe you are looking for