What is the field for checking authorization block in payment card

Hi experts,
I am using BAPI_SALESDOCU_CREATEFROMDATA to create debit memo requests.My requirement is to check the checkbox 'authorization block in VA02 ->header->payment cards.But i could not find that field in BAPI as well as in this table.I am picking credit card data from FPLTC table,
There is one field called checkbox in BAPI.Is it the same field im in search,the what is the corresponding field in FPLTC table.
Please advice,
Thanks and regards,
Meena

Meena,
As I recall the Authorization Block field (FPLA-AUST5) is set based on a response code field in field CC_REACT_T.  If you set this value to 'C' (which stands for "Unsuccessful: set authorization lock") then SAP will set FPLA-AUST5 to 'X' in FORM ZAHLUNGSKARTEN_AUTHORISIEREN in program MV45AF0Z_ZAHLUNGSKARTEN_AUTHOR in the following section of code:
Stop-Flag setzten
      IF DA_XFPLT_AUTH_NEW-REACT = REACT_STOP.
        XFPLA-AUST5 = 'X'.
      ENDIF.
    ENDLOOP.
Eric Bushman
[Paymetric|http://www.paymetric.com]

Similar Messages

  • What is the field for good receipts?

    hi friends
    i got the requirement to create the goods receipts
    what is the field for good receipts
    plz tell me how to create it
    thanks in advance
    Edited by: Alvaro Tejada Galindo on Feb 25, 2008 5:33 PM

    adapt this to your own requirements.  
    Structures for BAPI
    data: gm_header type bapi2017_gm_head_01.
    data: gm_code type bapi2017_gm_code.
    data: gm_headret type bapi2017_gm_head_ret.
    data: gm_item type table of
    bapi2017_gm_item_create with header line.
    data: gm_return type bapiret2 occurs 0.
    data: gm_retmtd type bapi2017_gm_head_ret-mat_doc.
    clear: gm_return, gm_retmtd. refresh gm_return.
    Setup BAPI header data.
    gm_header-pstng_date = sy-datum.
    gm_header-doc_date = sy-datum.
    gm_code-gm_code = '01'. " MB01
    Write 551 movement to table
    clear gm_item.
    move '101' to gm_item-move_type .
    move '000000000040001234' to gm_item-material.
    move '1' to gm_item-entry_qnt.
    move 'EA' to gm_item-entry_uom.
    move '0004' to gm_item-plant.
    move '4000' to gm_item-stge_loc.
    move '201' to gm_item-move_reas.
    Determine cost center per plant
    case xresb-werks.
    when '0004'.
    move '0000041430' to gm_item-costcenter.
    when '0006'.
    move '0000041630' to gm_item-costcenter.
    when '0007'.
    move '0000041731' to gm_item-costcenter.
    when '0008'.
    move '0000041830' to gm_item-costcenter.
    endcase.
    append gm_item.
    Call goods movement BAPI
    call function 'BAPI_GOODSMVT_CREATE'
    exporting
    goodsmvt_header = gm_header
    goodsmvt_code = gm_code
    importing
    goodsmvt_headret = gm_headret
    materialdocument = gm_retmtd
    tables
    goodsmvt_item = gm_item
    return = gm_return.
    call function 'BAPI_TRANSACTION_COMMIT'
    exporting
    wait = 'X'.

  • What is the field for sales order type?

    pls tell me what is the field for sales order type??
    and from which table........urgent

    Hi,
    Field for sales order type is AUART in table TVAK
    the Parent table for Sales order type is TVAK.
    Best regards,
    raam

  • What is the "Error! Check Authorization" message and why does my Digital Editions crash right after that pops up?

    I have authorized the Adobe Digital Editions with both my PC and my eReader. I try to download a library book and I get the "Error! Check Authorization" message. My Digital Editions will then crash.

    Hello,
    Please download the latest ADE 4.0.3.114137
    http://www.adobe.com/solutions/ebook/digital-editions/download.html
    Some of the crashes have been fixed in this release.
    Thanks for being the part of product improvement.

  • What is the table for checking billing types assigned to sales orders

    Hi Folks,
    Good morning!
    Could you please help me how to check the billing types assigned to sales documents.
    What is the table to see billing types assigned to sales documents.
    Regards,
    Sarath

    Hello Sarath,
    As mentioned by Siva in the above the table name is TVAK but if you are a functional guy then you should go by the functional assignment.We are assigning the default billing type in Tcode= VOV8.
    All sales document control you can find over here.
    Needless to mention this Billing type you are assigning over here is auto proposed during billing in VF01. But you have option to choose another billing type in VF01 itself considering you have maintained the Copy Control for that.
    Thanks,
    Suman$

  • What are the field names for below mentioned

    Hello Friends
    What are the fields names for below tables
    in EKKO
    Purchase Document Date
    Net Value of the purchase document.
    In EKPO
    Item Description
    From which place We bought it. (It means in Sales Items there we can know from which plant we sold the goods, like in EKPO, there is any field like this)
    Please let we are defining the report to find out the stock availability for perticular storage location using select Options plant, company code, material no.
    How many tables involve her to build this report. and also field names, they come under which table.
    Please send me this information ASAP. PLz Plz Plz..........
    Regards
    Praveen

    You can check the fields of these tables via SE11
    Purchase Document Date  -  EKKO-BEDAT
    Item Description  -  EKPO-TXZ01
    Net price per item - EKPO-NETPR.
    Regards,
    Rich Heilman

  • What is the field and Table for "Batch Class" and "Class Type" in QM.

    Hi All,
    What is the field and Table for "Batch Class" and "Class Type" in QM.
    Thanks,

    Hi,
      For batch class the class type value is '023' . This you can find from KLAH table and the fileld for class type is KLART..
    And also all the data related to batch class are found in tables INOB, KLAH,KKSK and for the characeteristics of batch materials you can refer AUSP table.
    In INOB table, for batch class, you need to give 023 in KLART field and  value MCH1 in OBTAB filed.
    Please check this and let me know if this you need any more details?

  • What is the use for CREATING VIEW WITH CHECK OPTION?

    Dear Legends,
    I have a doubt
    What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.
    A: Enforcing constraints at DB level.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???
    Please clear my doubt's Legends
    Lots of Thanks....
    Regards,
    Karthik

    Hi, Karthick,
    karthiksingh_dba wrote:
    ... What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..Most views are created and used for convenience. A view is a saved query. If the same operations are often done, then it can be very convenient to code those operations once, in a view, and refer to the view rather than explicitly doing those operations.
    Sometimes, views are created and used for security reasons. For example, you many want to allow some users to see only certain rows or certain columns of a table.
    Views are necessary for INSTEAD OF triggers.
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.The reason is integrity, not necessarily referential integrity. The CHECK option applies only when DML is done through the view. It prohibits certain changes. For example, if a user can't see certain rows through a view, the CHECK option keeps the user from creating such rows.
    A: Enforcing constraints at DB level.I'm not sure what you mean. Please give an example.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??No. Using CHECK OPTION, you can do some inserts and updates, but not others. The columns involved may or may not have constraints in either case.
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???If you try to violate a constraint, you'll get an error. That happens in views with or without the CHECK OPTION, and also in tables.

  • For each song in my iTunes Library just before the name of the song there is a check box.  What is the effect of checking or unchecking this box?

    For each song in my iTunes Library just before the name of the song there is a check box.  What is the effect of checking or unchecking this box?
    Thanks

    Unchecked items will not play unless specifically clicked on.  They will not be included on shuffle and will not be synced to ipods.

  • What is the field "INFTY" in the structure P0006 used for?

    Hi HR Experts,
    The PSKEY vs PAKEY is the field INFTY. So what is the field INFTY in the structure P0006 used for?
    Thanks!
    Anthony

    The PSKEY is related to teh PSNNNN structure that is associated with the data of a given info type.  the PSKEY holds INFTY for processing info type data genericaly in background programs through generic structures,  IE: pass any info type structure to a FM.  This INFTY field allowed the programs to know which info type structure is being processed unlike the PAKEY which is used to save infotype data in the back end system at the DB level.
    thanks.
    JB

  • What are the steps  to view the output for check printing

    what are the steps  ,the method to view the output for check printing

    Hi,
    You can ask your functional person to make a payment to a vendor which will then issue a check. You can use the same payment run in program RFFOUS_C and create new checks by voiding the previous check number with a void reason code.
    You can do this as many times as you want and test your check output.
    Regards
    Shounak

  • For what is the field SVER with type RSRSVER in structure RSDRI_S_SELNODE ?

    Does anyone know what does the field SVER with type RSRSVER in structure RSDRI_S_SELNODE mean ??
    Thx....

    If this indicator is set, the material is costed using costing with a quantity structure (BOM and routing).
    The system searches for any existing cost estimates with quantity structure for the individual materials; it ignores existing cost estimates without quantity structure. If the system does not find any valid costing data for the materials, it costs the material or accesses the price in the material master.
    If this indicator is not set, the planned costs for the material are calculated using the cost estimate without quantity structure. In this case, you use unit costing to create the quantity structure manually by entering costing items for materials and activity types, for example.
    The system now searches for any existing cost estimates without quantity structure. If a cost estimate without quantity structure exists for a material, the results of this cost estimate are included in a cost estimate with quantity structure. If there is no cost estimate without quantity structure, the cost estimate with quantity structure accesses the price in the material master record. The planned costs for this material then go into the cost estimate with quantity structure as raw material costs.
    This does not apply if the indicator Ignore prod cost est w/o qty structure is set in the costing variant.

  • Related with EDIMSG table.what does the field ACTFLAG stand for in EDIMSG.

    Hi Gurus,
    Can anyone tell me what does the field ACTFLAG flag stand for in EDIMSG table.Does it mean that if the ACTFLAG field = 'X',than the particular release is no more used in SAP.
    Because even if I create a partner profile with MATMAS01 as basic type and seg.release in idoc type = '30A'..i am able to receive IDOC's.whereas the ACTFLAG = 'X' for this particular release in EDIMSG table.
    Your help will be much appreciated.
    Thanks in advance.

    Hi,
    Thanks for your immediate response.
    so you mean that MATMAS01 should not be used as ACTFLAG = 'X' in EDIMSG table.
    Than why can we still generate the IDOC's with release no 30A when SAP is not supporting this release.
    Thanks in Advance.

  • What is the tcode for Run ''Remittance Completeness Check''

    Hi all,
    What is the tcode for Remittance completeness check ?
    Thanks
    Jerry

    Hello Jerry,
    The transaction to program RPURMC00 is PC00_M99_URMC.
    I hope this information is helpful.
    Kind regards,
    Graziela

  • HT1222 How can I check if I currently have QuickTime 7?  Is there a charge for QuickTime 7.7.3 and what is the charge for the QuickTime 7 Pro registration?

    How can I check if I currently have QuickTime 7?  Is there a charge for QuickTime 7.7.3 and what is the charge for the QuickTime 7 Pro registration?

    This is the iPhone forum, you should check the Quicktime forum. But, to try and help a little, I would say go to Help, About Quicktime and it should tell you what version it is. Also, Quicktime Pro does have a cost involved.

Maybe you are looking for