BI 7 WAD integrated with Visual Composer

Hello gurus!
I need to know how can I add WAD item into VC report? I am using BI 7, and I havent found information about it, only from BW 3.x
Somebody can help me, please???
Thanks a lot for all your help
Best Regards
Lety

Hello!
Thanks, but, this document doesnt answer my issue... I would like to know, for example, I use Broadcasting function in my WEB template, like bottom, then I want to "add" or "send" this web template to my Visual Composer Report, I know, as the document says, for BW 3.x we must add code, but not says anything regarding BW 7....  Do you know? Somebody has done something similar....
Thanks

Similar Messages

  • 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

  • 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.

  • 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

  • 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!!

  • 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

  • Save model with visual composer

    hello,
    when i save the model with visal composer framework, it save the model but only the model. i mean that pages, Iviews, objects, ... are not saved with the model.
    i don't have any erro message that could help !
    anyone can help ?
    best regards,
    Olivier.

    yes i can deploy all the object in the portal !
    everything work fine except the save option into visual composer !
    yes that's what i mean ... ;O)
    is there such preview version of VC downloadable ???
    best regards,
    Olivier.

  • 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

  • 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

  • Integration Visual Composer and BPM (netwearver CE7.11)

    Hi Guys.
    System: netwearver CE7.11
    We have a problem with the process of integration between Visual Composer and BPM. We have found a message  |https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2011e628-b317-2c10-9fa7-952155e10705] explaining the step by step to join my visual compeser with BPM.
    The steps from guide(the guide includes a video) already have been implemented and the final result looks fine, but it is in this moment, when we want to create and deploy the BPM process with the result from guide(Web dynpro wrapp with the visual composer), when the error happens, the BPM process is created OK but not properly deployed.
    Could anyone help us?, thank you in advanced.
    The message error is:
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    children=[
    Status ERROR
    Plugin : com.sap.ide.tools.services
    code=0
    Deploy Exception.
    com.sap.engine.services.dc.api.deploy.DeployException: [ERROR CODE DPL.DCAPI.1027] DependenciesResolvingException.
    Reason: ASJ.dpl_dc.006505 [ERROR CODE DPL.DC.3033] An unresolved dependencies error occurred while sorting the deployment batch items regarding the dependencies.; nested exception is:
         com.sap.engine.services.dc.cm.deploy.sdu_deps_resolver.UnresolvedDependenciesException: [ERROR CODE DPL.DC.3437] Unresolved dependencies found for the following deployment items: [
    1. Component: name: [firsttask], vendor: [demo.sap.com], location: [localDevelopment], version: [20090617122840], software type: [J2EE], csn component: [], dependencies: [[name: 'tcblloggingapi', vendor: 'sap.com', name: 'tcddicruntimefacade', vendor: 'sap.com', name: 'tcaiibaseofflinefacade', vendor: 'sap.com', name: 'tccmi', vendor: 'sap.com', name: 'tcvcglxbridgecomp', vendor: 'test.sap.com', name: 'tcblexceptionlib', vendor: 'sap.com', name: 'tcbljrfcapi', vendor: 'sap.com', name: 'tcwdapi', vendor: 'sap.com']]
    Unresolved dependency:
    name: 'tcvcglx~bridgecomp', vendor: 'test.sap.com'     ( not found in the admitted batch items and the repository)
    Edited by: iaspano on Jun 18, 2009 5:31 PM

    Hi,
    Is 'tcvcglx~bridgecomp' already deployed or part of the deployment? There is a deploy time dependency specified. Thus without this DC the other DC won't deploy.
    Cheers
    Martin

  • Visual Composer VC implemented in WAD BEx Web Application

    Hi,
    is it possible to implement visual composer graphic into simple WAD BEx Web Template? If yes, how? Thank you for any hints.
    Greetings
    Standa

    Hi,
    Pls Refer these doc's on BEX with Visual Composer
    What is Visual Composer? User Guide
    http://help.sap.com/saphelp_nw04/helpdata/en/01/4b7e40417c6d1de10000000a1550b0/frameset.htm
    SAP NetWeaver Visual Composer - How to Guides
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/16244247-0a01-0010-3294-d81c21e7e86e
    Creating Applications Using SAP NetWeaver Visual Composer
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2456bf8a-0a01-0010-709a-ffc91ade9f42
    How to Model Portal Content Using SAP Visual Composer – No Programming Required!
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ff65b5a2-0a01-0010-5b97-e747192a1d49
    Troubleshooting VC:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/8ee70a47-0a01-0010-d198-f94c2d7d320c
    VC e-Learning:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5a35194b-0a01-0010-7598-a4bb10e0c5c9
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cb294d33-0501-0010-17b9-e9c65bc84e57
    https://www.sdn.sap.com/irj/sdn/wiki?path=/pages/viewpage.action?pageId=4411
    What is Visual Composer ?
    What is Visual Composer or VC, how to install, Useful URLs
    Visual Composer: Finding the Documentation
    Visual Composer and NDS
    *Hope this helps*
    Regards
    CSM Reddy

  • Visual Composer 7.0 roadmap

    Hello experts,
    We have NetWeaver EP 7.0 installed with Visual Composer in our C&B and DEV environment. We haven't started developing with it yet.
    My questions to you is:
    What is the future of Visual Composer 7.0?
    My understanding is that SAP has put a lot of energy integrating Visual Composer into CE 7.1. This new version has significant changes compare to it's predecessor. Visual Composer for CE 7.1 seems to be the way to go if one needs to create applications based on existing data services. In short terms, both versions will coexist. Bbut in long terms...?
    Can anyone help me find the Visual Composer roadmap?
    Thanks a lot for your help,
    Nathalie

    Hi,
    This is a quote from the Visual Composer main page on SDN: (/people/jarrod.williams/blog/2009/09/14/whats-new-in-visual-composer)
    "_Visual Composer 7.0_
    In light of the progress made relating to parity between Visual Composer 7.0 and Visual Composer CE, our investment in Visual Composer 7.0 will be limited to maintenance after the release of enhancement package 2 for SAP NetWeaver 7.0. We are confident that with the provisions made for migration to Visual Composer 7.1 enhancement package 1 or Visual Composer 7.2 and the great feature set in Visual Composer for enhancement package 2 for SAP NetWeaver 7.0, our existing customers running Visual Composer 7.0 will enjoy the best of both worlds: the option to upgrade to Visual Composer 7.2 or to stay with the latest release of Visual Composer 7.0."
    I'll stress the last part, though VC on CE is a great version, staying with the latest release of Visual Composer 7.0 is also good, depending on your needs of course, for instance - the attractive Flash runtime which is currently exclisive for VC 7.0, the "Flash Components" feature that was entered on SP5 of 7.01 (and in 7.02) , which enables you to consume custom 3rd party flash components or Xcelsius controls inside Visual Composer,, which makes flash black-boxes easier to consume than in CE, .. etc..
    still - VC on CE of course has it's own advantages - the ability to consume clustered services, life-cycle management, it's intergration with the other CE components etc..
    and so if you'll find that VC 7.0 is not enough, you could always upgrade and migrate to the CE versions (7.1 or 7.2).
    bottom line - it's a win win situation.

Maybe you are looking for

  • Check boxes that turn layers on and off

    hay all im fairly new to this part of adobe but i have a good understanding what i need i to be able to have check boxes that turn layers on and off when the tick is shown and when it is not i know this is possible through scripting but i dont have t

  • Material blocked due to a physical inventory - VL02N - Post Goods Issue

    Hi, We are working with SAP R/3 4.6C IDES. During a business process we need to run VL02N and to click the Post Goods Issue button. When we do that, we are getting the following error: "Material P-103 1000 0001 blocked due to a physical inventory" An

  • Apply template to html page

    Hi - I must be missing sth big, I just can't relate a template (.dwt) with a page (.htm). Both files are in the same folder, the site's associated folder, but the site does not show any templates ('no templates' on the 'select template' dialog box).

  • Javascript future in Webdynpro (JAVA and ABAP)

    Hi WebDyn Pro's, I see many sophisticated capabilities enabled inside Webdynpro for JAVA from use of Javascript.  Further, in many cases, Javascript provides the only solution for the requirements! From this forum, I think I hear that Javascript capa

  • Job as a SAP FI consultant- fresher/ Trainee

    Hello Experts, Myself Prasad, I have just passed SAP FI certification examlast month. I am working as sap super user in SAP FI Functional areas (3 years) but now  I want to switch to core SAP domain as consultant or SAP support. but all big brands &