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

BAPI_CUSTOMER_CHANGEPASSWORD



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> Interfaces | Интерфейсы -> BAPI
View previous topic :: View next topic  
Author Message
admin
Администратор
Администратор



Joined: 01 Sep 2007
Posts: 1639

PostPosted: Sun Jun 15, 2008 1:47 pm    Post subject: BAPI_CUSTOMER_CHANGEPASSWORD Reply with quote

BAPI_CUSTOMER_CHANGEPASSWORD - Change Customer Password

Code:
REPORT ZZVCHPAS.
DATA : OBJECTID LIKE BAPI1007-CUSTOMER,
OBJECTTYP LIKE BAPIUSW01-OBJTYPE,
RCODE LIKE BAPIRETURN.

PARAMETERS : CUSTOMER LIKE BAPI1007-CUSTOMER,
PASS LIKE BAPIUID-PASSWORD,
NPASS LIKE BAPIUID-PASSWORD,
VPASS LIKE BAPIUID-PASSWORD.

PERFORM ALPHAFORMAT(SAPFS000)
USING CUSTOMER CUSTOMER.

OBJECTID = CUSTOMER.

CALL FUNCTION 'BAPI_CUSTOMER_CHANGEPASSWORD'
EXPORTING
CUSTOMERNO = OBJECTID
PASSWORD = PASS
NEW_PASSWORD = NPASS
VERIFY_PASSWORD = VPASS
IMPORTING
RETURN = RCODE
EXCEPTIONS
OTHERS = 1.

IF RCODE IS INITIAL.
MESSAGE ID 'IB' TYPE 'S' NUMBER 006. "password changed
ELSE.

CASE RCODE+3(3).
WHEN 000.
MESSAGE ID 'IB' TYPE 'W' NUMBER 000. "user does not exist

WHEN 002.
MESSAGE ID 'IB' TYPE 'W' NUMBER 002. "user locked

WHEN 003.
MESSAGE ID 'IB' TYPE 'W' NUMBER 003. "password not correct

WHEN 004.
MESSAGE ID 'IB' TYPE 'W' NUMBER 004. "password mismatch
ENDCASE.
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 -> Interfaces | Интерфейсы -> BAPI 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.