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

Re: B2B ADD ON installation issues

$
0
0

Hi,

There are two ways to confirm whether the B2B Content was imported successfully or not.

 

1) In the path mentioned above , you can check the log file and once the import is successful, you will see Import successful message.

 

2) Support you are importing B2B EDI Content ( for e.g  B2B_EDI_TABLES-92A_93B-v1.0.b2b),

you can navigate to EDI Content Manger->Edifact->Tables->B2B_EDI_CTRL_MSG Table , see there is some content and at the end of the page , you can see a warning message like Only 200 of  lines displayed! .

 

Thanks

Appala


Re: custom access level in BO4.0

$
0
0

Hi,

 

Save option will come but if you click on save to particular folder where you have denied the access then you will get the message.

 

Amit

Re: Database in use. A user with system administrator (SA) role must have exclusive use of database to run load

$
0
0

Hi Annie ,

    thanks for help  as per ur suggestion

    PFA.

      

       o/p :- for

             sp_who

            go

    scree1.png

       scrren2.png

          select spid from master..syslocks where db_id=db_id("TST")

          go

         

          sc3.png

             Regards

             Ashish C

Re: open catalog in new window?

$
0
0

Hi Venkatesh,

 

In "Standard Call Structure" change the parameter "Returntarget" parameter value to "_top" and check.

It will open the catalog in new window instead of same window.

Re: Error 2869 in B1DE Installation

$
0
0

Hi Sandeep,

 

Are you running the installer as an Administrator?


Best regards,

Pedro Magueija


View Pedro Magueija's profile on LinkedIn

Re: How to fetch ref doc made of Credit/Debit Memo request

$
0
0

Hi Amit

 

You can check the details of reference document in VBFA table.

 

Regards

Re: Leave Request : Uncaught TypeError: Cannot read property 'AllowedDurationPartialDayInd' of null

Re: IE 11 - Compatibility with SAP 4.1

$
0
0

Hello All,

 

In IE11, go to Tools(tap F12) and change the Broswer profile to "Enterprise". This will fix the issues with webi reports running in IE11.

 

To permanently fix this, you can change the group policy in IE11 to open all BOBJ applications in enterprise mode.

 

 

Regards

Sandeep Chandran


Core Data Services (CDS) - Associations

$
0
0

Hi All,

 

I'm currently using CDS to create new tables and associations but got an error in my model and I can't find a solution.

Look at the example:

 

@Catalog.tableType: #COLUMN

    entity Users {

        key ID      : Integer;

        Name        : String(20) not null;

    };

   

    @Catalog.tableType: #COLUMN

    entity Tags {

        key ID      : Integer;

        Name        : String(15) not null;

    };

   

    @Catalog.tableType: #COLUMN

    entity Files {

        key User_ID : Association[] to Users;

        key ID      : Integer;

        Name        : String(15) not null;

        Descr       : String(255);

    };

   

    @Catalog.tableType: #COLUMN

    entity File_Tags {

        key File_ID : Association[] to Files;

        key Tag_ID  : Association[] to Tags;

    };

 

Error: "Files.(User_ID)" of element "User_ID" is not allowed as foreign key type"

 

I think that the problem is related with the User_ID being an Association it self and can't be used as key in the File_Tags entity (what happens because of the File_ID Association).

Is this a CDS limitation or an error in my model?

 

Thanks,

Jorge Martins

Re: update base quantity by BAPI_MATERIAL_SAVEDATA?

$
0
0

Hi Navdeep,

 

Please refer the Long text documentation of HEADDATA present in Import parameters of the BAPI.

I mean key fields are the one's which you enter in dialog screen of Material Maste while trying to change/create the material

 

Best Regards,

Lakshman

Re: Availability Control for "OBJ XXXXXXXXX"

$
0
0

Hi Terrence,

 

Yes I checked

For above ORD 5120XXXX is consuming budget.

The total consumption for jobs for report S_ALR Report shows the figure with 1.04 Million.

But when individually finding values these ORD types cannot be accounted for.

Re: SAP Hana: HTTP request failed 404,Not Found when using connectivity proxy

Re: Install CRM 7.0 EhP3

$
0
0

