Search the web
Sign In
New User? Sign Up
ABAP · ABAP List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 47828 - 47857 of 47857   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#47857 From: "·½Õ÷" <tq01fop@...>
Date: Wed Dec 9, 2009 3:15 am
Subject: sap pool connection problem
tq01fop
Offline Offline
Send Email Send Email
 
Hi All,
My English is not very well . I hope you can understand my English .
 
I am facing a problem in sap pool connection using java jco.
 
When trying to use Connection Pool system throws an Exception .
 
Here is the Exception :
Exception in thread "main" java.lang.NullPointerException
at com.sap.mw.jco.JCO$Client.connect(JCO.java:3108)
at com.sap.mw.jco.JCO$Repository.getRepositoryClient(JCO.java:19331)
at com.sap.mw.jco.JCO$Repository.queryStructureDefinition(JCO.java:19420)
at com.sap.mw.jco.JCO$Repository.getStructureDefinition(JCO.java:19570)
at com.sap.mw.jco.JCO$BasicRepository.getTableDefinition(JCO.java:18662)
at com.sap.mw.jco.JCO$BasicRepository.getFunctionTemplate(JCO.java:18601)
at dwsample.Test2.main(Test2.java:15)
 
I have debugged for the error and find that myRepository.getFunctionTemplate(name.toUpperCase()) return value is null.
Could someone please let me know how to solve this problem.
 
Thanks.
FANGZheng

#47856 From: Thiago Cardin <thiago.182@...>
Date: Mon Nov 30, 2009 4:15 pm
Subject: help in program
thiago_crl
Offline Offline
Send Email Send Email
 
Hi all,

I have the following scenario:

I have developed a program wich has a screen flag (as checkbox) that, when selected and the RUN button (F8) is pressioned, the program should open a pop-up screen asking for this program to run in background, as a scheduled job.

It is the same thing as running a program using Menu-->Program-->Run in background (F9)

An example of what I need can be seen at transaction CJ8G.

Does anyone know how to do such thing? Or if there is a function module to do so?

I've tried to debbug CJ8G but it wasn't very helpfull.

Thanks in advance!
____________________
Thiago H. Cardin
Cel: (11) 8402-4389


#47855 From: Aromal R <aromal.r@...>
Date: Tue Dec 1, 2009 4:43 am
Subject: RE: Re: Help em programa
raromal
Offline Offline
Send Email Send Email
 

try following code s.

REPORT ztest_bg1.

 

DATA : wrk_ans,

it_sel TYPE TABLE OF rsparams,

var TYPE rsvar-variant.

START-OF-SELECTION.

CALL FUNCTION 'POPUP_TO_CONFIRM'

EXPORTING

titlebar = 'Confirmation'

text_question = ' Do you wan to Run in BG (Y/N? '

text_button_1 = 'Yes'(001)

text_button_2 = 'No'(002)

display_cancel_button = 'X'

start_column = 25

start_row = 6

IMPORTING

answer = wrk_ans

* TABLES

* PARAMETER =

* EXCEPTIONS

* TEXT_NOT_FOUND = 1

* OTHERS = 2.

IF sy-subrc <> 0.

MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

ENDIF.

IF wrk_ans EQ '1'.

PERFORM select_screenfields. " Report screen field capture

* CALL BATCH UPDATE PGM IN BACKGROUND

PERFORM start_bgjob. " start bg job

MESSAGE 'Program scheduled' TYPE 'S' .

ELSE . "IF WRK_ANS EQ '2' OR CANCELLED.

* MESSAGE ‘ Cancelled’ type ‘S’.

LEAVE TO TRANSACTION sy-tcode.

ENDIF.

*&---------------------------------------------------------------------*

*& Form select_screenfields

*&---------------------------------------------------------------------*

* text

*----------------------------------------------------------------------*

FORM select_screenfields .

CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'

EXPORTING

curr_report = 'ZTEST_BG1'

* IMPORTING

* SP =

TABLES

selection_table = it_sel

EXCEPTIONS

not_found = 1

no_report = 2

OTHERS = 3

.

IF sy-subrc <> 0.

* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

 

ENDFORM. " select_screenfields

*&---------------------------------------------------------------------*

*& Form start_bgjob

*&---------------------------------------------------------------------*

* text

*----------------------------------------------------------------------*

FORM start_bgjob .

 

CALL FUNCTION 'HR_START_BATCHJOB_IN_OTHER_SYS'

EXPORTING

repid = 'ZREPORT_TORUN' " Prgm to be scheduled

