Not able to update the CMS

Hi Experts,
I have been trying to access the CMS and trying to click on the "update CMS" or "Save Domain" buttons. Then i am getting the following error.
Please let me know how to rectify this error.
SLD (URL http://127.0.0.1:50100) server exception: User credentials are invalid or user is denied access (password change required)
Actually i have a small doubt.
Actually, I have installed the ,sneek preview version . After installation i have changed the entries in ->visual Admin -> server-> services-> SLD Data Suplier->
Hostname : 127.0.0.1 to the mechine name 01hw099151.
The above changes i have done to activate the sld access . so why it is still pointing to 127.0.0.1.
Where i need to make the changes to rectify this problem.
Regards
Vijay

Hi,
As the error indicates, you've to change the password of the user you've try to log in to NWDI (it's initial, or outdated or whatever!!!) Try to log in with the user and you'll see what's wrong.
Regards,
Daniel

Similar Messages

  • Not able to update the project using 'BAPI_PROJECT_MAINTAIN'.

    I  want to create a project , with reference to an already existing project.
    I am using 'BAPI_PROJECT_GETINFO' to get the data of the existing project.
      The bapi gives the following:
    1)     e_project_definition.
    2)     e_wbs_element_table.
    3)     e_wbs_hierarchie_table
    I am passing the u2018e_project_definitionu2019 to 'BAPI_PROJECTDEF_CREATE' to create project.The project is created successfully.
    But I am not able to update the project with u2018e_wbs_element_tableu2019
    and u2018e_wbs_hierarchie_tableu2019. I am using 'BAPI_PROJECT_MAINTAIN' to update the project.
    The program is not giving an error, but it is also not updating the E_WBS_ELEMENT_TABLE and E_WBS_HIERARCHIE_TABLE.
    I am attaching the code below.
    *& Report  ZTEST_PC.
    DATA: project_definition   TYPE  bapipr-project_definition,
          with_activities      TYPE  bapipr-with_activities,
          with_milestones      TYPE  bapipr-with_milestones,
          with_subtree         TYPE  bapipr-with_subtree,
          e_project_definition TYPE  bapi_project_definition_ex,
          return               TYPE  bapireturn1.
    DATA: i_wbs_element_table         TYPE TABLE OF     bapi_wbs_elements,
          e_wbs_element_table         TYPE TABLE OF     bapi_wbs_element_exp,
          e_wbs_milestone_table   TYPE TABLE OF bapi_wbs_milestone_exp,
          e_wbs_hierarchie_table  TYPE TABLE OF bapi_wbs_hierarchie,
          e_activity_table        TYPE TABLE OF bapi_network_activity_exp,
          e_message_table         TYPE TABLE OF bapi_meth_message.
    DATA: wa_wbs_element_table    TYPE      bapi_wbs_element_exp,
          wa_wbs_hierarchie_table TYPE  bapi_wbs_hierarchie.
    DATA: l_new_proj_no TYPE  prpss-posid.
    DATA: l_project_definition        TYPE  bapi_project_definition.
    DATA: l_project_definition_upd    TYPE  bapi_project_definition_up.
    DATA: l_project_definition_stru   TYPE  bapi_project_definition.
    DATA :l_pspnr      TYPE ps_intnr,
          l_pspid      TYPE ps_pspid,
          l_pro_def(9) TYPE c.
    DATA :l_proj  TYPE proj.
    DATA :l_len TYPE i VALUE '0'.
    DATA: lt_dd03l TYPE TABLE OF dd03l,
          ls_dd03l TYPE dd03l.
    DATA: fieldname(50), fieldname1(50) TYPE c.
    DATA: p_ddic_name(40), struc(40), fun_struc(50) TYPE c.
    FIELD-SYMBOLS: <struc>, <c>, <sc>, <def_field> TYPE any.
    DATA : i_method_project    TYPE TABLE OF bapi_method_project,
           wa_method_project   TYPE  bapi_method_project.
    DATA : l_index TYPE bapi_method_project-refnumber.
    DATA : it_wbs_element_table         TYPE TABLE OF bapi_wbs_element,
           it_wbs_hierarchie_table      TYPE TABLE OF bapi_wbs_hierarchie.
    DATA : wl_wbs_element_table         TYPE bapi_wbs_element,
           wl_wbs_hierarchie_table      TYPE bapi_wbs_hierarchie.
    DATA : l_wbs_element_table_update   TYPE bapi_wbs_element_update.
    DATA : i_wbs_element_table_update   TYPE TABLE OF bapi_wbs_element_update.
    Get the project info of the Project 'C01.10995'
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_INPUT'
      EXPORTING
        input  = 'C01.10995'
      IMPORTING
        output = project_definition.
    CALL FUNCTION 'BAPI_PROJECT_GETINFO'
      EXPORTING
        project_definition     = project_definition
      IMPORTING
        e_project_definition   = e_project_definition
        return                 = return
      TABLES
        i_wbs_element_table    = i_wbs_element_table
        e_wbs_element_table    = e_wbs_element_table
        e_wbs_milestone_table  = e_wbs_milestone_table
        e_wbs_hierarchie_table = e_wbs_hierarchie_table
        e_activity_table       = e_activity_table
        e_message_table        = e_message_table.
    Automate the process the process to get the next number for the func module 'CN_SUCHE_FREIE_NUMMER'.
    CLEAR : l_pspnr, l_pspnr, l_pspid, l_pro_def.
    SELECT MAX( pspnr ) FROM proj INTO l_pspnr.
    SELECT SINGLE * FROM proj INTO l_proj WHERE pspnr EQ l_pspnr.
    l_pspid = l_proj-pspid.
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_OUTPUT'
      EXPORTING
        input  = l_pspid
      IMPORTING
        output = l_pspid.
    l_pro_def = l_pspid+4(5) + 1.
    CONDENSE l_pro_def.
    CONCATENATE 'C01.' l_pro_def INTO l_pspid .
    function module to generate the nect free number between the given range.
    CALL FUNCTION 'CN_SUCHE_FREIE_NUMMER'
      EXPORTING
        search_imp = '2'
        prps_s_imp = l_pspid
        prps_e_imp = 'C01.29999'
        no_dialog  = 'X'
      IMPORTING
        prps_exp   = l_new_proj_no.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION'.
    Get the New Project Number.
    MOVE-CORRESPONDING e_project_definition TO l_project_definition.
    l_project_definition-project_definition = l_project_definition-project_definition+0(3).
    l_new_proj_no = l_new_proj_no+4(5).
    CONCATENATE l_project_definition-project_definition '.' l_new_proj_no INTO l_project_definition-project_definition.
    TRANSLATE l_project_definition-project_definition TO UPPER CASE.
    MOVE-CORRESPONDING l_project_definition TO l_project_definition_stru.
    Create the New project with the New project Number.
    CALL FUNCTION 'BAPI_PROJECTDEF_CREATE'
      EXPORTING
        project_definition_stru = l_project_definition_stru.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = ' '.
    Populate internal table i_method_project for the bapi_project_maintain func module.
    CLEAR : wa_wbs_element_table,wl_wbs_element_table,wa_wbs_hierarchie_table,
            wl_wbs_hierarchie_table, it_wbs_element_table, it_wbs_hierarchie_table.
    CLEAR : wa_method_project, i_method_project, l_index .
    l_index = 0.
    LOOP AT e_wbs_element_table INTO wa_wbs_element_table.
      MOVE-CORRESPONDING wa_wbs_element_table TO wl_wbs_element_table .
      APPEND  wl_wbs_element_table  TO it_wbs_element_table .
      wa_method_project-objecttype = 'WBS_ELEMENT'.
      wa_method_project-method     = 'CREATE'.
      wa_method_project-objectkey  = wa_wbs_element_table-wbs_element.
      l_len = strlen( wa_wbs_element_table-wbs_element ).
    Setting Levels as reference number.
      CASE l_len.
        WHEN '9'.
          l_index = 1.
        WHEN '12'.
          l_index = 2.
        WHEN '15'.
          l_index = 3.
        WHEN '18'.
          l_index = 4.
      ENDCASE.
      wa_method_project-refnumber  =  l_index .
      TRANSLATE wa_method_project-objectkey TO UPPER CASE.
      APPEND wa_method_project TO i_method_project.
      CLEAR :wa_method_project, l_index.
    ENDLOOP.
    l_index = l_index + 1.
    wa_method_project-refnumber  = ' '.  "l_index .
    wa_method_project-objecttype = ' '.  "'WBS_ELEMENT'.
    wa_method_project-method     = 'SAVE'.
    wa_method_project-objectkey  = ' '.
    APPEND wa_method_project TO i_method_project.
    CLEAR wa_method_project.
    LOOP AT e_wbs_hierarchie_table INTO wa_wbs_hierarchie_table.
      MOVE-CORRESPONDING wa_wbs_hierarchie_table TO wl_wbs_hierarchie_table.
      APPEND wl_wbs_hierarchie_table TO it_wbs_hierarchie_table.
    ENDLOOP.
    Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION' respectively.
    CLEAR : l_project_definition_upd.
    p_ddic_name = 'BAPI_PROJECT_DEFINITION_UP'.
    struc       = 'l_project_definition_upd'.
    fun_struc   = 'E_PROJECT_DEFINITION'.
    TRANSLATE: p_ddic_name TO UPPER CASE,
               struc       TO UPPER CASE.
    SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
    LOOP AT lt_dd03l INTO ls_dd03l.
      ASSIGN ls_dd03l-fieldname TO <c>.
      fieldname = ls_dd03l-fieldname .
      CONCATENATE fun_struc '-' fieldname INTO fieldname.
      ASSIGN (struc) TO <struc>.
      ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
      ASSIGN (fieldname) TO <def_field>.
      IF NOT <def_field> IS INITIAL  .
        <sc> = 'X'.
      ENDIF.
    ENDLOOP.
    Update the fields of 'l_wbs_element_table_update' as 'X' for the fields which has values in 'e_wbs_element_table' respectively.
    READ TABLE e_wbs_element_table INTO wa_wbs_element_table INDEX '1'.
    CLEAR : l_wbs_element_table_update, fieldname1, p_ddic_name, struc, fun_struc .
    p_ddic_name = 'BAPI_WBS_ELEMENT_UPDATE'.
    struc       = 'l_wbs_element_table_update'.
    fun_struc   = 'WA_WBS_ELEMENT_TABLE'.
    TRANSLATE: p_ddic_name TO UPPER CASE,
               struc       TO UPPER CASE.
    SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
    LOOP AT lt_dd03l INTO ls_dd03l.
      ASSIGN ls_dd03l-fieldname TO <c>.
      fieldname = ls_dd03l-fieldname .
      CONCATENATE fun_struc '-' fieldname INTO fieldname.
      ASSIGN (struc) TO <struc>.
      ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
      ASSIGN (fieldname) TO <def_field>.
      IF NOT <def_field> IS INITIAL  .
        <sc> = 'X'.
      ENDIF.
    ENDLOOP.
    Append the value of l_wbs_element_table_update TO the table i_wbs_element_table_update for Bapi_project_maintain.
    CLEAR i_wbs_element_table_update.
    APPEND l_wbs_element_table_update TO i_wbs_element_table_update.
    CALL FUNCTION 'BAPI_PROJECT_MAINTAIN'
      EXPORTING
        i_project_definition       = l_project_definition
        i_project_definition_upd   = l_project_definition_upd
      TABLES
        i_method_project           = i_method_project
        i_wbs_element_table_update = i_wbs_element_table_update
        i_wbs_element_table        = it_wbs_element_table.
       i_wbs_hierarchie_table     = it_wbs_hierarchie_table.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = ' '.
    Please help me to solve the issue.

    I am not sure why it is not working??  Try for any other alternate function modules.
    But i see one issue with your coding, always check the return table message type and use commit work, instead of sy-subrc check. This fails for BAPI's

  • Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    If you already have an older version of Flash Player, open the Preference pane and select Check Now... under the Update portion under the General tab:
    You shouldn't have to install a new version from the website (I'm not even sure if you can) if you've already installed Flash Player.
    Clinton

  • When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    When I log in to update a page it says that's someone else is already logged in (but they are not) so I'm not able to update the page - any suggestions?

    I take it you are not the administrator for the site? If so, you would be given the option to unlock the page (it will be near the top of the screen in a yellow box).
    Do you have access to the site outside of Contribute. If you can't unlock it via the administrative function mentioned above, you need to go into the site using Windows Explorer (if it's a local development site) or an FTP client and find a file with the same name as the page but with a .lck extension and delete it. That will unlock the page.

  • HT4623 I have an iPhone 4 and for some reason I'm not able to update the software. I go to Settings then General but it doesn't even have a Software Update option. Am I missing something?

    I have an iPhone 4 and for some reason I'm not able to update the software. I go to Settings then General but it doesn't even have a Software Update option. Am I missing something?

    With iOS 4, the only way to update your software is connected to iTunes.  OTA (over the air) updates were not available until iOS 5.  You will need to connect your iPhone to a computer and use iTunes to download and install the iOS updates on your iPhone (at least until your iOS version is 5.0 or higher).

  • Not Able to Update the PSA Request.

    Hi All,
    I am facing one Problem I am having 10 requests in my PSA.9 requests are updated in to my Data Target but last 10th request is having some erroneous records which I didnu2019t notice that error records next day I have seen the error request in PSA then I have corrected those erroneous records. Now I am not able to update this request to my data target.
    When I went through the PSA manage tab there I have selected the erroneous request and when I press the button Update with Scheduler that is going to the Info Package Screen there I am not able to see my data target. When I start the info package its giving error (Data Target is not defined)
    My data target is contain the Aggregates is there any issue with the Aggregates.
    Any one please advise on this how to update this error request.
    Advance Thanks.

    Hi Sudheer,
    check your authorization, it seems you have only loading authorization not deleting.
    creat one more infopackge and select PSA and datatarget option try loading using this infopackage.
    Regards
    Daya Sagar

  • HT4623 HI, i am using I POD 3rd generatin with OS 3.1.3.  I am not able to update the new IOS and i could not found the update button in my POD.  Pleaese help me how do that.  regards

    Dear Friends,
    I am using IPOD touch 3rd generation with OS 3.1.3 (7E18) (Model MA623LL), i am not able to upgrade the IOS.  My IPOD does not have the software update button.
    Please help me how to upgrade the IOS for this version i could not able to download the games and new features.
    Please guide me.
    regards
    Nagaraju T
    [email protected]

    You iPod, model MA623LL , is a 1G iPod and those can only go to iOS 3.1.3
    Identifying iPod models

  • HT1695 I am not able to update the calendar app or reminder app. There is no ability to update and siri is also unable to set a reminder or update the calendar. This is a new phone.

    I am not able to update my calendar or reminders. I've looked at other iPhones and they have a + button to allow you to update. How do I fix this. Also, Siri also does not update the reminders or calendar.
    Please help

    Earlier iOS apps are becoming increasingly difficult to find.  You may want to look at VintApps, new in the Apple app store, that makes this much easier.
    Vintapps info/support:  https://www.facebook.com/VintApps313
    For a web based method see,
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/finding-a pps-for-older-devices
    Although I wrote my 99 cent app specifically to help solve this problem, I need to add that "I may receive some form of compensation, financial or otherwise, from my recommendation or link."
    Be sure to backup your current apps on earlier devices.  Once the vendor updates them past your maximum iOS, they can not be downloaded again.

  • Update-Help cmdlet not able to update the help with https protocol.

    Hi all,
    I am using powershell 3.0 and trying to implement this updatable feature for our custom powershell module. But I getting the below error:
    PS C:\Users\scorchsvc> update-help -Module <modulename> -Force
    update-help : Failed to update Help for the module(s) 'modulename' : HelpInfoURI
     https://10.65.182.141/dev_releases/modulename/onlinehelp does not start with http.
    At line:1 char:1
    + update-help -Module modulename-Force
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (HelpInfoUri:Uri) [Update-Help], Exception
        + FullyQualifiedErrorId : InvalidHelpInfoUriFormat,Microsoft.PowerShell.Commands.UpdateHelpCommand
    I am able to get this work if I use "http". Error message clearly says that it only expects http. But in the Microsoft help topic for Update-Help cmdlet, it is mentioned that cmdlet works for both http and https both.
    Here are my enteries:
    •HelpInforURI entry in module manifest file is:
                        HelpInfoURI = "https://10.65.182.141/dev_releases/modulename/onlinehelp"
    •HelpContentURI in HelpInfo.xml file is:
                       <HelpContentURI> https://10.65.182.141/dev_releases/modulename/onlinehelp </HelpContentURI>
    I am running powershell as an administrator.
    I am not behind any proxy.
    Windows firewall is off.
    I am mentioning it AGAIN that I am ABLE to update help for our custom module if I use http in HelpInfoURI.
    I am also able to access the URI in IE with http/https.
    Can any one please help?
    Thanks,
    Vinay Ravish

    Hi vinay,
    It seems the certificate issue.
    Please access HelpInfoURI =
    https://10.65.182.141/dev_releases/modulename/onlinehelp with https header to see if your computer could access that.
    If it doesn't work, add it to your trusted site and download to see if there is related certification on that website to download and install it to trusted root certificate for test.
    Karen Hu
    TechNet Community Support

  • Not able to update the value in FM CRM_ORDERADM_H_MAINTAIN_OW

    hi,
         Here i am updating the data in below format. during exection showing the error msg an exception error occured during input processing........pls confirm
    ls_orderadm_h-guid                = lv_object_guid. "LV_HEADER_GUID.
        ls_orderadm_h-zz_             = '01'.
        INSERT ls_orderadm_h INTO TABLE lt_orderadm_h.
        ls_input_fields-fieldname = 'ZZ_FCT_INDICATOR'.
        APPEND ls_input_fields TO lt_input_field.
        CALL FUNCTION 'CRM_ORDERADM_H_MAINTAIN_OW'
          EXPORTING
            is_orderadm_h_com    = lt_orderadm_h
            iv_external_call     = 'X'
         IMPORTING
           ev_guid              = ev_guid
          CHANGING
            ct_input_field_names = lt_input_field

    Hi,
    Can you debug the standard transaction and make a note of how exactly the fields and the structures are getting filled? This will really reduce the tiring effort of a long debugging.
    I feel that the IT_INPUT_FIELD Table requires some more input. I'm not aware of the scenarios as I can see that you are trying to update some custom fields.
    Hope this helps.
    Thanks,
    Samantak

  • Not able to Update the Infotype thro'HCM Process and Forms

    Hi,
    I have done the form and ran the test run in ECC, after completion of execution its not updating the form scenario infotype. Herewith mentioned the trace data ..
    C Function Trace Record
    Date : 27.08.2010
    Time : 17:26:30 : 539,203
    Work Process : 0
    PID : 0
    Client : XXX
    User : XXXXX
    Transaction : HRASR_DT
    Transaction ID : 4C77C682885A4119E10000000A01DF1A
    Action :Start of C Function
    Function (Group) : rstscb_call_back
    Parameters :
    Duration : No Duration at Start of Action
    Comment :
    C Function Trace Record
    Date : 27.08.2010
    Time : 17:26:30 : 539,203
    Work Process : 0
    PID : 0
    Client : XXX
    User : XXXXX
    Transaction : HRASR_DT
    Transaction ID : 4C77C682885A4119E10000000A01DF1A
    Action :Start of C Function
    Function (Group) : rstswsf_was_stor
    Parameters :
    Duration : No Duration at Start of Action
    Comment :
    Kindly let me know the root cause of the error....
    Thanks and Regards,
    Santhosh Kumar R

    Hi,
    1. Do you Have Workflow.
    If yes check in  the apprroval or the last step (Processing step-HRAdmin) whether Send Variant is active .
    to Update the Database this has to be active.
    2. If there is no workflow then
    check in the Tcode HRASR_DT at process level.
    in Drop down for send variant is update the Application database .
    Regards,
    Nachy
    Hope this helps

  • Not able to update the software 4.3.5 for my iphone

    Hi,
    I am not able to sync iphone software to 4.3.5.. Tried by deleting all applications and also resetting iphone, still not working
    required support

    this is the message i am getting even after firewall is disabled

  • Not able to update the attendance to employee for Event

    Hi,
    I have done the integration between Training & Business Event Management and Attendance.
    While I am booking employee (who has a work schedule from 9.00 u2013 5.30 p.m.) to Event Type with a schedule time 8.00 hrs to 18:00 hrs. It is not allowing me to book that employee to this event as his workschedule is not falling in schedule time.
    It is booking events to the employee who are falling under their work schedule and updating attendance.
    Requirement is Administrator should be able to book employee from different work schedule to the event timing. 
    Is there any standard solution available that it will check for the employees work schedule & book for him attendance for that day if event as per his work schedule timings.
    Thanks & Regards
    Sanjay

    Hi Sanjay,
    Please goto Maintain Business event type t-code (you can use PP01 by selecting D - Bus event type object type too) - select your bus event type. Then select Business Event Type Info infotype and select change.
    There, you can select "Allowed in instructors time off" and "Allowed in attendees time off" checkboxes.
    Regards,
    Dilek

  • Error: ADF not able to update the details

    Hi there,
    While designing this app last page(bottom) result after clicking on the salary upgrade it coming as false.
    http://docs.oracle.com/cd/E18941_01/tutorials/buildmobileappscontent/adfmobiletutorial_2.html
    but it has to update as true.
    Running:IntegratedWebLogicServer - Log Details
    Updated Juan to 5555 commision false starting Thu Jul 18 05:30:00 IST 2013
    please solve the issue.
    Thank you in advance.

    Hi,
    how likely is it that you missed a step in the tutorial (e.g. mapping the commission select box to the memory attribute, or setting the memory attribute to a viewScope)? From your description there is nothing that indicates the tutorial not to work. Optionally, send me a test case (your apps in a zip file renamed as unzip). My mail address is in my OTN profile. Before you do so, please delete all content in the application deploy folder as otherwise the ZIP file is 90+ MB large
    Frank

  • Not able to update the partner with a new partner during change order ?

    Hi Experts,
    I want to update a partner which is present in a sales order with a new partner. When i create a new order, i ll give partner function ship-to-party and partner no 1 for this partner function. And from a fucntion module, i want to change this partner no 1 to partner no 2 but when i try to pass the required values to crm_order_maitain, it is adding a new line in partner tab as same partner function and partner no 2 but my requirement is to update from 1 to 2. How to do this??
    Please help me in this regard.
    Thanks a lot in advance!!
    Regards,
    Lakshman.

    Hi,
    I have similar requirement to redetermin all the partner functions when the sold to pary is replaced with another one while creating complaint.
    Can you share how you managed to solve yours.
    Thanks
    Kumar

Maybe you are looking for

  • Mixing ram sticks

    Hi nForce people Tricky question to ask. As you can see in my specs, I've 512 Mb Kingston DDR Ram pc 3200.... and an nForce2 mobo. Which may seem not so nice a mix, but it's working fair. The point is that I'd like to have 1 Gb ram and this is troubl

  • File to Proxy Scenario Error

    Hi Experts, I am working on File To Proxy Scenario. I am getting the below Error: The Messages in SXMB_MONI are going to AUtomatically Restart Status. I see some Queues with RETRY Status in SMQ2. When i am testing from SPROXY, the Table is Updated wi

  • Un-mounting network volumes with command line

    Does anyone know how to unmount a network volume from the command line in OSX. Using umount deletes the mount but not the mount point. I can't get diskutil or disktool to do it.

  • Balance sheet creation at Profit center Level

    Dear SAP gurus, Can anyone help me in creation of balance sheet at profit center level.. i am trying to make it thru report painter as new gl functionality is not activated at the client.. Pls tell me step by step.. regards,

  • Help with BW iView

    Hello, Is it possible to have parameters for a BW report be passed right from the iView?  For example, we have a BW report that generates a large amount of data organized by cost center - our wish is to have the iView effectively break down (or burst