Portion creation - Internal error: application log is not customized (IU15/)

When we try to create a Portion (E41B) we are getting a message "Internal error: application log is not customized (IU15/)" and a Portion can not be created.
Does anyone have idea what may be the reason for such message? How to solve the problem and create a Portion?
In Business Object Repository for SAP Utilities we can see object type "Portion" as well as "Application log IS-U" (ISUIDOCLOG).
Since these are standard object types it seem to us that application log should be written by Event Viewer (the same as System and Security log). Are we missing something out?
P.S. A word about our system:
SAP ERP 6.0 (IDES version) EHP7, OS: Windows server 2012, DB: Oracle (release 11.2.0.3.0) and switch for IS-U is recently activated.
Postal Regional Structure is successfully imported, Political structure defined, Country specific settings customized, Parameter record defined.
Regards,
Julija

Problem solved. Note 400322 was very helpful. We defined object IU15 and a appropriate sub objects, after that Portion was created successfully.

Similar Messages

  • ERROR: ORA-01041: internal error. hostdef extension does not exist

    Hi, I got the following error message when I tried to insert a row in table TBL_ORDER.
    ERROR:
    ORA-01041: internal error. hostdef extension does not exist
    INSERT into TBL_ORDER
    ERROR at line 1:
    ORA-03113: end-of-file on communication channel
    We have Oracle version 8.1.5.o.2 and Linux version 6.1.
    Following are the tables, triggers, loadjava definition and source programs:
    TBL_ORDER
    1 ORDER_MEMBER_FIRM_ID VARCHAR2(4)
    2 ORDER_CLIENT_ID VARCHAR2(4)
    3 ORDER_BRANCH VARCHAR2(3)
    4 ORDER_SEQUENCE VARCHAR2(4)
    5 ORDER_EXCHANGE_ID VARCHAR2(3)
    6 ORDER_EXCHANGE_SEQUENCE VARCHAR2(7)
    7 ORDER_CREATE_DATE DATE
    8 ORDER_TYPE VARCHAR2(2)
    9 ORDER_STATUS VARCHAR2(1)
    10 ORDER_SYMBOL VARCHAR2(5)
    11 ORDER_SUFFIX VARCHAR2(14)
    12 ORDER_SIDE VARCHAR2(5)
    13 ORDER_PRICE VARCHAR2(20)
    14 ORDER_STOP_PRICE VARCHAR2(20)
    15 ORDER_PRICE_QUAL VARCHAR2(10)
    16 ORDER_QUANTITY VARCHAR2(6)
    17 ORDER_TIF VARCHAR2(4)
    18 ORDER_AON VARCHAR2(4)
    19 ORDER_DNR VARCHAR2(4)
    20 ORDER_CASH_NEXT_DAY VARCHAR2(4)
    21 ORDER_SELLER VARCHAR2(4)
    22 ORDER_ACCOUNT_TYPE VARCHAR2(4)
    23 ORDER_OS_TS VARCHAR2(4)
    24 ORDER_BOOTH_ID VARCHAR2(4)
    TBL_CMSOUT
    1 CMSOUT_MEMBER_FIRM_ID VARCHAR2(4)
    2 CMSOUT_CLIENT_ID VARCHAR2(4)
    3 CMSOUT_DATA VARCHAR2(120)
    trg_order.sql
    create or replace procedure OrderToCmsoutProc(cms_member_firm_id VARCHAR2,
    cms_client_id VARCHAR2,
    cms_branch VARCHAR2,
    cms_sequence VARCHAR2,
    cms_side VARCHAR2,
    cms_quantity VARCHAR2,
    cms_symbol VARCHAR2,
    cms_price VARCHAR2,
    cms_tif VARCHAR2,
    cms_type VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'OrderToCmsout.test(java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_order
    after insert on TBL_ORDER
    for each row
    CALL OrderToCmsoutProc (:new.order_member_firm_id,
    :new.order_client_id,
    :new.order_branch,
    :new.order_sequence,
    :new.order_side,
    :new.order_quantity,
    :new.order_symbol,
    :new.order_price,
    :new.order_tif,
    :new.order_type)
    commit;
    show errors;
    exit;
    trg_cmsout.sql
    create or replace procedure PackCmsoutSidProc(pck_member_firm_id VARCHAR2,
    pck_client_id VARCHAR2,
    pck_data VARCHAR2)
    AUTHID CURRENT_USER
    as language java
    name 'PackCmsoutSid.test(java.lang.String,
    java.lang.String,
    java.lang.String)';
    show errors;
    create or replace trigger trg_cmsout
    after insert on TBL_CMSOUT
    for each row
    CALL PackCmsoutSidProc (:new.cmsout_member_firm_id,
    :new.cmsout_client_id,
    :new.cmsout_data)
    commit;
    show errors;
    exit;
    loadORDERjava
    loadjava -r -f -o -user userid/pswd OrderToCmsout.java
    loadCMSOUTjava
    loadjava -r -f -o -user userid/pswd PackCmsoutSid.java
    OrderToCmsout.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class OrderToCmsout {
    public static void main(String args[]) {
    try {
    test (args[0],args[1],args[2],args[3],args[4],
    args[5],args[6],args[7],args[8],args[9]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test ( String parm_member_firm_id,
    String parm_client_id,
    String parm_branch,
    String parm_sequence,
    String parm_side,
    String parm_quantity,
    String parm_symbol,
    String parm_price,
    String parm_tif,
    String parm_type)
    throws SQLException
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt2;
    try {
    stmt2= conn.prepareStatement
    ("INSERT INTO TBL_CMSOUT VALUES (?, ?, ?)");
    String datastring = parm_member_firm_id + "\\~" +
    parm_branch + " " +
    parm_sequence + "\\~" + "\\~" +
    parm_side + "\\~" +
    parm_quantity + " " +
    parm_symbol + " " +
    parm_price + "\\~" +
    parm_tif + " " +
    parm_type + "\\~";
    stmt2.setString(1, parm_member_firm_id);
    stmt2.setString(2, parm_client_id);
    stmt2.setString(3, datastring);
    stmt2.executeUpdate();
    stmt2.close();
    return;
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    PackCmsoutSid.java
    import java.sql.*;
    import java.lang.*;
    import java.io.*;
    import oracle.jdbc.driver.*;
    public class PackCmsoutSid {
    public static void main(String args[]) {
    try { test(args[0],args[1],args[2]);
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } // end main
    public static void test( String parm_member_firm_id,
    String parm_client_id,
    String parm_data)
    throws SQLException
    try {
    Connection conn = new OracleDriver().defaultConnection();
    PreparedStatement stmt1 = conn.prepareStatement
    ("SELECT sid_session_id " +
    "FROM tbl_sid " +
    "WHERE sid_member_firm_id = ? and " +
    "sid_client_id = ?");
    stmt1.setString(1, parm_member_firm_id);
    stmt1.setString(2, parm_client_id);
    ResultSet rs1 = stmt1.executeQuery();
    while (rs1.next ()) {
    String session_id_found = rs1.getString
    ("sid_session_id");
    CallableStatement pack_pipe = conn.prepareCall
    ("{call DBMS_PIPE.PACK_MESSAGE(?)}");
    pack_pipe.setString(1, parm_data);
    pack_pipe.execute();
    CallableStatement send_pipe = conn.prepareCall
    ("{? = call DBMS_PIPE.SEND_MESSAGE(?)}");
    send_pipe.registerOutParameter
    (1, java.sql.Types.INTEGER);
    send_pipe.setString (2, session_id_found);
    send_pipe.execute();
    } //while
    stmt1.close();
    conn.close();
    } //try
    catch (Exception e) {
    System.err.println(e);
    } //catch
    } //test
    } //PackCmsoutSid
    Thanks in advance for your help
    Vinicio

    you should post this question on the Application Server forum.
    --Olaf                                                                                                                                                                                       

  • When I hit the import button for a new project I get an internal error message stating: Could not find namespace: AgCreativeCloudUtils

    When I hit the import button for a new project I get an internal error message stating: Could not find namespace: AgCreativeCloudUtils
    Can someone help me with this issue please? Tks

    https://forums.adobe.com/search.jspa?q=Could+not+find+namespace%3A+AgCreativeCloudUtils&pl ace=%2Fplaces%2F1383621&depth=…

  • Calling error/application logs in CRM inbound proxy

    Hi All,
    In inbound proxy of CRM, I have to call Error/Application logs (for eg:SLG1) whenever an integration process throws some error. Has anyone worked on this kind of scenario to call different application logs in CRM or R3 side inbound proxy.
    If so, please give some ideas on this.
    Thanks
    Deno

    Hi Deno,
    did you have a look at my blog in which I describe it ?
    /people/michal.krawczyk2/blog/2006/09/20/xi-abap-mapping-logs--more-standard-better-visibility
    Regards,
    michal

  • IDOC - process code with error "Application Object Type not planned'

    Hi all,
    I am doing an inbound idoc.... in TCODE we42, i trying to put function module which i created, attached to the process code.
    However, when i put my function module ZIDOC_INBOUND to the process code... it comes out error, 'Application Object Type not planned.'
    Why is this so?
    Please advice...
    Thanks and regards...
    William Wilstroth

    HI all,
    I had solved this problem. I should have gone to we57 to tie the function module.
    thanks.
    William Wilstroth

  • Internal error: Logical system  could not be closed! - aRFC

    Hi,
    We have a case where we must write data to the SAP system, - aRFC from dynpro. When when we execute the writing request we get the following error in return:
    Internal error: Logical system  could not be closed!
    Does any one know what this mean? and how to solve this error?
    Thx in advance.

    hi
      What is the RFC that you are trying to write data to and what is the structure u are passing data to.
    If you can elaborate on that we could be able to help you out.
    regards
    Ravi

  • Nokia n900 "internal error application conversatio...

    nokia n900 '' internal error application conversation closed
    this short of error showing everywhere.......
    where i just try to try typing like in mail
    internal error application email closed
    internal error application chat closed
    internal error application internet browser closed
    pls help me out........ i need this solution with out flashing my phone........
    any command in x-terminal
    nokia n900 '' internal error application conversation closed
    this short of error showing everywhere.......
    where i just try to try typing like in mail
    internal error application email closedinternal error application chat closedinternal error application internet browser closed
    pls help me out........ i need this solution with out flashing my phone........
    any command in x-terminal

    do you have sccu installed ?
    i used to have this proble, a reflash fixed it, but things you can do now :
    unsitall all teh aps you got from the devels, turn of your phone, take of battery for 30 sec, than restart .
    do you have titan's power kernel installed ? if yes what version ?
    Reality is wrong....dreams are for real... 2pac .
    don't forget to hit that green kudos

  • EREC: Internal Error while logging in using Registered External Candidate

    Hi,
    We are on ECC 6.0 EHP 5 & ERECRUIT 605 (0005) and EP 7.0 SP22.
    I'm on the final stages of config on Production system for eRec applications, all works fine and ready for LIVE except the below functionality:
    1. i've registered 2 uses as external candidates using the external url
    2. when trying to login with that user, it throws internal error - this kind of issue didn't happen in DEV/QAS.
    when i've checked the SLG1 below came:
    Serious error; see log
    The error occurred in program CL_HRRCF_ABSTRACT_CONTROLLER==CM001 line 56
    The user is not assigned a candidate or an employee
    The error occurred in program CL_HRRCF_START_A==============CM007 line 19
    The user is not assigned a candidate or an employee - this message didn't make me any sense as its the external candidate who is logging into the system.
    Then i've checked that user by running the HRALXSYNC >User: 455DC84C411 > F8. This gave me below errors:
    Determination of connections to object 'CP' of 'US' '455DC84C411' failed
    User 455DC84C411 is not integrated in the organizational model
    This kind of issue didn't repeated while I was configuring the DEV and QAS system, why i'm getting this only in PRD?
    Awaiting for valuable inputs.
    Thanks,
    MS

    Hi,
    I do not really understand what you expect from report HRALXSYNC. This report has nothing to do with the external candidates.
    A common issue when things on the production system are not working like on dev / qs are insufficient authorization tests. So you should check the authorization trace for the sevice user wich is defined in the external alias for the external candidate registration ICF service. Furthermore checking the NA, CP, BP, US objects and the relations between them can help analyse authorization problems on the object creation.
    Rgds.
    Roman

  • Imessage internal error on start up/not responding - mac

    Hi,
    Unfortunately I'm having another problem, this time with the imessage application.
    When I open the app, the imessage window does not open up. When I double click the application it says "application not responding" I then force quit. One forcing the quit I try reopening the app, the same thing happens again!
    I changed the preferences for the app to open at login, so when I shut it down and reopen it 'has to' open. But this does not happen and a message appears 'internal error' or something like that and then it quits on me and suggests I reopen the app. I did reopen it the same issue still occurs.
    The only time the app opens is when i get a notification of a message from the notification centre, I click to open. It only opens up normally after like 15 minutes of waiting and works fine. But when i quit the app the same original problem occurs.
    Looking forward to any suggesting
    Thanks
    Katherine

    Please read this whole message before doing anything.
    Back up all data.
    Quit Messages if it’s running.
    Step 1
    Hold down the option key and select
    Go ▹ Library
    from the Finder menu bar. Move the following items from the Library folder to the Trash (either may not exist):
    Caches/com.apple.Messages
    Caches/com.apple.imfoundation.IMRemoteURLConnectionAgent
    Leave the Library folder open. Log out and log back in. Try Messages again. If it works now, stop here. Close the Library folder.
    Step 2
    If you still have problems, quit Messages again. Go back to the Finder and move the following item from the open Library folder to the Desktop:
    Messages
    Note: you are not moving the Messages application. You’re moving a folder named “Messages.”
    Test. If Messages now works, delete the Messages folder on the Desktop. Otherwise, quit Messages again. Put back the folder you moved, overwriting the newer one that may have been created in its place, and continue.
    Step 3
    In the Preferences subfolder, there may be several files having names that begin with any of the following strings:
    com.apple.iChat
    com.apple.imdsmsrecordstore
    com.apple.imessage
    com.apple.imservice
    Move them all to the Desktop. There may also be a file with the name "com.apple.imagent.plist". Move that to the Trash.
    Also in the Preferences folder, there's a subfolder named "ByHost". Open it and do the same thing.
    Log out and log back in. Test again. This time Messages should perform normally, but your settings will be lost. You may be able to put back some of the files you moved to the Desktop in this step. Relaunch and test after each one. Eventually you should find one or more that causes Messages to malfunction. Delete those files and recreate whatever settings they contained.
    If the issue is still not resolved, quit Messages again and put all the items you moved to the Desktop back where they were. You don’t need to replace the items you moved to the Trash. Stop here and post again.
    If you later decide that you don’t like the results of steps 2 and 3, you can undo them completely by quitting Messages and restoring the items you deleted in those steps from your backup.

  • Standby DB creation internal error - Where do I see the detail ???

    Hi all,
    I have Win2003 Server runnning Oracle 10.2.0.3. I have been trying to use Grid Control to create a standby database and have been running into some problems during the http transfer of the compressed data files. To get around this I decided to first use Grid Control to 'Create a primary database backup only'. I then ftp these manually to the standby server. (carefull about ascii and binary).
    Then when creating the standby database I use 'Use a backup from a previous standby database creation' and give it the directory I ftped the files to.
    During Step 3-4, I get this error. Where can I got on the host or the standby to look at a log file to see what the real error is? THANKS !!!
    Error
    Examine and correct the following error(s), then retry the operation.
    Remote Operation Error - Internal error occured

    To get around this I decided to first
    use Grid Control to 'Create a primary database backup
    only'. I then ftp these manually to the standby
    server. (carefull about ascii and binary).
    Then when creating the standby database I use 'Use a
    backup from a previous standby database creation' and
    give it the directory I ftped the files to.
    But that is bnot a 'Use a backup from a previous standby database creation' . That is a primary database backup.
    Check in the emagent.log and emoms.log under ORACLE_HOME\sysman\log

  • Internal error: The parameter is not valid When Trying to Create an Offline Cube

    Hello,
    Can someone Please help me Understand the error which am getting while Creating an offline cube?
    My script is somewhat like this
    CREATE global CUBE [ABCoffline]
    Storage 'C:\Test\Testing\abc.cub'
    FROM [abc]
    MEASURE  [abc].[A],
    MEASURE [abc].[B],
    MEASURE [abc].[C],
    MEASURE  [abc].[D],  
    DIMENSION [abc].[D1],
    DIMENSION [abc].[D2]
    If I remove the measure D am able to create cube.However if I include the measure am not able to and getting the error
    Adding More information. My relationship between the dimensions and fact goes like this
    can someone please advise!!

    Hi Chris,
    According to your description, the cube works fine, you can connect to it in client application. The only issue is that counter the error when create a local cube based on it, right?
    In your scenario, which version of SQL Server are you using? Only with the dimple error message, it's hard to analyze this issue. In order to narrow down the issue, please apply the latest services and cumulative updates based on your SQL Server version.
    You can troubleshoot this issue by using the Windows Event logs and msmdsrv.log.
    You can access Windows Event logs via "Administrative Tools" --> "Event Viewer".  SSAS error messages will appear in the application log.
    The msmdsrv.log file for the SSAS instance that can be found in \log folder of the instance. (C:\Program Files\Microsoft SQL Server\MSAS10.MSSQLSERVER\OLAP\Log)
    Here is a blog about data collection for troubleshooting Analysis Services issues, please see:
    Data collection for troubleshooting Analysis Services issues
    Regards,
    Charlie Liao
    TechNet Community Support

  • ERROR "Application (vod) is not defined." when creating new vhosts

    I'm testing FMS 4.5 using the developer edition before upgrading our FMS 3.5 servers to 4.5 but for some reason creating new vhosts doesn't seem to work.
    I'm following the exact same steps I would take using v3.5 but 4.5 gives this error:
    Sep 29 03:34:24 eventstreaming Javascript[31564]: Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, vhost1.somedomain.com) : Application (vod) is not defined.
    Here are the steps I've taken:
    Made a copy of folder   _defaultVHost_/   named   vhost1.somedomain.com/     ( inside conf/_defaultRoot_ )
    Made an exact copy of the default FMS4.5 applications/  folder  at  /home/vhost1/public_html/applications
    Edited  vhost1.somedomain.com/vhost.xml and changed
    <AppsDir>${VHOST.APPSDIR}</AppsDir>
    TO
    <AppsDir>/home/vhost1/public_html/applications</AppsDir>
    Edited /home/vhost1/public_html/applications/vod/Application.xml and changed the path to the media files. i.e.
    <Streams>/;${VOD_COMMON_DIR}</Streams>
    <Streams>/;${VOD_DIR}</Streams>
    TO
    <Streams>/;${VOD_COMMON_DIR}</Streams>
    <Streams>/;/home/vhost1/public_html/applications/vod/media</Streams>
    Restarted FMS
    The VOD application in the default FMS applications folder works fine but the one for the new vhost doesn't. When I try to connect to rtmp://vhost1.somedomain.com/vod/media/sample.flv I get the error
    Sep 29 03:34:24 eventstreaming Javascript[31564]: Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, vhost1.somedomain.com) : Application (vod) is not defined.
    No other errors are reported in the logs when I strart FMS. Why is the VOD application not working for new vhosts? Either I'm missing something obvious or the developer edition is restricted to one vhost perhaps?

    I tried same scenario at my end and its working for me. Probably there is something wrong which you are doing. For developer edition you should be able to have 3 vhosts.
    Why are you using URI like this: rtmp://vhost1.somedomain.com/vod/media/sample.flv --> it should be rtmp://vhost1.somedomain.com/vod/sample.flv

  • Error/Application Logs

    I have a scenario in which I have to display error logs when exception occurs.
    There is a transaction SLG1 where you can see all the application log for a particular process. Has anyone worked on calling these types of transactions to display error or application logs. If so, please throw some light on this.
    Thanks a lot
    Deno

    Hi Deno,
    If you want to see the error message in SLG1. Follow the following steps:
    1.  Use the FM BAL_LOG_CREATE to create the application log.
    2.  Use the FM BAL_LOG_MSG_ADD to add the message to the application log.
    3. Save the application log using FM BAL_DB_SAVE.
    Now you can see your error message in the SLG1 transaction.
    <b>Reward points if it helps.</b>

  • Help! Internal error application 'conversations cl...

    hi i got a text message from a friend and when i opened it up an error message showed up: internal error. Application 'conversations closed'. this means i cant read her sms or send any sms at all to anyone. anyone know how to fix, maybe a command in xterm? thanks
    Solved!
    Go to Solution.

    turn of phone, take of battery for 30 sec, turn it back on, and than try the conversations app, and see if you can read them now.
    Reality is wrong....dreams are for real... 2pac .
    don't forget to hit that green kudos

  • Internal error Occured mapping can not be opened - while opening interface

    Hi Gurus,
    I Am using ODI 11g to load data from Oracel to Oracel database using different schemas as a source to load facts.
    for the first time its loading sucessfully and when i try to open the same interface to see the mapping its showing the errror like *"Internam error Occured mapping can not be opened"*
    Tis is very urgent to resolve as per my project neeed.
    Please suggest steps : how to resolve the issue.
    Thanks in Advance.
    regards
    sri

    While the iTunes app is being updated, you are correct, it cannot be opened.
    This is true of all Apple apps on your Mac.
    iTunes is not very large compared to other apps.  Let it update, then open it.

Maybe you are looking for