variant = 'VAR'

* JOBNAME =

* CALL_BACK_DEST =

* CALL_BACK_ID =

* IMPORTING

* JOBCOUNT =

* INDX_ID =

* TABLES

* VALUTAB =

.

ENDFORM. " start_bg

 


From: Thiago Cardin
Sent: Mon 11/30/2009 5:07 PM
To: grupo_abap@...; abap4; ABAP
Subject: [ABAP] Re: Help em programa

 

Hi all,


I have the following scenario:

I have developed a program wich has a screen flag (as checkbox) that, when selected and the RUN button (F8) is pressioned, the program should open a pop-up screen asking for this program to run in background, as a scheduled job.

It is the same thing as running a program using Menu-->Program-->Run in background (F9)

An example of what I need can be seen at transaction CJ8G.

Does anyone know how to do such thing? Or if there is a function module to do so?

I've tried to debbug CJ8G but it wasn't very helpfull.

Thanks in advance!
____________________
Thiago H. Cardin
Cel: (11) 8402-4389



2009/11/30 Thiago Cardin <thiago.182@gmail.com>
Bom dia a todos!

Tenho o seguinte cenário:
Um programa onde existe um flag (checkbox) que quando selecionado e o botão de execução acionado, deveria abrir uma tela pop-up solicitando que o programasse rodasse em background, através de job.

Seria a mesma coisa de selecionar o Menu Programa-->Executar em Background (F9)

Um exemplo do que necessito pode se visto na transação CJ8G

Alguém saberia me informar uma forma de fazer isto? Se existe alguma função?
Tentei debugar o standard da CJ8G mas não foi muito útil.

Agradeço a todos desde já.
____________________
Thiago H. Cardin
Cel: (11) 8402-4389



#47854 From: Thiago Cardin <thiago.182@...>
Date: Mon Nov 30, 2009 11:37 am
Subject: Re: Help em programa
thiago_crl
Offline Offline
Send Email Send Email
 
Hi all,

I have the following scenario:

I have developed a program wich has a screen flag (as checkbox) that, when selected and the RUN button (F8) is pressioned, the program should open a pop-up screen asking for this program to run in background, as a scheduled job.

It is the same thing as running a program using Menu-->Program-->Run in background (F9)

An example of what I need can be seen at transaction CJ8G.

Does anyone know how to do such thing? Or if there is a function module to do so?

I've tried to debbug CJ8G but it wasn't very helpfull.

Thanks in advance!
____________________
Thiago H. Cardin
Cel: (11) 8402-4389



2009/11/30 Thiago Cardin <thiago.182@...>
Bom dia a todos!

Tenho o seguinte cenário:
Um programa onde existe um flag (checkbox) que quando selecionado e o botão de execução acionado, deveria abrir uma tela pop-up solicitando que o programasse rodasse em background, através de job.

Seria a mesma coisa de selecionar o Menu Programa-->Executar em Background (F9)

Um exemplo do que necessito pode se visto na transação CJ8G

Alguém saberia me informar uma forma de fazer isto? Se existe alguma função?
Tentei debugar o standard da CJ8G mas não foi muito útil.

Agradeço a todos desde já.
____________________
Thiago H. Cardin
Cel: (11) 8402-4389



#47853 From: lu ku <lu_ku2001@...>
Date: Fri Nov 27, 2009 5:19 am
Subject: Very Useful thnks a lot
lu_ku2001
Offline Offline
Send Email Send Email
 
Thanks dude,
i was looking for this kind of coding in my one of program.
since nothing was working i used nested loop and the object is already released.
still great to see something gr8 by gr8 people like u.Keep updating :-)



The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.

#47852 From: Lavanya Vijaya Arisetty <kiran.lav@...>
Date: Wed Nov 18, 2009 4:32 pm
Subject: Re: Very Useful
beevkay
Offline Offline
Send Email Send Email
 
Thanks Vinoth..good link

On Wed, Nov 18, 2009 at 7:01 AM, Steve Oldner <steven.oldner@...> wrote:
 

Very nice, I have not seen this before.  Thanks Vinoth!

 

From: ABAP@yahoogroups.com [mailto:ABAP@yahoogroups.com] On Behalf Of Vinoth R Namachivayam
Sent: Wednesday, November 18, 2009 2:47 AM
To: ABAP@yahoogroups.com
Subject: [ABAP] Very Useful

 

 

Dear friends,

 

               Hello friends vinoth here u ppls check this URL this is very useful for al abapers

 

