Quantcast
Channel: SCN: Message List
Viewing all 8713 articles
Browse latest View live

Re: FI/CO interface: Update call without successful check: Message no. RW100

$
0
0

Hi,

 

I have the next message.

FI/CO interface: Update call without successful check.

Message No. RW100.

Functional team and made adjustements note  and follow the same  message.

2016-04-18_13-58-58.png

Another solution for this issue?

Thanks for your help.

Regards.


Re: Cannot delete line from table with delete button

$
0
0

I am able to get model but not the data thru getData

Re: WebIDE / HAT: Deployment fails when using an OData Service

$
0
0

Hi,

 

I also faced the same issue. I think the manifest.json file is fine, the problem is in .project.json.


This error likely to occur if you are not using Master-Details templates. While updating the Device Configuration on Project Settings file the odata service may not get set automatically(sometimes) in .project.json for simple templates.


The solution is - Add Odataonfigmanually as follows -


"hybrid": {

    "oDataConfigs": [

      {

        "hybridOdata": {

          "name": "<Data Source as in manifest.jon>",

          "serviceUrl": "https://hcpms-<id>trial.hanatrial.ondemand.com:443/<App ID>/"

        },

        "originOdata": {

          "name": "<Data Source as in manifest.jon>",

          "serviceUrl": "<Service Url>"

        },

        "oDataType": "smpodata",

        "hcpODataUrl": "loggedusershybrid-<id>trial.dispatcher.hanatrial.ondemand.com/<serviceUrl>/"

      }

    ],

    "hatVersion": "1.13.3",

    "appNamespace": "",

    "appname": "",

     .

     .  

}

But you should not get this error with new SAP Web IDE as they have added Odata End Point in Device Configuration.


Thanks and Regards,

Chandan


Re: Excel formatting issues when using Crystal Reports SDK for VS .NET

RealNex CRM - ERROR with Crystal Reports

$
0
0

How do I get Crystal Reports to work with my RealNex CRM?  This is the ERROR message:

 

Message was edited by: Ludek Uher - Email and phone number removed as per SCN Rules of engagement

Bulk User Creation - MemberAccess

$
0
0

Hi,

I have ~1000 users to create which will all have similar access.

 

Is there a way to bulk import many users at once?  I'm thinking a SQL script that hits the following tables:

 

tblUsers

UserProfile

UserTeamProfileAssign

UserTeamAssign

 

...or something similar

 

 

I've looked into the following

Go to Admin Console > Users > Add new user, select my Domain from the drop down for "Available Domains" > Select Custom Filter:
Enter UserIDs as a list of semi colon separated IDs

 

 

This created all the users and I was able to click through and associate them with the correct teams.  I was also able to associate them with a “User” task profile.

 

The remaining portion however is a bit daunting.  I need to create a 1:1 user to Data Access Profile, where each user will have specific security rights to specific business orgs and projects.

 

Does anyone have a method for bulk creation and association of users of/to "Data Access Profiles"?

Re: Execute Planning Sequence in Save_AREA - possible

$
0
0

Thanks a lot Gregor. This helps.

Open URL from a PDF form in new window.

$
0
0

Hello All,

 

 

We have a application which has an option to preview a PDF in new window. This requirement works fine. Inside the PDF we have a few links to external system. If the user clicks these links while the PDF popup is still open then the new link opens in the already open pop up and not a new window.

 

On the inside we are using the following. But it still opens in the same pop up window. Any setting we can do for it ?

 

code.png

 

 

This is a snapshot of our application.

doclink.png

 

Thanks,

 

 

Kiran


Re: RealNex CRM - ERROR with Crystal Reports

$
0
0

Hi Kronan

 

 

Firts a bit of housekeeping.

 

1) Remember these are Community forums, not technical support as such. For technical support, you can obtain a phone incident here: Crystal Single Case Technical Support - SAP Business Objects US Online Store | SAP Online Store

2) Please do not post your phone number of email. This is against the The SCN Rules of Engagement. Please do have a look at these.

 

 

As for the error. Database Vendor Codes are passed by the database client, through the report database engine without any modification. E.g.; you will have to consult your database documentation to see what the error means. I fine Googling the error is often also productive.

 

 

- Ludek

Senior Support Engineer Product Support, Global Support Center Canada

Follow me on Twitter

Got Enhancement ideas? Use the SAP Idea Place

Re: Load Material Hierarchy from Flat file and SAP ECC simultaneosly issue

$
0
0

Hi,

