Visual composer + data master

Hello!!
I need to use visual composer for  that the user can update the master data,
I need information for this, can somebody to say to me some link, or some documentation???
Very thanks

Very thank
Your help has been very good

Similar Messages

  • Visual Composer: Date Range in Query

    Hi,
    While working in Visual Composer, I have come across the need to re-use the same query 20 times, but with slightly different date ranges. One way would be to create 20 copies of the same query and change the selection dates as needed on each of them. However, is it possible to provide date ranges in a query in Visual Composer? Right now its only letting me enter single values.
    Thanks
    Adeel

    Problem can be resolved by using a colon between the dates. Furthermore, the DSTR function in the expression editor can be used to form the desired dates.

  • Visual composer  - BAPI - current parameters

    I created the custom BAPI (function module) in R/3. I added some import parameters in the function module, those newly added parameters are not visible in visual composer data services.
    How do I, get the latest changes parameters in visual composer?
    Thanks,
    Subbu Kuppusami

    Subbu,
    Im sorry the mentioned method works only for VC 7.1 in VC 7.0 there is a different method.
    Choose Tools --> Options --> Compiler.
    In Data Service Retrieval combo box
    choose Donot cache data service get latest.
    Log off from your model.
    log on again and goto the context menu of your bapi.
    then choose Define data Service your import parameters should appear now.
    Regards,
    Sami
    Please reward points if this is helpful

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

  • Data Service System In Visual Composer  7.1

    Hello,Experts:
    Recently ,i am focusing on the mirgration function of SAP NetWeaver,and visual composer is among them .
    In netweaver 2004s enterpise portal ,i have done the system connection between Enterpise Portal and ECC and BW ,and the system alias can be accessed in visual composer .Both the bapi and infocube can be got by the system alias .The Visual Composer Application based on the backend data service is ok .
    However ,i have registry the ecc system in CE Portal and its version is SAP Composte Environment SP5 .I can check out the system registry is ok . However ,when i open the Visual Composer on the CE Portal ,i couldnt find the system alias that i have registried .It is blank .Plus,we havent install SLD on the CE Java Server ,and solution manager is put forward to take the place of sld .
    Can anybody help me out ? The problem has any relationship with the Enterpise Service Repository ?
    Thanks for your help in advance .
    Eleanor

    Hi Eleanor,
    first of all if you want to use SAP BW in Visual Composer for CE then you have to install Enhancement Package 1. SAP BW resp. queries, planning functions and so on is only supported with VC 7.11 (EhP1 for CE). I also recommend you to set up the SLD in your CE system resp. that it works as a "slave SLD" when you have an existing SLD in your landscape. There are wizards available in the NetWeaver Administrator.
    Go to http://<host>:<port>/nwa to login into NetWeaver Administrator.
    Navigate to Configuraton --> Scenario --> Configuration Wizard and choose the Initial setup of functional unit SLD.
    If you want to have access to BAPIs there are two ways to access the system. You can define a portal system object to access the ECC or you can define in NWA a RFC connection to access ECC.
    [Maintaining RFC Destinations|http://help.sap.com/saphelp_nwce10/helpdata/en/5a/97a066223e440b8ead3da027b17d9e/frameset.htm]
    [Wiki to setup RFC connection|https://www.sdn.sap.com/irj/scn/wiki?path=/display/vc71/rfc+destination]
    Hope that helps,
    Best Regards,
    Marcel

  • Visual Composer 7.0: system (data source) does not appear

    Hi...
    There is a problem: system (data source) does not appear in Visual Composer 7.0
    1. There is a connector MDM. It is made by PCD. It has been tested. The test is ok.
    2. However, as the data source in Visual Composer a connector MDM does not appear.
    3. This problem affects all types of connectors, but the Web Service Connector. Connector Web Service is always there.
    What the .....?
    P.S. The role of the creator of the connector is the same user of Visual Composer
    Thanks...

    Hi...
    There is a problem: system (data source) does not appear in Visual Composer 7.0
    1. There is a connector MDM. It is made by PCD. It has been tested. The test is ok.
    2. However, as the data source in Visual Composer a connector MDM does not appear.
    3. This problem affects all types of connectors, but the Web Service Connector. Connector Web Service is always there.
    What the .....?
    P.S. The role of the creator of the connector is the same user of Visual Composer
    Thanks...

  • Date type is not captured in Visual composer 7.0 using SQL server as DB

    Date type is not captured in Visual composer 7.0 when using SQL server as DB, and field type is "SmallDateTime" in DB.

    Create new Text tab in fields of Table & select Type as Date in VC or use DSRT date function

  • How do I write data back to DSO in visual composer

    I have created a model in visual composer that queries on a write-optimised DSO in BI. Basically I have created a form that lists the all the fields (like Quotations,Materials, plants) in vc.
    The business requirement is that the users should be able to be create or change the data in the fields through this form and then I should be able to write back the data(material and plant) back to the DSO.
    But I don’t see any of the services/RFCS/BAPIs listed under SAP_BW system in Visual Composer like they are listed under R/3 systems . By services/BAPIs, I meant APIs like – RSDRI_ODSO_MODIFY_RFC or BAPI_ODSO_READ_DATA_UC.
    What else do I need to configure to see these RFCs in VC.
    Please suggest.
    Thanks a lot in advance!

    Thanks a lot prachi for you reply,
    Our SAP_BW system is already configured as 'Like R/3 system'.My admin gave my userid read/write permission under systemAdmin->permissions in portal. But I am still not able to view any BAPIs under SAP_BW system in Visual Composer.
    Can you please tell me where can I configure my user to have 'View system' permission and does this need to be added in SAP_BW under System Landscape in portal ?

  • Data Service System In Visual Composer

    Hello,Experts:
    Recently ,i am focusing on the mirgration function of SAP NetWeaver,and visual composer is among them .
    In netweaver 2004s enterpise portal ,i have done the system connection between Enterpise Portal and ECC and BW ,and the system alias can be accessed in visual composer .Both the bapi and infocube can be got by the system alias .The Visual Composer Application based on the backend data service is ok .
    However ,i  have registry the ecc system  in CE Portal and its version is  SAP Composte Environment SP5 .I can check out the system registry is ok . However ,when i open the Visual Composer on the CE Portal ,i couldnt find the system alias that i have registried .It is blank .Plus,we havent install SLD on the CE Java Server ,and solution manager is put forward to take the place of sld .
    Can anybody help me out ? The problem has any relationship with the Enterpise Service Repository ?
    Thanks for your help in advance .
    Eleanor

    Hi,Govindu
    I have read that message already .Thanks for ur help .
    However ,i find that there's no VC-Role in CE SP5,and the permission add-in didnt work .Besides ,when i deploy VC component on the EP 6.0 ,i can find these iviews or models at the directory of content administrator->visual composer ,while in the new version ,i havent find the configuration path on the Visual Composer Client,and when i deploy the VC Applications ,it is deployed in the path of webdynpro content management .
    and my question is still up in the air .

  • How to write plan data into Transactional Cube from Visual Composer ?

    Dear experts,
    Visual Composer is very powerfull to build a 'nice-looking' web-report (I think is much better than Web Application Designer in term of freely position the chart/graph/table/selection parameter in anywhere we like. We can't have this flexibility in WAD) plus it also has strong integration to R/3 for posting the  transactions via RFC-Enabled Function Module (such as changing customer credit limit, approve PO, approve Sales Order, etc), so that the R/3 user won't even have to know the TrxCode.
    In addition to this, I just wondering if VC also capable to write plan data into transactional cube via Write-Enable Query. We can simply insert a BW Query into VC as planning layout (set the edit-mode to "editable") plus having some Wizards to make it more user-friendly and self-explanatory for the users.
    But I am not sure how to save the changes back to transactional cube from VC.
    Could anyone please kindly advise how to achieve this.
    "Seeing is believing" is always my learning method, so I would appreciate some "actioanable" explanation or hints.
    Many thanks,
    Sen

    Hi Sen,
    As far as I know, it's not possible to write data into transactional cubes directly from a table in Visual Composer through standar method, but it's possible to integrate a WAD with your input ready query into a URL element in VC (You can fill entry variables in VC and call WAD dinamically), so it's possible to create a planning application in VC calling dinamically WAD's.
    Another way to interact through VC is creating button objects that calls planning sequences (with BAPI calling RSPLS_PLSEQ_EXECUTE). Also can fill variables in VC and pass them to sequence.
    Regards,
    Enrique

  • 2 data sources in same chart in Visual Composer

    Hoping you can answer a question for me.
    Do you know if there is a way in Visual Composer to combine the output of 2 data sources into the same chart or table?
    Here is an example of what I am after.
    Inside BW, we currently have sales history for the company (i.e. monthly sales numbers). We can use a BW query as data source for this data.
    Now we have found some interesting web services that provide 'market' type data,( i.e. some economic indicator) that we'd like to corrolate to these sales. We'd like to also chart the monthly value of this external indicator on same chart. I can use an external web service as a data source for this data. Howveer, VC seems to only allow me to send  the output of this service to a separate chart/table. This is not ideal. I'd rather be able to incorprate in same chart.
    If this is not possble, can Web Application designer consume web services? If so, I'd be fine with doing whole application with this tool.

    Hi Brad,
    Technically it is possible to combine to data souces using COMBINE, UNION operators. So the resulting table contains columns of two data souces.
    You can use this resluting table to create a chart.
    I have not checked this uisng web services. But it should be possible.
    Thanks,
    Venkata

  • Value Help for Date inverval in Variable Form in Visual Composer

    Hi all,
    I have created a variable form which has Date interval with value help as one of the parameters.
    when i click on the value help and select any date interval then it is displayed as say '20081015:20090101' but when i submit this value i get an error "INVALID_VARIABLE_VALUES".
    this variable is working fine when i manually enter the interval as '10/15/2008:01/01/2009'.
    is there any way where we can input the date interval value as '10/15/2008:01/01/2009' using the value help.
    any help is highly appreciated.
    regards,
    RK,.

    Hi Ramakrishna,
    Value help is considered as a popup iview in visual composer. You can change the fields in popup iview like normal iview. Drill down the popup iview of the value help and change the date format using DSTR function.
    Try the below link for change the date format.
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/63f340e8dd8431e10000000a1550b0/frameset.htm
    Regards
    Basheer

  • Data Source CE in Visual Composer

    Hello Experts,
    we are running on CE 7.2.
    I wanted to read BPM  task details into a custom application or generate a report of who has claimed the task,currently being processed by whom  and the history of this information relating to every task in uwl.
    I know that CE 7.3 offers BPM API's using which thiscan be accomplished.
    However I have also read that Visual Composer can provide this solution.
    I have the following queries:
    1)what data source should be selectedif i choose to go with vc
    jdbc BI template?  or BI....we do not have a Bw system in our landscape and our datasource is portal DB.
    2)Does that mean BI usage type will  have to be installed alongwith BI jdbc connector..
    3)what would be a more feasible solution ...upgrading  to 7.3 or installing the BI component. ( we need to perform only reporting activity as to with whom the task is currently pending  and ho had processed it in the past)

    Hello Jun,
    Thanks for the reply, however i still have some queries.
    1)I could not find the standard BPM datasource in the dropdown of select providers.
    I therefore selected BI Data sources even though we do not have a BW system .
    2)I  tried selecting  standard BPM tables to fetch the data.
    viz; BPM_MYTASKS_DS..I want to know if there is any standard table which stores information about who had and who is currently proceesing tasks , if yes can you please provide the name of table  or how can i make it available in visual composer's  "search for table" field while creating new model.
    3)we are also trying to upgrade to 7.3
    Now BPM & CE are on same instance.
    Can only BPM 7.2 be upgraded to BPM 7.3 instead of entire CE portal from 7.2 to 7.3?
    4)Also i read somewhere that it would be an entire upgrade to netweaver 7.3 and in usage type we will have to select the usage type of what we want to upgrade like CAF to 7.3, BPM to 7.3 and so and and so forth. Is this right?
    5)Can also you please let me know in which situation we should use visual composer and when BPM  api is suitable?
    Thanks
    Pooja M

  • Last Data Update in Visual Composer and Web App Designer

    Hello,
    We want to show the last data update in query result and we used 2
    differents ways to do it: throught Web Application Designer (SP 12) and
    Visual Composer (SP 10).
    In query result of Web Application Designer, the last data update came
    in GMT0 and in visual composer came ok (GMT - 3, that's our time zone).
    This value (ROLLUPTIME) is taken out of the RSMDATASTATE table and this is used in SAPLRSMDATASTATE program, that is called by Web App Designer.
    Why does the difference exist between: Web App Designer and Visual Composer for last data update?
    So, I need more information how the Visual Composer brings the correct value (in our time zone) and Web App Designer in GMT0.
    Best Regards,
    Pablo Moraes

    Hi Mario,
    Yes, i used the same user and the same query to access the information. But, how can i check the mapping from my VC user to the BI user?
    Regards,
    Pablo Moraes

  • How import data in Excel into Visual Composer

    Is there a realistic way to import data into visual composer?  I could not find a data service that was Remote enabled to do this?
    Does anyone have any ideas

    Currently no solution available to import data from excel to visual composer.
    Regards
    Basheer

Maybe you are looking for