http://wiki.sdn.sap.com/wiki/display/Snippets/Home

--
Thanks & Regards

Vinoth R Namachivayam



#47851 From: Steve Oldner <steven.oldner@...>
Date: Wed Nov 18, 2009 12:01 pm
Subject: RE: Very Useful
steveoldner
Offline Offline
Send Email Send Email
 

Very nice, I have not seen this before.  Thanks Vinoth!

 

From: ABAP@yahoogroups.com [mailto:ABAP@yahoogroups.com] On Behalf Of Vinoth R Namachivayam
Sent: Wednesday, November 18, 2009 2:47 AM
To: ABAP@yahoogroups.com
Subject: [ABAP] Very Useful

 

 

Dear friends,

 

               Hello friends vinoth here u ppls check this URL this is very useful for al abapers

 

http://wiki.sdn.sap.com/wiki/display/Snippets/Home

--
Thanks & Regards

Vinoth R Namachivayam


#47850 From: Vinoth R Namachivayam <vinothrn17@...>
Date: Wed Nov 18, 2009 8:46 am
Subject: Very Useful
vinoth_pappu
Offline Offline
Send Email Send Email
 
Dear friends,
 
               Hello friends vinoth here u ppls check this URL this is very useful for al abapers
 
http://wiki.sdn.sap.com/wiki/display/Snippets/Home

--
Thanks & Regards

Vinoth R Namachivayam

#47849 From: hari mitnala <hari_m76@...>
Date: Tue Nov 17, 2009 12:42 pm
Subject: Re: Date format in internal table
hari_m76
Offline Offline
Send Email Send Email
 
hi,

first tou check your  su01 ur profile date settings.

there you can change.

or else in program pass 3 varibles and concatenate finally.

HARI

#47848 From: Leonardo Rodriguez <leuu86@...>
Date: Mon Nov 16, 2009 12:02 pm
Subject: Re: Date format in internal table
leuu86
Offline Offline
Send Email Send Email
 
The date format depends on user configuration, but you can also set the decimal and date format for a country using "SET COUNTRY f.", it works when write formats the date, I'm guessing it works in the ALV too, if it doesn't there should be a parameter (probably in the layout) that does the same thing.

Regards.

On Fri, Nov 13, 2009 at 10:59 PM, ranjit gupta <mail2gupta_r@...> wrote:
 

Yo can use Edit mask syntax or Concatenate the date as u want
 
Ranjit Gupta.




From: Nihad Omerbegovic <nihad7@...>
To: ABAP@yahoogroups.com
Sent: Mon, November 9, 2009 2:19:01 PM

Subject: Re: [ABAP] Date format in internal table

 

It is displayed 09.20.3009 instead of 30.09.2009
 
In debug it has value 30092009 but should be abap internal format 20090930 (YYYYMMDD)

--- On Mon, 11/9/09, ~ yOy <ravolarte@gmail. com> wrote:

From: ~ yOy <ravolarte@gmail. com>
Subject: Re: [ABAP] Date format in internal table
To: ABAP@yahoogroups. com
Date: Monday, November 9, 2009, 9:30 AM

 


what format do you want for the date?

On Mon, Nov 9, 2009 at 4:02 PM, Nihad Omerbegovic <nihad7@yahoo. com> wrote:
 
Hi guys,
how can I change date format in internal it_stanja in this code:
 
CALL METHOD r_alv_grid->set_table_for_ first_display
EXPORTING
i_structure_ name = 'ZKOMISION'
is_layout = gs_layout
CHANGING
it_outtab = it_stanja
EXCEPTIONS
OTHERS = 4.
 
it_stanja is declared in program like this:
it_stanja TYPE TABLE OF zkomision.






#47847 From: "viralsin" <viralsin@...>
Date: Sun Nov 15, 2009 12:22 am
Subject: Daily updates on SAP
viralsin
Offline Offline
Send Email Send Email
 

Hi All,

Stay upto date on SAP . Get feeds from differrent sites at one location.

Please visit http://beginsap.blogspot.com/

Thanks!

Regards,

Viral Shah


#47846 From: ranjit gupta <mail2gupta_r@...>
Date: Sat Nov 14, 2009 2:04 am
Subject: Re: Reg Adv of alv oops over alv using function modules
mail2gupta_r
Offline Offline
Send Email Send Email
 
Hello Chandana,

If we write in OOPS abap using Classes (private n protected) then we  can restrict the changes on code .if this program is used in any other places.

 
Ranjit Gupta.