Any help on this please?

 

Thanks in advance,

Regys

Re: The number of simultaneous report jobs was limited to 80 by the system administrator. Please try to reconnect later. [RCIRAS0542]

$
0
0

Did that, still getting the error message.

 

I never get the box to enter parameters.  It just spins

Re: Supplier Invoice Approval

$
0
0

Leo,

 

Thank you for this information, I believe it can be helpful to me, however I do have some additional follow up questions for you.

 

1. Do I need to create a new implementation project and run it through all of the prepare, fine tune, integrate and extend, test, and go live prompts?

2. If I include this in the scope of a current implementation project does the project have to go live before this change can go into effect?

 

I anticipate having some additional questions based on your response to either of those questions.  Looking forward to your response.

 

Thanks,

 

Drew

Re: Freight not showing on Print Preview

$
0
0

Clint,

 

This depends on the program you're using to print the PO.

 

For the output you're using, could you please send us the screen shot from NACE?

 

This gives us a chance to check if there is any smartform that is being used. If there is a smartform assigned, then you need to work with a developer to include your Freight condition to your form.

 

Thank you,

Sri

Re: UI5 Content not created in sap.m.page?

$
0
0

Hi

Found a workaround for this issue by disabling scroll on the sap.m.page's root view

 

sap.ui.jsview("sap.ui.demo.wt.view.App", {

 

 

  /** Specifies the Controller belonging to this View.

  * In the case that it is not implemented, or that "null" is returned, this View does not have a Controller.

  * @memberOf controller.myview

  */

  getControllerName: function() {

  return "sap.ui.demo.wt.controller.App";

  },

 

 

       createContent : function(oController) {

         var controls = [ new sap.m.Button({

                                            text : "{i18n>showHelloButtonText}",

                                            press: oController.onShowHello

                                          }),

                                          new sap.m.Input("myinput",{

                                            value:"{/recipient/name}",

                                            description:"Hello {/recipient/name}",

                                            valueLiveUpdui5ate:true,

                                            width:"60%"

                                       })

                                        ];

                    var page =  new sap.m.Page({

                              title : "{i18n>homePageTitle}",

                              content : controls,

                              enableScrolling : false

                    });

   

               

 

 

                    return page;

          }

 

 

});

 

Jonathan

Re: Erro ao aplicar nota 2141500

$
0
0

Olá, Vinícius, tudo bem?

 

Poderia dar uma revisada na sua implementação da nota 2141500? Estes campos citados no erro são implementados pela própria, pode ser que falte a ativação de algum include.

 

Abraço,

Nyckolas Silva


Re: For REM CM01 displays no capacities found

$
0
0

Hello

 

Make sure that you are running lead time scheduling for your planned orders. You can do it by running MRP with parameter scheduling = 2 or manually scheduling the planned order on MD12.

 

Also, make sure that you are creating a work center according to document CRP Basic Settings Part 1 - Work Center and a rate-routing with reference to this work center.

 

 

BR
Caetano

Re: Negative Stock in interim storage types

$
0
0

Hello Senthil,

 

We faced a similar situation. Some of our interim storage type/storage bins for goods receipt had negative values, and even though we tried to correct this via stock transfers from other storage bins, there were many cases that still showed negative stock.

 

For this process we post hundreds of goods receipts every day, and as we deal with seasonal products there are thousands of different products.

 

For our case, consulting recommended SAP Note 1532672 - "Correction of capacity data" helped us fix this situation.

 

Hope this helps.

Re: Setting workitem status to Error by SAP_WAPI_SET_WORKITEM_STATUS

$
0
0

Don't use SAP_WAPI_SET_WORKITEM_STATUS.

Don't use SAP_WAPI_WRITE_CONTAINER.

Smartform XDF output and special character &

$
0
0

Hi All

 

I am downlaoding smartform output as XML on to spool. Here the issue I have a special character '&' in name field like  ' XYZ & ABC ', In the spool the value is getting converted as 'XYZ amp; ABC'. Is there a way to stop this conversion from & to amp;. Thanks

 

Regards

Neetesh

Re: Screen Personas 2.0: Dynamic selection of a table row

$
0
0

Try this:

 

Ü ses[0]

Calculate in JavaScript     args.cellid = 'ses[0]/wnd[0]/usrUSRAREA/tblSAPDV70ATC_NAST3/colMarkerColumn[0]/cell[' + args.index +']';

 

Ü args.cellid

Check

Viewing all 8713 articles
Browse latest View live




Latest Images