Deep Creation is not working in SAPUI5

Hi Gurus,
I have created GW service with deep_create_entity but I am not able to post value from SAPUI5 oMobel.create() method
I am waiting for response
thanks in advance

Thanks Santhosh.
I am going through the First help link, I have already set the Property(Standard mode - while Launching Portal in new window) from Portal iview, and "Handover Portal stylesheet" to 'NO'
I hv already gone the remaining Forum threads and Notes as well, but i did not get exact any other help to fix this issue.
I am getting different Error now - Unable to get property 'addDelegate' of undefined or null reference
Pls. let me know if you can help me.
Thanks
Sathya

Similar Messages

  • Deep Link (FSP_AFTER_LOGIN_URL) Not Working in APEX 4.1

    Hi all,
    We recently migrate from APEX 3.2 to 4.1. The deep link (FSP_AFTER_LOGIN_URL) does not work.
    We have two applications, say 100 and 200. Application 100 is the central login application. Application 200 refers to application 100 for authentication. Both applications share the same cookie name.
    When accessing via http://..../f?p=200:1, the request is redirected to application 100 login page. This is the expected behavior. However, after login, the APEX doesn't take us back to 200:1. It goes to the app 100 home page.
    Do any of you have the same issue?
    Thanks,
    Avon

    Looking forward to 4.1.1 !
    In the meantime, the solution above seems to work just fine when the deep link includes just a App ID, APP PAGE ID, even a clear cache set of pages.
    What would be the best method for also putting into the Login Link Item Values that are passed from deep link as I don't think they get set from the URL.
    In your example, if the link also contained item name/value combinations I don't think the following will work.
    Original URL : f?p=300:3::::::P3_ITEM1,P3_ITEM2:123,ABC
    and the Login URL is:
    f?p=970:101:&SESSION.::&DEBUG.::FSP_AFTER_LOGIN_URL:/f?p=&APP_ID.|&APP_PAGE_ID.||NO||P3_ITEM1,P3_ITEM2|&P3_ITEM1.,&P3_ITEM2./
    Final URL: f?p=970:101:<session#>.::NO::FSP_AFTER_LOGIN_URL:/f?p=300|3||NO||P3_ITEM1,P3_ITEM2|, < No Values here>
    as P3_ITEM1 and P3_ITEM2 don't get set to pass them along to the authentication application.
    Any thoughts?
    --Andy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • In case of bookmarks.Hash routing not working with SAPUI5

    Hi All,
    I have the below code with in SAPUI5
    The issue is that the url is correctly set when navigation from entry screen to detailed screen and also proper navigation happens, but when detailed screen is bookmarked the navigation always takes back to entry screen.
    For example:
    In my entry screen below I enter 'hi' then press enter to navigate to deatiled screen and you can see that both URL and navigation are fine
    But now if I bookmark or enter the URL 'http://localhost:8001/#/detailedScreen/1234' directly then instead of navigating to detailed screen, I am taken to entry screen.
    Below is the code.
        App.js
        (function () {
            'use strict';   
            //registering the module path
            jQuery.sap.registerModulePath('appointy', 'javascript/appointy');   
            $.sap.require('sap.ui.core.routing.HashChanger');
            $.sap.require('sap.ui.core.routing.Route');
            $.sap.require('sap.ui.core.routing.Router');
            //Somewhere at the start of your application
            var oRoutes = {
                // name used for listening or navigating to this route
                "searchScreen": {
                    "pattern": "detailedScreen/{id}" // will be the url and from has to be provided in the data
                "catchAll": {
                    "pattern": ":all*:"
            var oRouter = new sap.ui.core.routing.Router(oRoutes);
        //this is used to retrieve the instance again
            oRouter.register("appRouter");
        //starts reacting on the hashchange + parses the current hash and notifies callbacks
            oRouter.initialize();
            //var iRouter = sap.ui.core.routing.Router.getRouter("appRouter");
            oRouter.attachRouteMatched(function (oEvent) {
                if (oEvent.getParameter("name") == "searchScreen") {
                    _selectItemWithId(oEvent.getParameter("arguments").id);
                if (oEvent.getParameter("name") == "catchAll") {
                    _setContent(mContent.home);
                //bind the this pointer to the callback
            }, this);
            var _selectItemWithId = function (id) {
                //implementation eg: select an item in a list
                var homeNext = sap.ui.view({
                    type: sap.ui.core.mvc.ViewType.JS,
                    id: 'homeNext',
                    viewName: 'appointy.HomeNext'
                homeNext.getController().parameterId = id;
                sap.ui.getCore().byId("oShell").setContent(homeNext);   
            // build the application root view and place on page
            var oRootView = sap.ui.view({
                type: sap.ui.core.mvc.ViewType.JS,
                id: 'mainView',
                viewName: 'appointy.Main'
            var _setContent = function (oContent) {
                iShell.setContent(oContent, true);
            var mContent = {};
            var iShell = sap.ui.getCore().byId("oShell");
            mContent.home = sap.ui.view({
                type: sap.ui.core.mvc.ViewType.JS,
                id: 'homeView',
                viewName: 'appointy.Home'
            //setting initial content for oSHELL
            _setContent(mContent.home);
            //switching contents of oSHELL
            iShell.attachWorksetItemSelected(function (evt) {
                var key = evt.getParameter("key");
                iShell.setContent(mContent[key]); // switch content
            oRootView.placeAt('content');  
    Main.view.js
        (function () {
            'use strict';
            sap.ui.jsview('appointy.Main', {
                getControllerName: function () {
                    return 'appointy.Main';
                createContent: function (oController) {
                    var oShell = new sap.ui.ux3.Shell('oShell');
                    oShell.addWorksetItem(new sap.ui.ux3.NavigationItem({
                        key: "home",
                        text: "Home"
                    return oShell;
                //local handling of events of this View
            sap.ui.controller('appointy.Main', {
                onInit: function () {
                onBeforeRendering: function () {
                onAfterRendering: function () {
                onExit: function () {
                model: null   
    Home.view.js
    (function () {
        'use strict';
        sap.ui.jsview('appointy.Home', {
            getControllerName: function () {
                return 'appointy.Home';
            createContent: function (oController) {
                var oSearchField = new sap.ui.commons.SearchField('js-business-search', {
                    search: [ oController.onSearch, oController ]
                //oSearchField.attachSearch(oController.onSearch);  --> Alternative way to attach event trigger to the searchField
                var oLayout = new sap.ui.commons.layout.VerticalLayout({
                    width : "100%"
                oLayout.addContent(oSearchField);
                return oLayout;
        sap.ui.controller('appointy.Home', {
            onSearch: function(oEvent) {   
                //using Routing example
                var changeURL = new sap.ui.core.routing.HashChanger ();
                var hash = 'detailedScreen' + '/' + oEvent.getParameter("query")
                changeURL.setHash(hash);
            onInit: function () {
            onBeforeRendering: function () {
            onAfterRendering: function () {
            onExit: function () {
            model: null
    HomeNext.view.js
    (function () {
        'use strict';
        sap.ui.jsview('appointy.HomeNext', {
            getControllerName: function () {
                return 'appointy.HomeNext';
            createContent: function (oController) {
                var oLabel = new sap.ui.commons.Label("l2");
                //oLabel.setText(sap.ui.getCore().byId('js-business-search').getValue());
                oLabel.setDesign(sap.ui.commons.LabelDesign.Bold);
                var oLayout = new sap.ui.commons.layout.VerticalLayout({
                    width : "100%"
                oLayout.addContent(oLabel);
                return oLayout;
          sap.ui.controller('appointy.HomeNext', {
            onInit: function () {
            onBeforeRendering: function () {
                var that = this,
                    oLabel = sap.ui.getCore().byId('l2');
                oLabel.setText(that.parameterId);
            onAfterRendering: function () {
            onExit: function () {
            showAlert: function(sChannelId, sEventId, oParam) {
                alert(oParam.searchQuery);
            parameterId: null,
            model: null
    Regards,
    Chidan

    You can open the JSBin in "Output Only (with live reload)" mode in a separate window, and in that window (tab) the URL can change.
    Here is a incomplete routing sandbox on JSBin (open each in a separate window, note that JSBin may want to update the revision from 3 to 4):
    Edit URL: http://jsbin.com/bamuh/3/edit?js
    Output URL: http://jsbin.com/bamuh/3#square
    (change the hash manually to #circle to see the routing trigger)
    Enjoy,
    Shawn

  • Document selection for initial transfer by date of creation does not work

    Hello gurus,
    we are trying to initially transfer purchase orders from ERP to GTS. In /SAPSLL/DS_D_MM0A_R3, when we try to select the documents by giving a date for u2018created onu2019, no documents are transferred (u2018No data was found for the selection criteriau2019, Message no. /SAPSLL/PLUGINR3205).
    But when we select the documents using ME2L and insert the document numbers in the appropriate field in /SAPSLL/DS_D_MM0A_R3, all documents are transferred just fine.
    So obviously the selection by date does not wok properly. Or are there other hidden criteria ERP uses to select the documents to transfer (e.g. only those without GR/IR)?
    Thanks in advance
    Alicia

    Hi Alicia,
    just had a customer message with the same issue.
    The program for initial transfer selects the data frm table EKKO.
    Please check for those 3 documents, if the AEDAT in EKKO is the same date as in the selection of ME2L.
    It could be that in EKKO the AEDAT is a different date. We are selecting from this table.
    I believe if you choose the documents in SE16 EKKO only by the date from ME2L you won't find them as well.
    I believe the difference is between the 'Creation Date' and the 'Document Date'.
    Best regards, Christin
    Edited by: Christin Angus on Sep 14, 2010 2:24 PM

  • Auto Po creation is not working properly

    Hello Gurus
    I am trying to create PO automatically by making GR.
    Material has Auto PO flag on
    Vendor has Auto PO flag on
    Plant is asigned to Standard POrg
    Standard Info record is avaliable for Vendor,MAterial, Plant and Standard Porg
    When i give all the detials in MIGO it is showing the error Vendor field is mandatory even after giving Vendor detials in Partnet tab.
    Error is M7018.
    I checked in SE91 if the Message Class M7018 is having problem .. it says there is no message class set up.
    I am using 4.7 .. did i miss something in settings please help me
    Regards
    Sameer

    Hello Sameer,
    Make sure that you have followed the customizing steps detailed in the SAP Note 324517:
    In Customizing "MIGO: Field Selection per Movement Type" enter field name LIFNR for movement types 101 and 161. The corresponding path is:
    Materials Management
          > Inventory Management and Physical Inventory
            > Settings for Enjoy Transactions
              > Settings for Goods Movements (MIGO)
                > Field Selection per Mvt Type"
    see here wether the entries:
       101 - LIFNR
       161 - LIFNR
    have been created.
    If not, please, create these two new entries and set both of them to 'Optional', then, re-test the system behaviour following the steps:
    .- MIGO: Choose business transaction 'Goods Receipt' - 'Purchase Order' and movement type 101. Leave the field for the Purchase Order empty.
    .- Click on 'non-ordered item' icon.
    .- Enter all data in the item detail subscreen (material, quantity, plant, storage location - if needed - and vendor).
    .- Check and post.
    I hope this helps!
    Esther

  • SOURCE SYSTEM CREATION IS NOT WORKING

    Hi,
              I have installed ECC 5.0 in my laptop, I am getting error while creating SOURCE SYSTEM.  The error I am getting is :
    <b>"No entry for BR_USER in table RSADMIN available"</b>
    Pls help me to create a source system in BW.....
    Thanks in Advance.
    Sunil K Shetty

    Hi
    r/3 bw connectivity check these links and sap best practice for bw connectivity
    http://help.sap.com/bp_biv135/BBLibrary/documentation/B84_BB_ConfigGuide_EN_DE.doc
    Re: BW-R/3 Connectivity
    Not able to create R/3 source system in BW
    How to Create an R/3 source system and load data from there

  • Recovery media creation does not work properly,how can i make recovry disk

    when i started recvry med cretion it collected files for 50 mins then i inserted sony dvd, it started writing then suddenly ejected the dvd asking that (use dvd-r or dvd+r, no RW dvd can be used for this ). i checked my dvd.it was correct. my dvd is also written with some data.what to do because recovery can be made once

    when i started recvry med cretion it collected files for 50 mins then i inserted sony dvd, it started writing then suddenly ejected the dvd asking that (use dvd-r or dvd+r, no RW dvd can be used for this ). i checked my dvd.it was correct. my dvd is also written with some data.what to do because recovery can be made once

  • BDC is not working in background mode and working fine in Foreground mode

    Hi Experts,
    I have created a BDC in SHDB for the transaction code:CWBQM for creating and deleting the record and converted the BDC recording into the program using call transaction. It is working fine in both foreground and background. When I given the same program for users testing one for the user was able to delete the records but Creation is not working in the same BDC. He is able to create the same records in another PC and the problem is only in that PC and only during the creation of the record. When I change the mode to 'A' mode for testing and request the user to execute and it is working fine the records created successfully. What could be the issue ?
    Thanks,
    Hema

    Hello,
    While recording BDC in SHDB try setting "Simulate background mode" flag and give a try.
    Cheers,
    Nag

  • Credit Check is not working while creation of the delivery

    Hi,
    Credit check is not performing while creation of the delivery.
    As per current settings, there is no credit check at SO level. Ideally, system should show an error message while creation of the delivery if credit limit of the customer is exceeds.
    Below is the current OVA8 setting for Delivery group 02.
    It was working fine till last week, but due to some unknown changes in customization or master data, same is not working now.
    Could you please check below settings and suggest if any setting is wrong?

    You talking about the reaction field D am talking about beside to reaction field that is status/Block(check) .
    Status/Block(tick) is used to block the document.
    Where as you reaction field is used to give the either warning or error message based input you are giving
    A and C gives warning message and allow to save the document.
    B and D gives error message and will not allow to proceed further
    Please check this and try system will block the delivery.
    thanks,
    Srinu.
    Message was edited by: Srinu S

  • Depenedant SelectOneChoices are not working in creation form of ADF 11g

    Hi,
    I have created a ADF creation form using updatable VO.
    I have three list boxes, theaterId, AreaId, SalesSegment. if i select theaterId list box it should refresh the list for areaId and salesSegment.
    I have created list boxes in VO attribute level and defined the dependencies.
    When i run the page dependant lists are not showing data.
    If i create the ADF form with same VO, functionality is working fine but it is not working in the Creation form.
    Pls help me to resolve this issue.
    Thanks inadvance.
    Regards,
    Satya.

    Check this if its helpful: Re: Cascading LOV not refreshing correctly after removing row

  • GRC 10.0: Access Request Creation - LDAP user advanced search not working

    Dear Experts,
    We are implementing SAP GRC Access Control and we have an issue in Access Request Creation. If we put the user name in “User” field and press intro, the user details are updated, but if we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    Scenario 1: If we put the user name in “User” field and press intro, the user details are updated:
    Scenario 2: If we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    We are using the Active Directory as Data Source.
    Thanks and Regards.

    Hi Jose,
    Try maintaning the parameter 2050 as YES and check once.
    Kindly, also make refer to  the below list of SAP notes:
    1757906 - GRC 10.0 - LDAP user search does not work in NWBC
    1745370 - LDAP search in GRC does not work anonymously
    1718242- UAM: User search not working in Access Request.
    Regards,
    Neeraj Agarwal

  • SAPUI5 App in Fiori Client - Double tap will not work.

    Hi ,
    I have developed a SAPUI5 app  and when i try to access the app in an iPhone using the Fiori Client , the app works fine , but double tab will not work when i am in the app, double tap works when i am on the launchpad.
    Please help.
    i have used sap.m.splitapp and viz charts.
    Thanks

    Did you solve this? I have the same issue.

  • Sapui5 List SearchField not working

    Hi All,
    I have a splitApp control in my sapui5 application. I am trying to search the list in master page.
    Inside Controller
    PR_Search: function(oEvent)
          var tpmla = oEvent.getParameter("newValue");    
         var filters = new Array();
         var oFilter = new sap.ui.model.Filter("PoNumber",sap.ui.model.FilterOperator.Contains, tpmla);
          filters.push(oFilter);
         //get list created in view
         this.oList =sap.ui.getCore().byId("polist");
         this.oList.getBinding("items").filter(filters);
    Inside  view
    new sap.m.SearchField(
    placeholder: "Search",
    showRefreshButton: true,
    liveChange : oController.PR_Search,
    search: oController.PR_Search,
    tooltip: "Search for objects..",
    var po_list  = new sap.m.List("polist",{
    inset : false,
    po_list.bindItems({
    path : "/HeaderSet",
    template : V_List_itemtemplate,
    I have implemented the code. But the search is not working. Please help in resolving this issue.
    Thanks,
    Divya

    Hi Divya,
           you can try using this code in your searchfield live change functionality.......
    liveChange:function (evt){
                        var searchValue=evt.oSource.mProperties.value;
                        var showSearch = (searchValue.length !== 0);
                        var binding = List.getBinding("items");
                        if (showSearch && binding !== undefined) {
            var filterCase = new sap.ui.model.Filter("PoNumber", sap.ui.model.FilterOperator.Contains, searchValue);
        binding.filter([filterCase]);
                else{
           binding.filter([]);
    where List.getBinding("items"); in this the List is your sap.m.List.....
    Regards
    Raghu M

  • Deep linking not working in Flex 4

    Deep linking is working in Flex 4 (using Flash Builder) when I debug and run the application, but not when I do an export release build.
    So I tried using the files from the bin-debug directory, and noticed that deep linking only works when the files are in the bin-debug directory. If I move them from there, they don't work.
    And to make things worse, my Flex 3 builder is not generating the HTML wrapper when using the Flex 4 SDK and deep linking. So I am screwed in every way. I really need help to get my app launched. It is finished, but stuck on my computer.
    Is this a know problem? Thanks very much for any help.

    If anyone run into this poblem, I just figured out half the problem. The javascript file (history.js in the history directory) only checks for url with (http://), so if you are testing and in your browser you have file://loc_of_html_file, then it will not work.
    On the other hand, my next problem is still unresolved:
    Flex Builder 3 is not generating the HTML wrapper when using deep linking AND with the Flex 4 SDK.
    Thanks.

  • Mac OS X - deep links in youtube not working, fast forward not working

    Specs: Mac mini 1.66 Intel Core Duo, OS 10.6.8 Snow Leopard, Flash 11.1.102.64
    Adding, for example #t1m30s, to the end of a youtube url does nothing, videos always start at the beginning. Yes this is an older computer but deep linked youtube videos work fine in Firefox but not Safari. I have another Mac Mini slightly newer, a Mac mini 1.83 Intel Core 2 Duo with same software specs and deep links work fine on it.
    Also I can't seem to drag the marker anymore. Very frustrating.

    While you might get an answer from someone here (I'm interested in knowing too, I run into the drag problem from time to time) I think you'll have better luck over on YouTube's forums.
    Chris

Maybe you are looking for

  • Using iMac display as extended desktop?

    Hi, is it possible at all to connect a MacBook to an iMac display to extend the desktop (or mirror)? Thx JP.

  • How do I select an Underneath Object?

    I'd assumed it would be "Press Shortcut Key and tap mouse" or something like that... but it's not.  It seems the Command Key changes the mode of the selection tool, whilst partially, sometimes, enabling selecting underneath.  But it's terribly incons

  • Posting not showing in correct year

    HI, I am trying to figure out why postings that have an entry date of 01/02/2012 but a posting date of 31/12/2011 and Doc Date of 31/12/2011 are not showing up in the 2011 year for the Trial Balance, but the 2012 balance when Carry Forward has not be

  • How do I MAKE Firefox remember passwords

    I like Firefox..... I like the new version of Firefox. I DESPISE having the enter library card numbers and passwords every time..... HOW do I get Firefox to store this information? YES, FF is set to store passwords. NO, there's no exception. I'm find

  • How do I install the ScriptListener plugin for PS CC 2014 on Mac?

    photoshop I've downloaded the Mac version of the plugin ScriptListener but the instructions provided are for Windows only. I copied the plugin to the Plug-ins folder and restarted Photoshop but the plugin doesn't show up under Extensions. I have trie