Hi Javier,

 

Thank you for your help. I checked the permissions and all have 777.

 

If I run the followin command:

/home/cinstall/software/RDBMS/SYBASE_ASE_16.0.01.01_RDBMS_for_BS_/SYBASE_LINUX_X86_64/setup.bin

 

The result is OK.

 

[root@<server_bbdd> ~]# /home/cinstall/software/RDBMS/SYBASE_ASE_16.0.01.01_RDBMS_for_BS_/SYBASE_LINUX_X86_64/setup.bin

Preparing to install...

Extracting the JRE from the installer archive...

Unpacking the JRE...

Extracting the installation resources from the installer archive...

Configuring the installer for this system's environment...

 

Launching installer...

 

Graphical installers are not supported by the VM. The console mode will be used instead...

 

===============================================================================

SAP Adaptive Server Enterprise                   (created with InstallAnywhere)

-------------------------------------------------------------------------------

Preparing CONSOLE Mode Installation...

===============================================================================

Introduction

------------

InstallAnywhere will guide you through the installation of SAP Adaptive Server

Enterprise 16.0 SP01 PL01.

 

It is strongly recommended that you quit all programs before continuing with

this installation.

 

Respond to each prompt to proceed to the next step in the installation.  If you

want to change something on a previous step, type 'back'.

 

You may cancel this installation at any time by typing 'quit'.

 

PRESS <ENTER> TO CONTINUE:

 

Regards,

Dani

Re: How to configure scrambling rule without abap

$
0
0

Hi Stupnikov,

 

You have to create 4 rules for scrambling these 4 fields and you should assign condition in each rule to scramble only the relevant data.

 

 

Rule 1, Table-field would PA0006-ADR04 and Condition would be Where SUBTY EQ '04'

Rule 2, Table-field would PA0006-NUM04 and Condition would be Where SUBTY EQ '04'

Rule 3, Table-field would PA0006-STRAS and Condition would be Where SUBTY EQ '06'

Rule 4, Table-field would PA0006-ORT01 and Condition would be Where SUBTY EQ '06

 

Regards,

Naveen


Re: when i create a material thecustomize feild values need to update in database tables

$
0
0

If you didn't understand syntax of EXPORT TO/IMPORT FROM, try this snippet:

DATA: field1 TYPE c LENGTH 10 VALUE 'ABDCDE',
       field2 TYPE c LENGTH 10 .
EXPORT field1 TO MEMORY ID 'TEST'.
IMPORT field2 FROM MEMORY ID 'TEST'.
WRITE: / 'RESULT = ', field2.
IMPORT field1 TO field2 FROM MEMORY ID 'TEST'.
WRITE: / 'RESULT = ', field2.

and read your code again...


Regards,

Raymond


Re: Recursive BOM because of ECM

$
0
0

Hi Sada,

 

In this case you need to make sure that B is not available in A in the database, that is removed completely. Are the effective dates overlapping? Try after that date.

 

Regards

Rahul

System Usernames Report

$
0
0

I am trying to create a querie to identify all osers who do not have a System Username (0001) on IT 105.  If I use type 0001 as selection criteria it only creates a list with users who do have a 105 type 0001.

 

I select users from IT0 and IT2 and then use IT105 but cannot get a list of all users in IT0 who do not have a type0001 in IT105.

 

Is there a solution without having to create a customised report?

 

Thanks

 

Pieter

Re: XML View Binding Issues

$
0
0

The view path parameter specifies a prefix that prepends the view; if, for example, view is set to "myView" and viewPath is set to "myFolder", the created view is myFolder.myView.

Re: unable to bind sap.m.table

Re: Transfer secundary cost to diferente cost center

$
0
0

Hi,

 

We can able to transfer the primary cost with the re-postings option.

 

Say from one to other cost center use the transaction. KB11N

 

It is not possible to transfer the secondary cost mean while you can get the results by way of transferring the cost center quantities from one to other cost centers.

 

Example:  KB21N - Enter Activity Allocation.

 

KB65 - Activity allocation Re posting.

 

 

 

 

Regards,

Pavan Kumar Arvapally

Viewing all 8851 articles
Browse latest View live




Latest Images