From: ⓗⓘⓜⓠ<reddy.himachandana@...>
To: ABAP@yahoogroups.com
Sent: Thu, November 5, 2009 6:23:35 PM
Subject: Re: [ABAP] Reg Adv of alv oops over alv using function modules

 

Hi Steve,
             Thank you for reply which adds some more info for my database,Have a great day.

On Thu, Nov 5, 2009 at 5:44 PM, Steve Oldner <steven.oldner@ la.gov> wrote:
 

We went to OOPS because:

1.  This is the way SAP is going and developing,

2.  Once you get a prototype, it is easy to use.

3. Our ALV needs are not complicate.

 

Steve Oldner

State of Louisiana

 

From: ABAP@yahoogroups. com [mailto:ABAP@yahoogroups. com] On Behalf Of ????
Sent: Wednesday, November 04, 2009 9:48 PM
To: ABAP@yahoogroups. com; sapabapprogramming@ yahoogroups. com
Subject: [ABAP] Reg Adv of alv oops over alv using function modules

 

 

HI All,
      This is chandana,anyone plz let me know about why one should opt for  using alvs through oops.
What are the advantages of oops alv over the regular alvs created by function modules?
Plz do provide some good info about it .

Quick and relevant  response are appreciated.

Thanks & regards,
 chandana.




#47845 From: ranjit gupta <mail2gupta_r@...>
Date: Sat Nov 14, 2009 1:59 am
Subject: Re: Date format in internal table
mail2gupta_r
Offline Offline
Send Email Send Email
 
Yo can use Edit mask syntax or Concatenate the date as u want
 
Ranjit Gupta.




From: Nihad Omerbegovic <nihad7@...>
To: ABAP@yahoogroups.com
Sent: Mon, November 9, 2009 2:19:01 PM
Subject: Re: [ABAP] Date format in internal table

 

It is displayed 09.20.3009 instead of 30.09.2009
 
In debug it has value 30092009 but should be abap internal format 20090930 (YYYYMMDD)

--- On Mon, 11/9/09, ~ yOy <ravolarte@gmail. com> wrote:

From: ~ yOy <ravolarte@gmail. com>
Subject: Re: [ABAP] Date format in internal table
To: ABAP@yahoogroups. com
Date: Monday, November 9, 2009, 9:30 AM

 


what format do you want for the date?

On Mon, Nov 9, 2009 at 4:02 PM, Nihad Omerbegovic <nihad7@yahoo. com> wrote:
 
Hi guys,
how can I change date format in internal it_stanja in this code:
 
CALL METHOD r_alv_grid->set_table_for_ first_display
EXPORTING
i_structure_ name = 'ZKOMISION'
is_layout = gs_layout
CHANGING
it_outtab = it_stanja
EXCEPTIONS
OTHERS = 4.
 
it_stanja is declared in program like this:
it_stanja TYPE TABLE OF zkomision.





#47844 From: Rohit Kumar <rohit_sap@...>
Date: Wed Nov 11, 2009 8:12 am
Subject: Re: Fw: Important [1 Attachment]
rohit_sap...
Offline Offline
Send Email Send Email
 
It would be highly appreciated, with our group members restrain themselves from sending such mythological and provocative mails.

This is purely a knowledge base environment, and please, do NOT spoil it.

Regards,

Rohit Kumar

--- On Tue, 10/11/09, rajashree das <rajashreemam@...> wrote:

