Problem In Recording MB1A Transaction through SHDB

Hi Friends,
While Recording MB1A Transaction I am getting Codding Block Screen. Where as Whilr running MB1A transaction Normally we are not getting that screen.
For this reason we are not able to go to the next step. please do the need full.
Here i am sending the code.
*& Report  YPH_CANCEL_REV                                              *
REPORT  yph_cancel_rev                          .
*include bdcrecx1.
DATA : BEGIN OF BDC_TAB OCCURS 0.
        INCLUDE STRUCTURE BDCDATA.
DATA : END OF BDC_TAB.
DATA : BEGIN OF MESSTAB OCCURS 0.
       INCLUDE STRUCTURE BDCMSGCOLL.
DATA : END OF MESSTAB.
DATA : BEGIN OF itab OCCURS 0,
       aufnr TYPE aufnr,
       werks type werks_d,
       lgort type lgort_d,
       MTSNR type MTSNR1,
       END OF itab,
       begin of it_caufv occurs 0,
       aufnr type aufnr,
       rsnum type rsnum,
       end of it_caufv,
       begin of it_resb occurs 0,
       rsnum type rsnum,
       aufnr type aufnr,
       xwaok type xwaok,
       matnr type matnr,
       enmng type enmng,
       splkz type CHSPLIT,
       rgekz type RGEKZ,
       end of it_resb.
data dir2 type string.
PARAMETERS : dir1(50) TYPE c.
dir2 = dir1.
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    filename            = dir2              "'C:order.txt'
    filetype            = 'ASC'
    has_field_separator = 'X'
  TABLES
    data_tab            = itab.
loop at itab.
select aufnr rsnum from caufv into table it_caufv where lead_aufnr = itab-aufnr.
loop at it_caufv.
select rsnum aufnr xwaok matnr enmng splkz rgekz from resb into table it_resb  where rsnum = it_caufv-rsnum.
loop at it_resb.
if it_resb-xwaok eq 'X'.    " Movement Allowed
if it_resb-enmng > 0 .   "  Quantity With drawn
if it_resb-rgekz eq ' '.    " Back Flush
*if it_resb-splkz eq ' '.    " Batch Split
data: begin of record occurs 0,
* data element: BLDAT
        BLDAT_001(010),
* data element: BUDAT
        BUDAT_002(010),
* data element: MTSNR1
        MTSNR_003(016),
* data element: BWARTWA
        BWARTWA_004(003),
* data element: WERKS_D
        WERKS_005(004),
* data element: LGORT_D
        LGORT_006(004),
* data element:
        XFULL_007(001),
* data element: WVERS2
        WVERS2_008(001),
* data element: WERKS_D
        WERKS_009(004),
* data element: AUFNR
        AUFNR_01_010(012),
* data element: LGORT_D
        LGORT_01_011(004),
* data element: LGORT_D
        LGORT_02_012(004),
* data element: LGORT_D
        LGORT_03_013(004),
* data element: LGORT_D
        LGORT_04_014(004),
* data element: LGORT_D
        LGORT_05_015(004),
* data element: ERFMG
        ERFMG_016(017),
* data element: ERFME
        ERFME_017(003),
* data element: LGORT_D
        LGORT_018(004),
* data element: FMORE
        FMORE_019(001),
      end of record.
