Still possible to create  custom web items in WAD 7.0?

Hi,
in WAD 3.5 I was able to create custom web items and use them in the WAD after making the correct entries in the RSRRENDERER tables. Today I tried to do the same in an 7.0 environment, however, I didn't find my web item in the left hand side in the WAD. Is it still possible to create you own web items in 7.0?
Kind regards,
Tom

Hi,
Pls chk this;
[https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/spat/index.htm?sp1=SAPKW70012]
SAPKW70012 - change the last 2digits to the SPlevel you need to see all the included notes in that SP
Hope this helps,
regards
CSM Reddy

Similar Messages

  • How to create own Web Items for Web Application Designer

    Hi all,
    is it possible to create own Web Items for the Bex Web Application Designer? Each Web Item has a Master Web Item and a class that is responsible for rendering data. I need a solution to get the Web Item's data - i.e. the content of a table (if Web Item = table). So my approach would be to create an own (Standard) Web Item with an own class. For example I would like to change the table's Web Item parameter <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/> to an own class...
    Is this possible?
    Or ist there any possibility to get the Web Item's data by an interface?
    Any support is welcome...thanks in advance!
    Best regards,
    Dominik

    if you want to create your own webitem check out the link given by other sdner.
    if you want to be able to execute BW query using abap you can check out the following weblog.
    /people/durairaj.athavanraja/blog/2005/12/05/execute-bw-query-using-abap-part-iii
    Regards
    Raja

  • SAP Cloud Application Studio Create Custom Web Service From Custom Business Object and Consume in External System

    Hi Experts,
    I have requirement to create custom business object and create Web Service for that and use in external system (SAP ECC / SAP CRM / Third Party).
    1) Is it possible to create custom object web service and used in external system ?
    2) When we create the Web service from custom business object what the necessary steps(action : Create , Read , Update) require?
    3) Sample Scenario :
    My Custom Business Object
    businessobject Custom_Integration {
      element EP_VAL1 : LANGUAGEINDEPENDENT_MEDIUM_Text;
      element EP_VAL2 : LANGUAGEINDEPENDENT_MEDIUM_Text;
      element IP_RES : LANGUAGEINDEPENDENT_MEDIUM_Text;
    I have created the Web Service using this custom business object.
    3) How i can use this web service in external system? what are the prerequisite steps in external system to consume this service in it?
    Please anyone have idea about this how to do this and how to achieve this using SDK and custom business object.
    Many Thanks
    Mithun

    Hello Mithun,
    Does this section in the documentation help you:
    SAP Cloud Applications Studio Help -> Developers Desktop -> Web Services
    The entry "Task -> Create a Web Service" describes how to create a Web Service on your own BO
    The entry "Task -> Test a Web Service" helps you how you can use it in a foreign tool / application.
    HTH,
       Horst

  • How to create Custom WEB ADI using API Only for both Dowload/Upload process

    I am able to create custom WEB ADI using API for upload process. I have written the following code to create custom WEB ADI using API for upload process.
    DECLARE
    v_application_id NUMBER:= 20003;
    v_object_code VARCHAR2(255):='WEBADI_API_DEM_17';
    v_int_user_name VARCHAR2(255):='WEBADI_API_DEM_17';
    v_language VARCHAR2(255):='US';
    v_source_lang VARCHAR2(255):='US';
    v_user_id NUMBER :=1345;
    v_integrator_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTG';
    v_param_list_code VARCHAR2(255);
    --v_interface_code  VARCHAR2(255);
    v_interface_code VARCHAR2(255);--:='WEBADI_API_DEM_17_INTF';
    p_layout_code VARCHAR2(255):='WEBADI_API_DEM_17_LAYOUT';
    V_MAPPING_CODE VARCHAR2(255);
    BEGIN
    BNE_INTEGRATOR_UTILS.CREATE_INTEGRATOR(P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_USER_NAME =>v_int_user_name,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_INTEGRATOR_CODE =>v_integrator_code);
    BNE_INTEGRATOR_UTILS.CREATE_INTERFACE_FOR_API (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_API_PACKAGE_NAME =>'XXDH_PRICE_LIST_POC_PKG',
    P_API_PROCEDURE_NAME =>'CREATE_PRICE_LIST',
    P_INTERFACE_USER_NAME =>'WEBADI_API_DEM_17',
    P_PARAM_LIST_NAME =>'WEBADI_API_DEM_17',
    P_API_TYPE =>'PROCEDURE',
    P_API_RETURN_TYPE =>NULL,
    P_UPLOAD_TYPE =>2,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANG =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_PARAM_LIST_CODE =>v_param_list_code,
    P_INTERFACE_CODE =>v_interface_code);
    BNE_INTEGRATOR_UTILS.CREATE_DEFAULT_LAYOUT
    (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_INTERFACE_CODE =>v_interface_code,
    P_USER_ID =>v_user_id,
    P_FORCE =>FALSE,
    P_ALL_COLUMNS =>TRUE,
    P_LAYOUT_CODE =>p_layout_code);
    BNE_CONTENT_UTILS.CREATE_CONTENT_COLS_FROM_VIEW (P_APPLICATION_ID =>v_application_id,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_VIEW_NAME =>'XXDH_PRICE_LIST_POC_V',
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id);
    BNE_CONTENT_UTILS.CREATE_CONTENT_TO_API_MAP (P_APPLICATION_ID =>v_application_id,
    P_OBJECT_CODE =>v_object_code,
    P_INTEGRATOR_CODE =>v_integrator_code,
    P_CONTENT_CODE =>'WEBADI_API_DEM_17'||'_CNT',
    P_INTERFACE_CODE =>v_interface_code,
    P_LANGUAGE =>v_language,
    P_SOURCE_LANGUAGE =>v_source_lang,
    P_USER_ID =>v_user_id,
    P_MAPPING_CODE =>V_MAPPING_CODE);
    END;
    I need to know what are API we can use to create download+upload ADI? anyone has already prepared script....please share it it me. My email id - [email protected]
    Thanks

    Use FNDLOAD, it's the only way.
    There are 2 seperate scripts, 1 for the Integrator and 1 for Layout.
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bneintegrator.lct <your name>.ldt BNE_INTEGRATORS INTEGRATOR_ASN="XXX" INTEGRATOR_CODE="<your code>"
    FNDLOAD apps/<pw> 0 Y DOWNLOAD $BNE_TOP/patch/115/import/bnelay.lct <your name>.ldt BNE_LAYOUTS LAYOUT_ASN="XXX" LAYOUT_CODE="<your code>"
    Cheers
    Jeroen

  • Is it possible to create custom buttons in CRM Ondemand?

    Hi,
    Is it possible to create custom buttons in CRM Ondemand in any detail page like the inbuilt buttons like 'New', 'Delete' etc? If possible then how?
    Thanks
    Arpita

    You can add a button using custom javascript. but this could potentially have performance issues. please test the performance and functionality if you implement a lot javascript
    see this link : http://helponmyproject.com/TTOCOD/
    Regards,
    Royston

  • Create custom web-part page with OOTB page layout using CSOM (Javascript)

    Hi,
    I need to create a custom webpart page with a OOTB page layout (eg. Header 3 column footer) using JSOM.
    I found a link to do this using CSOM: http://spdevlab.com/2013/03/28/creating-wiki-web-part-and-publishing-pages-via-csom-in-sharepoint-2010/
    But here i have to copy the page template from 15 hive and store it in a resource file and I am also getting error as "The request message is too big" and to fix this I need to run a powershell script but I need the code to run in SharePoint online
    also.
    Isn't there a simpler piece of code in which I can enter the name of the page layout(OOTB/Custom) while creating a page in JSOM as we have in SSOM?
    Thanks for the help
    sunny

    Hi,
    According to your post, my understanding is that you want to create a custom web part page layout template.
    There are some articles about how to create the custom web part page layout template, you can refer to them.
    http://www.manageprojectsonsharepoint.com/blog/2011/03/14/creating-your-own-web-part-page-layout-template/
    http://sandeeppawar.blogspot.com/2012/06/create-custom-web-part-page-template.html
    http://doitwithsharepoint.blogspot.com/2011/08/create-web-part-pages-with-custom.html
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Is it possible to create a web page to launch Reflection for UNIX and Digital program using Dreamweaver CS6?

    I am planning to create a web page that could launch Reflection for UNIX and Digital program as part of my project in my working area.
    Is this possible?
    I am a beginner in using DW. I am still studying how to properly use Dreamweaver thinking that I could provide the requirement of my project.
    Thank you for your comments.

    This is a question for Attachmate, the maker of Reflection, not Adobe, the maker of Dreamweaver.
    Dreamweaver is a tool, not a technology. It builds applications using HTML and Javascript that run on web servers using the HTTP protocol. So I think the question to as Attachmate is:
    Can Reflection be launched from an apache webserver using HTML, PHP or Javascript?

  • Issues when creating new web items (chart) - No BLOB!

    Please help us...
    Background:
    We have created a copy of the SAP standard class: CL_RSR_WWW_ITEM_CHART, named: ZCL_RSR_WWW_ITEM_CHART and maintained the tables:
    - rsrrenderer
    - rsrrendereratr
    - rsrrenderert
    Problem occurred:
    -When running a chart using our new web item it’s not  possible to change chart type other than the default type, bar chart. We have noticed that, for the new web item, the parameter “TMP_CHART_DATA_HANDLE” is not copied to the HTML-code as for the standard web item (CL_RSR_WWW_ITEM_CHART) when executing “Edit chart” in the properties tab. When debugging the code we notice that no BLOB is being created for our copy-web-item, and that's why no chart-settings are changed.
    Questions:
    1.How to get the functionality “edit chart” to work  properly in the new class ZCL_RSR_WWW_ITEM_CHART?
    3.If it’s not possible to use the “edit chart” functionality in a copied web item then what’s the attribute to use in the HTML editor in Web Application Designer in order to set chart type? Or any other suggestions...
    Regards
    Daniel
    Message was edited by: Daniel Vasiljevic

    Prag,
    Try this. Execute the following in a SQL window started by a userid that has been granted the USER ADMIN system privilege:
    ALTER USER BODS1 VALID FROM NOW    UNTIL FOREVER;
    You can use a date instead of FOREVER --- '2016-12-31 23:59'.
    Good luck,
    Robert

  • Is it Possible to Create Custom Report in SOLMAN

    Hi Experts,
                         I am new to SOLMAN. I have one question. Is it Possible to create our own custom Reports in SOLMAN. If possible
    tell me the variuos types of reports and how we can create.

    Hi
    SAP Solution Manager can be used for entire ALM so you need to clearly specify which area and what report you are talking about
    http://www.sdn.sap.com/irj/sdn/alm-getting-started
    General transaction code for reporting is
    SOLAR_EVAL
    it helps you to build the entire project report phase wise or for service desk or for charms or test management etc
    check if that you are looking for.
    regards
    Prakhar

  • IS IT POSSIBLE TO  CREATE CUSTOM EVENT IN CONTENTDB?

    Hi,
    Is it possible to create a timely event in contentdb, which could trigger based on time like daily or weekly once? if yes
    then, can we register a custom bpel workflow to it? so that when event triggers
    then that workflow should also gets executed.
    thanks,
    Parkar

    Yes,
    basically you can create a custom agent that will run e.g. once a day.
    Regards
    - TS

  • Is it possible to create custom layouts in "Pages '09"?

    Is it possible to create my own custom document layout size in "Pages '09", or am I stuck with the 8.5 X 11 templates?
    I'd like to create a custom document layout 4.5 X 5 for a small flyer that I must design.
    O

    Is it possible to create my own custom document layout size in "Pages '09", or am I stuck with the 8.5 X 11 templates?
    The answer is that you can set a custom x-y coordinate space or select a canned x-y coordinate space from the ISO A series or any of the industry and US national series.
    This fact is not based on the application software, but on your own use of a digital graphic device that draws patterns of picture elements. Your display and your printer are digital graphic devices.
    With a digital graphic device, the application, the OS and the driver don't communicate in ASCII control codes for carriage return and so forth.
    The application, the OS and the driver communicate in x-y coordinate spaces within which you set other coordinates for typography frames and photography frames.
    This is what you see in Apple Pages layout mode as well as in the layout mode of Microsoft Word, and in any version of Aldus PageMaker since 1985, QuarkXPress since 1987 and so on and so forth.
    When you are done and have exported your design to disk as Adobe PDF, the x-y coordinate space you set for the design space can be seen as the Media Box in Apple Preview > View > PDF Display > Media Box.
    If you set an x-y coordinate space that is larger than the x-y coordinate space, then it is device-independent. Apple Preview will by default scale the size down to the dimensions of your digital graphic display, will scale the resolution down in memory, will convert the scalable type to smooth bitmap type in memory, and will convert other colour spaces to the ICC colour space of your digital graphic device. Another digital graphic device with an x-y coordinate space that has another dimension can draw your design as is, draw scaled up, draw scaled down, or draw as is in tiles. This is how books and periodicals have been proofed and then printed for a quarter century.
    Should be taught in school, though.
    /hh

  • Is it possible to transfer custom web galleries from CS3 to CS5?

    Does anyone know if it is possible to transfer my custom web galleries from PS CS3 to Adobe Bridge CS5?

    Collections are not a physical directory.  It is kind of like a spreadsheet that tells Bridge where to find the pictures and display them, so you can't just move the folder.
    Smart collections are a little easier to transfer, but do not think CS3 had those.
    Not an expert here but believe you would first have to have the same computer  and HD so that all the picture loacations are the same.
    Then go to User/App Data/Roaming/Adobe/Bridge/Collections and copy file from CS3 and insert into same spot for CS5.
    Maybe someone that have done this will jump in and prove me wrong.

  • Is it possible to create custom partylist field in crm 2013

    Hi,
    I want to create custom partylist field in crm 2013. Please tell me how to create?

    Hello,
    That's not possible. The only way is from/to/cc e.t.c. attributes in custom activities.
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

  • Is it Possible to create custom Object type in configuration Tab

    Hi ,
    We have object type for table in Development Tab in SOLAR02 , is it possible to create a custom object type to represent the table object type in Configuration Tab.
    Please let me know the steps , if it is possible.
    Best Regards,
    Saravana

    Hi
    You answer for you problem exists and its a common problem but you need to go for this development as mentioned below
    /people/andreas.diebold/blog/2007/02/13/extend-sap-solution-manager-to-manage-new-object-types
    We did long time back
    Hope ur problm and doubt is resolved now
    Regards
    Prakhar

  • Creating custom web reports

    I am new to SCCM 2012 and lots of things have changed since SMS 2003. I use to create lots of custom web reports and while the SQL statements looks similar, I cannot get it to work.
    Here is an example of one of my SQL statements back in my days when I managed SMS 2003.  What am I missing to get it working in SCCM 2012 R2?
    SELECT distint v_RSystem.Netbios_Name0 AS 'Computer Name', v_R_System.User_Name0 AS 'USER', v_GS_SoftwareFile.FileName AS 'File Name', v_GS_SoftwareFile.FileVersion AS 'Version', v_GS_SoftwareFile.FileDescription AS 'Description', v_RA_System_IPSubnets0
    AS 'Zone by IP Subnet' from v_R_System inner join v_GS_SoftwareFile on v_GS_SoftwareFile.ResourceID = v_R_System.ResourceID inner join v_RA_System_IPSubnets on v_RA_System_IPSubnets.ResourceID = v_R_System.ResourceID where v_GS_SoftwareFile.FileName = 'excel.exe'
    Thanks

    a typo on my part, it worked.  The built in one works fine just that it does not have the user name associated with a particular computer.  I also noticed that I had another typo for IP subnet.  the below script works:
    SELECT distinct v_R_System.Netbios_Name0 AS 'Computer Name', v_R_System.User_Name0 AS 'USER', v_GS_SoftwareFile.FileName AS 'File Name', v_GS_SoftwareFile.FileVersion AS 'Version', v_GS_SoftwareFile.FileDescription AS 'Description', v_RA_System_IPSubnets.IP_Subnets0
    AS 'Zone by IP Subnet' from v_R_System inner join v_GS_SoftwareFile on v_GS_SoftwareFile.ResourceID = v_R_System.ResourceID inner join v_RA_System_IPSubnets on v_RA_System_IPSubnets.ResourceID = v_R_System.ResourceID where v_GS_SoftwareFile.FileName = 'excel.exe'
    thanks again for your help on this.

Maybe you are looking for