From: rajashree das <rajashreemam@...>
Subject: [ABAP] Fw: Important [1 Attachment]
To: ABAP@yahoogroups.com, abishekh.sinha@..., amrita.x.sinha@..., anamika@..., anjali-burman@..., anup@..., anusua.c@..., careerbengal@..., citialert.india1@..., fds@..., gargi@..., hrd@..., indiaservice@..., jobs@..., jobs@..., jobs@..., jobs@..., jobs@..., kolkata@..., kolkata@..., koushik@..., ksaha@..., manashi.hazra@..., pramitaghosh@..., resourcing@..., resumes@..., rupali@..., scischool@..., sdasgupta@..., subhranil@..., sudeshna146@..., sushmitakol@..., swetha@..., tlroy@..., tulina_chatterjee@..., upasana.agarwal@..., wish4jobs@..., "abhishek abap" <abhishekiyenger@...>, "abhishek sir" <abishekh.sinha@...>, "ajit" <007ajit@...>, "amit roy" <amit@...>, "anirban" <noreply-orkut@...>, "anirban abap batch" <anirbanb2402@...>, "Apurba Dey" <reach_putu@...>, "argha" <ak_datta@...>, "Barsha Baishali" <barsha.baishali@...>, "BHUSITA" <bhusita.devburman@...>, biodata@..., biodata@..., "Dipankar" <dipankar_roy142@...>, "future soft hr" <desa.bose@...>, "hr futuresoft Debjani Bose" <debjani.bose@...>, "Kajori Chakraborty" <ckajori@...>, "lipika" <lpk.mohanty@...>, madhuravani@..., madhuravani@..., "Monideepa" <frontoffice@...>, "moumita" <moumitadhar2007@...>, "Mrinmoy Goswami" <Mrinmoy.Goswami@...>, "naba" <nabakumar.saha@...>, "NabaKumar Saha" <nabakumar.saha@...>, priti@..., priti@..., "rajashree das" <rajashreemam@...>, "rozaline" <rozalinepramanik@...>, "sanjay" <ssanjaykumar@...>, "snehasish" <snehashish@...>, "sourav chakraborty" <mysticsaurav@...>, "sudeshna ghosh" <sudeshna.ghosh13@...>, "Sudeshna Ghosh" <sumonto_ghosh@...>, "suparna" <suparna.sharma@...>, swagata.ghosh@..., swagata.ghosh@..., "tania majumder" <tn_majumder@...>, "tapas saha" <tapasksaha@...>, "titanda" <debasishpal@...>, "tumpa di" <mahasweta.das@...>, "Uma Banik" <uma@...>, "uncle" <csengupta124@...>
Date: Tuesday, 10 November, 2009, 5:10 AM

 

FYIP
 

regards

 

rajashree




----- Forwarded Message ----
From: sriparna choudhury <sriparnachoudhury@ gmail.com>
To: amrita. mims <amrita.mims@ gmail.com>; ajit_archu <ajit_archu@yahoo. co.in>; anin27 <anin27@gmail. com>; arpita. garia <arpita.garia@ gmail.com>; aditya11111aditya <aditya11111aditya@ gmail.com>; atanunag <atanunag@gmail. com>; amit. is. chakraborty5 <amit.is.chakraborty 5@...>; anirban.bhattacharj ee@gmail. com; adabhijitdas@ gmail.com; Rahul Batra <RB0038876@techmahin dra.com>; bhattacharjee. payel <bhattacharjee. payel@gmail. com>; bipradey@gmail. com; bhattacharjeejoyasr ee@gmail. com; sayan. cool <sayan.cool@gmail. com>; মনোজিত চৌধà§à¦°à§€ (Monojit Choudhury) <monojit.choudhury@ gmail.com>; cont_rutuja@ yahoo.co. in; Tandra De <tandra.dey@gmail. com>; dibyopik@gmail. com; dibakar.chowdhury@ yahoo.com; dibakarchowdhury198 4@.... in; dibakarchowdhury@ indiatimes. com; dr.deby4u@gmail. com; debsingha <debsingha@yahoo. co.in>; dsdsds_nanana <dsdsds_nanana@ yahoo.com>; soma deb <misstanus@gmail. com>; lipa.acharjee@ gmail.com; lipaacharjee@ yahoo.com; ravisinha.tel@ gmail.com; rajashreemam@ yahoo.com
Sent: Mon, November 9, 2009 9:43:23 PM
Subject: Important

hi



The INTERNET now has a personality. YOURS! See your Yahoo! Homepage.

#47843 From: rajashree das <rajashreemam@...>
Date: Tue Nov 10, 2009 5:10 am
Subject: Fw: Important
rajashreemam
Offline Offline
Send Email Send Email
 
FYIP
 

regards

 

rajashree




----- Forwarded Message ----
From: sriparna choudhury <sriparnachoudhury@...>
To: amrita. mims <amrita.mims@...>; ajit_archu <ajit_archu@...>; anin27 <anin27@...>; arpita. garia <arpita.garia@...>; aditya11111aditya <aditya11111aditya@...>; atanunag <atanunag@...>; amit. is. chakraborty5 <amit.is.chakraborty5@...>; anirban.bhattacharjee@...; adabhijitdas@...; Rahul Batra <RB0038876@...>; bhattacharjee. payel <bhattacharjee.payel@...>; bipradey@...; bhattacharjeejoyasree@...; sayan. cool <sayan.cool@...>; মনোজিত চৌধà§à¦°à§€ (Monojit Choudhury) <monojit.choudhury@...>; cont_rutuja@...; Tandra De <tandra.dey@...>; dibyopik@...; dibakar.chowdhury@...; dibakarchowdhury1984@...; dibakarchowdhury@...; dr.deby4u@...; debsingha <debsingha@...>; dsdsds_nanana <dsdsds_nanana@...>; soma deb <misstanus@...>; lipa.acharjee@...; lipaacharjee@...; ravisinha.tel@...; rajashreemam@...
Sent: Mon, November 9, 2009 9:43:23 PM
Subject: Important