*** End generated data section ***
*start-of-selection.
*perform open_dataset using dataset.
**record-mtsnr_003 = 'REM'.
**record-bwartwa_004 = '262'.
**record-werks_009 = 'HPR1'.
**append record.
*loop at record.
PERFORM DYNPRO USING :
                    'X'  'SAPMM07M'  '0400',
                    ' '  'BDC_CURSOR'  'RM07M-LGORT',
                    ' '  'BDC_OKCODE' '=NFAS',
                    ' '  'BDC_CURSOR' 'RM07M-MTSNR',
                    ' '  'RM07M-MTSNR' 'REM',
                    ' '  'BDC_CURSOR' 'RM07M-BWARTWA',
                    ' '  'RM07M-BWARTWA' '262',
                    ' '  'BDC_CURSOR' 'RM07M-WERKS',
                    ' '  'RM07M-WERKS' itab-werks,
                    ' '  'BDC_CURSOR' 'RM07M-LGORT',
                    ' '  'RM07M-LGORT' itab-lGORT,
                    'X'  'SAPMM07M' '1405',
                    ' '  'BDC_CURSOR' 'RM07M-AUFNR(01)',
                    ' '  'BDC_OKCODE' 'SS',
                    ' '  'BDC_CURSOR' 'RM07M-AUFNR(01)',
                    ' '  'RM07M-AUFNR(01)' it_caufv-aufnr,
                    'X'  'SAPMM07M' '0410',
                    ' '  'BDC_CURSOR' 'MSEG-ERFMG',
                    ' '  'BDC_OKCODE' '=BU',
                    ' '  'BDC_CURSOR' 'MSEG-LGORT',
                    ' '  'MSEG-LGORT' itab-lGORT,
                     'X' 'SAPLKACB' '2400',
                     ' ' 'BDC_CURSOR' 'COBL-AUFNR',
                     ' ' 'BDC_OKCODE' '=ENTE'.
*                    ' '  'BDC_CURSOR' 'COBL-AUFNR',
*                    ' '  'MSEG-LGORT' it_caufv-aufnr.
CALL TRANSACTION 'MB1A' USING BDC_TAB MODE 'A' UPDATE 'S'
                                     MESSAGES INTO messtab.
if sy-subrc eq 0.
write :/ 'Suceess full',it_resb-aufnr, it_resb-matnr,it_resb-enmng.
else.
write :/ 'UN Suceess full',it_resb-aufnr, it_resb-matnr,it_resb-enmng.
endif.
*                    ' '  'BDC_CURSOR'  'MKPF-BLDAT',
*                    ' '  'EMPNO' record-BLDAT_001,
*                    ' '  'BDC_CURSOR' 'MKPF-BUDAT',
*                    ' '  'MKPF-BUDAT' record-BUDAT_002.
*perform bdc_field
*perform bdc_field       using 'RM07M-WERKS'
*                              record-WERKS_005.
*perform bdc_field
*perform bdc_field       using 'XFULL'
*                              record-XFULL_007.
*perform bdc_field       using 'RM07M-WVERS2'
*                              record-WVERS2_008.
*perform bdc_dynpro      using 'SAPMM07M' '1405'.
*perform bdc_field       using 'BDC_CURSOR'
*                              'RM07M-AUFNR(01)'.
*perform bdc_field       using 'BDC_OKCODE'
*                              'SS'.
*perform bdc_field       using 'RM07M-WERKS'
*                              record-WERKS_009.
*perform bdc_field       using 'RM07M-AUFNR(01)'
*                              record-AUFNR_01_010.
*perform bdc_field       using 'RM07M-LGORT(01)'
*                              record-LGORT_01_011.
*perform bdc_field       using 'RM07M-LGORT(02)'
*                              record-LGORT_02_012.
*perform bdc_field       using 'RM07M-LGORT(03)'
*                              record-LGORT_03_013.
*perform bdc_field       using 'RM07M-LGORT(04)'
*                              record-LGORT_04_014.
*perform bdc_field       using 'RM07M-LGORT(05)'
*                              record-LGORT_05_015.
*perform bdc_dynpro      using 'SAPMM07M' '0410'.
*perform bdc_field       using 'BDC_CURSOR'
*                              'MSEG-ERFMG'.
*perform bdc_field       using 'BDC_OKCODE'
*                              '=BU'.
*perform bdc_field       using 'MSEG-ERFMG'
*                              record-ERFMG_016.
*perform bdc_field       using 'MSEG-ERFME'
*                              record-ERFME_017.
*perform bdc_field       using 'MSEG-LGORT'
*                              record-LGORT_018.
*perform bdc_field       using 'DKACB-FMORE'
*                              record-FMORE_019.
*perform bdc_dynpro      using 'SAPLKACB' '0002'.
*perform bdc_field       using 'BDC_CURSOR'
*                              'COBL-AUFNR'.
*perform bdc_field       using 'BDC_OKCODE'
*                              '=ENTE'.
*perform bdc_transaction using 'MB1A'.
*endloop.
*endif.
else.
write :/ 'Plan Order reverse Conformation',it_resb-aufnr, it_resb-matnr,it_resb-enmng.
endif.
else.
write :/ 'goods not issued',it_resb-aufnr, it_resb-matnr,it_resb-enmng.
endif.
endif.
endloop.
endloop.
endloop.
form DYNPRO  using    value(p_0238)
                      value(p_0239)
                      value(p_0240).
