SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Запуск транзакции с вариантом



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
corsair
Участник
Участник



Joined: 06 Feb 2008
Posts: 37

PostPosted: Fri May 30, 2008 1:17 pm    Post subject: Запуск транзакции с вариантом Reply with quote

Добрый день, как из программы запустить транзакцию с заданным вариантом транзакции?
Back to top
View user's profile Send private message
XXX_:)
Аналитик
Аналитик


Age: 40
Joined: 01 Feb 2008
Posts: 387
Location: Воронеж

PostPosted: Fri May 30, 2008 1:49 pm    Post subject: Reply with quote

Я делаю так: Создаю транзакцию Z/// с впараметрами на стандартную SAPовскую, а потом из программы уже вызываю свою Z/// в итоге вызывается стандартная с параметрами, для транзакции с вариантом анологично, но я больше работаю с параметрами, мне лично как то удобнее.
_________________
Hормальные люди делают вещи намного более безумные чем всё, что делают сумасшедшие (c) С.Лем
Back to top
View user's profile Send private message Blog
Рустам
Специалист
Специалист



Joined: 26 Dec 2007
Posts: 73

PostPosted: Fri May 30, 2008 2:32 pm    Post subject: Reply with quote

Я вот так сделал внутри badi. Сначала проверяю, с каким вариантом транзакция запущена, и если с неправильным, перезапускаю c нужным.
Code:
  DATA: l_tcvariant         TYPE shdtvciu-tcvariant,
        l_xtcvariant        TYPE shdtvciu-tcvariant,
        tcode               TYPE sy-tcode,
        l_xclientind,
        l_rc                TYPE sy-subrc.

  CALL FUNCTION 'RS_HDSYS_GET_TC_VARIANT'
         IMPORTING
              tcvariant               = l_tcvariant
              flag_client_independent = l_xclientind
              rc                      = l_rc.

  tcode = sy-tcode.
  CONCATENATE 'ZE' tcode INTO l_xtcvariant.

  IF l_rc > 2 OR l_tcvariant NE l_xtcvariant.
      l_xclientind = 'X'.
      CALL FUNCTION 'RS_HDSYS_CALL_TC_VARIANT'
           EXPORTING
              tcode                     = tcode
              variant                   = l_xtcvariant
              i_flag_client_independent = l_xclientind
              call_mode                 = ' '
              authority_check           = ' '
           EXCEPTIONS
              OTHERS                    = 0.

      LEAVE TO TRANSACTION SPACE.
  ENDIF.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.