Problem in mapping sap bw server with Visual composer

I tried to create a module.. but the sap bw server is not mapping with visual composer. is any need to have special authorization for that.. if any please mention the authorization and role to be given to get mapping of bw server with visual composer.
please look into this issue..
Regards,
Mohankumar.G

Hi,
Have u done user mapping?
Refer the following  link
<a href="http://help.sap.com/saphelp_nw04s/helpdata/en/43/cec42a45cb0a85e10000000a1553f6/content.htm">http://help.sap.com/saphelp_nw04s/helpdata/en/43/cec42a45cb0a85e10000000a1553f6/content.htm</a>
<a href="/people/marcel.salein/blog/2007/03/14/how-to-create-a-portal-system-for-using-it-in-visual-composer">/people/marcel.salein/blog/2007/03/14/how-to-create-a-portal-system-for-using-it-in-visual-composer</a>
Regards,
Hemalatha

Similar Messages

  • Problem in starting SAP liveCache server

    Hi,
    I am getting the following error message when i tried to start SAP liveCache server with LC10.
    "Restart of liveCache LC3 on saplc3cache terminated; reason: User LC3RFC has lock"
    Message no. LVC072
    Does anyone has idea! abt the error? why it comes and how it can be solved?
    Thanks,
    Venkat

    Hi Christiane,
    The startup procedure is not even reaching the lcinit script. There are absolutly no logs in knldiag and lcinit.log files. After little bit debugging I found the problem. But don't know how to solve it.
    The problem occured when I was doing disrptive testing for the liveCache server.
    When I kill ("KILL  -9 PID") the liveCache server processes (<b>master first and then child</b>) there are some IPC resources hanging over there. These IPC resources (shared memory segments) holds some locks and are preventing the liveCache server to startup.
    The problem is not happening when I kill child first and then master process (all the IPCs are getting removed in this case).
    I am wondering whether SAP has any tool to remove these IPC resources for liveCache server uniquely for perticular liveCache server (something similar to cleanipc for SAP systems).
    I can't write a script to remove all the IPC resources based on the user name ('sdb') which same for liveCache server and MaxDB. (Imagine a case where MaxDB(APO DB) and liveCache server are running together). Any other solutions?
    Any answers/suggestions are most welcome.
    Thanks,
    Venkat

  • Joining two queries with Visual Composer

    Hallo,
    I was working with visual composer to join two queries with the distinct operator. But on my table view, when i linked it with the distinct operator, i get only the key element customer (customer, customer_ext_key, customer_key). These are the queries that i want join:
    Query 1:
    Customer
    Net Sales
    Query 2:
    Customer
    Billed Quantity
    What i want to see is the following result:
    Customer
    Net Sales
    Billed Quantity
    Can anybody help me with this problem?
    Greeting,
    Murat.

    Hallo,
    I was working with visual composer to join two queries with the distinct operator. But on my table view, when i linked it with the distinct operator, i get only the key element customer (customer, customer_ext_key, customer_key). These are the queries that i want join:
    Query 1:
    Customer
    Net Sales
    Query 2:
    Customer
    Billed Quantity
    What i want to see is the following result:
    Customer
    Net Sales
    Billed Quantity
    Can anybody help me with this problem?
    Greeting,
    Murat.

  • How to get started with Visual Composer?

    Hi all,
    I'm interested on learning VC. Where do I start?
    1. What do i need to download for me to have VC?
    2. Please direct me to some links for VC installation Guides.
    3. What is VC for?
    4. I'm currently on Basis, will it help me if i learn VC?
    Thank you.
    Points guaranteed to all helpful answers.
    Regards,
    Jeff Q.
    Edited by: Shai Kfir  on Jan 20, 2008 2:47 AM

    Visual Composer 7.1 is installed as part of SAP NetWeaver for Composition Environment. You can download and install a trial version from here: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50c58b14-da6d-2a10-ca94-a3c0937828d6
    After installing, you can try a basic tutorial that will lead you step-by-step through building an application with Visual Composer: http://help.sap.com/saphelp_nwce10/helpdata/en/45/055d394c09048ae10000000a155369/frameset.htm
    Nicole

  • Update master data in BW with Visual Composer

    Hi guys.
    I have an attribute of an info object that I need to give the users access to update.
    I would like to do it with visual composer.
    I would like the user to see all rows in a table kind of view and the user will update only the rows that need to be changed and than he/she will click on a button that will update the master data table in BW.
    I believe that I'll need to use a BAPI or a RFC for that? Does anyone know any good predefined ones for that?
    Thanks
    Shlomi

    That's not really true. In VC you have access to all remote enabled functions. We have created specific functions to update attributes.
    We are using it to allow our users to update their own master data instead of bugging the BI team.
    Here is an example of our code.
    Before I paste this in, you need to know a couple things.
    1. You can only update one record at a time (with my code)
    2. You have to pass back in the entire record, even if you are only changing one attribute of many.
    3. It automatically does the attribute change run, so you do not need to to it.
    This is a simple infoobject with a few attributes.
    First we created a Get function (which collects the data and shows it to the user.
    Then we gave them a edit button on the table that goes to a pop up.
    The user selects the record to change, then hits the edit button.
    When the popup  comes up the data is shown in a form, with a save and cancel button, fields that you do not wish users to see or change, hide them, but they all most be present on the form.
    The  when the user hits save, it send it to the below function. The name of the infoobject is ZCAT_SUB.
    FUNCTION zcat_update_subparty2.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_T_ZSUBPARTY) LIKE  /BIC/PZCAT_SUB
    *"  STRUCTURE  /BIC/PZCAT_SUB
    *"  EXPORTING
    *"     VALUE(E_RESULT) TYPE  STRING
      TYPE-POOLS: rs, rsarc, rsarr, sbiwa, rssm.
      DATA:
            l_t_zsubparty LIKE /bic/pzcat_sub OCCURS 10,
            l_s_minfo      TYPE  rssm_s_minfo,
            l_t_idocstate  TYPE  rsarr_t_idocstate,
            l_subrc        LIKE  sy-subrc.
      APPEND i_t_zsubparty TO l_t_zsubparty.
      CALL METHOD cl_rsdmd_update_master_data=>update_attributes_static
        EXPORTING
          i_iobjnm      = 'ZCAT_SUB'
          i_t_data      = l_t_zsubparty
          i_s_minfo     = l_s_minfo
          i_monitoring  = rs_c_false
        IMPORTING
          e_subrc       = l_subrc
        CHANGING
          c_t_idocstate = l_t_idocstate.
      IF sy-subrc <> 0.
        e_result = 'Error happened'.
      ELSE.
        e_result = 'Process Completed'.
        DATA:
          l_t_msg                  TYPE rs_t_msg,
          l_r_activate_master_data TYPE REF TO cl_rsdmd_activate_master_data.
        CREATE OBJECT l_r_activate_master_data
          EXPORTING
            i_iobjnm               = 'ZCAT_SUB'
            i_p_q_have_to_exist    = rs_c_true
          EXCEPTIONS
            iobj_not_found         = 1
            iobj_not_active        = 2
            generate_program_error = 3
            p_q_do_not_exist       = 4
            p_q_txt_do_not_exist   = 5
            OTHERS                 = 6.
        IF sy-subrc = 0.
          l_r_activate_master_data->activate( IMPORTING e_subrc = l_subrc
                                            CHANGING  c_t_msg = l_t_msg ).
        ENDIF.
      ENDIF.
    ENDFUNCTION.

  • Problem in mapping remoteobject on server side

    Hello all
    I am trying to use remoteobjects in Flex and PHP via Zend_AMF.  I am having problem in mapping the data object in flex with the one in PHP.
    Here's my code....
    private function getAuthors(event:Event):void
         serviceRO = new RemoteObject();
         serviceRO.endpoint = "http://localhost/sampleproj/public/";
         serviceRO.destination = "zend";
         serviceRO.source = "MyService";
         serviceRO.addEventListener(FaultEvent.FAULT, faultListener);
         serviceRO.getData.addEventListener(ResultEvent.RESULT, resultListener);
    Now, here's the server side directory structure that works for me....
    webroot
    + sampleproj
    ++ public
    +++ index.php (index file for the webapp)
    +++ MyService.php (this is the service class)
    +++ VOAuthor.php (this is the Value Object class)
    Since the index file, and the service file and value object are all in same directory, it works.
    This is what DOESN'T work....
    webroot
    + sampleproj
    ++ services
    +++ MyService.php (this is the service class)
    ++ vos
    +++ VOAuthor.php (this is the Value Object class)
    ++ public
    +++ index.php (index file for the webapp)
    The error that I get is:
    Channel.Connect.Failed error
    Here's little of something that's going on in index.php
    <?php
    require_once ('C:/webtools/zendframework/zf/library/Zend/Amf/Server.php');
    require_once ( realpath(dirname(__FILE__) . '/../services/MyService.php') );
    $server = new Zend_Amf_Server();
    $server->setClass("MyService"); // adding the class to AMF server
    $server->setClassMap("VOAuthor", "VOAuthor"); // mapping the ActionScript VO to PHP VO
    echo($server->handle());
    ?>
    My guess is that in ActionScript code I have to do something with RemoteObject's endpoint.
    Can anybody please help me out with this?
    Thanks and Regards
    ShiVik

    The problem turned out to be in the php code.
    Here's how I changed it
    <?php
    require_once ('C:/webtools/zendframework/zf/library/Zend/Amf/Server.php');
    $server = new Zend_Amf_Server();
    // the following methods provide the lazy loading of services and value objects
    $server->addDirectory( realpath(dirname(__FILE__) . "/../services/") );
    $server->addDirectory( realpath(dirname(__FILE__) . "/../vos/") );
    echo($server->handle());
    ?>
    Earlier I wasn't taking into account the change of directories for service and value object files.
    Thanks and Regards
    ShiVik

  • Create directory on SAP application server with blanks

    Hi,
    is it possible and if so how to create within ABAP a directory on a Linux based SAP application server that contains blanks.
    We've tested with SXPG_COMMAND_EXECUTE but didn't succeeded.
    A working code snippet would be great.
    Thanks and kind regards
    Florian

    Hi
    Try with Tcodes SM49/SM69.
    Thanks,
    Sreeram

  • Debugging M3 Server with Visual C++ (Newbie Question)

    Hi there,
    is there a FAQ or any other written instruction on how you can debug a M3-server app. with Visual C++. I know (have heard an seen it) that it is possible, but i don`t know how to convert an existing makefile into a VC-makefile project and all the parameters that are involved...
    Any hint is appeciated,
    thanks
    Christof

    What you nee to do is this:
    Run your java app (in an IDE if poss.) and have it pause at some point (if its a command line app., wait for a key, if its a Swing app, you're ok, just wait for the app. to appear. Now start VC6 and go
    menus:
    Build/StartDebug/Attach to process. Ther should be one process calleed java. Attach to that. If your DLL has debug info in it, you should be able to navigae to the source and set breakpoints etc.
    Alternativly, you could just put OutputDebugString(...) (this is a Win32 function) statements in your DLL and use DBMON.EXE (from the win32 SDK) to look at the output.

  • Problem when launching the inegration server with -Xrunhprof

    Hi,
    I tried to launch an integration server with this java option -Xrunhprof
    java -Xrunhprof:file=dump.hprof, format=b mainclass
    but I get this :
    HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_05-b04 mixed mode)
    # Error ID: 504152414C4C454C33434156454E4745284541500E4350500202 01
    # Problematic Thread: prio=10 tid=0x001bf668 nid=0x5 runnable
    Heap at VM Abort:
    Heap
    PSYoungGen total 16256K, used 0K [0xe6000000, 0xe7000000, 0xe7000000)
    eden space 16128K, 0% used [0xe6000000,0xe6000000,0xe6fc0000)
    from space 128K, 0% used [0xe6fe0000,0xe6fe0000,0xe7000000)
    to space 128K, 0% used [0xe6fc0000,0xe6fc0000,0xe6fe0000)
    PSOldGen total 114688K, used 81K [0xe7000000, 0xee000000, 0xf6000000)
    object space 114688K, 0% used [0xe7000000,0xe7014480,0xee000000)
    PSPermGen total 4096K, used 811K [0xf6000000, 0xf6400000, 0xfa000000)
    object space 4096K, 19% used [0xf6000000,0xf60cad58,0xf6400000)
    Abort - core dumped
    could anyone help, please ?
    thanks
    red1

    I was using these flags (-XX:+PrintGCDetails -XX:+UseParallelGC ) and when I stopped using them, the error went away.
    Appears like I will not be able to profile with parallel GC which is the method we have adopted in production.
    gil.

  • Error while making iview with visual composer

    I am trying to make an iview usign visual composer.
    In the document that i have for making the iview , it says that when you have the bapi list you need to drag and drop the bapi to the empty iview pane . When i do so it gives me the following error ...
    "Portal request failed
    (com/sap/mdi/ObjectFactory)"
    What do i do ?
    Would appreciate a prompt help!
    thanks again for making me move ahead
    I had a conversation with a parson on the forum named Venkat . I am posting the same for other people in the forum to understand what exactly is my problem and how much have we explored .
    Regards
    Deepak Singh
    Hi Venkat ,
    I tried to do so research on the problem and it is being talked about in a thread on the forum . They ask to refer to the sap note 765461 to resolve the mdi reference . In the note they ask you to refer the installation guide of the installed version of EP . I have EP 6.0 SP2 . The installation guide says the following ...
    7.1.2 Adding References
    To enable some of the features in the portal environment, add references to reference file.
    To add a reference:
    1. With a text editor, open the file:
    Windows: <installation drive>:\usr\sap\<SAP J2EE instance name>\j2ee\<instance
    number>\cluster\state\services\file\work\managers\reference.txt
    Unix: /usr/sap/<SAP J2EE instance name>/j2ee/j2ee_<instance number>/
    cluster/state/services/file/work/managers/reference.txt
    2. Look for the line:
    reference service:eisconnector library:jco
    3. After the line mentioned in previous step, add the following in a new line:
    reference service:eisconnector library:com.sap.mdi
    4. Save your changes and close the file.
    5. Delete the file:
    Windows: <installation drive>:\usr\sap\<SAP J2EE instance name>\j2ee\<instance
    number>\cluster\state\services\file\work\managers.bin
    Unix: /usr/sap/<SAP J2EE instance name>/j2ee/j2ee_<instance number>/
    cluster/state/services/file/work/managers.bin
    6. Restart the SAP J2EE Engine. See Starting the SAP J2EE Engine [Page 60].
    7. Restart the SAP J2EE Engine again.
    I did the same ....but now my server is not starting . By chance i didn't keep a bakup of the file which they asked me to delete .
    Now what do i do ?
    I think i am stuck up badly here .
    EVERYBODY IN THE FORUM PLEASE HELP
    I am not sure how a thing that is mentioned in the installation guide cannot work !
    Regards
    Deepak Singh
    Deepak,
    It is not that bad. By deleting you are recreating that managers.bin file during startup based on the reference.txt and library.txt (recollecting from my memory). This could also happen if there is a typo or some special characters in the reference.txt
    I don't know what J2EE patch you are at, but after PL22 you can actually add the reference using the "add reference" command from the administrator console.
    could you please send the error you are getting? To revert back the simplest thing is removing the line you have added and restart.
    Hope this helps.
    -Venkat Malempati
    Note: Please reward points if your problem is solved or useful.
    Venkat ,
    I am using J2EE engine 6.20 SP2 .I tried to get the server started by the following two methods
    1) I removed my entry in the reference.txt file and then start the engine by running go.bat from the required path .
    2) I got the original file managers.bin which i deleted and then placed in the required path and restarted the server
    Both the options didn't work .
    I am not getting any error when i restart the server. When i run the batch file go.bat it starts the console and shows me the various managers loading . After it shows the Clustermanager loading , it stops and gets stuck .
    Not sure what should i do now .Is reinstallation the only solution ?
    Is there a solution from the administrator console ?
    Regards
    Deepak Singh
    Deepak,
    No you don't need to re-install. Try the following.
    1. First start the state controller by runing go.bat in the following directory.
    /usr/sap/xxx/j2ee/cluster/state/go.bat
    You get the message waiting for cluster manager.
    2. start the server in a different window
    /usr/sap/xxx/j2ee/cluster/server/go.bat
    You get the message waiting for cluster manager
    3. Start the dispatcher
    /usr/sap/xxx/j2ee/cluster/dispatcher/go.bat
    Please let me the know the error messages.
    You can chat with me between 10:00 - 11:00 PM US EST.
    Regards
    -Venkat Malempati

    People ,
       I tried to do what venkat suggested . Infact I had mailed him the snapshot of the screen when i start the state controller as he suggested . For other people in the forum this is what is happening . When i start the state controller it displays an error and then the window closes immediately . I have managed the screen shots somehow and in those i could find two messeges in the begining and the end which could be useful for debugging the problem ...they are
    1) [DBMS]: ID3004:DB file header do not match exception .
    com.inqmy.services.dbms.server.interfaces.DatabaseException: Error while opening database ...
    2) ID000544: Error statrting service dbms. DBMS service not started properly due to: Errro while opening database
    [Framework -> criticalShutdown] Service dbms startup error !
    After the state controller window closes i run the server in a different window and i get a message waiting for the cluster manager as suggested . Now i start the dispatcher and i get the same messege there as well ie waiting for the cluster manager .
    What is to be done now . Is this information sufficient to suggest me something ? Please let me know if you require any other information .
    Regards
    Deepak singh

  • Getting Started with Visual Composer...............

    Hi All,
      I want to learn <b>Visual Composer</b>. Plz send some documents to me to learn the Visual Composer from the Basic.And also send some real time scenarios(by the people, who are working on Visual Composer).
    Plz help me.
    Thanks in Advance,
    Munu...

    Hi Munu,
    Welcome to Visual Composer world. Please go through the following links to get started in VC....
    Following links will help you understand what VC is:
    What is Visual Composer ?
    visual composer
    Visual Composer: Finding the Documentation
    <a href="/people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation:///people/judy.kestecher/blog/2006/07/11/visual-composer-finding-the-documentation
    Visual Composer Learning Map:
    <a href="https://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d">https [original link is broken]://www.sdn.sap.com/irj/sdn/visualcomposer?rid=/webcontent/uuid/0ac86a27-0e01-0010-99b4-e1d7de29ee5d</a> [original link is broken]
    Docs for starting development in VC:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/42/c2ba85545e3116e10000000a1553f7/frameset.htm">Modeling Applications with SAP NetWeaver Visual Composer</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/63f2052e-0c01-0010-b9a2-e1f7457a7fbe">SAP NetWeaver Visual Composer Modeler's Guide</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/42/ef826a370a1bcae10000000a11466f/frameset.htm">SAP NetWeaver Visual Composer Reference Guide - help.sap.com</a>
    <a href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9326072e-0c01-0010-bc97-f72e93338101">SAP NetWeaver Visual Composer Reference Guide</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm">SAP NetWeaver Visual Composer: User Guide</a>
    <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e">SAP NetWeaver Visual Composer - How to Guides</a>
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/f6/1ad642dfa9f340e10000000a1550b0/frameset.htm">Visual Composer - How to . . .</a>
    Bye
    Ankur
    Do reward points for helpful as well as solved answers!!

  • Error message with visual composer 7.2

    Hello,
    I'm starting to use the new visual composer with CE 7.2.
    When I deploy my model, I have this message : "exception on the server while running the build process : See the log for details. !XMSG_GENERAL_ERROR!"
    Could you please help me to solve this problem ?
    Best regards
    Nicolas

    Hello
    thank you for your help.
    the message are : 
    [][VC-GenFwk] Error model generation : CAUSE 0
    java.lang.ArrayIndexOutOfBoundsException: 0...
    [][VC-GenFwk] Error model generation : CAUSE 0
    java.lang.ArrayIndexOutOfBoundsException: 0...
    Best regards
    Nicola

  • How to work with Visual Composer

    Hi,
          I am working with EP 7.1,NW04S.I also install IE 6.0,Adobe SVG Viewer3.0,Flash environment in my local machine.I assign the super admin role to the particular user  also.Even thou.once i am giving the URL for the visual composer like http://host name:port number/vc/default.jsp ,the design page of Vc is not opening and its showing  error like   The requested resource /vc/default.jsp is not available.
    I think it is some post configuration work has to be done.
    How to resolve this error so that i can work on visual composer ? Your idea will highly appreciated.
    Thanks..
    Kundan
    Edited by: Kundan 2009 on Mar 8, 2010 5:47 AM

    Hi,
    cross check post installation steps below
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/1d55042e-0c01-0010-e3a3-b009c445ee23?QuickLink=index&overridelayout=true
    system alias is the reference system which contains properties of backend systems ( example ECC ) to map. I think you already did that
    you can search in sdn with key words system or system alias for more information.
    Regards,
    Koti Reddy
    Edited by: Koti Reddy Chimalamarri on Mar 8, 2010 10:13 AM
    Edited by: Koti Reddy Chimalamarri on Mar 8, 2010 10:17 AM

  • Select every lines of a tabe in one time, with Visual Composer

    Hi experts,
    I am using Visual Composer, but I meet some issues. Does any one know how to select every lines of a tables in a same time? do I need a buitton for this?
    thank you for your reply
    regards,
    Pierre

    hi Jhansi,
    thank you very much for your response.
    nevertheless, this is not what I wanted to do (perhaps I should explain better).
    In fact, what I want is is to do as if I clicked on every single line of my table, but in one time (without cliking on them one by one...)
    I do not want to short them with color, I reall want to select every one of them, but in one time.
    thanks a lot
    regards,
    pierre

  • How to get started with visual composer 6.0??????

    I have downloaded the setup.exe from service.sap.com. But after installing it i am not being able to view any of the element in the different tabs like.....define properties, select data services, define fields, design the views, add elements.......the window is completely blank.....moreover after starting visual composer 6.0....there is an error displayed in the IE status bar......the error is "Object doesn't support this property or method"......thank you very much......

    All you need are SVGViewer 3.0, from http://www.adobe.com/svg/viewer/install/main.html,
    and MS XML Parser 4.0, from http://www.microsoft.com/downloads/details.aspx?FamilyID=3144b72b-b4f2-46da-b4b6-c5d7485f2b42&DisplayLang=en.
    Hope that helps
    marek

Maybe you are looking for

  • Upgrade from PI 7.0 SP18 to PI 7.1 EHP1

    Hi all,                                                                                 I'm performing an Upgrade from Netweaver PI 7.0 SP18 to PI 7.1 EHP1. I've checked all the notes ragarding any known issuses about the process BUT.... Here's the p

  • External Hard Drive - Partition or Not?

    Ok, I have looked everywhere for the answer and everyone has a different opinion. So, I'd like to get opinions on my situation because the Discussions have always been the most helpful. I recently had a post about whether I should upgrade my Powerboo

  • Windows 8 and 8.1 units loosing connection to printers.

    I am having an issue with Windows 8 machines losing connection to Canon Printers. Everything is being run through our server and the issue is only affecting windows 8 and 8.1 machines. They lose connection to the printer (through the server) but the

  • Large black box in app store of ipad mini

    I am not able to use the app store on the new ipad mini I just purchased my ipad this afternoon.  Now my app store in inaccessable. thanks, Kasey

  • Always uploads whole page, even with minor changes // please help....

    even if I only change the permission code to the webpage or even if i change one dot, the page uploads the whole thing again. If I click "changes only" it doesn't work. The this occurs only if I upload to mobile me, when I used another ftp server the