IF p_0238 = 'X'.
    CLEAR bdc_tab.
    MOVE:  'SAPMM07M' TO bdc_tab-program,
            P_0240 TO bdc_tab-dynpro,
            'X'  TO bdc_tab-dynbegin.
    APPEND bdc_tab.
  ELSE.
    CLEAR bdc_tab.
    MOVE:  P_0239 TO bdc_tab-fnam,
           P_0240 TO bdc_tab-fval.
    APPEND bdc_tab.
  ENDIF.
endform.                    " DYNPRO

best to do is use bapi <b>BAPI_GOODSMVT_CREATE</b> and see its documentation to get more info.
Regards
Prabhu

Similar Messages

  • While recording  through SHDB for XD01 mobile number and E-mail ID is not appearing

    While recording for XD01 through SHDB fields mobile numebr and E-mail id is not reflecting.
    Kindly do the needful.

    This one is easy, try with keywords : SHDB XK01 address (always use simple words, then restrict selection if required)
    (Also having solved same problem some years ago, can help too , the first time I got 653536 - Recording communication data cannot be processed version 1, SAP had not yet created/added the knowledge document to OSS search)
    Regards,
    Raymond

  • Some fields are missing while recording through shdb

    Dear Abapers,
                   I am doing bdc for F-27 t.code.Some fields,cobl-gsber(business area),cobl-kostl(Cost center) are missing while recording through SHDB.But when do it manualy the fields are displaying.Also i have ddded those fields manualy in the program,stll the fields are not getting captured.May anyone pls help me,why this problem is happening?What is the solution for this.
    Thanks in Advance.

    hi
    i can tell u that few transactions wont suffice us with BDC,so for such transactions we do bdc with similar kind of transactions.
    ie., The transactions FB60 and f-63 both are meant for Parking.
    But we cant do bdc for FB60 Parking. So we do bdc for f-63.
    similarly when we do bdc for vendor few fields wont appear...in that case, we use bapi for it....
    So try to find an appropriate bapi or similar tcode which will suffice ur need
    hope its clear.
    Regards
    Sajid

  • Problem in Recording(SHDB) for Txn: FBRA

    Hi,
    I am facing a problem in the Transaction - FBRA while doing a Recording through SHDB.
    I am not getting a sub-screen with Title : Reversal of clearing document, which has got 3 buttons : 1) Only Resetting 2) Resetting and Revers 3) Cancel.
    This screen is displayed when i run the transaction normally but in recording it is not coming.
    Can anyone please help me in this.
    Regards,
    Ravi Srigiri

    call function 'CALL_FBRA'
        exporting
          i_bukrs      = L_SELECTION-bukrs
          i_augbl      = L_SELECTION-augbl
          i_gjahr      = L_SELECTION-gjahr
          i_mode       = 'N'
        exceptions
          not_possible = 1
          others       = 2.
    after........
    Reverse Document
    call function 'CALL_FB08'
        exporting
          i_bukrs      = L_SELECTION-bukrs
          i_belnr      = L_SELECTION-augbl
          i_gjahr      = L_SELECTION-gjahr
          i_stgrd      = '00'
          i_mode       = 'N'
        exceptions
          not_possible = 1
          others       = 2.

  • Problem Recording FMX1 Transaction for Batch Input. Plz Help

    Hi Everyone!!!
    I'm using the Transaction SHDB to create a new recording over the FMX1 Transaction for a Batch Input. The strange thing is that when i'm about to save the recording i get the following error:
    "A runtime error: SAPSQL_ARRAY_INSERT_DUPREC"
    I tried using the transaction FMX1 with the same data(constants), and it works perfectly. And I know it's not a duplicated key or anything, it works fine when i use the transaction.
    This lead me to think that the problem is somewhere when i try to record the transaction.
    Any Ideas of how to fix the problem, or does anyone knows if its a SAP problem that needs some kind of fix.
    Any help would be really aprreciated!
    Thx again.

    Try using recording method and try to post 1 item...U will get the recording. In this recording, the field might be shown up which can be used.

  • IBAN Activation & Recording through SHDB-IBAN field is disabled

    Dear all,
    A)I have activated IBAN field in IT0009.IT0009 - table T77S0, ADMIN IBAN 'S'.
    Is this correct?
    B)When we enter manually  we are able to to Enter IBAN 34 digit code(Here we are taken to a new screen, we are using ECC.5)
    we want to create  NEW BDC for Infotype 0009.
    C)when we tried to create Recording through SHDB the "IBAN field is Disabled
    How to record. whether any ABAP  Coding is required/  how we can record.
    when i check in table PA0009 IBAN field is not there . but IBAN details are there in TIBAN .Please help.
    Regards,
    R.Mythili

    Hi,
    I have activated IBAN field in IT0009.IT0009 - table T77S0, ADMIN IBAN 'S'. This is correct
    I can suggest you to control from se11 whether PA0009 has IBAN field. Also you can check from se80 tha program MP000900 to see whether Iban field is valid. For example from T588M you may change the screen number to see IBAN field.
    also there are some oss notes about this. For example in turkey IBAN is not generated according to one common rule. Every bank has special rule for generating IBAN and this sometimes can cause problems and customer than create a field with the help of customer include. And for this some Abap knowledge is required.
    Hope it helps.

  • Problem in BDC recording for transaction /J4I/015W3A

    hello all,
    i am recording for transaction /J4I/015W3A it has 4 select options if we enter all select options and press enter it will guide to another screen which has table control . i need the fill the entries there also and save the recording.
    i have completed recording with all the steps.
    if i try to run the report with this recording the problem is that  the first screen  the entries which i have entered in  select options are not defaulted and instead first enter okcode is getting triggered as there are no values on select options and enter is triggered an error message is displayed saying enter all the values .
    how can i over come this problem...........?

    hi,
      while recording, ok code will come first, for each screen you have to kept ok code at last .
      This will work.
    regards,
    pavan

  • Difference in value while recording through SHDB

    hi guys,
    well i want to know why there is difference when i do recording. I am using the transaction 'VD01'
    while  recording i get
    perform bdc_field       using 'BDC_CURSOR'
                                  'ADDR1_DATA-TRANSPZONE'.
    perform bdc_field       using 'ADDR1_DATA-NAME1'
                                  record-NAME1_004.
    perform bdc_field       using 'ADDR1_DATA-SORT1'
                                  record-SORT1_005.
    perform bdc_field       using 'ADDR1_DATA-STREET'
                                  record-STREET_006.
    perform bdc_field       using 'ADDR1_DATA-COUNTRY'
                                  record-COUNTRY_007.
    perform bdc_field       using 'ADDR1_DATA-TRANSPZONE'
                                  record-TRANSPZONE_008.
    perform bdc_field       using 'ADDR1_DATA-LANGU'
                                  record-LANGU_009.
    but the example which i am practicing there it is
    PERFORM bdc_field       USING 'KNA1-NAME1'
                                      lw_customer-name1.       "Name.
        PERFORM bdc_field       USING 'KNA1-SORTL'
                                      lw_customer-sortl.       "Search Term.
        PERFORM bdc_field       USING 'KNA1-ORT01'
                                      lw_customer-ort01.       "City.
        PERFORM bdc_field       USING 'KNA1-LAND1'
                                      lw_customer-land1.       "Country.
        PERFORM bdc_field       USING 'KNA1-SPRAS'
                                      lw_customer-spras.       "Language.
        PERFORM bdc_field       USING 'KNA1-PSTLZ'
                                      lw_customer-pstlz.       "Postol Code.
        PERFORM bdc_dynpro      USING 'SAPMF02D' '0120'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'KNA1-LZONE'.
    well i just want to know why do i get 'ADDR1_DATA-NAME1' but in example it is 'KNA1-NAME1' and so on to other fields.
    kindly let me know what  is happening here

    Hi,
    When you record the transaction VD01 in the initial screen a check box is there for central address managament.
    If you check that box different screen will be called for the adress management, so the structures used in the screen is different.
    Uncheck the check box "Use central address management" while recording you will get what you are expecting.
    Regards
    Praveen

  • Re: Problem in recording VF02 billing transaction

    Hi all,
               I am having a problem in recording the VFO2 for the processing of Despatch details in third screen Header Texts.
    How to write the BDC code for uploading data for this TCODE VF02.particularly with header texts.....
                                                  Thanks in Advance
                                                          Ravi

    Hi
    Check this function module : <b>GN_INVOICE_CREATE</b>
    <b>CALL FUNCTION 'GN_INVOICE_CREATE'
          EXPORTING
            DELIVERY_DATE   = DELIVERY_DATE
            INVOICE_DATE    = INVOICE_DATE
            INVOICE_TYPE    = 'ZFX'
            PRICING_DATE    = PRICING_DATE
            VBSK_I          = X_VBSK
            WITH_POSTING    = 'D'
            ID_NO_ENQUEUE   = 'X'       
          TABLES
            XKOMFK          = IT_KOMFK
            XKOMFKGN        = IT_KOMFKGN
            XKOMFKKO        = IT_KOMFKKO
            XKOMFKTX        = IT_KOMFKTX
            XKOMV           = IT_KOMV
            XTHEAD          = IT_HEAD
            XVBFS           = IT_VBFS
            XVBPA           = IT_VBPA
            XVBRK           = IT_VBRK
            XVBRP           = IT_VBRP
            XVBSS           = IT_VBSS
            SUCCESS_DOC_OUT = IT_SUCCESS.</b>
    Or you can use BAPI :- <b>BAPI_BILLINGDOC_CREATEMULTIPLE</b>
    <b>CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    EXPORTING
    CREATORDATAIN = GS_CREATORDATAIN
    TESTRUN = co_x
    POSTING = co_x
    TABLES
    BILLINGDATAIN = GT_BILLINGDATAIN
    CONDITIONDATAIN = GT_CONDITIONDATAIN
    CCARDDATAIN =
    TEXTDATAIN =
    ERRORS =
    RETURN = GT_RETURN
    SUCCESS = GT_SUCCESS.</b>
    regards,
    Hiren Patel
    Don't forget to Reward points

  • Problem while recording BDC

    Hello Gurus,
                My problem is when i run through PA40 Hiring action,the dynamic actions are working properly,but when i do the recording dynamic actions infotype screens are coming up.Could anybody help me on this.
    Thanking all in Advance.
    Regards,
    Manoj.

    That is the Std behavior of Dynamic Actions. You have to code for such infotypes with separate transaction calls.PL check the OSS Note# 386027 wherein the Dynamic Actions are explained in detail.
    ~Suresh

  • Error applying Adobe Reader 11.0.07 patch - "Error 2762. Cannot write script record. Transaction not started"

    I have a problem applying the "adobe reader 11.0.07" patch. I have downloaded "AdbeRdrUpd11007_MUI.msp" from Adobe site and tried applying the patch using the command.
    The following error is prompted
    "Error 2762. Cannot write script record. Transaction not started" at the end of installation, But the version is updated to "11.0.07" in ARP.
    This error is mainly related to custom action sequence in "Execute sequence".
    I have created logfile and checked. it points to the custom action - "CreateAcroPDFRegForIE11".
    Could someone help me resolve this issue?
    Thanks in Advance..

    Hello Kashif,
    Find the answers below:
    1) How did you install reader MUI for example by running setup.exe or through an AIP or may be via SCCM or GPO? Any customizations during first install?
         package is for SCCM  and the Installation is carried through msi . AIP
    2) Which version of Reader MUI do you have installed curently?
         Adobe Reader 11.0.05
    3) Which command did you use to run the patch?
         msiexec /p AdbeRdrUpd11007_MUI.msp
    4) Did you run the patch from an elevated command prompt?
         Yes
    5) Which OS version are you at?
         Windows 7 64 bit
    Am unable to share the log file, am just copying the lines where the installation stops and prompts error:
    MSI (s) (24:20) [11:26:44:071]: Doing action: CreateAcroPDFRegForIE11
    Action start 11:26:44: CreateAcroPDFRegForIE11.
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2262 2: CustomAction 3: -2147287038
    MSI (s) (24:20) [11:26:44:071]: Transforming table CustomAction.
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2262 2: Binary 3: -2147287038
    MSI (s) (24:20) [11:26:44:071]: Transforming table Binary.
    MSI (s) (24:20) [11:26:44:071]: Note: 1: 2762
    MSI (c) (80:E8) [11:26:44:243]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 2762.Cannot write script record. Transaction not started.
    MSI (s) (24:20) [11:33:58:305]: Product: Adobe Reader XI (11.0.07)  MUI -- Error 2762.Cannot write script record. Transaction not started.
    Action ended 11:33:58: CreateAcroPDFRegForIE11. Return value 3.
    Thanks In Advance..

  • Problem while  data processing TRANSACTION data from DSO to CUBE

    Hi Guru's,
    we are facing problem while  data processing TRANSACTION data from DSO to CUBE. data packets  processing very slowly  and updating .Please help me regarding this.
    Thanks and regards,
    Sridhar

    Hi,
    I will suggest you to check a few places where you can see the status
    1) SM37 job log (give BIrequest name) and it should give you the details about the request. If its active make sure that the job log is getting updated at frequent intervals.
    2) SM66 get the job details (server name PID etc from SM37) and see in SM66 if the job is running or not. See if its accessing/updating some tables or is not doing anything at all.
    If its running and if you are able to see it active in SM66 you can wait for some time to let it finish.
    3) RSMO see what is available in details tab. It may be in update rules.
    4) ST22 check if any short dump has occured.
    You can also try SM50 / SM51 to see what is happening in the system level like reading/inserting tables etc.
    If you feel its active and running you can verify by checking if the number of records has increased in the cube.
    Thanks,
    JituK

  • Problem with recording and sound on Pavilion ze1000 series

    I have an old Hp Pavilion ze 1250 running Windows XP (sp2) with 1gb  Ram. 
    I'm trying to convert some cassette tapes to digital (with Audacity). 
    My problem:  When I try to record using Audacity, it records about 10 seconds and then hangs.  When I click Stop and try to play the 10 seconds back, it freezes and won't play anything.  (After that, even if I import an mp3 file to work on, it won't play that either.)  It also causes all the sound to go off throughout the computer.  Songs will "play" in WMP but there's no sound in the speakers or headphones.  (The Microsoft logo music won't play either when I turn the computer off.)  I've tried resetting the volume and checking if anything is muted. Nothing . 
    I restart the computer and everything is fine.....sound works and Audacity plays.....until I try to record again.
     I thought that this was only an Audacity problem....until I tried to record 60 seconds through Sound Recorder.  The exact thing happens.  It records about 10 seconds of audio, then freezes and refuses to playback.  All the sound goes off throughout the computer and nothing solves it except Restart.
    My sound/audio device is Conexant AC-Link Audio. 
    The Sound Playback, Sound Recording, Voice Playback, and Voice Recording are all defaulted to HP VIA Audio.
    I have updated the audio driver.  Recording is enabled.  Is there something else I need to do?
    Thanks.

    Thank you for your reply. 
    I'll try some of those suggestions and see if that helps. 

  • Is it possible to add PERNR field to MIGO or MB1A transaction screens?

    Hi,
    Ours is a service industry with @ 10000 employees and we have implemented SAP with MM & HR module. We issue uniforms to all the employees when they join (new Joinee) and again once in January every year as reissuance. We intend to keep size information in employee masters in HR along with station code, designation, department and cost centers.
    At present we are using two fields goods recipient and unloading point to mention employee code and type of issue (new joinee or reissuance). This is because employee code (PERNR) field is not there in MIGO_GI screen or MB1A screen.
    Is it possible to add PERNR field to any of these transaction screens?
    If added then we can fetch the relevant information about issuance of information along with station code, designation, department in Z report.
    If possible, then how it can be done?
    Thanks in advance,
    Satish

    Hi ,
    as i understand we can add new fields in a transaction through user exit /field exit. so please discuss with your ABAP consultant & try to find out all the exit available for MIGO/ MB1A. then you have to decide which one will suit you. here you have to consider some factors like whether you need to enter values in the field or the field needs to fatch any value from any other table & should populate here.
    the ABAPer can then write the code & add your required logic here.
    i am not very good in this subject. just tried to share what ever i knew.
    regards,
    anubhab

  • Call Transaction Through RFC

    Hi ,
    I am trying to do a call transaction through RFC call from a Middleware which is a CPIC user (only communication Non dialog User ) . 
    Call  transaction does gets executed without any error but it does not update any data.But when I run it through my user id it works absolutely fine .
    I am not sure what is causing the issue
    Security authorization?
    RFC through Non Dialog user ?
    Paramters missing in RFC  ?
    Paramatertes missing in call transaction option?
    If anyone of you has faced a similiar issue then please let me know the path forward.
    Thanks
    Vikas

    Hi Vikas,
        The problem is in Authorization? And check the mode of Process Synchoronus or asynchoronous? Both the RFC and CALL transaction should be Same /
    Thanks
    MAnju