hi


1 of 1 File(s)


#47842 From: Nihad Omerbegovic <nihad7@...>
Date: Mon Nov 9, 2009 8:49 am
Subject: Re: Date format in internal table
nihad7
Offline Offline
Send Email Send Email
 
It is displayed 09.20.3009 instead of 30.09.2009
 
In debug it has value 30092009 but should be abap internal format 20090930 (YYYYMMDD)

--- On Mon, 11/9/09, ~ yOy <ravolarte@...> wrote:

From: ~ yOy <ravolarte@...>
Subject: Re: [ABAP] Date format in internal table
To: ABAP@yahoogroups.com
Date: Monday, November 9, 2009, 9:30 AM

 


what format do you want for the date?

On Mon, Nov 9, 2009 at 4:02 PM, Nihad Omerbegovic <nihad7@yahoo. com> wrote:
 
Hi guys,
how can I change date format in internal it_stanja in this code:
 
CALL METHOD r_alv_grid->set_table_for_ first_display
EXPORTING
i_structure_ name = 'ZKOMISION'
is_layout = gs_layout
CHANGING
it_outtab = it_stanja
EXCEPTIONS
OTHERS = 4.
 
it_stanja is declared in program like this:
it_stanja TYPE TABLE OF zkomision.




#47841 From: "~ yOy" <ravolarte@...>
Date: Mon Nov 9, 2009 8:30 am
Subject: Re: Date format in internal table
ravolarte@...
Send Email Send Email
 


what format do you want for the date?

On Mon, Nov 9, 2009 at 4:02 PM, Nihad Omerbegovic <nihad7@...> wrote:
 

Hi guys,
how can I change date format in internal it_stanja in this code:
 
CALL METHOD r_alv_grid->set_table_for_first_display
EXPORTING
i_structure_name = 'ZKOMISION'
is_layout = gs_layout
CHANGING
it_outtab = it_stanja
EXCEPTIONS
OTHERS = 4.
 
it_stanja is declared in program like this:
it_stanja TYPE TABLE OF zkomision.



#47840 From: Nihad Omerbegovic <nihad7@...>
Date: Mon Nov 9, 2009 8:02 am
Subject: Date format in internal table
nihad7
Offline Offline
Send Email Send Email
 
Hi guys,
how can I change date format in internal it_stanja in this code:
 
CALL METHOD r_alv_grid->set_table_for_first_display
EXPORTING
i_structure_name = 'ZKOMISION'
is_layout = gs_layout
CHANGING
it_outtab = it_stanja
EXCEPTIONS
OTHERS = 4.
 
it_stanja is declared in program like this:
it_stanja TYPE TABLE OF zkomision.


#47839 From: ⓗⓘⓜⓠ<reddy.himachandana@...>
Date: Thu Nov 5, 2009 12:53 pm
Subject: Re: Reg Adv of alv oops over alv using function modules
tochandanareddy
Offline Offline
Send Email Send Email
 
Hi Steve,
             Thank you for reply which adds some more info for my database,Have a great day.

On Thu, Nov 5, 2009 at 5:44 PM, Steve Oldner <steven.oldner@...> wrote:
 

We went to OOPS because:

1.  This is the way SAP is going and developing,

2.  Once you get a prototype, it is easy to use.

3. Our ALV needs are not complicate.

 

Steve Oldner

State of Louisiana

 

From: ABAP@yahoogroups.com [mailto:ABAP@yahoogroups.com] On Behalf Of ????
Sent: Wednesday, November 04, 2009 9:48 PM
To: ABAP@yahoogroups.com; sapabapprogramming@yahoogroups.com
Subject: [ABAP] Reg Adv of alv oops over alv using function modules

 

 

HI All,
      This is chandana,anyone plz let me know about why one should opt for  using alvs through oops.
What are the advantages of oops alv over the regular alvs created by function modules?
Plz do provide some good info about it .

Quick and relevant  response are appreciated.

Thanks & regards,
 chandana.



#47838 From: Steve Oldner <steven.oldner@...>
Date: Thu Nov 5, 2009 12:14 pm
Subject: RE: Reg Adv of alv oops over alv using function modules
steveoldner
Offline Offline
Send Email Send Email
 

