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

Re: Regarding Table Control

$
0
0

Hi Suresh,

You should first assign a function code to pushbutton, then response the function code in 'USER_COMMAND' module.

 

regards,

Archer


can't import schema

$
0
0

Dears,

 

i can't import schema with rename option it is shows below error :

 

SAP DBTech JDBC: [2048]: column store error: table import failed:  [30151] Object not found in the import directory;object=schema_name :OPRC_trackingen

Singleton node example in ABAP Webdynpro

$
0
0

Hi All,

 

Can any one please explain the concept of singleton with screenshots , taking one component an example.

 

I am able to understand theory but practically how it can be applied to component design.

 

Regards,

Sourya Prakash

Re: Regarding Material Master Data Downloading

$
0
0

Hi Sreedhar,

 

If this is only one time activity and if you required the material master data from different tables then you can use one of below two methods

 

1: Create a simple Z report with required field and then download the report to excel.

2: Ddownloading table in excel and user v-look up in excel.

 

If you required material master regularly from SAP To Non-SAP then you can make use of RFC/IDOC, methods which can is use for communication between two systems.

 

Regards,

Zafar   

Re: Migrate from SAP TAO to CBTA

Why Cardinality 1:1 needed for input field when binded through context node->attribute

$
0
0

Hi All,

 

Whenever input field binded directly to an attribute it works absolutely fine , but whenever I try to bind with contexts node->attribute and context nodes cardinality 0:1 it gives dump at run time.

 

Can anyone please suggest.

 

Regards,

Sourya Prakash.

Re: S-user password change

$
0
0

Hi,

 

you need to maintain the password in RFC SAP-OSS as well as under system preparation --->specify connectivity data.

 

Regards,

Gaurav

Re: Error in Move_Nametab Phase

$
0
0

Hello Kedar,

the log file points to another log for futher details.

 

Regards,

Valerio


Re: SAPUI5 makit chart colors

$
0
0

go to sap/makit/themes/your_theme/library.css and change color values...

for eg

.defaultFillPalette .color1 {

  color: #006dd3;

}

.defaultFillPalette .color2 {

  color: #99d101;

}

.defaultFillPalette .color3 {

  color: #f39b02;

}

.defaultFillPalette .color4 {

  color: #9fcfeb;

}

 

changing these values change makit chart bar colors..

Regards

Re: TCODE - IE02 - F4 for Field on Standard SAP Screen

$
0
0

Hi Sonali,

 

As Pushpa said, we have to take the userexit path to achieve the functionality.

If you are still looking for the steps and relevant code let me know. Otherwise, it is assumed that you got the solution.

 

 

Thanks,

Ravi

Re: sap treasury field selection

$
0
0

Hi,

 

I need Payment Details auto populated in the Payment Details Tab for Other Flows ( Transaction Charges, Brokerage Charges)

 

How can I get it.

 

Please advice me?

 

 

with regards

raju

Problem with Loop and Table relation

$
0
0

I am new in ABAP development.

 

I want relation with EKPO with RSEG table. I want show result when i give Value Purchasing Document Nr in paramter then Show result as such as

Material Nr , Quantity with Unit from RSEG Table and Material Name , Vendor Material Nr from EKPO Table.

 

i want show this result

Purchasind Doc ,  Material Nr , Material Name ,         , Vendor Material Nr , Qunatity with Unit

414-0100               500-180     Diaminobenzene 50%   .......................            900

.....                         500-190      AABC 15%                      .........                        1000

.....                         500-200       ABD 80%                   .........                          1200

 

i have code but show different result as such below

 

Purchasind Doc ,  Material Nr ,  Material Name ,         , Vendor Material Nr ,  Qunatity with Unit

414-0100               500-180       Diaminobenzene 50%                 0                    900

.....                         500-180       Diaminobenzene 50%                 0                    900

.....                         500-180       Diaminobenzene 50%          .      0                     900

                        

 

 

 

my code as below

 

PARAMETERS : P_EBELN TYPE EBELN.

 

TYPES : BEGIN OF TY_RSEG,

         MATNR TYPE RSEG-MATNR,

         TXZ01 TYPE EKPO-TXZ01,

         IDLNF TYPE EKPO-IDNLF,

         BPMNG TYPE RSEG-BPMNG,

END OF TY_RSEG.

 

DATA IT_EKKO TYPE TABLE OF EKPO.

DATA WA_EKKO TYPE          EKPO.

 

DATA I_RSEG TYPE TABLE OF RSEG.

DATA W_RSEG TYPE          RSEG.

 

DATA IT_RSEG TYPE TABLE OF TY_RSEG .

DATA WA_RSEG TYPE          TY_RSEG.

 

FIELD-SYMBOLS <FS_S> TYPE TY_RSEG.

 