Maybe you are looking for

  • How to open a PDF file in a iFrame using JSP

    I'm developing a EDM system and I need to upload a PDF file and later show it on the browser but in a iFrame. as the file is not in the system directory but into server directory. I tryed JavaScript: document.location.href="file://directory"; because

  • Mac running slow since installing Yosemite..help.

    Problem description: All facets of my iMac are running extremely slow since downloading Yosemite.  Internet is slow opening pages, word is slow opening, I get the spinwheel all the time now having to wait and wait for things to open or close etc. Etr

  • Lost RAID 5 Array...

    I have, er... had, a RAID 5 array comprised of six 180GB Apple Drive modules. The Xserve RAID had cache battery backups installed and was on a UPS, but I had disabled the drive cache for all drives quite some time ago as I wasn't sure how reliable th

  • How do I download an app from the Mac App Store but not install it and save to do later?

    I'm getting the free Lion download for new Macs from the Mac App Store, but am not ready to install it yet. It appears that apps (including Lion?) from the App Store automatically install themselves. Is there any way to save an App Store download (.d

  • Where is the iCloud file in Finder (Mavericks) ?

    I didn't realise that sharing Pages documents on iCloud makes them disappear from their previous location, it's a terrible idea ! Is there an iCloud file somewhere that I could find with the Finder ? At least, I could create an alias to fix my proble