We went to OOPS because:

1.  This is the way SAP is going and developing,

2.  Once you get a prototype, it is easy to use.

3. Our ALV needs are not complicate.

 

Steve Oldner

State of Louisiana

 

From: ABAP@yahoogroups.com [mailto:ABAP@yahoogroups.com] On Behalf Of ????
Sent: Wednesday, November 04, 2009 9:48 PM
To: ABAP@yahoogroups.com; sapabapprogramming@yahoogroups.com
Subject: [ABAP] Reg Adv of alv oops over alv using function modules

 

 

HI All,
      This is chandana,anyone plz let me know about why one should opt for  using alvs through oops.
What are the advantages of oops alv over the regular alvs created by function modules?
Plz do provide some good info about it .

Quick and relevant  response are appreciated.

Thanks & regards,
 chandana.


#47837 From: ⓗⓘⓜⓠ<reddy.himachandana@...>
Date: Thu Nov 5, 2009 3:48 am
Subject: Reg Adv of alv oops over alv using function modules
tochandanareddy
Offline Offline
Send Email Send Email
 
HI All,
      This is chandana,anyone plz let me know about why one should opt for  using alvs through oops.
What are the advantages of oops alv over the regular alvs created by function modules?
Plz do provide some good info about it .

Quick and relevant  response are appreciated.

Thanks & regards,
 chandana.

#47836 From: "Marcos" <m.abreuferreira@...>
Date: Wed Nov 4, 2009 4:53 pm
Subject: Re: [MAF] How to encrypt a field in ABAP and decprypt in .Net Application
acepips
Offline Offline
Send Email Send Email
 
Palani,

I have a different situation. I have 3 reports that's call a function in XI
server. The XI Server receive this informations and save data in other database.
This database is used in a .Net application. I need send a encrypt data to XI
server. The XI Server save this data and a .Net application decrypt.

Tks,

Marcos Ferreira,
Sao Paulo, Brazil

--- In ABAP@yahoogroups.com, Palani Venkatesan <tmv_palani@...> wrote:
>
> Hi,
>    I would like to share my experience in encrypt concept in SAP. We can
encrypt the file placed in the application server using UNIX command. This UNIX
command will call the encrypt software in the background and encrypt the file.
After encrypt system will send the same file to other system. Now other system
will decrypt the same file using encrypt software. I hope these details will
help you.
>
> Thanks&Regards,
> Palani Venkatesan,
> SAP Technical Consultant
> Stockholm, Sweden
>
>
> --- On Wed, 4/11/09, Marcos <m.abreuferreira@...> wrote:
> From: Marcos <m.abreuferreira@...>
> Subject: [ABAP] [MAF] How to encrypt a field in ABAP and decprypt in .Net
Application
> To: ABAP@yahoogroups.com
> Date: Wednesday, 4 November, 2009, 12:11 AM
>
> Hi friends,
>
> Is it possible to encrypt a field in ABAP and decrypt in a application
developed in .Net? If possible, pls let me know how to encrypt and decrypt the
same.
>
> Thanks in advance.
>
> Marcos

#47835 From: Palani Venkatesan <tmv_palani@...>
Date: Wed Nov 4, 2009 7:58 am
Subject: Re: [MAF] How to encrypt a field in ABAP and decprypt in .Net Application
tmv_palani
Offline Offline
Send Email Send Email
 
Hi,
   I would like to share my experience in encrypt concept in SAP. We can encrypt the file placed in the application server using UNIX command. This UNIX command will call the encrypt software in the background and encrypt the file. After encrypt system will send the same file to other system. Now other system will decrypt the same file using encrypt software. I hope these details will help you.

Thanks&Regards,
Palani Venkatesan,
SAP Technical Consultant
Stockholm, Sweden


--- On Wed, 4/11/09, Marcos <m.abreuferreira@...> wrote:

From: Marcos <m.abreuferreira@...>
Subject: [ABAP] [MAF] How to encrypt a field in ABAP and decprypt in .Net Application
To: ABAP@yahoogroups.com
Date: Wednesday, 4 November, 2009, 12:11 AM

 
Hi friends,

Is it possible to encrypt a field in ABAP and decrypt in a application developed in .Net? If possible, pls let me know how to encrypt and decrypt the same.

Thanks in advance.

Marcos



Connect more, do more and share more with Yahoo! India Mail. Learn more.