SELECT   * FROM EKPO INTO TABLE IT_EKKO

   WHERE EBELN = P_EBELN.

   LOOP AT IT_EKKO INTO WA_EKKO.

      WA_RSEG-TXZ01 = WA_EKKO-TXZ01.

      WA_RSEG-IDLNF = WA_EKKO-IDNLF.

    APPEND WA_RSEG TO IT_RSEG.

     ENDLOOP.

 

 

  SELECT * FROM RSEG INTO TABLE I_RSEG

    FOR ALL ENTRIES IN IT_EKKO

    WHERE EBELN IT_EKKO-EBELN

    AND   EBELP = IT_EKKO-EBELP.

    LOOP AT I_RSEG INTO  W_RSEG.

      WA_RSEG-MATNR = W_RSEG-MATNR.

      WA_RSEG-BPMNG = W_RSEG-BPMNG.

     APPEND WA_RSEG TO IT_RSEG.

  ENDLOOP.

 

  LOOP AT IT_RSEG ASSIGNING <FS_S>.

     WRITE: /    <FS_S>-MATNR,

                 <FS_S>-TXZ01,

                 <FS_S>-IDLNF,

                 <FS_s>-BPMNG.

 

ENDLOOP.

Re: Infotype 14 wage type should be calculated based on basic wage type on % basis (Country grouping "Oman")

$
0
0

You could have all Basic Pay WTs cumulate into a Custom Cumulation WT (in the /190 to /199 range), create one (or more if needed) constant in table view V_T511K to hold the percentage Rate, create a WT for IT0014 that would accept only the Number/Unit combination (of 1 Unit), and create a PCR that would process the IT0014 WT (retrieving the amount from the Cumulation WT and the Rate from the constant).

Re: OMS configuration flag field in tcode SPAD

$
0
0

Hi Ben,

 

Are you using HPOMS(HP output management server) as printing utility for printing documents from SAP .If yes you need to define Logical OMS and Real OMS .These include the commands for polling,sending print request,call back etc  which will help in establishing the connection to HP utility and transfering the spool data

 

Regards,

Murali

html content and .txt attachment in the email

$
0
0

Hi All,

 

i have a reqmt to send a html content and .txt attachment after reading a file from a ftp location

 

I was looking at the below link to achieve this using JAVA mapping but not sure how to send html content. let me know if anyone faced the same

Also, if you could detail out the coding here, that helps.

 

Multiples content Email - File Attached and body text

 

thx

mike


Drucken des Hauptbuches

$
0
0

Hallo zusammen,

 

wir haben derzeit ein Problem bei unseren Kunden. Wenn wir auf dem SAP-Server selbst das Hauptbuch aufrufen, können wir problemlos

die Vorschau des Hauptbuches anzeigen.

Sobald ich jedoch auf einem Terminalserver mit den gleichen Parameter das Hauptbuch aufrufen, erhalte ich die Fehlermeldung "Der Objectverweis wurde nicht auf eine Objectinstance festgelegt".

Der Detailbericht funtkioniert im übrigen problemlos.

 

Das System ist ein 9.1 PL03 (Problem bestand bereits bei 9.0 PL10 HF1)

 

Wir haben bereits den Client deinstalliert, Temp-Verzeichnisse gelöscht alles neu installiert.

Den 32Bit Client und den 64Bit Client getestet.Als Administrator gestartet.

Standarddrucker ist der PDF-Creator. Andere Drucker wurden ebenfalls getestet.

 

Mir gehen nun langsam die Ideen aus.

 

Hat jemand noch eine Idee was ich tun kann?

Linking Universe in IDT

$
0
0

I want to know the options for linking universe in 4.0 and above. was it discontinued on IDT. I do not see the option of how to link the universe in 4.0;

in 3.x we do it by File> parameter> Add Link and we add the universe. Similarly do we have any other options if not the same in IDT.

 

I do not see any discussion on linking universe in IDT.

 

The current alternative that I have is to build them in UDT and upgrate them to UNX. Before that I would like to try doing it in IDT.

Re: How to fail a synchronous message in MONI?

$
0
0

Hi, Baskar.

 

Inside a business condition but outside sproxy. The interface is initiated from a portal WDA program. Based on a condition of the data returned from the interface(outbound proxy), I am trying to fail the sync message in MONI. Is this possible?

 

This is a bit different from asynch interfaces when we can raise the exception directly inside the sproxy abap code. The benefit is monitoring as we can track when something fails in the sync interface in MONI. Surely we can code the WDA to log the failed message in SLG1. But I am hoping we can make good use of sxmb_moni.

 

Thanks,

Jonathan.

Re: html content and .txt attachment in the email

$
0
0

Requirement is taking the source file from ftp location and attaching to the email and also extract some of the fields from the file and put it as html content (probably with XSLT)

 

thx

mike

Re: SAP B1 9.0 DTW resources

$
0
0

Thanks for the steers guys, much appreciated.

Viewing all 8594 articles
Browse latest View live




Latest Images