Nakisa Orgmodeler Writeback issue

Hi
I am new to NAKISA and i have few queries in Orgmodeler.I am using SOVN 4.0 . I created a scenario, finalized it and it is approved. There are no conflicts during validation. When i clicked Writeback All, it asked me confirmation and i gave Yes. Then nothing came up. Why is the writeback functionality not working. Am i missing anything?
Kindly Advice.

Hi Kiruthika,
I beleive it should be one of the below reasons.
1. No sufficient Authorizations to perform the write back.
2. In the Build\.delta\IdocSettings.xml, we need to cross check the sender, receiver configurations. Below to the reciever configurations you have some parameters for writeback config like which system you need write back and with whichplan version. Here the sender system 'LS800' and write back plan version '08' defaulted from Nakisa. You can try changing these parameters to the respective sender system maintained in your distribution model.
Thanks,
Manohar

Similar Messages

  • 10g Writeback issues

    Hi,
    I'm new to OB and new to this forum. I was asked to add the writeback function to a subject area I created, so I did some research and found a couple walkthroughs. I did everything I thought I was supposed to do, but when i go into the frontend, the writeback button does not show in the column I setup.
    I setup my writeback simply for making the xml simple.
    http://img35.imageshack.us/img35/60/image001ta.png
    http://img84.imageshack.us/img84/3275/image002qy.png
    you can see the setup in the backend. The subject area is FOLSUM_TEST, the connection pool is called folsum, and in the table AIF I am trying to make a simple report with account number and last comment 1. I want last comment 1 to be able to do the writeback. I set up AIF as non-cacheable. I am using an admin login so i have the "execute direct database request" ability. Last Comment 1 is VARCHAR 255 length.
    Here is my XML -
    <?xml version="1.0" encoding="utf-8" ?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="WriteBack" table="Messages">
    <WebMessage name="WriteBack">
    <XML>
    <writeBack connectionPool="folsum">
    <insert>INSERT INTO FOLSUM_TEST.AIF ‘Last Comment 1’ (@{c1})</insert>
    <update>UPDATE FOLSUM_TEST.AIF SET ‘Last Comment 1’='@{c1}' WHERE ‘Account Number’=@{c0}</update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    So I put this in the right location, and I get no writeback ability when I load the report. I am thinking that the possible problem is that the column is named Last Comment 1 instead of LAST_COMMENT_1 as one word? I put single ticks and double ticks around the column header but neither worked. I have double checked the columns label as c1 and c0,in short I am at a loss as to what could be wrong here. Oh yeah, the server is on XP and my pc is on win7. I followed these 2 walkthroughs.
    http://satyaobieesolutions.blogspot.in/2012/06/obiee-10g11g-writeback-capabilities.html and
    http://www.eeblog.org/index.php/understand-and-configure-the-writeback-option-in-obiee-10g/
    Thanks for your help.
    Matt
    Edited by: 970703 on Nov 11, 2012 6:28 PM

    I have gotten the writeback button to show, and it is not greyed out. I get an error message when I try to save the data though-
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43093] An error occurred while processing the EXECUTE PHYSICAL statement. [nQSError: 16001] ODBC error state: 01000 code: 3621 message: [Microsoft][ODBC SQL Server Driver][SQL Server]The statement has been terminated.. [nQSError: 16001] ODBC error state: 22003 code: 248 message: [Microsoft][ODBC SQL Server Driver][SQL Server]The conversion of the nvarchar value '010134848600000' overflowed an int column. Maximum integer value exceeded.. [nQSError: 16015] SQL statement execution failed. (HY000)
    SQL Issued: EXECUTE PHYSICAL CONNECTION POOL folsum UPDATE AIF SET "Last Comment 1"= 'CBCS Nationa' WHERE "Account Number"=0000030857
    I'm assuming I have some setting wrong having to do with the nvarchar value mentioned, but I have no idea why and can't find this issue on searching. The database column is varchar type with 255 characters if that helps.
    thank you

  • Writeback Issues

    Hi All,
    I have been trying to get the Writeback feature working ... I have followed a few examples on the internet but am stuck with the same error when I actually try and save to the DB
    Generic error so I don't really know where to look ... any thoughts.
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27024] The EXECUTE PHYSICAL statement must specify a physical SQL statement to execute. (HY000)
    SQL Issued: EXECUTE PHYSICAL CONNECTION POOL "Connection Pool"
    My xml is:
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="writeback" table="Messages">
    <WebMessage name="TestWriteBack">
    <XML>
    <writeBack connectionPool="Connection Pool">
    <insert> </insert>
    <update> UPDATE TEST_WRITEBACK SET NOTE= @{c2} WHERE IDENT='@{c1}' </update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    My DB table is:
    EFFDATE DATE
    NOTE VARCHAR2(100)
    IDENT NUMBER

    Resolved
    Had to rebuild the answer. For some reason the column references were messed up. It was looking for c2, c1, c3 etc ...
    removed everything and saved the answer. Then I rebuilt the answer and now it references c0, and c1.
    Changed my xml to the following and everything worked fine. Looks like the DB shouldn't have null values in it ...
    <?xml version="1.0" encoding="utf-8"?>
    <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
    <WebMessageTable lang="en-us" system="writeback" table="Messages">
    <WebMessage name="TestWB">
    <XML>
    <writeBack connectionPool="Connection Pool">
    <insert> </insert>
    <update> UPDATE TEST_WRITEBACK SET NOTE= '@{c1}' WHERE ident= @{c0} </update>
    </writeBack>
    </XML>
    </WebMessage>
    </WebMessageTable>
    </WebMessageTables>
    Edited by: clueless on Mar 9, 2010 3:16 PM

  • Writeback issue

    Hi,
    i'm implementing writeback functionality. I have a table with an update button. Clicking on i update table with modification made by users on records.
    My table contains also a flag column. If user insert YES, it means that modifications are accepted and can be updated in table, otherwhise modified record doesn't have to stored in the table. This point works.
    Actually users must set FLAG COLUMN for each record. So my customer want a new button ("Confirm") that update FLAG column to Y automatically for ALL records. Have you ideas?
    Thanks
    Giancarlo

    I am able to view the results before adding the column I want for writeback.
    I tried making the change you suggested.
    1. already done
    2. already done
    3. changed to mention total level for employee dimension
    Checked consistency and no warnings or errors returned.
    When I try to access the report I now receive the following error.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 14020] None of the fact tables are compatible with the query request Total Expense:[DAggr(Fact - Employee Expense.Total Expense by [ Dim - Employee.Employee Name, Dim - Employee.Employee ROW_ID, Dim - Employee.Employee Number, Fact - Employee Expense.Comment] )]. (HY000)
    SQL Issued: SELECT Employee."Employee Name" saw_0, Employee."Employee Number" saw_1, "Employee Expense Facts"."Total Expense" saw_2, Facts.Comment saw_3 FROM "Employee Expenses" ORDER BY saw_0, saw_1, saw_3
    I appreciate your help. I'm not familiar with adding an unrelated table/column into our model to use for writeback.

  • Writeback issue - Admin tool question

    I'm trying to configure writeback per pg 90 of the BI Presentation Service Admin Guide. I am having an issue on the steps related to the Admin tool. I created a new table, set up the connection pool and made the table noncacheable.
    Can someone explain in detail the steps I need to take to add this table in the logical and presentation layers? I dragged this table into my logical fact table and then to my presentation layer. No rpd warnings or errors, but am I missing a step? Do I need to create any physical/logical joins?
    When I create my report in Answers, I get the following error.
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 14026] Unable to navigate requested expression: Dim - Employee.Employee Name. Please fix the metadata consistency warnings. (HY000)
    SQL Issued: SELECT Employee."Employee Name" saw_0, Employee."Employee Number" saw_1, Facts.Comment saw_2, "Employee Expense Facts"."Total Expense" saw_3 FROM "Employee Expenses" ORDER BY saw_0, saw_1, saw_2

    I am able to view the results before adding the column I want for writeback.
    I tried making the change you suggested.
    1. already done
    2. already done
    3. changed to mention total level for employee dimension
    Checked consistency and no warnings or errors returned.
    When I try to access the report I now receive the following error.
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 14020] None of the fact tables are compatible with the query request Total Expense:[DAggr(Fact - Employee Expense.Total Expense by [ Dim - Employee.Employee Name, Dim - Employee.Employee ROW_ID, Dim - Employee.Employee Number, Fact - Employee Expense.Comment] )]. (HY000)
    SQL Issued: SELECT Employee."Employee Name" saw_0, Employee."Employee Number" saw_1, "Employee Expense Facts"."Total Expense" saw_2, Facts.Comment saw_3 FROM "Employee Expenses" ORDER BY saw_0, saw_1, saw_3
    I appreciate your help. I'm not familiar with adding an unrelated table/column into our model to use for writeback.

  • Nakisa OrgModeler - Send Email

    Hi experts,
    We're on OrgModeler 3.0 SP1.
    Based on the OrgModeler user guide, one of the tasks that you can perform on selected records (flagged objects) is to open an empty email message with the addresses of all the selected records. Has anyone seen this work before?
    Thanks,
    L

    Hi Luke,
    Looks like email is working when the objects are selected from OrgChart employee listing. But it isn't working when objects are flagged from the OrgChart directly.
    Below are the options for the email dropdown in the admin console:
    address, birthdate, birthplace, entrydate, id_index, jobid, jobtext, leavingdate, location, marital status, name, object_id, orgid, orgtext, phoneno1, phoneno2, photouri, positionid, positiontext, emailtext, fname, lname.
    The option that seems to make the most sense was emailText.
    I did the configuration for the scenario module as well, but no luck there.
    Thanks,
    L

  • Writeback-Issue OBIEE 11g

    Hello togehter,
    i have implemented the writeback-function but i get an error if i excute an update in Oracle Business Intelligence . What funny is that the update can be seen in the database, but is not in the table view of Oracle Business Intelligence.
    The follow messge is from nqsserver.log
    [2012-09-28T12:05:16.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 53836aab15161259:-7a9ce585:13a08aa27d7:-8000-0000000000004a31] [tid: 444] [nQSError: 27024] The EXECUTE PHYSICAL statement must specify a physical SQL statement to execute. [[
    [nQSError: 43113] Message returned from OBIS.
    I hope anybody can help me :)

    Hi,
    can you share/paste it your writeback xml file...by the way try to remove commit/postcommit and try again then test it.
    Thanks
    Deva
    Edited by: Devarasu on Sep 28, 2012 6:47 PM

  • IdocReceiver not processing all the idocs produced from PFAL in OrgModeler

    Dear experts,
    We are on below Nakisa version.
    Name Nakisa OrgModeler
    Version 4.0 SP1
    Build 0910021700
    I ran the initial load for the OrgModeler and it produced around 500 idocs. When I followed the command line interface, it processed around 56 idocs. The idoc status becomes 03 (Data Processed to Port OK) at the R/3 end for all the idocs. However idocreceiver is skipping many idocs in between and processing only few. I checked the database for HRP1000 and HRP1001 and the records loaded are not even 20% of the records in R/3 for the objects and relationships(HRP1000 obj types C, O, Q,S and HRP1001 002/003/007/008/011/012 etc) we filter at the distribution model.
    I think  the issue might not be an authorzation problem as its fetching the records from SAP R/3 and loading few records in the database.
    I checked with my Basis consultant about another reciever running and grabing the missing records. He confirmed that only one idocreceiver running at nakisa end. I even happened to check the SAP gateway server(SMGW) and with TP Name NAKIDOC and symbollic destination NAK_RFC_DEST I can see only one record which is appearing on and off. When the record appear on the gatway server, the corresponding idoc being processed at command line interface. Till the other record appears on the sap gateway server, the idocs are missing at the command line interface.
    Below is the screen shot from idocreceiver. (After the idoc 1695358 it processed 1695366 then 1695372 etc)
    Any suggestions would be a great help.

    Dear All,
    My Basis guy finally realised that he started a Jco provider at the netweaver end and causing the issue. He stopped it and all the idocs processed successfully.
    I learned the below points and might useful for few folks.
    1.No idoc being processed and all the idocs failing with 'Bean IDOC_INBOUND_ASYNCHRONOUS not found on host'. It should be an authorization error and assigning the Authorization Object: S_IDOCDEFT (EDI_TCD = "WE30"; ACTVT = "03") will resolve the issue.
    2. Few idocs are being processed at idoc receiver end.
    i. Check for multiple idoc receivers which might be active and running.
    ii. Check the number of connections and timeout parameters and set them to the maximum.
    Thanks,
    Manohar

  • Nakisa Org Modeler: Unable to create a Scenario

    Hi all,
    i'm configuring Nakisa OrgModeler 4.1
    I have configured the Idoc receiver and i have done:
    - initial load
    - start check tables data extraction
    I'm not able to create a New scenario, when i click the buttons ("Default root", "Choose Root", "Empty Scenario" or "Custom") nothing happens.
    The db is SQL 2008
    Here attached the log file
    Any suggestion will be appreciated
    many thanks,
    Barbara

    Barbara.
    The cds.log suggests that some of the tables and columns do not exist in your database.  you could take a look using a SQL client for yourself at the following.
    Column ScenarioName in table Scenario.
    HRPAD31.
    HRP1008.
    HRP1011.
    HRP1013.
    HRP1014.
    HRP1018.
    HRP1028.
    If they aren't there or are malformed in some way then I'd suggest rolling the cds.log via the log manager in AdminConsole, and then running the activities Stephen listed previously.  Once complete, recheck the database and review the cds.log contents if there are still issues.
    Regards,
    Stephen.

  • OrgModeler - cds.log error SettingsResources does not exist

    Hi experts,
    Has anyone encountered this error message before?
    ERROR com.nakisa.Logger - Strings : readFile : java.io.FileNotFoundException: File '/usr/sap/NKD/J00/j2ee/cluster/apps/Nakisa/OrgModeler/servlet_jsp/OrgModeler/root/.system/Admin_Config/.system/SettingsResources' does not exist
    ERROR com.nakisa.Logger - java.io.FileNotFoundException: File '/usr/sap/NKD/J00/j2ee/cluster/apps/Nakisa/OrgModeler/servlet_jsp/OrgModeler/root/.system/Admin_Config/.system/SettingsResources' does not exist
    Thanks,
    L

    Hi L,
    What is the problem that you get? This could be a dummy error, as there should never be a .system folder in the Admin_Config folder. If you don't have a build called .system then you should ignore it. Preferably you should remove any folder called .system inside the Admin_Config folder since it is a bug that creates it.
    Best regards,
    Luke

  • Org Chart Search issue in Employee Listing in VSN30SP2

    Hi,
    Everything works fine in Org Chart in Nakisa OrgChart VSN30SP2.
    But unfortunately when we searched an employee in employee listing we found it was not showing up.We used the search criteria Person Name Contains xxxxx.
    In Search criteria when we entered say James it showed up all the employee who has the first name as James except one employee (The missing employee also has the first name as James).
    Also without search criteria (unchecked on Start Directory Empty in Org Chart Employee Listing configuration) it is not showing only that employee.Also authorization is fine for that employee.
    Can you please help on this issue.
    Regards,
    Xavier.

    Hi Xavier,
    I had a similar problem in the OOTB build (0702019400SCA). Nakisa resolved the issue with a new build so if you are using this build I recommend that you go to this link and deploy the latest build: [3.0 SP2 - SAPmats links for latest builds;.
    Let us know if this resolves the issue.
    Best regards,
    Luke

  • Org Modeler 3.0 SP2 error with creating scenarios

    Hi Gurus,
    In the the application Nakisa OrgModeler , version 3.0 SP2
    and the build number: 0702013100, the solution is .Java, Oracle
    We are having a problem with the org modeler scenario creation.
    Even at a choice "Create empty model".
    Steps pass successfully:
    Number of records validated ok
    Database created ok
    And on a step process hangs:
    Importing data...
    I have been seeing several things in the CDS log:
    ERROR com.nakisa.Logger - com.nakisa.framework.language.LanguageContainer.getText(String, String) : while trying to invoke the method java.util.HashMap.get(java.lang.Object) of an object returned from java.util.Map.get(java.lang.Object)
    ERROR com.nakisa.Logger - com.nakisa.framework.data.commandProcessor.impl.OracleCommandProcessor : getDataTables : Could not create a database connection. Data Element Name: ScenarioDataElement
    Our DB connection string looks simple and test connection/create structure work fine.
    Server Type:     Oralce
    Version:     10
    Server Name:     hcm****:1111:DHN
    User Name:     NAK_ORGMOD
    Password:     **********
    And i have authorization in Database to create tabels.

    Hi Tatyana,
    Please take a look at this thread from last year, which has the same issue as you had and was resolved.
    [http://forums.sdn.sap.com/thread.jspa?messageID=10718321#10718321]
    Best regards,
    Luke

  • Org Modeler 3.0 : Silo is empty

    Hi,
    I'm in Org Modeler 3.0
    In position details panel, under the structure tab, there is Silo. In my setup, the Silo is empty. However, if I go to Actions->View Profile, the Silo works perfectly.
    Has anyone seen this problem?
    Thanks.

    Hi Stephen,
    Here's the log file, maybe it means something to you? It is pretty long, I'll have to seperate it to different replies. Thanks.
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - Tenant ID: 000
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - LoginSettingsObject Load: 16
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : Credential provider Anonymous
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : User to authenticate d66942c7-1386-4837-a454-742c8619c3cc
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : Authentication provider Anonymous
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : User authenticated d66942c7-1386-4837-a454-742c8619c3cc
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : Authentication row is null
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : User population provider is Anonymous
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : User populated
    06 Jan 2011 15:42:07 INFO  com.nakisa.Logger  - com.nakisa.framework.login.Main : LogIn : Login process finished successfully
    06 Jan 2011 15:42:08 INFO  com.nakisa.Logger  - Invoking action:refresh []. For processor ModuleControlAppProcessor. Against controller ModuleControlCtr
    06 Jan 2011 15:42:08 INFO  com.nakisa.Logger  - refresh on ModuleControlAppProcessor took: 5ms
    06 Jan 2011 15:42:09 WARN  com.nakisa.Logger  - class com.nakisa.troll.web.ResourceServlet : processRequest : Image 'E:\usr\sap\NKQ\J00\j2ee\cluster\apps\Nakisa\OrgModeler\servlet_jsp\OrgModeler\root\images\ordos\scenariotocicon.png' doesnt exist.
    06 Jan 2011 15:42:11 INFO  com.nakisa.Logger  - Invoking action:refresh []. For processor ModuleControlAppProcessor. Against controller ModuleControlCtr
    06 Jan 2011 15:42:11 INFO  com.nakisa.Logger  - refresh on ModuleControlAppProcessor took: 9ms
    06 Jan 2011 15:42:11 INFO  com.nakisa.Logger  - Invoking action:loadscenario []. For processor ModuleControlAppProcessor. Against controller ModuleControlCtr
    06 Jan 2011 15:42:11 INFO  com.nakisa.Logger  - loadscenario on ModuleControlAppProcessor took: 3ms
    06 Jan 2011 15:42:12 INFO  com.nakisa.Logger  - Invoking action:initialize []. For processor ScenarioAppProcessor. Against controller ScenarioCtr
    06 Jan 2011 15:42:12 WARN  com.nakisa.Logger  - DB2Version8CommandProcessor.getWhereClause() : Unable to parse Where Clause so unparsed Where Clause will be used as is
    06 Jan 2011 15:42:12 INFO  com.nakisa.Logger  - initialize on ScenarioAppProcessor took: 285ms
    06 Jan 2011 15:42:19 WARN  com.nakisa.Logger  - class com.nakisa.troll.web.ResourceServlet : processRequest : Image 'E:\usr\sap\NKQ\J00\j2ee\cluster\apps\Nakisa\OrgModeler\servlet_jsp\OrgModeler\root\images\ordos\scenariotocicon.png' doesnt exist.
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - Invoking action:refresh []. For processor ModuleControlAppProcessor. Against controller ModuleControlCtr
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - refresh on ModuleControlAppProcessor took: 10ms
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - Invoking action:loadorgchart []. For processor ModuleControlAppProcessor. Against controller ModuleControlCtr
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - loadorgchart on ModuleControlAppProcessor took: 34ms
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - Invoking action:refresh []. For processor OrgChartAppEventProcessor. Against controller OrgChartCtr
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:0
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:0
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 26ms
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 18ms
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner.executeFunctionDirect: HCM_GET_ORGSTRUCTURE_AS_XML took: 17ms
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1
    06 Jan 2011 15:42:23 INFO  com.nakisa.Logger  - FunctionRunner : ensurePool : Current pool size:1

  • Org Modeler 3.0: Authentication Settings

    Hi,
    I'm using Org Modeler 3.0
    When I go to security settings->Authentication Settings, the settings never takes effect. For example, I change the Authentication Mechanism to Anonymous, but I was still prompted to logon. If you enter my crendital, it says logon invalid.
    I checked the log, it has this warning:
    29. 27 Dec 2010 09:39:04 WARN com.nakisa.Logger - com.nakisa.framework.utility.XSLRender : loadTemplates : E:\usr\sap\NKD\J00\j2ee\cluster\apps\Nakisa\OrgModeler\servlet_jsp\OrgModeler\root
    Security\security.xsl does not exist.
    I notice something strange. First of all, it has "
    " before the security folder, this doesn't look right to me. Anyway, the bigger problem is, the Security folder actually doesn't exist!
    (I cross checked the same path in Org Chart, security folder exists)
    Can someone help?

    Hi there,
    You are right, OrgModeler does not have a security folder. However, if you create a Security folder in the Root folder in your build folder and put in the files from the OrgChart Security folder then this should work. I've done it before to create security configurations for OrgModeler and I'm suprised it is needed here because the default configuration does not have any roles etc.
    Regarding it not saving configuration, it could be because of this or it could be because of the known bug with NetWeaver CE 7.2. Which CE platform are you on?
    Good luck!
    Luke

  • Issues while assigning TMS e.t.c in Nakisa Succession Planning VSN3.0SP2

    Hi,
    In Nakisa Succession Planning VSN3.0SP2
    First I clicked on My Org Units and selected the required My Org Units and when I tried to assign TMS (by entering position and depth and then clicked on the Icon ADD)in the right pane,after some time (after processing) the screen refreshes and goes back to Position Details screen in right pane but the left pane remains same (My Org Units). But when I click on the same selected My OrgUnits (in My Org Units) again in the left pane, the right pane goes back to Org Unit details where it shows the TMS which i assigned.
    Like this it happens for all. Say when I go to My employees and work on it like Set as Successor same issue happens the right pane shows position details as before.But when I click on the left pane it shows the Successor set.
    So whenever an action happens (like Assigning TMS, Set Successor, Assign to Job Family, Add Development Plan e.t.c) and after clicking on the ADD ICON, the right pane goes back to position details.So Everytime I have to refresh the screen by clicking the left pane whenever after finishing each action.
    Is it due to time for processing each action (hardly it takes 30 sec to process like Assigning a TMS e.t.c).?
    Regards,
    Xavier.

    Hi Xavier,
    This sounds like an application bug, since it shouldn't do this. I know of a similar issue in OrgModeler SP2. Does this only occur in the Flex mode?
    My recommendation would be to open an OSS message.
    Best regards,
    Luke

Maybe you are looking for

  • Open and Cleared Items

    Hi all We are currently busy finalising our FI-CA BW Data Modeling exercise - and in process to complete Dataflow documentation. We will make use of the standard open and cleared item extractors with enhancements on different levels. Some background

  • Asset Scrapping

    Hi Guys, I have an issue  in asset scrapping thru tcode ABAVN version ECC6.0 in QA client- when I scrapped the asset system generated the accounting document with following entries APC:1,000 Asset is acquired in April,2010, CR(75 posting key).-APC va

  • Block encoding of transactions to diff whse & w/ same items in one document

    Hi, i need to block all transactions encoded in inventory transactions if their warehouse is different and also if same items are in the same documents. Could you help me with the script? I want to have this in SP_transaction notification but i dont

  • What's the difference in Apple Mail using "On My Mac" folders vs Export Mailbox?

    What's the difference in Apple Mail using "On My Mac" folders vs Export Mailbox?

  • JDeveloper is loosing the uix path too often

    Hi there, From time to time I have to re-install JDevelopper version 903 in order to get uix working properly. In the log file of my workspace I have the following error in it. The UIX installable resource files could not be found under the following