#47834 From: "Marcos" <m.abreuferreira@...>
Date: Tue Nov 3, 2009 6:41 pm
Subject: [MAF] How to encrypt a field in ABAP and decprypt in .Net Application
acepips
Offline Offline
Send Email Send Email
 
Hi friends,

Is it possible to encrypt a field in ABAP and decrypt in a application developed
in .Net? If possible, pls let me know how to encrypt and decrypt the same.


Thanks in advance.

Marcos

#47833 From: hari mitnala <hari_m76@...>
Date: Fri Oct 30, 2009 10:22 am
Subject: Smartform text not getting printed
hari_m76
Offline Offline
Send Email Send Email
 
Hi,

You first check whether the address is maintained in Turkish in ADRC table for
the address number.
if it is maintained
  please put country code (Turkish)in address window means(address).
  Do not hard code put in a variable and pass variable to address.

Regards,
Hari

#47832 From: "Vivek P" <vicious_viper1986@...>
Date: Fri Oct 30, 2009 4:59 am
Subject: Smartform text not getting printed
vicious_vipe...
Offline Offline
Send Email Send Email
 
Hi,

I had an issue with one of my Smartforms. For the same Smartform, I've
maintained translations for English and Turkey. And when I'm displaying
smartform for particular vendor, whose bukrs belongs to Turkey, the text having
paragraph format 'LH' isnt getting printed no matter what the language is. Other
texts are displayed fine.
For another vendor, belonging to country other than Turkey, all the texts are
getting displayed correctly for all language(even Turkish).

I cant find out why the vendor belonging to Turkey does not display these texts
with 'LH' Paragraph format ? There are no condition to display these text
elements. I'd be thankful if anyone could help !!

Thanks and regards
        Vivek

#47831 From: hari mitnala <hari_m76@...>
Date: Thu Oct 29, 2009 9:13 am
Subject: PDF Issue- With Special Characters
hari_m76
Offline Offline
Send Email Send Email
 
submit rstxpdft4
            with spoolno = "spool no"
            with p_file = "whre you want to download"
           and return.

it will helpfull to you.

#47830 From: neetu reddy <neetu_reddy1@...>
Date: Tue Oct 27, 2009 10:56 am
Subject: PDF Issue- With Special Characters
neetu_reddy1
Offline Offline
Send Email Send Email
 
Hi ,
 
I am facing a problem  with the PDF form.
I am converting a smartform into a PDF, but when downloading the form to PDF
the special characters   for ex :Žmevović  are not downloading correctly..in the place of special characters # is printing like #mevovi#.
 
Could anybody of you help me in solving the problem.
 
Thanks,
Neetu
 
 


#47829 From: Rohit Kumar <rohit_sap@...>
Date: Sun Oct 25, 2009 9:11 am
Subject: Re: Installation SAP Education .
rohit_sap...
Offline Offline
Send Email Send Email
 
yes dude.. its possible..
search of WEB Application Server for SAP.

wer ru located?

Regards,

Rohit Kumar

--- On Sat, 24/10/09, patel janak <janakio@...> wrote:

From: patel janak <janakio@...>
Subject: [ABAP] Installation SAP Education .
To: ABAP@yahoogroups.com
Date: Saturday, 24 October, 2009, 7:27 AM

 

Dear All,

I Would like to install SAP for education purpose,
especially abap learning Is it possible? if yes then Please advise me.

Regards
Janak Patel
 



Connect more, do more and share more with Yahoo! India Mail. Learn more.

#47828 From: Aromal R <aromal.r@...>
Date: Fri Oct 23, 2009 9:00 am
Subject: RE: Date in ALV
raromal
Offline Offline
Send Email Send Email
 
incude a character field of length 10 in your final internal table.
data: wrk_date(10).
 
then in the loop.. endloop of the final internal table
 
suppose sy-datum is varibale which need conversion.
 
** USE THE BELOW CODE FOR CONVERSION.
 
WRITE sy-datum TO wrk_date USING EDIT MASK  '__.__.____'.
 
Thanks & Regards,
 
Aromal R


From: Nihad Omerbegovic
Sent: Fri 10/23/2009 2:07 PM
To: abap@yahoogroups.com
Subject: [ABAP] Date in ALV

 

Hi guys,
 
I need little help please. I create ALV report but date field is not displayed
correctly.
When I debug it has value 30092009 and it is displayed on screen like 09.20.3009
 
It should look like this on screen 30.09.2009, (in debug it should have value 20090930)
 
Do you know how to solve this?
Thanks,
Nihad


Messages 47828 - 47857 of 47857   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help